diff --git a/code/__DEFINES/chemistry.dm b/code/__DEFINES/chemistry.dm
index 078ccbdc2d94..35e040654881 100644
--- a/code/__DEFINES/chemistry.dm
+++ b/code/__DEFINES/chemistry.dm
@@ -187,6 +187,7 @@
#define PROPERTY_NEUROSHIELDING "neuroshielding"
#define PROPERTY_ANTIADDICTIVE "anti-addictive"
#define PROPERTY_ADDICTIVE "addictive"
+#define PROPERTY_ENCEPHALOPHRASIVE "encephalophrasive"
//Legendary, only in gen_tier 3+
#define PROPERTY_HYPERGENETIC "hypergenetic"
#define PROPERTY_BOOSTING "boosting"
diff --git a/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm b/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm
index ab233e9cf82c..e76768a82b46 100644
--- a/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm
+++ b/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm
@@ -50,6 +50,10 @@
/// From /datum/action/xeno_action/proc/use_ability_wrapper(): (mob/owner)
#define COMSIG_XENO_ACTION_USED "xeno_action_used"
+/// From /datum/action/xeno_action/proc/use_ability_wrapper(): (mob/owner)
+#define COMSIG_XENO_PRE_ACTION_USED "xeno_pre_action_used"
+/// From /datum/action/xeno_action/proc/use_ability_wrapper(): (mob/owner)
+#define COMSIG_XENO_FAILED_ACTION_USED "xeno_failed_action_used"
/// From /mob/living/carbon/xenomorph/proc/check_blood_splash()
#define COMSIG_XENO_DEAL_ACID_DAMAGE "xeno_deal_acid_damage"
/// From /mob/living/carbon/xenomorph/proc/recalculate_speed()
diff --git a/code/__DEFINES/dcs/signals/atom/signals_item.dm b/code/__DEFINES/dcs/signals/atom/signals_item.dm
index 5ba79960657b..88f99bbff578 100644
--- a/code/__DEFINES/dcs/signals/atom/signals_item.dm
+++ b/code/__DEFINES/dcs/signals/atom/signals_item.dm
@@ -83,3 +83,5 @@
#define COMSIG_CAMERA_SET_AREA "camera_manager_set_area"
#define COMSIG_CAMERA_CLEAR "camera_manager_clear_target"
#define COMSIG_CAMERA_REFRESH "camera_manager_refresh"
+
+#define COMSIG_PRED_BRACER_DECLOAKED "pred_bracer_decloaked"
diff --git a/code/__DEFINES/dcs/signals/atom/signals_movable.dm b/code/__DEFINES/dcs/signals/atom/signals_movable.dm
index ba889d0b5212..ad4be2b1dc9f 100644
--- a/code/__DEFINES/dcs/signals/atom/signals_movable.dm
+++ b/code/__DEFINES/dcs/signals/atom/signals_movable.dm
@@ -11,6 +11,9 @@
#define COMPONENT_CANCEL_MOVE (1<<0)
/// From /turf/open/gm/river/Entered(): (turf/open/gm/river/river, covered)
#define COMSIG_MOVABLE_ENTERED_RIVER "movable_entered_river"
+/// From /atom/movable/proc/doMove: I think it only works with forceMove so watch out
+#define COMSIG_MOVABLE_FORCEMOVE_PRE_CROSSED "movable_forcemove_pre_crossed"
+ #define COMPONENT_IGNORE_CROSS (1<<0)
///from /mob/living/carbon/xenomorph/start_pulling(): (mob/living/carbon/xenomorph/X)
#define COMSIG_MOVABLE_XENO_START_PULLING "movable_xeno_start_pulling"
diff --git a/code/__DEFINES/dcs/signals/signals_datum.dm b/code/__DEFINES/dcs/signals/signals_datum.dm
index b798d510763e..c35038fcf3e9 100644
--- a/code/__DEFINES/dcs/signals/signals_datum.dm
+++ b/code/__DEFINES/dcs/signals/signals_datum.dm
@@ -34,6 +34,8 @@
#define COMSIG_ACTION_HIDDEN "action_hidden"
/// From base of /datum/action/proc/unhide_from(): (mob/owner)
#define COMSIG_ACTION_UNHIDDEN "action_unhidden"
+/// From base of /datum/action/proc/action_activate() : ()
+#define COMSIG_ACTION_ACTIVATED "action_activated"
///from /datum/component/bonus_damage_stack
#define COMSIG_BONUS_DAMAGE "bonus_damage"
diff --git a/code/__DEFINES/job.dm b/code/__DEFINES/job.dm
index bedc8234d9c9..79f40c89bb53 100644
--- a/code/__DEFINES/job.dm
+++ b/code/__DEFINES/job.dm
@@ -12,6 +12,7 @@
#define SQUAD_MARINE_INTEL "Intel"
#define SQUAD_SOF "SOF"
#define SQUAD_CBRN "CBRN"
+#define SQUAD_FORECON "FORECON"
// Job name defines
#define JOB_SQUAD_MARINE "Rifleman"
diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm
index bea1d7975688..cf6d6c64d9a9 100644
--- a/code/__DEFINES/misc.dm
+++ b/code/__DEFINES/misc.dm
@@ -163,9 +163,10 @@
#define MATRIX_NVG 1
#define MATRIX_WIDE 2
-#define RESEARCH_UPGRADE_NULL null
+#define RESEARCH_UPGRADE_NOTHING_TO_PASS null
#define RESEARCH_UPGRADE_EXCLUDE_BUY -2
#define RESEARCH_UPGRADE_CATEGORY -1 //lord forgive me
+#define RESEARCH_UPGRADE_ITEM 1
#define RESEARCH_UPGRADE_TIER_1 1
#define RESEARCH_UPGRADE_TIER_2 2
#define RESEARCH_UPGRADE_TIER_3 3
diff --git a/code/__DEFINES/mob_hud.dm b/code/__DEFINES/mob_hud.dm
index 7536b7576d8d..97cbe0281924 100644
--- a/code/__DEFINES/mob_hud.dm
+++ b/code/__DEFINES/mob_hud.dm
@@ -54,6 +54,7 @@
#define TRACKER_LZ "track_lz"
#define TRACKER_CO "track_co"
#define TRACKER_XO "track_xo"
+#define TRACKER_CMP "track_cmp"
#define TRACKER_CL "track_cl"
#define TRACKER_ASL "_asl" // Alpha Squad Leader
diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm
index dbd8dbe7ce41..77f2393e6542 100644
--- a/code/__DEFINES/mobs.dm
+++ b/code/__DEFINES/mobs.dm
@@ -380,5 +380,6 @@ GLOBAL_LIST_INIT(default_xeno_onmob_icons, list(
#define MOBILITY_LIEDOWN (1<<8)
#define MOBILITY_FLAGS_DEFAULT (MOBILITY_MOVE | MOBILITY_STAND)
+#define MOBILITY_FLAGS_LYING_CAPABLE_DEFAULT (MOBILITY_MOVE | MOBILITY_STAND | MOBILITY_LIEDOWN)
#define MOBILITY_FLAGS_CARBON_DEFAULT (MOBILITY_MOVE | MOBILITY_STAND | MOBILITY_REST | MOBILITY_LIEDOWN)
#define MOBILITY_FLAGS_REST_CAPABLE_DEFAULT (MOBILITY_MOVE | MOBILITY_STAND | MOBILITY_REST | MOBILITY_LIEDOWN)
diff --git a/code/__DEFINES/sounds.dm b/code/__DEFINES/sounds.dm
index 541d95d28189..807305174b34 100644
--- a/code/__DEFINES/sounds.dm
+++ b/code/__DEFINES/sounds.dm
@@ -60,6 +60,9 @@
#define SOUND_ENVIRONMENT_DIZZY 24
#define SOUND_ENVIRONMENT_PSYCHOTIC 25
+#define SOUND_ECHO_REVERB_ON list(0, 0, 0, 0, 0, 0.0, 0, 0.25, 1.5, 1.0, 0, 1.0, 0, 0.0, 0.0, 0.0, 1.0, 0)
+#define SOUND_ECHO_REVERB_OFF list(0, 0, -10000, -10000, 0, 0.0, 0, 0.25, 1.5, 1.0, 0, 1.0, 0, 0.0, 0.0, 0.0, 1.0, 0) //-10000 to Room & RoomHF makes enviromental reverb effectively inaudible
+
#define AMBIENCE_SHIP 'sound/ambience/shipambience.ogg'
#define AMBIENCE_JUNGLE 'sound/ambience/ambienceLV624.ogg'
#define AMBIENCE_RIVER 'sound/ambience/ambienceriver.ogg'
diff --git a/code/__DEFINES/tgs.config.dm b/code/__DEFINES/tgs.config.dm
index e0d5f1baac92..bd30a6707966 100644
--- a/code/__DEFINES/tgs.config.dm
+++ b/code/__DEFINES/tgs.config.dm
@@ -8,5 +8,5 @@
#define TGS_WARNING_LOG(message) log_world("TGS Warn: [##message]")
#define TGS_ERROR_LOG(message) log_world("TGS Error: [##message]")
#define TGS_NOTIFY_ADMINS(event) message_admins(##event)
-#define TGS_CLIENT_COUNT GLOB.clients.len
+#define TGS_CLIENT_COUNT length(GLOB.clients)
#define TGS_PROTECT_DATUM(Path) GENERAL_PROTECT_DATUM(##Path)
diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm
index 7b669124a2d0..e6b9c4c4b9ee 100644
--- a/code/__DEFINES/traits.dm
+++ b/code/__DEFINES/traits.dm
@@ -161,6 +161,8 @@
#define TRAIT_MERGED_WITH_WEEDS "merged_with_weeds"
/// Apply this to identify a mob as temporarily muted
#define TRAIT_TEMPORARILY_MUTED "temporarily_muted"
+/// Mob wont get hit by stray projectiles
+#define TRAIT_NO_STRAY "trait_no_stray"
// SPECIES TRAITS
/// Knowledge of Yautja technology
@@ -233,6 +235,8 @@
#define TRAIT_IN_TUTORIAL "t_IN_TUTORIAL"
/// If the mob is cloaked in any form
#define TRAIT_CLOAKED "t_cloaked"
+/// If the mob won't drop items held in face slot when downed
+#define TRAIT_IRON_TEETH "t_iron_teeth"
// -- ability traits --
/// Xenos with this trait cannot have plasma transfered to them
diff --git a/code/__HELPERS/_lists.dm b/code/__HELPERS/_lists.dm
index dd92b9be1295..e46c92df543a 100644
--- a/code/__HELPERS/_lists.dm
+++ b/code/__HELPERS/_lists.dm
@@ -103,7 +103,7 @@
/proc/bitfield_to_list(bitfield = 0, list/wordlist)
var/list/return_list = list()
if(islist(wordlist))
- var/max = min(wordlist.len, 24)
+ var/max = min(length(wordlist), 24)
var/bit = 1
for(var/i in 1 to max)
if(bitfield & bit)
@@ -148,10 +148,10 @@
* Returns TRUE if the list had nulls, FALSE otherwise
**/
/proc/list_clear_nulls(list/list_to_clear)
- var/start_len = list_to_clear.len
+ var/start_len = length(list_to_clear)
var/list/new_list = new(start_len)
list_to_clear -= new_list
- return list_to_clear.len < start_len
+ return length(list_to_clear) < start_len
///Return a list with no duplicate entries
/proc/unique_list(list/inserted_list)
@@ -174,6 +174,6 @@
if(!inserted_list)
return
- for(var/i in 1 to inserted_list.len - 1)
- inserted_list.Swap(i, rand(i, inserted_list.len))
+ for(var/i in 1 to length(inserted_list) - 1)
+ inserted_list.Swap(i, rand(i, length(inserted_list)))
diff --git a/code/__HELPERS/chat.dm b/code/__HELPERS/chat.dm
index 20d1a45b31cc..4629c699636a 100644
--- a/code/__HELPERS/chat.dm
+++ b/code/__HELPERS/chat.dm
@@ -22,7 +22,7 @@
if((!admin_only || channel.is_admin_channel) && (channel_tag in applicable_tags))
channels_to_use += channel
- if(channels_to_use.len)
+ if(length(channels_to_use))
world.TgsChatBroadcast(message, channels_to_use)
/**
diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm
index 721c179b9cef..094f8205c80e 100644
--- a/code/__HELPERS/game.dm
+++ b/code/__HELPERS/game.dm
@@ -58,7 +58,7 @@
/proc/recursive_mob_check(atom/O, list/L = list(), recursion_limit = 3, client_check = 1, sight_check = 1, include_radio = 1)
- //debug_mob += O.contents.len
+ //debug_mob += length(O.contents)
if(!recursion_limit)
return L
for(var/atom/A in O.contents)
@@ -235,7 +235,7 @@
* * hive - The hive we're filling a slot for to check if the player is banished
* * sorted - Whether to sort by larva_queue_time (default TRUE) or leave unsorted
*/
-/proc/get_alien_candidates(datum/hive_status/hive = null, sorted = TRUE)
+/proc/get_alien_candidates(datum/hive_status/hive = null, sorted = TRUE, abomination = FALSE)
var/list/candidates = list()
for(var/mob/dead/observer/cur_obs as anything in GLOB.observer_list)
@@ -275,6 +275,11 @@
if(banished)
continue
+ if(abomination)
+ if(!(/datum/tutorial/xenomorph/abomination::tutorial_id in cur_obs.client.prefs.completed_tutorials))
+ to_chat(cur_obs, SPAN_BOLDNOTICE("You were passed over for playing as an Abomination because you have not completed its tutorial."))
+ continue
+
candidates += cur_obs
// Optionally sort by larva_queue_time
@@ -294,7 +299,7 @@
* * cache_only - Whether to not actually send a to_chat message and instead only update larva_queue_cached_message
*/
/proc/message_alien_candidates(list/candidates, dequeued, cache_only = FALSE)
- for(var/i in (1 + dequeued) to candidates.len)
+ for(var/i in (1 + dequeued) to length(candidates))
var/mob/dead/observer/cur_obs = candidates[i]
// Generate the messages
diff --git a/code/__HELPERS/guid.dm b/code/__HELPERS/guid.dm
index 49903cceb3c3..e763aaf73b69 100644
--- a/code/__HELPERS/guid.dm
+++ b/code/__HELPERS/guid.dm
@@ -6,7 +6,7 @@
/proc/GUID()
var/const/GUID_VERSION = "b"
var/const/GUID_VARIANT = "d"
- var/node_id = copytext_char(md5("[rand()*rand(1,9999999)][world.name][world.hub][world.hub_password][world.internet_address][world.address][world.contents.len][world.status][world.port][rand()*rand(1,9999999)]"), 1, 13)
+ var/node_id = copytext_char(md5("[rand()*rand(1,9999999)][world.name][world.hub][world.hub_password][world.internet_address][world.address][length(world.contents)][world.status][world.port][rand()*rand(1,9999999)]"), 1, 13)
var/time_high = "[num2hex(text2num(time2text(world.realtime,"YYYY")), 2)][num2hex(world.realtime, 6)]"
diff --git a/code/__HELPERS/icons.dm b/code/__HELPERS/icons.dm
index 081fcec5a137..fcfb512e0c12 100644
--- a/code/__HELPERS/icons.dm
+++ b/code/__HELPERS/icons.dm
@@ -332,7 +332,7 @@ world
/proc/getFlatIcon(image/appearance, defdir, deficon, defstate, defblend, start = TRUE, no_anim = FALSE, appearance_flags = FALSE)
// Loop through the underlays, then overlays, sorting them into the layers list
#define PROCESS_OVERLAYS_OR_UNDERLAYS(flat, process, base_layer) \
- for (var/i in 1 to process.len) { \
+ for (var/i in 1 to length(process)) { \
var/image/current = process[i]; \
if (!current) { \
continue; \
@@ -347,7 +347,7 @@ world
} \
current_layer = base_layer + appearance.layer + current_layer / 1000; \
} \
- for (var/index_to_compare_to in 1 to layers.len) { \
+ for (var/index_to_compare_to in 1 to length(layers)) { \
var/compare_to = layers[index_to_compare_to]; \
if (current_layer < layers[compare_to]) { \
layers.Insert(index_to_compare_to, current); \
@@ -403,7 +403,7 @@ world
var/curblend = appearance.blend_mode || defblend
- if(appearance.overlays.len || appearance.underlays.len)
+ if(length(appearance.overlays) || length(appearance.underlays))
var/icon/flat = icon(flat_template)
// Layers will be a sorted list of icons/overlays, based on the order in which they are displayed
var/list/layers = list()
@@ -556,7 +556,7 @@ world
/proc/sort_atoms_by_layer(list/atoms)
// Comb sort icons based on levels
var/list/result = atoms.Copy()
- var/gap = result.len
+ var/gap = length(result)
var/swapped = 1
while (gap > 1 || swapped)
swapped = 0
@@ -564,7 +564,7 @@ world
gap = floor(gap / 1.3) // 1.3 is the emperic comb sort coefficient
if(gap < 1)
gap = 1
- for(var/i = 1; gap + i <= result.len; i++)
+ for(var/i = 1; gap + i <= length(result); i++)
var/atom/l = result[i] //Fucking hate
var/atom/r = result[gap+i] //how lists work here
if(l.layer > r.layer) //no "result[i].layer" for me
diff --git a/code/__HELPERS/lists.dm b/code/__HELPERS/lists.dm
index 856a0a492cbb..d5212611a04b 100644
--- a/code/__HELPERS/lists.dm
+++ b/code/__HELPERS/lists.dm
@@ -12,7 +12,7 @@
//Returns a list in plain english as a string
/proc/english_list(list/input, nothing_text = "nothing", and_text = " and ", comma_text = ", ", final_comma_text = "" )
- var/total = input.len
+ var/total = length(input)
if (!total)
return "[nothing_text]"
else if (total == 1)
@@ -33,9 +33,9 @@
//Returns list element or null. Should prevent "index out of bounds" error.
/proc/listgetindex(list/list,index)
- if(istype(list) && list.len)
+ if(istype(list) && length(list))
if(isnum(index))
- if(ISINRANGE(index,1,list.len))
+ if(ISINRANGE(index,1,length(list)))
return list[index]
else if(list[index])
return list[index]
@@ -106,35 +106,35 @@
/// Pick a random element from the list and remove it from the list.
/proc/pick_n_take(list/L)
RETURN_TYPE(L[_].type)
- if(L.len)
- var/picked = rand(1,L.len)
+ if(length(L))
+ var/picked = rand(1,length(L))
. = L[picked]
L.Cut(picked,picked+1) //Cut is far more efficient that Remove()
//Returns the top(last) element from the list and removes it from the list (typical stack function)
/proc/pop(list/L)
- if(L.len)
- . = L[L.len]
+ if(length(L))
+ . = L[length(L)]
L.len--
/proc/popleft(list/L)
- if(L.len)
+ if(length(L))
. = L[1]
L.Cut(1,2)
//Returns the next element in parameter list after first appearance of parameter element. If it is the last element of the list or not present in list, returns first element.
/proc/next_in_list(element, list/L)
- for(var/i=1, i1, i--)
+ for(var/i=length(L), i>1, i--)
if(L[i] == element)
return L[i-1]
- return L[L.len]
+ return L[length(L)]
/*
* Sorting
@@ -144,7 +144,7 @@
/proc/reverselist(list/L)
var/list/output = list()
if(L)
- for(var/i = L.len; i >= 1; i--)
+ for(var/i = length(L); i >= 1; i--)
output += L[i]
return output
@@ -155,7 +155,7 @@
. = L_n
var/L_o[] = L.Copy()
var/i
- while(L_o.len)
+ while(length(L_o))
i = pick(L_o)
if(!ref) L_n += i
else L_n[i] = L_o[i]
@@ -171,9 +171,9 @@
//Mergesort: divides up the list into halves to begin the sort
/proc/sortKey(list/client/L, order = 1)
- if(isnull(L) || L.len < 2)
+ if(isnull(L) || length(L) < 2)
return L
- var/middle = L.len / 2 + 1
+ var/middle = length(L) / 2 + 1
return mergeKey(sortKey(L.Copy(0,middle)), sortKey(L.Copy(middle)), order)
//Mergsort: does the actual sorting and returns the results back to sortAtom
@@ -181,7 +181,7 @@
var/Li=1
var/Ri=1
var/list/result = new()
- while(Li <= L.len && Ri <= R.len)
+ while(Li <= length(L) && Ri <= length(R))
var/client/rL = L[Li]
var/client/rR = R[Ri]
if(sorttext(rL.ckey, rR.ckey) == order)
@@ -189,20 +189,20 @@
else
result += R[Ri++]
- if(Li <= L.len)
+ if(Li <= length(L))
return (result + L.Copy(Li, 0))
return (result + R.Copy(Ri, 0))
// Quicksort implementation
/proc/sortAtom(list/atom/L, order = 1)
- if(isnull(L) || L.len < 2)
+ if(isnull(L) || length(L) < 2)
return L
var/startIndex = 1
var/list/atom/M = new/list()
for(var/atom/mob in L)
if(istype(mob))
M.Add(mob)
- var/endIndex = M.len - 1
+ var/endIndex = length(M) - 1
var/top = 0
var/list/stack[endIndex*2]
stack[++top] = startIndex
@@ -241,9 +241,9 @@
/proc/sortRecord(list/datum/data/record/L, field = "name", order = 1)
if(isnull(L))
return list()
- if(L.len < 2)
+ if(length(L) < 2)
return L
- var/middle = L.len / 2 + 1
+ var/middle = length(L) / 2 + 1
return mergeRecordLists(sortRecord(L.Copy(0, middle), field, order), sortRecord(L.Copy(middle), field, order), field, order)
//Mergsort: does the actual sorting and returns the results back to sortRecord
@@ -252,7 +252,7 @@
var/Ri=1
var/list/result = new()
if(!isnull(L) && !isnull(R))
- while(Li <= L.len && Ri <= R.len)
+ while(Li <= length(L) && Ri <= length(R))
var/datum/data/record/rL = L[Li]
if(isnull(rL))
L -= rL
@@ -266,7 +266,7 @@
else
result += R[Ri++]
- if(Li <= L.len)
+ if(Li <= length(L))
return (result + L.Copy(Li, 0))
return (result + R.Copy(Ri, 0))
@@ -285,9 +285,9 @@
RETURN_TYPE(/list)
if(!istype(L))
return
- if(L.len < 2)
+ if(length(L) < 2)
return L
- var/middle = L.len / 2 + 1 // Copy is first,second-1
+ var/middle = length(L) / 2 + 1 // Copy is first,second-1
return mergeLists(sortList(L.Copy(0,middle)), sortList(L.Copy(middle))) //second parameter null = to end of list
//Mergsorge: uses sortList() but uses the var's name specifically. This should probably be using mergeAtom() instead
@@ -301,13 +301,13 @@
var/Li=1
var/Ri=1
var/list/result = new()
- while(Li <= L.len && Ri <= R.len)
+ while(Li <= length(L) && Ri <= length(R))
if(sorttext(L[Li], R[Ri]) < 1)
result += R[Ri++]
else
result += L[Li++]
- if(Li <= L.len)
+ if(Li <= length(L))
return (result + L.Copy(Li, 0))
return (result + R.Copy(Ri, 0))
@@ -322,68 +322,68 @@
// List of lists, sorts by element[key] - for things like crew monitoring computer sorting records by name.
/proc/sortByKey(list/L, key)
- if(L.len < 2)
+ if(length(L) < 2)
return L
- var/middle = L.len / 2 + 1
+ var/middle = length(L) / 2 + 1
return mergeKeyedLists(sortByKey(L.Copy(0, middle), key), sortByKey(L.Copy(middle), key), key)
/proc/mergeKeyedLists(list/L, list/R, key)
var/Li=1
var/Ri=1
var/list/result = new()
- while(Li <= L.len && Ri <= R.len)
+ while(Li <= length(L) && Ri <= length(R))
if(sorttext(L[Li][key], R[Ri][key]) < 1)
// Works around list += list2 merging lists; it's not pretty but it works
result += "temp item"
- result[result.len] = R[Ri++]
+ result[length(result)] = R[Ri++]
else
result += "temp item"
- result[result.len] = L[Li++]
+ result[length(result)] = L[Li++]
- if(Li <= L.len)
+ if(Li <= length(L))
return (result + L.Copy(Li, 0))
return (result + R.Copy(Ri, 0))
//Mergesort: any value in a list, preserves key=value structure
/proc/sortAssoc(list/L)
- if(L.len < 2)
+ if(length(L) < 2)
return L
- var/middle = L.len / 2 + 1 // Copy is first,second-1
+ var/middle = length(L) / 2 + 1 // Copy is first,second-1
return mergeAssoc(sortAssoc(L.Copy(0,middle)), sortAssoc(L.Copy(middle))) //second parameter null = to end of list
/proc/mergeAssoc(list/L, list/R)
var/Li=1
var/Ri=1
var/list/result = new()
- while(Li <= L.len && Ri <= R.len)
+ while(Li <= length(L) && Ri <= length(R))
if(sorttext(L[Li], R[Ri]) < 1)
result += R&R[Ri++]
else
result += L&L[Li++]
- if(Li <= L.len)
+ if(Li <= length(L))
return (result + L.Copy(Li, 0))
return (result + R.Copy(Ri, 0))
// Same as sortAssoc but rather than creating a whole new list keeps the original list ref and just returns that list modified
/proc/sortAssocKeepList(list/L)
- if(L.len < 2)
+ if(length(L) < 2)
return L
- var/middle = L.len / 2 + 1 // Copy is first,second-1
+ var/middle = length(L) / 2 + 1 // Copy is first,second-1
return mergeAssocKeepList(sortAssoc(L.Copy(0,middle)), sortAssoc(L.Copy(middle)), L) //second parameter null = to end of list
/proc/mergeAssocKeepList(list/L, list/R, list/original)
var/Li=1
var/Ri=1
var/list/result = new()
- while(Li <= L.len && Ri <= R.len)
+ while(Li <= length(L) && Ri <= length(R))
if(sorttext(L[Li], R[Ri]) < 1)
result += R&R[Ri++]
else
result += L&L[Li++]
- if(Li <= L.len)
+ if(Li <= length(L))
result += L.Copy(Li, 0)
else
result += R.Copy(Ri, 0)
@@ -408,7 +408,7 @@
/proc/bitfield2list(bitfield = 0, list/wordlist)
var/list/r = list()
if(islist(wordlist))
- var/max = min(wordlist.len,16)
+ var/max = min(length(wordlist),16)
var/bit = 1
for(var/i=1, i<=max, i++)
if(bitfield & bit)
@@ -430,9 +430,9 @@
//Move a single element from position fromIndex within a list, to position toIndex
//All elements in the range [1,toIndex) before the move will be before the pivot afterwards
-//All elements in the range [toIndex, L.len+1) before the move will be after the pivot afterwards
+//All elements in the range [toIndex, length(L)+1) before the move will be after the pivot afterwards
//In other words, it's as if the range [fromIndex,toIndex) have been rotated using a <<< operation common to other languages.
-//fromIndex and toIndex must be in the range [1,L.len+1]
+//fromIndex and toIndex must be in the range [1,length(L)+1]
//This will preserve associations ~Carnie
/proc/moveElement(list/L, fromIndex, toIndex)
if(fromIndex == toIndex || fromIndex+1 == toIndex) //no need to move
@@ -493,13 +493,13 @@
//replaces reverseList ~Carnie
/proc/reverseRange(list/L, start=1, end=0)
- if(L.len)
- start = start % L.len
- end = end % (L.len+1)
+ if(length(L))
+ start = start % length(L)
+ end = end % (length(L)+1)
if(start <= 0)
- start += L.len
+ start += length(L)
if(end <= 0)
- end += L.len + 1
+ end += length(L) + 1
--end
while(start < end)
@@ -518,13 +518,13 @@
///replaces reverseList ~Carnie
/proc/reverse_range(list/inserted_list, start = 1, end = 0)
- if(inserted_list.len)
- start = start % inserted_list.len
- end = end % (inserted_list.len + 1)
+ if(length(inserted_list))
+ start = start % length(inserted_list)
+ end = end % (length(inserted_list) + 1)
if(start <= 0)
- start += inserted_list.len
+ start += length(inserted_list)
if(end <= 0)
- end += inserted_list.len + 1
+ end += length(inserted_list) + 1
--end
while(start < end)
@@ -574,7 +574,7 @@
var/list/found = list()
for(var/atom/A in contents)
found += A
- if(A.contents.len)
+ if(length(A.contents))
found += A.contents_recursive()
return found
@@ -582,7 +582,7 @@
var/list/found = list()
for(var/atom/A in contents)
found += A
- if(A.contents.len)
+ if(length(A.contents))
found += A.contents
return found
@@ -594,15 +594,15 @@
if(!sort)
return L
- if(L.len <= 1)
+ if(length(L) <= 1)
return L
- var/middle = floor(L.len / 2)
+ var/middle = floor(length(L) / 2)
var/list/left = custom_mergesort(L.Copy(1, middle + 1))
var/list/right = custom_mergesort(L.Copy(middle + 1))
var/list/result = list()
- while(left.len > 0 && right.len > 0)
+ while(length(left) > 0 && length(right) > 0)
var/a = left[1]
var/b = right[1]
@@ -613,11 +613,11 @@
result += b
right.Cut(1,2)
- while(left.len > 0)
+ while(length(left) > 0)
result += left[1]
left.Cut(1,2)
- while(right.len > 0)
+ while(length(right) > 0)
result += right[1]
right.Cut(1,2)
diff --git a/code/__HELPERS/logging.dm b/code/__HELPERS/logging.dm
index 1e72f51a8d60..7075b4084fd4 100644
--- a/code/__HELPERS/logging.dm
+++ b/code/__HELPERS/logging.dm
@@ -90,9 +90,10 @@ GLOBAL_VAR_INIT(log_end, world.system_type == UNIX ? ascii2text(13) : "")
GLOB.STUI?.debug.Add("\[[time]]DEBUG: [text]")
GLOB.STUI?.processing |= STUI_LOG_DEBUG
- for(var/client/C in GLOB.admins)
- if(C.prefs.toggles_chat & CHAT_DEBUGLOGS)
- to_chat(C, "DEBUG: [text]", type = MESSAGE_TYPE_DEBUG)
+ for(var/client/client in GLOB.admins)
+ if(CLIENT_IS_STAFF(client))
+ if(client.prefs.toggles_chat & CHAT_DEBUGLOGS)
+ to_chat(client, "DEBUG: [text]", type = MESSAGE_TYPE_DEBUG)
/proc/log_game(text)
diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm
index b5bf7a02d026..1d123b3a8e00 100644
--- a/code/__HELPERS/mobs.dm
+++ b/code/__HELPERS/mobs.dm
@@ -26,7 +26,7 @@
continue
valid_hairstyles[hairstyle] = GLOB.hair_styles_list[hairstyle]
- if(valid_hairstyles.len)
+ if(length(valid_hairstyles))
h_style = pick(valid_hairstyles)
return h_style
@@ -48,7 +48,7 @@
continue
valid_facialhairstyles[facialhairstyle] = GLOB.facial_hair_styles_list[facialhairstyle]
- if(valid_facialhairstyles.len)
+ if(length(valid_facialhairstyles))
f_style = pick(valid_facialhairstyles)
return f_style
diff --git a/code/__HELPERS/sanitize_values.dm b/code/__HELPERS/sanitize_values.dm
index eddb326568c0..291246e621a0 100644
--- a/code/__HELPERS/sanitize_values.dm
+++ b/code/__HELPERS/sanitize_values.dm
@@ -20,7 +20,7 @@
/proc/sanitize_inlist(value, list/List, default)
if(value in List) return value
if(default) return default
- if(List && List.len)return List[1]
+ if(LAZYLEN(List))return List[1]
/proc/sanitize_list(list/List, list/filter = list(null), default = list())
if(!islist(List))
diff --git a/code/__HELPERS/shell.dm b/code/__HELPERS/shell.dm
index 35a8e4635b41..a165a7981fe8 100644
--- a/code/__HELPERS/shell.dm
+++ b/code/__HELPERS/shell.dm
@@ -20,7 +20,7 @@
shelleo_id = "[seo_id]"
break
if(!shelleo_id)
- shelleo_id = "[shelleo_ids.len + 1]"
+ shelleo_id = "[length(shelleo_ids) + 1]"
shelleo_ids += shelleo_id
shelleo_ids[shelleo_id] = TRUE
out_file = "[SHELLEO_NAME][shelleo_id][SHELLEO_OUT]"
diff --git a/code/__HELPERS/sorts/TimSort.dm b/code/__HELPERS/sorts/TimSort.dm
index ae83bd9b0682..89a93802edee 100644
--- a/code/__HELPERS/sorts/TimSort.dm
+++ b/code/__HELPERS/sorts/TimSort.dm
@@ -1,12 +1,12 @@
//TimSort interface
/proc/sortTim(list/L, cmp=/proc/cmp_numeric_asc, associative, fromIndex=1, toIndex=0)
- if(L && L.len >= 2)
- fromIndex = fromIndex % L.len
- toIndex = toIndex % (L.len+1)
+ if(length(L) >= 2)
+ fromIndex = fromIndex % length(L)
+ toIndex = toIndex % (length(L)+1)
if(fromIndex <= 0)
- fromIndex += L.len
+ fromIndex += length(L)
if(toIndex <= 0)
- toIndex += L.len + 1
+ toIndex += length(L) + 1
var/datum/sortInstance/sort_instance = GLOB.sortInstance
if(!sort_instance)
diff --git a/code/__HELPERS/sorts/_Main.dm b/code/__HELPERS/sorts/_Main.dm
index 7fe3adf02870..4caf2c4c068e 100644
--- a/code/__HELPERS/sorts/_Main.dm
+++ b/code/__HELPERS/sorts/_Main.dm
@@ -76,7 +76,7 @@ GLOBAL_DATUM_INIT(sortInstance, /datum/sortInstance, new())
//Merge all remaining runs to complete sort
//ASSERT(start == end)
mergeForceCollapse();
- //ASSERT(runBases.len == 1)
+ //ASSERT(length(runBases) == 1)
//reset minGallop, for successive calls
minGallop = MIN_GALLOP
@@ -178,8 +178,8 @@ GLOBAL_DATUM_INIT(sortInstance, /datum/sortInstance, new())
//This method is called each time a new run is pushed onto the stack.
//So the invariants are guaranteed to hold for i= 2)
- var/n = runBases.len - 1
+ while(length(runBases) >= 2)
+ var/n = length(runBases) - 1
if(n > 1 && runLens[n-1] <= runLens[n] + runLens[n+1])
if(runLens[n-1] < runLens[n+1])
--n
@@ -193,8 +193,8 @@ GLOBAL_DATUM_INIT(sortInstance, /datum/sortInstance, new())
//Merges all runs on the stack until only one remains.
//Called only once, to finalise the sort
/datum/sortInstance/proc/mergeForceCollapse()
- while(runBases.len >= 2)
- var/n = runBases.len - 1
+ while(length(runBases) >= 2)
+ var/n = length(runBases) - 1
if(n > 1 && runLens[n-1] < runLens[n+1])
--n
mergeAt(n)
@@ -204,9 +204,9 @@ GLOBAL_DATUM_INIT(sortInstance, /datum/sortInstance, new())
//Run i must be the penultimate or antepenultimate run on the stack
//In other words, i must be equal to stackSize-2 or stackSize-3
/datum/sortInstance/proc/mergeAt(i)
- //ASSERT(runBases.len >= 2)
+ //ASSERT(length(runBases) >= 2)
//ASSERT(i >= 1)
- //ASSERT(i == runBases.len - 1 || i == runBases.len - 2)
+ //ASSERT(i == length(runBases) - 1 || i == length(runBases) - 2)
var/base1 = runBases[i]
var/base2 = runBases[i+1]
@@ -596,8 +596,8 @@ GLOBAL_DATUM_INIT(sortInstance, /datum/sortInstance, new())
while(remaining > 0)
- while(runBases.len >= 2)
- var/n = runBases.len - 1
+ while(length(runBases) >= 2)
+ var/n = length(runBases) - 1
if(n > 1 && runLens[n-1] <= runLens[n] + runLens[n+1])
if(runLens[n-1] < runLens[n+1])
--n
@@ -607,8 +607,8 @@ GLOBAL_DATUM_INIT(sortInstance, /datum/sortInstance, new())
else
break //Invariant is established
- while(runBases.len >= 2)
- var/n = runBases.len - 1
+ while(length(runBases) >= 2)
+ var/n = length(runBases) - 1
if(n > 1 && runLens[n-1] < runLens[n+1])
--n
mergeAt2(n)
diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm
index 5b9154eac655..d8eebf79bca6 100644
--- a/code/__HELPERS/unsorted.dm
+++ b/code/__HELPERS/unsorted.dm
@@ -534,7 +534,7 @@
/atom/proc/GetAllContents(searchDepth = 5, list/toReturn = list())
for(var/atom/part as anything in contents)
toReturn += part
- if(part.contents.len && searchDepth)
+ if(length(part.contents) && searchDepth)
part.GetAllContents(searchDepth - 1, toReturn)
return toReturn
@@ -555,7 +555,7 @@
if(part.loc != src) // That's a multitile atom, and it's not actually here stricto sensu
continue
toReturn += part
- if(part.contents.len && searchDepth)
+ if(length(part.contents) && searchDepth)
part.GetAllContents(searchDepth - 1, toReturn)
return toReturn
@@ -1082,7 +1082,7 @@ GLOBAL_DATUM(action_purple_power_up, /image)
var/list/doors = new/list()
- if(toupdate.len)
+ if(length(toupdate))
for(var/turf/T1 in toupdate)
for(var/obj/structure/machinery/door/D2 in T1)
doors += D2
@@ -1091,7 +1091,7 @@ GLOBAL_DATUM(action_purple_power_up, /image)
else
air_master.tiles_to_update += T1*/
- if(fromupdate.len)
+ if(length(fromupdate))
for(var/turf/T2 in fromupdate)
for(var/obj/structure/machinery/door/D2 in T2)
doors += D2
@@ -1287,7 +1287,7 @@ GLOBAL_LIST_INIT(WALLITEMS, list(
for(var/turf/T in orange(origin, outer_range))
if(!inner_range || get_dist(origin, T) >= inner_range)
turfs += T
- if(turfs.len)
+ if(length(turfs))
return pick(turfs)
// Returns true if arming a given explosive might be considered grief
@@ -1531,7 +1531,7 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new)
return GetAllContents()
var/list/processing = list(src)
var/list/assembled = list()
- while(processing.len)
+ while(length(processing))
var/atom/A = processing[1]
processing.Cut(1,2)
if(!ignore_typecache[A.type])
diff --git a/code/__pragmas.dm b/code/__pragmas.dm
index 39c14e1bbc95..309883fbda20 100644
--- a/code/__pragmas.dm
+++ b/code/__pragmas.dm
@@ -12,7 +12,6 @@
#pragma SoftReservedKeyword error
#pragma DuplicateVariable error
#pragma DuplicateProcDefinition error
-#pragma TooManyArguments error
#pragma PointlessParentCall error
#pragma PointlessBuiltinCall error
#pragma SuspiciousMatrixCall error
@@ -22,6 +21,7 @@
#pragma InvalidOverride error
#pragma DanglingVarType error
#pragma MissingInterpolatedExpression error
+#pragma InvalidIndexOperation error
//3000-3999
#pragma EmptyBlock error
diff --git a/code/_globalvars/global_lists.dm b/code/_globalvars/global_lists.dm
index e663bc287946..c6957eefd22c 100644
--- a/code/_globalvars/global_lists.dm
+++ b/code/_globalvars/global_lists.dm
@@ -119,6 +119,34 @@ GLOBAL_LIST(chemical_reactions_filtered_list) //List of all /datum/chemical_reac
GLOBAL_LIST(chemical_reactions_list) //List of all /datum/chemical_reaction datums indexed by reaction id. Used to search for the result instead of the components.
GLOBAL_LIST(chemical_reagents_list) //List of all /datum/reagent datums indexed by reagent id. Used by chemistry stuff
GLOBAL_LIST(chemical_properties_list) //List of all /datum/chem_property datums indexed by property name
+//list of all properties that conflict with each other.
+GLOBAL_LIST_INIT_TYPED(conflicting_properties, /list, list( PROPERTY_NUTRITIOUS = PROPERTY_HEMORRAGING, PROPERTY_NUTRITIOUS = PROPERTY_HEMOLYTIC, PROPERTY_TOXIC = PROPERTY_ANTITOXIC,\
+ PROPERTY_CORROSIVE = PROPERTY_ANTICORROSIVE, PROPERTY_BIOCIDIC = PROPERTY_NEOGENETIC, PROPERTY_HYPERTHERMIC = PROPERTY_HYPOTHERMIC,\
+ PROPERTY_NUTRITIOUS = PROPERTY_KETOGENIC, PROPERTY_PAINING = PROPERTY_PAINKILLING, PROPERTY_HALLUCINOGENIC = PROPERTY_ANTIHALLUCINOGENIC,\
+ PROPERTY_HEPATOTOXIC = PROPERTY_HEPATOPEUTIC, PROPERTY_NEPHROTOXIC = PROPERTY_NEPHROPEUTIC, PROPERTY_PNEUMOTOXIC = PROPERTY_PNEUMOPEUTIC,\
+ PROPERTY_OCULOTOXIC = PROPERTY_OCULOPEUTIC, PROPERTY_CARDIOTOXIC = PROPERTY_CARDIOPEUTIC, PROPERTY_NEUROTOXIC = PROPERTY_NEUROPEUTIC,\
+ PROPERTY_FLUXING = PROPERTY_REPAIRING, PROPERTY_RELAXING = PROPERTY_MUSCLESTIMULATING, PROPERTY_HEMOGENIC = PROPERTY_HEMOLYTIC,\
+ PROPERTY_HEMOGENIC = PROPERTY_HEMORRAGING, PROPERTY_NUTRITIOUS = PROPERTY_EMETIC,\
+ PROPERTY_HYPERGENETIC = PROPERTY_NEOGENETIC, PROPERTY_HYPERGENETIC = PROPERTY_HEPATOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_NEPHROPEUTIC,\
+ PROPERTY_HYPERGENETIC = PROPERTY_PNEUMOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_OCULOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_CARDIOPEUTIC,\
+ PROPERTY_HYPERGENETIC = PROPERTY_NEUROPEUTIC, PROPERTY_ADDICTIVE = PROPERTY_ANTIADDICTIVE, PROPERTY_NEUROSHIELDING = PROPERTY_NEUROTOXIC,\
+ PROPERTY_HYPOMETABOLIC = PROPERTY_HYPERMETABOLIC, PROPERTY_HYPERTHROTTLING = PROPERTY_NEUROINHIBITING,
+ PROPERTY_FOCUSING = PROPERTY_NERVESTIMULATING, PROPERTY_THERMOSTABILIZING = PROPERTY_HYPERTHERMIC, PROPERTY_THERMOSTABILIZING = PROPERTY_HYPOTHERMIC,
+ PROPERTY_AIDING = PROPERTY_NEUROINHIBITING, PROPERTY_OXYGENATING = PROPERTY_HYPOXEMIC, PROPERTY_ANTICARCINOGENIC = PROPERTY_CARCINOGENIC, \
+ PROPERTY_CIPHERING = PROPERTY_CIPHERING_PREDATOR, PROPERTY_TRANSFORMATIVE = PROPERTY_ANTITOXIC, PROPERTY_MUSCLESTIMULATING = PROPERTY_NERVESTIMULATING))
+//list of all properties that combine into something else, now featured in global list
+GLOBAL_LIST_INIT_TYPED(combining_properties, /list, list( PROPERTY_DEFIBRILLATING = list(PROPERTY_MUSCLESTIMULATING, PROPERTY_CARDIOPEUTIC),\
+ PROPERTY_THANATOMETABOL = list(PROPERTY_HYPOXEMIC, PROPERTY_CRYOMETABOLIZING, PROPERTY_NEUROCRYOGENIC),\
+ PROPERTY_HYPERDENSIFICATING = list(PROPERTY_MUSCLESTIMULATING, PROPERTY_BONEMENDING, PROPERTY_CARCINOGENIC),\
+ PROPERTY_HYPERTHROTTLING = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_HALLUCINOGENIC),\
+ PROPERTY_NEUROSHIELDING = list(PROPERTY_ALCOHOLIC, PROPERTY_BALDING),\
+ PROPERTY_ANTIADDICTIVE = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_ANTIHALLUCINOGENIC),\
+ PROPERTY_ADDICTIVE = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_NEUROTOXIC),\
+ PROPERTY_CIPHERING_PREDATOR = list(PROPERTY_CIPHERING, PROPERTY_CROSSMETABOLIZING),\
+ PROPERTY_FIRE_PENETRATING = list(PROPERTY_OXYGENATING, PROPERTY_VISCOUS),\
+ PROPERTY_BONEMENDING = list(PROPERTY_HYPERDENSIFICATING, PROPERTY_NUTRITIOUS),\
+ PROPERTY_BONEMENDING = list(PROPERTY_HYPERDENSIFICATING, PROPERTY_NUTRITIOUS),\
+ PROPERTY_ENCEPHALOPHRASIVE = list(PROPERTY_NERVESTIMULATING, PROPERTY_PSYCHOSTIMULATING)))
//List of all id's from classed /datum/reagent datums indexed by class or tier. Used by chemistry generator and chem spawners.
GLOBAL_LIST_INIT_TYPED(chemical_gen_classes_list, /list, list("C" = list(),"C1" = list(),"C2" = list(),"C3" = list(),"C4" = list(),"C5" = list(),"C6" = list(),"T1" = list(),"T2" = list(),"T3" = list(),"T4" = list(),"tau", list()))
//properties generated in chemicals, helps to make sure the same property doesn't show up 10 times
@@ -303,7 +331,7 @@ GLOBAL_LIST_INIT(hj_emotes, setup_hazard_joe_emotes())
/proc/number_list_decode(number_list_data)
var/list/L = params2list(number_list_data)
- for(var/i in 1 to L.len)
+ for(var/i in 1 to length(L))
L[i] = text2num(L[i])
return L
diff --git a/code/_globalvars/lists/client.dm b/code/_globalvars/lists/client.dm
index 78f3a20da424..404e8a662e80 100644
--- a/code/_globalvars/lists/client.dm
+++ b/code/_globalvars/lists/client.dm
@@ -6,20 +6,42 @@ GLOBAL_LIST_EMPTY(keybindings_by_name)
// This is a mapping from JS keys to Byond - ref: https://keycode.info/
GLOBAL_LIST_INIT(_kbMap, list(
"UP" = "North",
+ "ARROWUP" = "North",
"RIGHT" = "East",
+ "ARROWRIGHT" = "East",
"DOWN" = "South",
+ "ARROWDOWN" = "South",
"LEFT" = "West",
+ "ARROWLEFT" = "West",
"INSERT" = "Insert",
"HOME" = "Northwest",
"PAGEUP" = "Northeast",
- "DEL" = "Delete",
+ "DEL" = "Delete", // Unlikely this is correct now
+ "DELETE" = "Delete",
"END" = "Southwest",
"PAGEDOWN" = "Southeast",
"SPACEBAR" = "Space",
"ENTER" = "Return",
"ALT" = "Alt",
"SHIFT" = "Shift",
- "CONTROL" = "Ctrl"
+ "CONTROL" = "Ctrl",
+ "MULTIPLY" = "Multiply",
+ "DIVIDE" = "Divide",
+ "SUBTRACT" = "Subtract",
+ "ADD" = "Add",
+ "DECIMAL" = "Decimal",
+ "CLEAR" = "Center",
+ "PAUSE" = "Pause",
+ "CONTEXTMENU" = "Apps",
+ "NUMLOCK" = "Numlock",
+ "SCROLLLOCK" = "Scroll",
+ "MEDIANEXTTRACK" = "MediaNext",
+ "MEDIAPLAYPAUSE" = "MediaPlayPause",
+ "MEDIASTOP" = "MediaStop",
+ "MEDIAPREVIOUSTRACK" = "MediaPrev",
+ "VOLUMEMUTE" = "VolumeMute",
+ "VOLUMEUP" = "VolumeUp",
+ "VOLUMEDOWN" = "VolumeDown",
))
///List of ckeys that have seen a blurb of a given key.
diff --git a/code/_macros.dm b/code/_macros.dm
index 075d098e3d50..9b92dc8730c3 100644
--- a/code/_macros.dm
+++ b/code/_macros.dm
@@ -74,7 +74,7 @@
lazy_list[key] |= value;
// Insert an object A into a sorted list using cmp_proc (/code/_helpers/cmp.dm) for comparison.
-#define ADD_SORTED(list, A, cmp_proc) if(!list.len) {list.Add(A)} else {list.Insert(FindElementIndex(A, list, cmp_proc), A)}
+#define ADD_SORTED(list, A, cmp_proc) if(!length(list)) {list.Add(A)} else {list.Insert(FindElementIndex(A, list, cmp_proc), A)}
//Currently used in SDQL2 stuff
#define send_output(target, msg, control) target << output(msg, control)
@@ -95,6 +95,9 @@
#define GENERATE_DEBUG_ID "[rand(0, 9)][rand(0, 9)][rand(0, 9)][rand(0, 9)][pick(alphabet_lowercase)][pick(alphabet_lowercase)][pick(alphabet_lowercase)][pick(alphabet_lowercase)]"
#define RECT new /datum/shape/rectangle
+#define SQUARE new /datum/shape/rectangle/square
+#define ELLIPSE new /datum/shape/ellipse
+#define CIRCLE new /datum/shape/ellipse/circle
#define QTREE new /datum/quadtree
#define SEARCH_QTREE(qtree, shape_range, flags) qtree.query_range(shape_range, null, flags)
diff --git a/code/_onclick/adjacent.dm b/code/_onclick/adjacent.dm
index 678c5373fe67..af0882d6a9df 100644
--- a/code/_onclick/adjacent.dm
+++ b/code/_onclick/adjacent.dm
@@ -262,10 +262,10 @@ Quick adjacency (to turf):
// Make sure pass flags are removed
A.remove_temp_pass_flags(pass_flags)
- if ((fd1 && !blockers["fd1"].len) || (fd2 && !blockers["fd2"].len)) // This means that for a given direction it did not have a blocker
+ if ((fd1 && !length(blockers["fd1"])) || (fd2 && !length(blockers["fd2"]))) // This means that for a given direction it did not have a blocker
return src
- if (blockers["fd1"].len || blockers["fd2"].len)
+ if (length(blockers["fd1"]) || length(blockers["fd2"]))
var/guaranteed_hit = 0 // indicates whether there is a guaranteed hit (aka there is not chance to bypass blocker). 0 = nothing
var/list/cur_dense_blockers = list()
for (var/atom/blocker in blockers["fd1"])
diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm
index 57c529c7a156..a5d07ec060cb 100644
--- a/code/_onclick/click.dm
+++ b/code/_onclick/click.dm
@@ -199,7 +199,7 @@
if (mods["alt"])
var/turf/T = get_turf(src)
- if(T && user.TurfAdjacent(T) && T.contents.len)
+ if(T && user.TurfAdjacent(T) && length(T.contents))
user.set_listed_turf(T)
return TRUE
diff --git a/code/_onclick/click_hold.dm b/code/_onclick/click_hold.dm
index 41e2be147d85..1d6c25619e5e 100644
--- a/code/_onclick/click_hold.dm
+++ b/code/_onclick/click_hold.dm
@@ -88,7 +88,7 @@
if(mods["left"])
SEND_SIGNAL(src, COMSIG_CLIENT_LMB_DRAG, src_obj, over_obj, params)
- var/atom/last_atom = LAZYACCESS(mouse_trace_history, mouse_trace_history.len)
+ var/atom/last_atom = LAZYACCESS(mouse_trace_history, length(mouse_trace_history))
if(over_obj == last_atom)
return
diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm
index 7277c74b2fd3..2d49abb52012 100644
--- a/code/_onclick/hud/hud.dm
+++ b/code/_onclick/hud/hud.dm
@@ -91,19 +91,19 @@
/datum/hud/Destroy()
if(mymob.hud_used == src)
mymob.hud_used = null
- if(static_inventory.len)
+ if(length(static_inventory))
for(var/thing in static_inventory)
qdel(thing)
static_inventory.Cut()
- if(toggleable_inventory.len)
+ if(length(toggleable_inventory))
for(var/thing in toggleable_inventory)
qdel(thing)
toggleable_inventory.Cut()
- if(hotkeybuttons.len)
+ if(length(hotkeybuttons))
for(var/thing in hotkeybuttons)
qdel(thing)
hotkeybuttons.Cut()
- if(infodisplay.len)
+ if(length(infodisplay))
for(var/thing in infodisplay)
qdel(thing)
infodisplay.Cut()
@@ -188,24 +188,24 @@
switch(display_hud_version)
if(HUD_STYLE_STANDARD) //Default HUD
hud_shown = 1 //Governs behavior of other procs
- if(static_inventory.len)
+ if(length(static_inventory))
screenmob.client.add_to_screen(static_inventory)
- if(toggleable_inventory.len && inventory_shown)
+ if(length(toggleable_inventory) && inventory_shown)
screenmob.client.add_to_screen(toggleable_inventory)
- if(hotkeybuttons.len && !hotkey_ui_hidden)
+ if(length(hotkeybuttons) && !hotkey_ui_hidden)
screenmob.client.add_to_screen(hotkeybuttons)
- if(infodisplay.len)
+ if(length(infodisplay))
screenmob.client.add_to_screen(infodisplay)
if(HUD_STYLE_REDUCED) //Reduced HUD
hud_shown = 0 //Governs behavior of other procs
- if(static_inventory.len)
+ if(length(static_inventory))
screenmob.client.remove_from_screen(static_inventory)
- if(toggleable_inventory.len)
+ if(length(toggleable_inventory))
screenmob.client.remove_from_screen(toggleable_inventory)
- if(hotkeybuttons.len)
+ if(length(hotkeybuttons))
screenmob.client.remove_from_screen(hotkeybuttons)
- if(infodisplay.len)
+ if(length(infodisplay))
screenmob.client.add_to_screen(infodisplay)
//These ones are a part of 'static_inventory', 'toggleable_inventory' or 'hotkeybuttons' but we want them to stay
@@ -218,13 +218,13 @@
if(HUD_STYLE_NOHUD) //No HUD
hud_shown = 0 //Governs behavior of other procs
- if(static_inventory.len)
+ if(length(static_inventory))
screenmob.client.remove_from_screen(static_inventory)
- if(toggleable_inventory.len)
+ if(length(toggleable_inventory))
screenmob.client.remove_from_screen(toggleable_inventory)
- if(hotkeybuttons.len)
+ if(length(hotkeybuttons))
screenmob.client.remove_from_screen(hotkeybuttons)
- if(infodisplay.len)
+ if(length(infodisplay))
screenmob.client.remove_from_screen(infodisplay)
hud_version = display_hud_version
diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm
index b8b55b42c028..bbdfaa25b92f 100644
--- a/code/_onclick/hud/human.dm
+++ b/code/_onclick/hud/human.dm
@@ -120,7 +120,7 @@
if(!screenmob?.client)
return
- if(!gear.len)
+ if(!length(gear))
inventory_shown = FALSE
return //species without inv slots don't show items.
diff --git a/code/_onclick/hud/radial.dm b/code/_onclick/hud/radial.dm
index 2886b2edb0ee..244e79e583f6 100644
--- a/code/_onclick/hud/radial.dm
+++ b/code/_onclick/hud/radial.dm
@@ -143,9 +143,9 @@ GLOBAL_LIST_EMPTY(radial_menus)
zone = 360 - starting_angle + ending_angle
max_elements = floor(zone / min_angle)
- var/paged = max_elements < choices.len
- if(elements.len < max_elements)
- var/elements_to_add = max_elements - elements.len
+ var/paged = max_elements < length(choices)
+ if(length(elements) < max_elements)
+ var/elements_to_add = max_elements - length(elements)
for(var/i in 1 to elements_to_add) //Create all elements
var/atom/movable/screen/radial/slice/new_element = new /atom/movable/screen/radial/slice
new_element.tooltips = use_tooltips
@@ -246,7 +246,7 @@ GLOBAL_LIST_EMPTY(radial_menus)
selected_choice = choices_values[choice_id]
/datum/radial_menu/proc/get_next_id()
- return "c_[choices.len]"
+ return "c_[length(choices)]"
/datum/radial_menu/proc/set_choices(list/new_choices, use_tooltips, use_labels)
if(length(choices))
diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm
index 8508352bb338..a8162911804b 100644
--- a/code/_onclick/hud/screen_objects.dm
+++ b/code/_onclick/hud/screen_objects.dm
@@ -119,7 +119,7 @@
layer = HUD_LAYER
/atom/movable/screen/storage/proc/update_fullness(obj/item/storage/master_storage)
- if(!master_storage.contents.len)
+ if(!length(master_storage.contents))
color = null
else
var/total_w = 0
@@ -131,7 +131,7 @@
if (master_storage.storage_slots == null)
fullness = floor(10*total_w/master_storage.max_storage_space)
else
- fullness = floor(10*master_storage.contents.len/master_storage.storage_slots)
+ fullness = floor(10*length(master_storage.contents)/master_storage.storage_slots)
switch(fullness)
if(10)
color = "#ff0000"
diff --git a/code/_onclick/item_attack.dm b/code/_onclick/item_attack.dm
index ffcab30234ae..1a3c279db8b3 100644
--- a/code/_onclick/item_attack.dm
+++ b/code/_onclick/item_attack.dm
@@ -90,7 +90,7 @@
power = floor(power * (1 + 0.25 * user.skills.get_skill_level(SKILL_MELEE_WEAPONS))) //25% bonus per melee level
if(!ishuman(M))
var/used_verb = "attacked"
- if(attack_verb && attack_verb.len)
+ if(LAZYLEN(attack_verb))
used_verb = pick(attack_verb)
user.visible_message(SPAN_DANGER("[M] has been [used_verb] with [src][showname]."), \
SPAN_DANGER("You [used_verb] [M == user ? "yourself":M] with [src]."), null, 5, CHAT_TYPE_MELEE_HIT)
diff --git a/code/_onclick/ventcrawl.dm b/code/_onclick/ventcrawl.dm
index e1877dcbd0a7..72fe31f35cdc 100644
--- a/code/_onclick/ventcrawl.dm
+++ b/code/_onclick/ventcrawl.dm
@@ -24,10 +24,10 @@
for(var/obj/structure/pipes/vents/V in range(1))
if(Adjacent(V) && !V.welded)
pipes |= V
- if(!pipes || !pipes.len)
+ if(!LAZYLEN(pipes))
to_chat(src, SPAN_WARNING("There are no pipes that we can ventcrawl into within range!"))
return
- if(pipes.len == 1)
+ if(length(pipes) == 1)
pipe = pipes[1]
else
pipe = tgui_input_list(usr, "Crawl Through Vent", "Pick a pipe", pipes)
diff --git a/code/_onclick/xeno.dm b/code/_onclick/xeno.dm
index 3bb69fe05419..15dc1c39f495 100644
--- a/code/_onclick/xeno.dm
+++ b/code/_onclick/xeno.dm
@@ -3,7 +3,7 @@
*/
/mob/living/carbon/xenomorph/UnarmedAttack(atom/target, proximity, click_parameters, tile_attack = FALSE, ignores_resin = FALSE)
- if(body_position == LYING_DOWN || HAS_TRAIT(src, TRAIT_ABILITY_BURROWED)) //No attacks while laying down
+ if(body_position == LYING_DOWN || HAS_TRAIT(src, TRAIT_ABILITY_BURROWED) || cannot_slash) //No attacks while laying down
return FALSE
var/mob/alt
diff --git a/code/controllers/configuration/config_entry.dm b/code/controllers/configuration/config_entry.dm
index 657e7470fc54..49dae4c2ff38 100644
--- a/code/controllers/configuration/config_entry.dm
+++ b/code/controllers/configuration/config_entry.dm
@@ -125,7 +125,7 @@
if(isnull(temp))
return FALSE
new_list += temp
- if(!new_list.len)
+ if(!length(new_list))
return FALSE
config_entry_value = new_list
return TRUE
diff --git a/code/controllers/configuration/configuration.dm b/code/controllers/configuration/configuration.dm
index 147f57fcb1aa..7207f878614a 100644
--- a/code/controllers/configuration/configuration.dm
+++ b/code/controllers/configuration/configuration.dm
@@ -329,7 +329,7 @@
continue
in_character_filter += REGEX_QUOTE(line)
- ic_filter_regex = in_character_filter.len ? regex("\\b([jointext(in_character_filter, "|")])\\b", "i") : null
+ ic_filter_regex = length(in_character_filter) ? regex("\\b([jointext(in_character_filter, "|")])\\b", "i") : null
//Message admins when you can.
/datum/controller/configuration/proc/DelayedMessageAdmins(text)
diff --git a/code/controllers/mc/failsafe.dm b/code/controllers/mc/failsafe.dm
index a352b84a8d27..f38b5da2cf76 100644
--- a/code/controllers/mc/failsafe.dm
+++ b/code/controllers/mc/failsafe.dm
@@ -155,7 +155,7 @@ GLOBAL_REAL(Failsafe, /datum/controller/failsafe)
if (. == 1) //We were able to create a new master
SSticker.Recover(); //Recover the ticket system so the Masters runlevel gets set
Master.Initialize(10, FALSE, TRUE) //Need to manually start the MC, normally world.new would do this
- to_chat(GLOB.admins, SPAN_ADMINNOTICE("MC successfully recreated after recovering all subsystems!"))
+ message_admins(SPAN_ADMINNOTICE("MC successfully recreated after recovering all subsystems!"))
else
message_admins(SPAN_BOLDANNOUNCE("Failed to create new MC!"))
@@ -169,7 +169,7 @@ GLOBAL_REAL(Failsafe, /datum/controller/failsafe)
if (. == 1) //We were able to create a new master
SSticker.Recover(); //Recover the ticket system so the Masters runlevel gets set
Master.Initialize(10, FALSE, TRUE) //Need to manually start the MC, normally world.new would do this
- to_chat(GLOB.admins, SPAN_ADMINNOTICE("MC successfully recreated after deleting and recreating all subsystems!"))
+ message_admins(SPAN_ADMINNOTICE("MC successfully recreated after deleting and recreating all subsystems!"))
else
message_admins(SPAN_BOLDANNOUNCE("Failed to create new MC!"))
diff --git a/code/controllers/mc/globals.dm b/code/controllers/mc/globals.dm
index 724f58010699..59b96c017d10 100644
--- a/code/controllers/mc/globals.dm
+++ b/code/controllers/mc/globals.dm
@@ -20,7 +20,7 @@ GLOBAL_REAL(GLOB, /datum/controller/global_vars)
QDEL_IN(exclude_these, 0) //signal logging isn't ready
- log_world("[vars.len - gvars_datum_in_built_vars.len] global variables")
+ log_world("[length(vars) - length(gvars_datum_in_built_vars)] global variables")
Initialize()
@@ -42,10 +42,10 @@ GLOBAL_REAL(GLOB, /datum/controller/global_vars)
gvars_datum_init_order = list()
gvars_datum_protected_varlist = list(NAMEOF(src, gvars_datum_protected_varlist) = TRUE)
var/list/global_procs = typesof(/datum/controller/global_vars/proc)
- var/expected_len = vars.len - gvars_datum_in_built_vars.len
- if(global_procs.len != expected_len)
- warning("Unable to detect all global initialization procs! Expected [expected_len] got [global_procs.len]!")
- if(global_procs.len)
+ var/expected_len = length(vars) - length(gvars_datum_in_built_vars)
+ if(length(global_procs) != expected_len)
+ warning("Unable to detect all global initialization procs! Expected [expected_len] got [length(global_procs)]!")
+ if(length(global_procs))
var/list/expected_global_procs = vars - gvars_datum_in_built_vars
for(var/I in global_procs)
expected_global_procs -= replacetext("[I]", "InitGlobal", "")
diff --git a/code/controllers/mc/master.dm b/code/controllers/mc/master.dm
index edfda35a1e75..740e29949418 100644
--- a/code/controllers/mc/master.dm
+++ b/code/controllers/mc/master.dm
@@ -194,7 +194,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
msg = "The [BadBoy.name] subsystem seems to be destabilizing the MC and will be put offline."
BadBoy.flags |= SS_NO_FIRE
if(msg)
- to_chat(GLOB.admins, SPAN_BOLDANNOUNCE("[msg]"))
+ message_admins(SPAN_BOLDANNOUNCE("[msg]"))
log_world(msg)
if (istype(Master.subsystems))
@@ -415,9 +415,9 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
var/ss_runlevels = SS.runlevels
var/added_to_any = FALSE
- for(var/I in 1 to GLOB.bitflags.len)
+ for(var/I in 1 to length(GLOB.bitflags))
if(ss_runlevels & GLOB.bitflags[I])
- while(runlevel_sorted_subsystems.len < I)
+ while(length(runlevel_sorted_subsystems) < I)
runlevel_sorted_subsystems += list(list())
runlevel_sorted_subsystems[I] += SS
added_to_any = TRUE
diff --git a/code/controllers/shuttle_controller.dm b/code/controllers/shuttle_controller.dm
index 35031cf7334f..fb0cb1ff7637 100644
--- a/code/controllers/shuttle_controller.dm
+++ b/code/controllers/shuttle_controller.dm
@@ -215,7 +215,7 @@
dock_controller_map[shuttle.docking_controller_tag] = shuttle
//search for the controllers, if we have one.
- if(dock_controller_map.len)
+ if(length(dock_controller_map))
for(var/obj/structure/machinery/embedded_controller/radio/C in GLOB.machines) //only radio controllers are supported at the moment
if (istype(C.program, /datum/computer/file/embedded_program/docking))
if(dock_controller_map[C.id_tag])
@@ -226,7 +226,7 @@
//sanity check
//NO SANITY
-// if (dock_controller_map.len || dock_controller_map_station.len || dock_controller_map_offsite.len)
+// if (length(dock_controller_map) || length(dock_controller_map_station) || length(dock_controller_map_offsite))
// var/dat = ""
// for (var/dock_tag in dock_controller_map + dock_controller_map_station + dock_controller_map_offsite)
// dat += "\"[dock_tag]\", "
diff --git a/code/controllers/subsystem/acid_pillar.dm b/code/controllers/subsystem/acid_pillar.dm
index aaa38834667f..70994e641503 100644
--- a/code/controllers/subsystem/acid_pillar.dm
+++ b/code/controllers/subsystem/acid_pillar.dm
@@ -11,8 +11,8 @@ SUBSYSTEM_DEF(acid_pillar)
if (!resumed)
currentrun = queuedrun.Copy()
- while (currentrun.len)
- var/hash = currentrun[currentrun.len]
+ while (length(currentrun))
+ var/hash = currentrun[length(currentrun)]
var/datum/acid_spray_info/data = currentrun[hash]
currentrun.len--
diff --git a/code/controllers/subsystem/atoms.dm b/code/controllers/subsystem/atoms.dm
index f0d5ee14363e..dbe2f1a39c6b 100644
--- a/code/controllers/subsystem/atoms.dm
+++ b/code/controllers/subsystem/atoms.dm
@@ -62,7 +62,7 @@ SUBSYSTEM_DEF(atoms)
processing_late_loaders = TRUE
- for(var/I = 1; I <= late_loaders.len; I++)
+ for(var/I = 1; I <= length(late_loaders); I++)
var/atom/A = late_loaders[I]
//I hate that we need this
if(QDELETED(A))
@@ -70,7 +70,7 @@ SUBSYSTEM_DEF(atoms)
A.LateInitialize()
#ifdef TESTING
- testing("Late initialized [late_loaders.len] atoms")
+ testing("Late initialized [length(late_loaders)] atoms")
#endif
late_loaders.Cut()
processing_late_loaders = FALSE
@@ -87,10 +87,10 @@ SUBSYSTEM_DEF(atoms)
var/list/mapload_arg = list(TRUE)
if(atoms)
#ifdef TESTING
- count = atoms.len
+ count = length(atoms)
#endif
- for(var/I in 1 to atoms.len)
+ for(var/I in 1 to length(atoms))
var/atom/A = atoms[I]
if(!(A.flags_atom & INITIALIZED))
CHECK_TICK
diff --git a/code/controllers/subsystem/cellauto.dm b/code/controllers/subsystem/cellauto.dm
index b543ddd43c26..983d168d61a1 100644
--- a/code/controllers/subsystem/cellauto.dm
+++ b/code/controllers/subsystem/cellauto.dm
@@ -9,15 +9,15 @@ SUBSYSTEM_DEF(cellauto)
var/list/currentrun = list()
/datum/controller/subsystem/cellauto/stat_entry(msg)
- msg = "C: [GLOB.cellauto_cells.len]"
+ msg = "C: [length(GLOB.cellauto_cells)]"
return ..()
/datum/controller/subsystem/cellauto/fire(resumed = FALSE)
if (!resumed)
currentrun = GLOB.cellauto_cells.Copy()
- while(currentrun.len)
- var/datum/automata_cell/C = currentrun[currentrun.len]
+ while(length(currentrun))
+ var/datum/automata_cell/C = currentrun[length(currentrun)]
currentrun.len--
if (!C || QDELETED(C))
diff --git a/code/controllers/subsystem/communications.dm b/code/controllers/subsystem/communications.dm
index c245b1012900..7397d98a0d52 100644
--- a/code/controllers/subsystem/communications.dm
+++ b/code/controllers/subsystem/communications.dm
@@ -115,6 +115,7 @@ Radiochat range: 1441 to 1489 (most devices refuse to be tune to other frequency
#define SOF_FREQ 1472
#define PVST_FREQ 1473
#define CBRN_FREQ 1474
+#define FORECON_FREQ 1475
//Ship department channels
#define SENTRY_FREQ 1480
@@ -171,6 +172,7 @@ GLOBAL_LIST_INIT(radiochannels, list(
SQUAD_MARINE_CRYO = CRYO_FREQ,
SQUAD_SOF = SOF_FREQ,
SQUAD_CBRN = CBRN_FREQ,
+ SQUAD_FORECON = FORECON_FREQ,
RADIO_CHANNEL_ALAMO = DS1_FREQ,
RADIO_CHANNEL_NORMANDY = DS2_FREQ,
@@ -278,6 +280,7 @@ SUBSYSTEM_DEF(radio)
"[ECHO_FREQ]" = "echoradio",
"[CRYO_FREQ]" = "cryoradio",
"[CBRN_FREQ]" = "hcradio",
+ "[FORECON_FREQ]" = "hcradio",
"[SOF_FREQ]" = "hcradio",
"[HC_FREQ]" = "hcradio",
"[PVST_FREQ]" = "pvstradio",
diff --git a/code/controllers/subsystem/decorator.dm b/code/controllers/subsystem/decorator.dm
index 6194b05d561b..ac63fca47ac5 100644
--- a/code/controllers/subsystem/decorator.dm
+++ b/code/controllers/subsystem/decorator.dm
@@ -35,7 +35,7 @@ SUBSYSTEM_DEF(decorator)
if(!decor.is_active_decor())
continue
var/list/applicable_types = decor.get_decor_types()
- if(!applicable_types || !applicable_types.len)
+ if(!LAZYLEN(applicable_types))
continue
active_decorators |= decor
for(var/app_type in applicable_types)
@@ -64,7 +64,7 @@ SUBSYSTEM_DEF(decorator)
currentrun = swap
while(length(currentrun))
- var/datum/weakref/ref = currentrun[currentrun.len]
+ var/datum/weakref/ref = currentrun[length(currentrun)]
currentrun.len--
var/atom/A = ref?.resolve()
if(A) A.Decorate(deferable = FALSE)
@@ -80,7 +80,7 @@ SUBSYSTEM_DEF(decorator)
// DECORATOR IS ENABLED FORCEFULLY
var/list/applicable_types = decor.get_decor_types()
- if(!applicable_types || !applicable_types.len)
+ if(!LAZYLEN(applicable_types))
return
active_decorators |= decor
for(var/app_type in applicable_types)
@@ -100,7 +100,7 @@ SUBSYSTEM_DEF(decorator)
/datum/controller/subsystem/decorator/stat_entry(msg)
if(registered_decorators && decoratable)
- msg = "D:[registered_decorators.len],P:[decoratable.len]"
+ msg = "D:[length(registered_decorators)],P:[length(decoratable)]"
return ..()
/datum/controller/subsystem/decorator/proc/decorate(atom/o)
@@ -118,25 +118,25 @@ SUBSYSTEM_DEF(decorator)
/datum/controller/subsystem/decorator/proc/sortDecorators(list/datum/decorator/L)
if(!istype(L))
return null
- if(L.len < 2)
+ if(length(L) < 2)
return L
- var/middle = L.len / 2 + 1
+ var/middle = length(L) / 2 + 1
return mergeDecoratorLists(sortDecorators(L.Copy(0, middle)), sortDecorators(L.Copy(middle)))
/datum/controller/subsystem/decorator/proc/mergeDecoratorLists(list/datum/decorator/L, list/datum/decorator/R)
var/Li=1
var/Ri=1
var/list/result = new()
- while(Li <= L.len && Ri <= R.len)
+ while(Li <= length(L) && Ri <= length(R))
if(sorttext(L[Li].priority, R[Ri].priority) < 1)
// Works around list += list2 merging lists; it's not pretty but it works
result += "temp item"
- result[result.len] = R[Ri++]
+ result[length(result)] = R[Ri++]
else
result += "temp item"
- result[result.len] = L[Li++]
+ result[length(result)] = L[Li++]
- if(Li <= L.len)
+ if(Li <= length(L))
return (result + L.Copy(Li, 0))
return (result + R.Copy(Ri, 0))
diff --git a/code/controllers/subsystem/disease.dm b/code/controllers/subsystem/disease.dm
index b98187ca252c..342a6b28906b 100644
--- a/code/controllers/subsystem/disease.dm
+++ b/code/controllers/subsystem/disease.dm
@@ -8,15 +8,15 @@ SUBSYSTEM_DEF(disease)
var/list/datum/disease/currentrun = list()
/datum/controller/subsystem/disease/stat_entry(msg)
- msg = "P:[all_diseases.len]"
+ msg = "P:[length(all_diseases)]"
return ..()
/datum/controller/subsystem/disease/fire(resumed = FALSE)
if (!resumed)
currentrun = all_diseases.Copy()
- while (currentrun.len)
- var/datum/disease/D = currentrun[currentrun.len]
+ while (length(currentrun))
+ var/datum/disease/D = currentrun[length(currentrun)]
currentrun.len--
if (!D || QDELETED(D))
diff --git a/code/controllers/subsystem/events.dm b/code/controllers/subsystem/events.dm
index f4dd544784f0..db1b07475489 100644
--- a/code/controllers/subsystem/events.dm
+++ b/code/controllers/subsystem/events.dm
@@ -35,8 +35,8 @@ SUBSYSTEM_DEF(events)
//cache for sanic speed (lists are references anyways)
var/list/currentrun = src.currentrun
- while(currentrun.len)
- var/datum/thing = currentrun[currentrun.len]
+ while(length(currentrun))
+ var/datum/thing = currentrun[length(currentrun)]
currentrun.len--
if(thing)
thing.process()
diff --git a/code/controllers/subsystem/fz_transitions.dm b/code/controllers/subsystem/fz_transitions.dm
index d12ab1358535..5a6db625145c 100644
--- a/code/controllers/subsystem/fz_transitions.dm
+++ b/code/controllers/subsystem/fz_transitions.dm
@@ -10,7 +10,7 @@ SUBSYSTEM_DEF(fz_transitions)
flags = SS_KEEP_TIMING
/datum/controller/subsystem/fz_transitions/stat_entry(msg)
- msg = "P:[GLOB.projectors.len]|C:[GLOB.clones.len]|T:[GLOB.clones_t.len]"
+ msg = "P:[length(GLOB.projectors)]|C:[length(GLOB.clones)]|T:[length(GLOB.clones_t)]"
return ..()
/datum/controller/subsystem/fz_transitions/Initialize()
diff --git a/code/controllers/subsystem/garbage.dm b/code/controllers/subsystem/garbage.dm
index 37c305d59cde..072419df2cbd 100644
--- a/code/controllers/subsystem/garbage.dm
+++ b/code/controllers/subsystem/garbage.dm
@@ -297,7 +297,7 @@ SUBSYSTEM_DEF(garbage)
/datum/controller/subsystem/garbage/Recover()
InitQueues() //We first need to create the queues before recovering data
if (istype(SSgarbage.queues))
- for (var/i in 1 to SSgarbage.queues.len)
+ for (var/i in 1 to length(SSgarbage.queues))
queues[i] |= SSgarbage.queues[i]
/// Qdel Item: Holds statistics on each type that passes thru qdel
diff --git a/code/controllers/subsystem/human.dm b/code/controllers/subsystem/human.dm
index ffbbb7aa9240..3bc67c48a2be 100644
--- a/code/controllers/subsystem/human.dm
+++ b/code/controllers/subsystem/human.dm
@@ -10,15 +10,15 @@ SUBSYSTEM_DEF(human)
/datum/controller/subsystem/human/stat_entry(msg)
- msg = "P:[processable_human_list.len]"
+ msg = "P:[length(processable_human_list)]"
return ..()
/datum/controller/subsystem/human/fire(resumed = FALSE)
if (!resumed)
currentrun = processable_human_list.Copy()
- while (currentrun.len)
- var/mob/living/carbon/human/M = currentrun[currentrun.len]
+ while (length(currentrun))
+ var/mob/living/carbon/human/M = currentrun[length(currentrun)]
currentrun.len--
if (!M || QDELETED(M))
diff --git a/code/controllers/subsystem/init/landmarks.dm b/code/controllers/subsystem/init/landmarks.dm
index 31b71c074a5d..1fdf83083833 100644
--- a/code/controllers/subsystem/init/landmarks.dm
+++ b/code/controllers/subsystem/init/landmarks.dm
@@ -47,14 +47,14 @@ SUBSYSTEM_DEF(landmark_init)
message_admins("Item pool [pool.pool_name] has no master landmark, aborting item spawns. Tell the devs. Code: ITEM_POOL_3")
continue
- if (pool.quota > pool.turfs.len)
- log_debug("Item pool [pool.pool_name] wants to spawn more items than it has landmarks for. Spawning [pool.turfs.len] instances of [pool.type_to_spawn] instead. Code: ITEM_POOL_4")
- message_admins("Item pool [pool.pool_name] wants to spawn more items than it has landmarks for. Spawning [pool.turfs.len] instances of [pool.type_to_spawn] instead. Tell the devs. Code: ITEM_POOL_4")
- pool.quota = pool.turfs.len
+ if (pool.quota > length(pool.turfs))
+ log_debug("Item pool [pool.pool_name] wants to spawn more items than it has landmarks for. Spawning [length(pool.turfs)] instances of [pool.type_to_spawn] instead. Code: ITEM_POOL_4")
+ message_admins("Item pool [pool.pool_name] wants to spawn more items than it has landmarks for. Spawning [length(pool.turfs)] instances of [pool.type_to_spawn] instead. Tell the devs. Code: ITEM_POOL_4")
+ pool.quota = length(pool.turfs)
// Quota times, pick a random turf, spawn an item there, then remove that turf from the list.
for (var/i in 1 to pool.quota)
- var/turf/T = pool.turfs[rand(1, pool.turfs.len)]
+ var/turf/T = pool.turfs[rand(1, length(pool.turfs))]
var/atom/movable/newly_spawned = new pool.type_to_spawn()
newly_spawned.forceMove(T)
diff --git a/code/controllers/subsystem/input.dm b/code/controllers/subsystem/input.dm
index 26d393d197b7..5dfd7bc5bbac 100644
--- a/code/controllers/subsystem/input.dm
+++ b/code/controllers/subsystem/input.dm
@@ -33,7 +33,7 @@ SUBSYSTEM_DEF(input)
// Badmins just wanna have fun ♪
/datum/controller/subsystem/input/proc/refresh_client_macro_sets()
var/list/clients = GLOB.clients
- for(var/i in 1 to clients.len)
+ for(var/i in 1 to length(clients))
var/client/user = clients[i]
INVOKE_ASYNC(user, /client/proc/set_macros)
diff --git a/code/controllers/subsystem/item_cleanup.dm b/code/controllers/subsystem/item_cleanup.dm
index 26958eb8742b..85c25e4712d3 100644
--- a/code/controllers/subsystem/item_cleanup.dm
+++ b/code/controllers/subsystem/item_cleanup.dm
@@ -18,9 +18,9 @@ SUBSYSTEM_DEF(item_cleanup)
//Do nothing for the first 35 minutes to preserve the colony look for the first drop
return
- var/to_delete = items_to_clean_up.len * percentage_of_garbage_to_delete
+ var/to_delete = length(items_to_clean_up) * percentage_of_garbage_to_delete
var/deleted = 0
- var/total_items = items_to_clean_up.len //save total before we start deleting stuff
+ var/total_items = length(items_to_clean_up) //save total before we start deleting stuff
for (var/atom/o in items_to_clean_up)
if(QDELETED(o))
items_to_clean_up -= o
@@ -34,9 +34,9 @@ SUBSYSTEM_DEF(item_cleanup)
break
//We transfer items from the global garbage list onto the next iteration list
- while(!isnull(GLOB.item_cleanup_list) && GLOB.item_cleanup_list.len > 0)
- addToListNoDupe(items_to_clean_up, GLOB.item_cleanup_list[GLOB.item_cleanup_list.len])
- GLOB.item_cleanup_list -= GLOB.item_cleanup_list[GLOB.item_cleanup_list.len]
+ while(!isnull(GLOB.item_cleanup_list) && length(GLOB.item_cleanup_list) > 0)
+ addToListNoDupe(items_to_clean_up, GLOB.item_cleanup_list[length(GLOB.item_cleanup_list)])
+ GLOB.item_cleanup_list -= GLOB.item_cleanup_list[length(GLOB.item_cleanup_list)]
log_debug("item_cleanup deleted [deleted] garbage out of total [total_items]")
diff --git a/code/controllers/subsystem/lighting.dm b/code/controllers/subsystem/lighting.dm
index 3c3d14468bc2..f8c6b14e6bf7 100644
--- a/code/controllers/subsystem/lighting.dm
+++ b/code/controllers/subsystem/lighting.dm
@@ -27,7 +27,7 @@ SUBSYSTEM_DEF(lighting)
/datum/controller/subsystem/lighting/stat_entry()
- . = ..("ShCalcs:[total_shadow_calculations]|SourcQ:[static_sources_queue.len]|CcornQ:[corners_queue.len]|ObjQ:[objects_queue.len]|HybrQ:[mask_queue.len]")
+ . = ..("ShCalcs:[total_shadow_calculations]|SourcQ:[length(static_sources_queue)]|CcornQ:[length(corners_queue)]|ObjQ:[length(objects_queue)]|HybrQ:[length(mask_queue)]")
/datum/controller/subsystem/lighting/fire(resumed, init_tick_checks)
MC_SPLIT_TICK_INIT(3)
diff --git a/code/controllers/subsystem/machinery.dm b/code/controllers/subsystem/machinery.dm
index 6a0f938475a1..a2860615274f 100644
--- a/code/controllers/subsystem/machinery.dm
+++ b/code/controllers/subsystem/machinery.dm
@@ -19,15 +19,15 @@ SUBSYSTEM_DEF(machinery)
return SS_INIT_SUCCESS
/datum/controller/subsystem/machinery/stat_entry(msg)
- msg = "M:[GLOB.processing_machines.len]"
+ msg = "M:[length(GLOB.processing_machines)]"
return ..()
/datum/controller/subsystem/machinery/fire(resumed = FALSE)
if (!resumed)
currentrunmachines = GLOB.processing_machines.Copy()
- while (currentrunmachines.len)
- var/obj/structure/machinery/M = currentrunmachines[currentrunmachines.len]
+ while (length(currentrunmachines))
+ var/obj/structure/machinery/M = currentrunmachines[length(currentrunmachines)]
currentrunmachines.len--
if (!M || QDELETED(M))
diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm
index f6c45453950d..0d8848217d4f 100644
--- a/code/controllers/subsystem/mapping.dm
+++ b/code/controllers/subsystem/mapping.dm
@@ -161,11 +161,11 @@ SUBSYSTEM_DEF(mapping)
if (!length(traits)) // null or empty - default
for (var/i in 1 to total_z)
traits += list(default_traits)
- else if (total_z != traits.len) // mismatch
- INIT_ANNOUNCE("WARNING: [traits.len] trait sets specified for [total_z] z-levels in [path]!")
- if (total_z < traits.len) // ignore extra traits
+ else if (total_z != length(traits)) // mismatch
+ INIT_ANNOUNCE("WARNING: [length(traits)] trait sets specified for [total_z] z-levels in [path]!")
+ if (total_z < length(traits)) // ignore extra traits
traits.Cut(total_z + 1)
- while (total_z > traits.len) // fall back to defaults on extra levels
+ while (total_z > length(traits)) // fall back to defaults on extra levels
traits += list(default_traits)
// preload the relevant space_level datums
@@ -236,8 +236,8 @@ SUBSYSTEM_DEF(mapping)
if(LAZYLEN(FailedZs)) //but seriously, unless the server's filesystem is messed up this will never happen
var/msg = "RED ALERT! The following map files failed to load: [FailedZs[1]]"
- if(FailedZs.len > 1)
- for(var/I in 2 to FailedZs.len)
+ if(length(FailedZs) > 1)
+ for(var/I in 2 to length(FailedZs))
msg += ", [FailedZs[I]]"
msg += ". Yell at your server host!"
INIT_ANNOUNCE(msg)
@@ -276,7 +276,7 @@ SUBSYSTEM_DEF(mapping)
. = list()
var/list/Lines = file2list(filename)
- if(!Lines.len)
+ if(!length(Lines))
return
for (var/t in Lines)
if (!t)
diff --git a/code/controllers/subsystem/mob.dm b/code/controllers/subsystem/mob.dm
index 60e7476da89b..3596b17e5d16 100644
--- a/code/controllers/subsystem/mob.dm
+++ b/code/controllers/subsystem/mob.dm
@@ -8,7 +8,7 @@ SUBSYSTEM_DEF(mob)
var/list/living_misc_mobs = list()
/datum/controller/subsystem/mob/stat_entry(msg)
- msg = "P:[living_misc_mobs.len]"
+ msg = "P:[length(living_misc_mobs)]"
return ..()
@@ -16,8 +16,8 @@ SUBSYSTEM_DEF(mob)
if (!resumed)
currentrun = living_misc_mobs.Copy()
- while (currentrun.len)
- var/mob/living/M = currentrun[currentrun.len]
+ while (length(currentrun))
+ var/mob/living/M = currentrun[length(currentrun)]
currentrun.len--
if (!M || QDELETED(M))
diff --git a/code/controllers/subsystem/nanoui.dm b/code/controllers/subsystem/nanoui.dm
index 85ad0d32aaf4..b0117016e38b 100644
--- a/code/controllers/subsystem/nanoui.dm
+++ b/code/controllers/subsystem/nanoui.dm
@@ -13,15 +13,15 @@ SUBSYSTEM_DEF(nano)
nanomanager = new()
/datum/controller/subsystem/nano/stat_entry(msg)
- msg = "P:[nanomanager.processing_uis.len]"
+ msg = "P:[length(nanomanager.processing_uis)]"
return ..()
/datum/controller/subsystem/nano/fire(resumed = FALSE)
if (!resumed)
currentrun = nanomanager.processing_uis.Copy()
- while (currentrun.len)
- var/datum/nanoui/UI = currentrun[currentrun.len]
+ while (length(currentrun))
+ var/datum/nanoui/UI = currentrun[length(currentrun)]
currentrun.len--
if (!UI || QDELETED(UI))
diff --git a/code/controllers/subsystem/perf_logging.dm b/code/controllers/subsystem/perf_logging.dm
index 5ca98ad10dd0..4a3066b758ba 100644
--- a/code/controllers/subsystem/perf_logging.dm
+++ b/code/controllers/subsystem/perf_logging.dm
@@ -26,8 +26,8 @@ SUBSYSTEM_DEF(perf_logging)
if(SS?.cost > 0.1)
currentrun += SS
- while(currentrun.len)
- var/datum/controller/subsystem/SS = currentrun[currentrun.len]
+ while(length(currentrun))
+ var/datum/controller/subsystem/SS = currentrun[length(currentrun)]
currentrun.len--
var/datum/entity/mc_controller/C = controller_assoc[SS.type]
new_record(SS, C)
diff --git a/code/controllers/subsystem/ping.dm b/code/controllers/subsystem/ping.dm
index c813081ed526..5d413c128684 100644
--- a/code/controllers/subsystem/ping.dm
+++ b/code/controllers/subsystem/ping.dm
@@ -14,7 +14,7 @@ SUBSYSTEM_DEF(ping)
var/list/currentrun = list()
/datum/controller/subsystem/ping/stat_entry()
- ..("P:[GLOB.clients.len]")
+ ..("P:[length(GLOB.clients)]")
/datum/controller/subsystem/ping/fire(resumed = FALSE)
// Prepare the new batch of clients
@@ -24,8 +24,8 @@ SUBSYSTEM_DEF(ping)
// De-reference the list for sanic speeds
var/list/currentrun = src.currentrun
- while (currentrun.len)
- var/client/client = currentrun[currentrun.len]
+ while (length(currentrun))
+ var/client/client = currentrun[length(currentrun)]
currentrun.len--
if (client?.tgui_panel?.is_ready())
diff --git a/code/controllers/subsystem/playtime.dm b/code/controllers/subsystem/playtime.dm
index 7a6d3b97a036..6813c4fabd78 100644
--- a/code/controllers/subsystem/playtime.dm
+++ b/code/controllers/subsystem/playtime.dm
@@ -12,8 +12,8 @@ SUBSYSTEM_DEF(playtime)
var/list/currentrun = src.currentrun
- while (currentrun.len)
- var/client/C = currentrun[currentrun.len]
+ while (length(currentrun))
+ var/client/C = currentrun[length(currentrun)]
currentrun.len--
var/mob/M = C.mob
diff --git a/code/controllers/subsystem/police_clues.dm b/code/controllers/subsystem/police_clues.dm
index 134eae9bca9e..0d39c72c874d 100644
--- a/code/controllers/subsystem/police_clues.dm
+++ b/code/controllers/subsystem/police_clues.dm
@@ -8,15 +8,15 @@ SUBSYSTEM_DEF(clues)
var/list/prints_list = list()
/datum/controller/subsystem/clues/stat_entry(msg)
- msg = "P:[prints_list.len]"
+ msg = "P:[length(prints_list)]"
return ..()
/datum/controller/subsystem/clues/fire(resumed = FALSE)
if(!resumed && length(prints_list))
currentrun = prints_list.Copy()
- while(currentrun.len)
- var/obj/effect/decal/prints/P = currentrun[currentrun.len]
+ while(length(currentrun))
+ var/obj/effect/decal/prints/P = currentrun[length(currentrun)]
currentrun.len--
if(!P || QDELETED(P))
diff --git a/code/controllers/subsystem/power.dm b/code/controllers/subsystem/power.dm
index 9908a60420b2..08668e5fc564 100644
--- a/code/controllers/subsystem/power.dm
+++ b/code/controllers/subsystem/power.dm
@@ -12,7 +12,7 @@ SUBSYSTEM_DEF(power)
var/list/currentrun_areas = list()
/datum/controller/subsystem/power/stat_entry(msg)
- msg = "PN:[GLOB.powernets.len]|PM:[GLOB.power_machines.len]|A:[GLOB.active_areas.len]"
+ msg = "PN:[length(GLOB.powernets)]|PM:[length(GLOB.power_machines)]|A:[length(GLOB.active_areas)]"
return ..()
@@ -29,8 +29,8 @@ SUBSYSTEM_DEF(power)
// First we reset the powernets.
// This is done first because we want the power machinery to have acted last on the powernet between intervals.
- while(currentrun_powerents.len)
- var/datum/powernet/Powernet = currentrun_powerents[currentrun_powerents.len]
+ while(length(currentrun_powerents))
+ var/datum/powernet/Powernet = currentrun_powerents[length(currentrun_powerents)]
currentrun_powerents.len--
if(Powernet)
Powernet.process()
@@ -39,8 +39,8 @@ SUBSYSTEM_DEF(power)
// Next we let the power machines operate, this way until the next tick it will be as if they have all done their work.
- while (currentrun_power_machines.len)
- var/datum/X = currentrun_power_machines[currentrun_power_machines.len]
+ while (length(currentrun_power_machines))
+ var/datum/X = currentrun_power_machines[length(currentrun_power_machines)]
currentrun_power_machines.len--
if (!X || QDELETED(X))
continue
diff --git a/code/controllers/subsystem/processing/obj_tab_items.dm b/code/controllers/subsystem/processing/obj_tab_items.dm
index 53786daf0117..6be6bceab1eb 100644
--- a/code/controllers/subsystem/processing/obj_tab_items.dm
+++ b/code/controllers/subsystem/processing/obj_tab_items.dm
@@ -12,8 +12,8 @@ PROCESSING_SUBSYSTEM_DEF(obj_tab_items)
//cache for sanic speed (lists are references anyways)
var/list/current_run = currentrun
- while(current_run.len)
- var/datum/thing = current_run[current_run.len]
+ while(length(current_run))
+ var/datum/thing = current_run[length(current_run)]
if(QDELETED(thing))
processing -= thing
else if(thing.process(wait * 0.1) == PROCESS_KILL)
diff --git a/code/controllers/subsystem/processing/processing.dm b/code/controllers/subsystem/processing/processing.dm
index 73a5db433dc8..c2736528df86 100644
--- a/code/controllers/subsystem/processing/processing.dm
+++ b/code/controllers/subsystem/processing/processing.dm
@@ -20,8 +20,8 @@ SUBSYSTEM_DEF(processing)
//cache for sanic speed (lists are references anyways)
var/list/current_run = currentrun
- while(current_run.len)
- var/datum/thing = current_run[current_run.len]
+ while(length(current_run))
+ var/datum/thing = current_run[length(current_run)]
current_run.len--
if(QDELETED(thing))
processing -= thing
diff --git a/code/controllers/subsystem/projectiles.dm b/code/controllers/subsystem/projectiles.dm
index a23303ea282d..da3b5a7b9c71 100644
--- a/code/controllers/subsystem/projectiles.dm
+++ b/code/controllers/subsystem/projectiles.dm
@@ -28,7 +28,7 @@ SUBSYSTEM_DEF(projectiles)
*/
/datum/controller/subsystem/projectiles/stat_entry(msg)
- msg = " | #Proj: [projectiles.len]"
+ msg = " | #Proj: [length(projectiles)]"
return ..()
/datum/controller/subsystem/projectiles/Initialize(start_timeofday)
@@ -41,8 +41,8 @@ SUBSYSTEM_DEF(projectiles)
if(!resumed)
flying = projectiles.Copy()
flying -= sleepers
- while(flying.len)
- var/obj/projectile/projectile = flying[flying.len]
+ while(length(flying))
+ var/obj/projectile/projectile = flying[length(flying)]
flying.len--
var/delta_time = wait * world.tick_lag * (1 SECONDS)
handle_projectile_flight(projectile, delta_time)
diff --git a/code/controllers/subsystem/quadtrees.dm b/code/controllers/subsystem/quadtrees.dm
index da217cb58cee..8c55cb8f1c50 100644
--- a/code/controllers/subsystem/quadtrees.dm
+++ b/code/controllers/subsystem/quadtrees.dm
@@ -24,17 +24,17 @@ SUBSYSTEM_DEF(quadtree)
if(!resumed)
player_feed = GLOB.clients.Copy()
cur_quadtrees = new_quadtrees.Copy()
- if(new_quadtrees.len < world.maxz)
+ if(length(new_quadtrees) < world.maxz)
new_quadtrees.len = world.maxz
for(var/i in 1 to world.maxz)
new_quadtrees[i] = QTREE(RECT(world.maxx/2,world.maxy/2, world.maxx, world.maxy), i)
while(length(player_feed))
- var/client/C = player_feed[player_feed.len]
+ var/client/C = player_feed[length(player_feed)]
player_feed.len--
if(!C) continue
var/turf/T = get_turf(C.mob)
- if(!T?.z || new_quadtrees.len < T.z)
+ if(!T?.z || length(new_quadtrees) < T.z)
continue
var/datum/coords/qtplayer/p_coords = new
p_coords.player = C
@@ -52,7 +52,7 @@ SUBSYSTEM_DEF(quadtree)
var/list/players = list()
if(!cur_quadtrees)
return players
- if(z_level && cur_quadtrees.len >= z_level)
+ if(z_level && length(cur_quadtrees) >= z_level)
var/datum/quadtree/Q = cur_quadtrees[z_level]
if(!Q)
return players
diff --git a/code/controllers/subsystem/round_recording.dm b/code/controllers/subsystem/round_recording.dm
index f1244d386d10..e45854ac5730 100644
--- a/code/controllers/subsystem/round_recording.dm
+++ b/code/controllers/subsystem/round_recording.dm
@@ -35,8 +35,8 @@ SUBSYSTEM_DEF(round_recording)
return
currentrun = recorder.tracked_players.Copy()
- while(currentrun.len)
- var/mob/M = currentrun[currentrun.len]
+ while(length(currentrun))
+ var/mob/M = currentrun[length(currentrun)]
currentrun.len--
// Try to stop the tracking
diff --git a/code/controllers/subsystem/shuttles.dm b/code/controllers/subsystem/shuttles.dm
index 0348eddd9900..d400e02f3bae 100644
--- a/code/controllers/subsystem/shuttles.dm
+++ b/code/controllers/subsystem/shuttles.dm
@@ -94,7 +94,7 @@ SUBSYSTEM_DEF(shuttle)
qdel(T, force=TRUE)
if(!SSmapping.clearing_reserved_turfs)
- while(transit_requesters.len)
+ while(length(transit_requesters))
var/requester = popleft(transit_requesters)
var/success = null
// Do not try and generate any transit if we're using more then our max already
@@ -311,7 +311,7 @@ SUBSYSTEM_DEF(shuttle)
/datum/controller/subsystem/shuttle/proc/get_containing_shuttle(atom/A)
var/list/mobile_cache = mobile
- for(var/i in 1 to mobile_cache.len)
+ for(var/i in 1 to length(mobile_cache))
var/obj/docking_port/port = mobile_cache[i]
if(port.is_in_shuttle_bounds(A))
return port
@@ -319,7 +319,7 @@ SUBSYSTEM_DEF(shuttle)
/datum/controller/subsystem/shuttle/proc/get_containing_dock(atom/A)
. = list()
var/list/stationary_cache = stationary
- for(var/i in 1 to stationary_cache.len)
+ for(var/i in 1 to length(stationary_cache))
var/obj/docking_port/port = stationary_cache[i]
if(port.is_in_shuttle_bounds(A))
. += port
@@ -327,7 +327,7 @@ SUBSYSTEM_DEF(shuttle)
/datum/controller/subsystem/shuttle/proc/get_dock_overlap(x0, y0, x1, y1, z)
. = list()
var/list/stationary_cache = stationary
- for(var/i in 1 to stationary_cache.len)
+ for(var/i in 1 to length(stationary_cache))
var/obj/docking_port/port = stationary_cache[i]
if(!port || port.z != z)
continue
@@ -335,7 +335,7 @@ SUBSYSTEM_DEF(shuttle)
var/list/overlap = get_overlap(x0, y0, x1, y1, bounds[1], bounds[2], bounds[3], bounds[4])
var/list/xs = overlap[1]
var/list/ys = overlap[2]
- if(xs.len && ys.len)
+ if(length(xs) && length(ys))
.[port] = overlap
/datum/controller/subsystem/shuttle/proc/update_hidden_docking_ports(list/remove_turfs, list/add_turfs)
@@ -353,7 +353,7 @@ SUBSYSTEM_DEF(shuttle)
for(var/V in add_turfs)
var/turf/T = V
var/image/I
- if(remove_images.len)
+ if(length(remove_images))
//we can just reuse any images we are about to delete instead of making new ones
I = remove_images[1]
remove_images.Cut(1, 2)
diff --git a/code/controllers/subsystem/sound.dm b/code/controllers/subsystem/sound.dm
index 4fdfd7935349..13dd6a0dddf1 100644
--- a/code/controllers/subsystem/sound.dm
+++ b/code/controllers/subsystem/sound.dm
@@ -19,12 +19,11 @@ SUBSYSTEM_DEF(sound)
if(!run_hearers) // Initialize for handling next template
run_hearers = run_queue[run_template] // get base hearers
if(run_template.range) // ranging
- var/datum/shape/rectangle/zone = RECT(run_template.x, run_template.y, run_template.range * 2, run_template.range * 2)
- run_hearers |= SSquadtree.players_in_range(zone, run_template.z)
+ run_hearers |= SSquadtree.players_in_range(SQUARE(run_template.x, run_template.y, run_template.range), run_template.z)
if(MC_TICK_CHECK)
return
while(length(run_hearers)) // Output sound to hearers
- var/client/C = run_hearers[run_hearers.len]
+ var/client/C = run_hearers[length(run_hearers)]
run_hearers.len--
if(C && C.soundOutput)
C.soundOutput.process_sound(run_template)
@@ -40,6 +39,6 @@ SUBSYSTEM_DEF(sound)
for(var/datum/interior/VI in extra_interiors)
if(VI?.ready)
var/list/bounds = VI.get_middle_coords()
- if(bounds.len >= 2)
+ if(length(bounds) >= 2)
hearers |= SSquadtree.players_in_range(RECT(bounds[1], bounds[2], VI.map_template.width, VI.map_template.height), bounds[3])
template_queue[template] = hearers
diff --git a/code/controllers/subsystem/soundscape.dm b/code/controllers/subsystem/soundscape.dm
index 2219a0b35c86..432166e06be9 100644
--- a/code/controllers/subsystem/soundscape.dm
+++ b/code/controllers/subsystem/soundscape.dm
@@ -15,8 +15,8 @@ SUBSYSTEM_DEF(soundscape)
if(!resumed)
currentrun = GLOB.clients.Copy()
- while(currentrun.len)
- var/client/C = currentrun[currentrun.len]
+ while(length(currentrun))
+ var/client/C = currentrun[length(currentrun)]
currentrun.len--
if(!C || !C.soundOutput)
diff --git a/code/controllers/subsystem/statpanel.dm b/code/controllers/subsystem/statpanel.dm
index 030043d12d3a..613c8df5850f 100644
--- a/code/controllers/subsystem/statpanel.dm
+++ b/code/controllers/subsystem/statpanel.dm
@@ -197,7 +197,7 @@ SUBSYSTEM_DEF(statpanels)
/datum/controller/subsystem/statpanels/proc/generate_mc_data()
mc_data = list(
list("CPU:", world.cpu),
- list("Instances:", "[num2text(world.contents.len, 10)]"),
+ list("Instances:", "[num2text(length(world.contents), 10)]"),
list("World Time:", "[world.time]"),
list("Globals:", GLOB.stat_entry(), "\ref[GLOB]"),
list("[config]:", config.stat_entry(), "\ref[config]"),
diff --git a/code/controllers/subsystem/tgui.dm b/code/controllers/subsystem/tgui.dm
index 0bd0c29e450a..a3ef03f3e397 100644
--- a/code/controllers/subsystem/tgui.dm
+++ b/code/controllers/subsystem/tgui.dm
@@ -45,8 +45,8 @@ SUBSYSTEM_DEF(tgui)
src.current_run = open_uis.Copy()
// Cache for sanic speed (lists are references anyways)
var/list/current_run = src.current_run
- while(current_run.len)
- var/datum/tgui/ui = current_run[current_run.len]
+ while(length(current_run))
+ var/datum/tgui/ui = current_run[length(current_run)]
current_run.len--
// TODO: Move user/src_object check to process()
if(ui?.user && ui.src_object)
diff --git a/code/controllers/subsystem/tracking.dm b/code/controllers/subsystem/tracking.dm
index 3955ace8da09..4dcc5d5c4e29 100644
--- a/code/controllers/subsystem/tracking.dm
+++ b/code/controllers/subsystem/tracking.dm
@@ -98,7 +98,7 @@ SUBSYSTEM_DEF(tracking)
/datum/controller/subsystem/tracking/proc/setup_trackers(mob/mob, tracked_group)
if(!tracked_group)
- tracked_group = "tracked_[tracked_mobs.len]"
+ tracked_group = "tracked_[length(tracked_mobs)]"
tracked_mobs[tracked_group] = list()
leaders[tracked_group] = mob
diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm
index 85e2a57cc6d6..25f522753543 100644
--- a/code/controllers/subsystem/vote.dm
+++ b/code/controllers/subsystem/vote.dm
@@ -414,6 +414,7 @@ SUBSYSTEM_DEF(vote)
qdel(src)
/datum/action/innate/vote/action_activate()
+ . = ..()
owner.vote()
/datum/action/innate/vote/proc/remove_from_client()
diff --git a/code/controllers/subsystem/xeno.dm b/code/controllers/subsystem/xeno.dm
index 0623da804254..df711fd90366 100644
--- a/code/controllers/subsystem/xeno.dm
+++ b/code/controllers/subsystem/xeno.dm
@@ -7,7 +7,7 @@ SUBSYSTEM_DEF(xeno)
var/list/currentrun = list()
/datum/controller/subsystem/xeno/stat_entry(msg)
- msg = "P:[GLOB.xeno_mob_list.len]"
+ msg = "P:[length(GLOB.xeno_mob_list)]"
return ..()
@@ -15,8 +15,8 @@ SUBSYSTEM_DEF(xeno)
if (!resumed)
currentrun = GLOB.xeno_mob_list.Copy()
- while (currentrun.len)
- var/mob/living/carbon/xenomorph/M = currentrun[currentrun.len]
+ while (length(currentrun))
+ var/mob/living/carbon/xenomorph/M = currentrun[length(currentrun)]
currentrun.len--
if (!M || QDELETED(M))
diff --git a/code/datums/_ndatabase/code/brsql_adapter.dm b/code/datums/_ndatabase/code/brsql_adapter.dm
index 251267a04fdb..2362572f588a 100644
--- a/code/datums/_ndatabase/code/brsql_adapter.dm
+++ b/code/datums/_ndatabase/code/brsql_adapter.dm
@@ -103,7 +103,7 @@
/datum/db/adapter/brsql_adapter/insert_table(table_name, list/values, datum/callback/CB, sync = FALSE)
set waitfor = FALSE
- var/length = values.len
+ var/length = length(values)
var/list/qpars = list()
var/query_inserttable = getquery_insert_table(table_name, values, qpars)
var/datum/callback/callback = CALLBACK(src, TYPE_PROC_REF(/datum/db/adapter/brsql_adapter, after_insert_table), CB, length, table_name)
@@ -150,7 +150,7 @@
if(table_meta.status != DB_QUERY_FINISHED)
issue_log += "Unable to access system table, error: '[table_meta.error]'"
return FALSE // OH SHIT OH FUCK
- if(!table_meta.results.len) // Table doesn't exist
+ if(!length(table_meta.results)) // Table doesn't exist
return internal_create_table(table_name, field_types) && internal_record_table_in_sys(type_name, table_name, field_types)
var/id = table_meta.results[1][DB_DEFAULT_ID_FIELD]
@@ -178,7 +178,7 @@
if(index_meta.status != DB_QUERY_FINISHED)
issue_log += "Unable to access system index table, error: '[index_meta.error]'"
return FALSE // OH SHIT OH FUCK
- if(!index_meta.results.len) // Index doesn't exist
+ if(!length(index_meta.results)) // Index doesn't exist
return internal_create_index(index_name, table_name, fields, unique, cluster) && internal_record_index_in_sys(index_name, table_name, fields)
var/id = index_meta.results[1][DB_DEFAULT_ID_FIELD]
diff --git a/code/datums/_ndatabase/code/native_adapter.dm b/code/datums/_ndatabase/code/native_adapter.dm
index 1c23a6ceab8f..d5956ca8d85f 100644
--- a/code/datums/_ndatabase/code/native_adapter.dm
+++ b/code/datums/_ndatabase/code/native_adapter.dm
@@ -92,7 +92,7 @@
/datum/db/adapter/native_adapter/insert_table(table_name, list/values, datum/callback/CB, sync = FALSE)
set waitfor = 0
- var/length = values.len
+ var/length = length(values)
var/startid = internal_request_insert_allocation(table_name, length)
var/list/qpars = list()
var/query_inserttable = getquery_insert_table(table_name, values, startid, qpars)
@@ -138,7 +138,7 @@
if(table_meta.status != DB_QUERY_FINISHED)
issue_log += "Unable to access system table, error: '[table_meta.error]'"
return FALSE // OH SHIT OH FUCK
- if(!table_meta.results.len) // Table doesn't exist
+ if(!length(table_meta.results)) // Table doesn't exist
return internal_create_table(table_name, field_types) && internal_record_table_in_sys(type_name, table_name, field_types)
var/id = table_meta.results[1][DB_DEFAULT_ID_FIELD]
diff --git a/code/datums/_ndatabase/code/native_persistent_query.dm b/code/datums/_ndatabase/code/native_persistent_query.dm
index 15e505d578d7..39025aa1fd93 100644
--- a/code/datums/_ndatabase/code/native_persistent_query.dm
+++ b/code/datums/_ndatabase/code/native_persistent_query.dm
@@ -29,7 +29,7 @@
/datum/db/query/native/read_single()
if(status >= DB_QUERY_FINISHED || completed) //broken or finished
return
-
+
if(!completed)
completed = TRUE
var/status = query.Execute(db)
@@ -41,9 +41,9 @@
if(!results)
results = list()
var/list/cols = query.Columns()
- if(cols && cols.len>0)
+ if(LAZYLEN(cols)>0)
while(query.NextRow())
var/list/current_row = query.GetRowData()
results += list(current_row)
- affected_rows = query.RowsAffected()
+ affected_rows = query.RowsAffected()
status = DB_QUERY_FINISHED
diff --git a/code/datums/_ndatabase/subsystems/database_query_manager.dm b/code/datums/_ndatabase/subsystems/database_query_manager.dm
index 596d55121920..5a68c4e349c1 100644
--- a/code/datums/_ndatabase/subsystems/database_query_manager.dm
+++ b/code/datums/_ndatabase/subsystems/database_query_manager.dm
@@ -62,7 +62,7 @@ GLOBAL_REAL(SSdatabase, /datum/controller/subsystem/database_query_manager)
/datum/controller/subsystem/database_query_manager/stat_entry(msg)
var/text = (connection && connection.status == DB_CONNECTION_READY) ? ("READY") : ("PREPPING")
- msg = "[text], AQ:[queries_active.len]; SQ:[queries_standby.len]; P:[queries_current.len]; C:[in_callback]"
+ msg = "[text], AQ:[length(queries_active)]; SQ:[length(queries_standby)]; P:[length(queries_current)]; C:[in_callback]"
return ..()
/datum/controller/subsystem/database_query_manager/fire(resumed = FALSE)
diff --git a/code/datums/_ndatabase/subsystems/entity_manager.dm b/code/datums/_ndatabase/subsystems/entity_manager.dm
index 833bc6926e09..2ef5da2b22dd 100644
--- a/code/datums/_ndatabase/subsystems/entity_manager.dm
+++ b/code/datums/_ndatabase/subsystems/entity_manager.dm
@@ -102,8 +102,8 @@ GLOBAL_REAL(SSentity_manager, /datum/controller/subsystem/entity_manager)
currentrun = tables_unsorted.Copy()
if(!SSdatabase.connection.connection_ready())
return
- while (currentrun.len)
- var/datum/entity_meta/Q = currentrun[currentrun.len]
+ while (length(currentrun))
+ var/datum/entity_meta/Q = currentrun[length(currentrun)]
do_select(Q)
do_insert(Q)
do_update(Q)
diff --git a/code/datums/_ndatabase/tests/test_entity.dm b/code/datums/_ndatabase/tests/test_entity.dm
index de1942eec7d3..3bc9cc829bf4 100644
--- a/code/datums/_ndatabase/tests/test_entity.dm
+++ b/code/datums/_ndatabase/tests/test_entity.dm
@@ -50,7 +50,7 @@
SSentity_manager.filter_then(/datum/entity/test_entity, DB_COMP("value", DB_EQUALS, value), CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(log_filter)))
/proc/log_filter(list/datum/entity/elist)
- to_world("got [elist.len] items")
+ to_world("got [length(elist)] items")
/proc/log_sync(datum/entity/test_entity/ET)
to_world("id:[ET.id] = name: [ET.name], description: [ET.description], value: [ET.value]")
diff --git a/code/datums/action.dm b/code/datums/action.dm
index d1768655a2da..8dbf6c9df5a5 100644
--- a/code/datums/action.dm
+++ b/code/datums/action.dm
@@ -43,7 +43,9 @@
return
/datum/action/proc/action_activate()
- return
+ SHOULD_CALL_PARENT(TRUE)
+
+ SEND_SIGNAL(src, COMSIG_ACTION_ACTIVATED)
/// handler for when a keybind signal is received by the action, calls the action_activate proc asynchronous
/datum/action/proc/keybind_activation()
@@ -158,6 +160,10 @@
hidden = FALSE
L.update_action_buttons()
+/proc/get_action(mob/action_mob, action_path)
+ for(var/datum/action/action in action_mob.actions)
+ if(istype(action, action_path))
+ return action
/datum/action/item_action
name = "Use item"
@@ -182,6 +188,7 @@
return ..()
/datum/action/item_action/action_activate()
+ . = ..()
if(target)
var/obj/item/I = target
I.ui_action_click(owner, holder_item)
diff --git a/code/datums/ammo/ammo.dm b/code/datums/ammo/ammo.dm
index a59290ab5f51..022909691cfc 100644
--- a/code/datums/ammo/ammo.dm
+++ b/code/datums/ammo/ammo.dm
@@ -212,7 +212,7 @@
M.apply_damage(damage,damage_type)
- if(XNO && XNO.xeno_shields.len)
+ if(XNO && length(XNO.xeno_shields))
P.play_shielded_hit_effect(M)
else
P.play_hit_effect(M)
diff --git a/code/datums/ammo/bullet/lever_action.dm b/code/datums/ammo/bullet/lever_action.dm
index 2770231b6811..e1475146b21f 100644
--- a/code/datums/ammo/bullet/lever_action.dm
+++ b/code/datums/ammo/bullet/lever_action.dm
@@ -52,7 +52,7 @@
/datum/ammo/bullet/lever_action/xm88
name = ".458 SOCOM round"
- damage = 80
+ damage = 104
penetration = ARMOR_PENETRATION_TIER_2
accuracy = HIT_ACCURACY_TIER_1
shell_speed = AMMO_SPEED_TIER_6
diff --git a/code/datums/ammo/misc.dm b/code/datums/ammo/misc.dm
index d3ce356372be..9a9ed2fb505b 100644
--- a/code/datums/ammo/misc.dm
+++ b/code/datums/ammo/misc.dm
@@ -200,7 +200,7 @@
if(!M || M == P.firer) return
if(M.throw_mode && !M.get_active_hand()) //empty active hand and we're in throw mode. If so we catch the can.
if(!M.is_mob_incapacitated()) // People who are not able to catch cannot catch.
- if(P.contents.len == 1)
+ if(length(P.contents) == 1)
for(var/obj/item/reagent_container/food/drinks/cans/souto/S in P.contents)
M.put_in_active_hand(S)
for(var/mob/O in viewers(GLOB.world_view_size, P)) //find all people in view.
@@ -214,7 +214,7 @@
H.apply_effect(15, DAZE)
H.apply_effect(15, SLOW)
shake_camera(H, 2, 1)
- if(P.contents.len)
+ if(length(P.contents))
drop_can(P.loc, P) //We make a can at the location.
/datum/ammo/souto/on_hit_obj(obj/O,obj/projectile/P)
@@ -230,7 +230,7 @@
drop_can(P.loc, P) //We make a can at the location.
/datum/ammo/souto/proc/drop_can(loc, obj/projectile/P)
- if(P.contents.len)
+ if(length(P.contents))
for(var/obj/item/I in P.contents)
I.forceMove(loc)
randomize_projectile(P)
diff --git a/code/datums/browser.dm b/code/datums/browser.dm
index 3b694e8f44bb..f7626214a73e 100644
--- a/code/datums/browser.dm
+++ b/code/datums/browser.dm
@@ -117,9 +117,9 @@
window_size = "size=[width]x[height];"
common_asset.send(user)
other_asset.send(user)
- if (stylesheets.len)
+ if (length(stylesheets))
SSassets.transport.send_assets(user, stylesheets)
- if (scripts.len)
+ if (length(scripts))
SSassets.transport.send_assets(user, scripts)
user << browse(get_content(), "window=[window_id];[window_size][window_options]")
diff --git a/code/datums/components/_component.dm b/code/datums/components/_component.dm
index c998bd55257c..24cf93ed119f 100644
--- a/code/datums/components/_component.dm
+++ b/code/datums/components/_component.dm
@@ -102,7 +102,7 @@
components_of_type = test
if(I == our_type) //exact match, take priority
var/inserted = FALSE
- for(var/J in 1 to components_of_type.len)
+ for(var/J in 1 to length(components_of_type))
var/datum/component/C = components_of_type[J]
if(C.type != our_type) //but not over other exact matches
components_of_type.Insert(J, I)
@@ -127,13 +127,13 @@
var/list/components_of_type = dc[I]
if(length(components_of_type)) //
var/list/subtracted = components_of_type - src
- if(subtracted.len == 1) //only 1 guy left
+ if(length(subtracted) == 1) //only 1 guy left
dc[I] = subtracted[1] //make him special
else
dc[I] = subtracted
else //just us
dc -= I
- if(!dc.len)
+ if(!length(dc))
P.datum_components = null
UnregisterFromParent()
@@ -243,7 +243,7 @@
lookup[sig] -= src
signal_procs[target] -= sig_type_or_types
- if(!signal_procs[target].len)
+ if(!length(signal_procs[target]))
signal_procs -= target
/**
@@ -362,7 +362,8 @@
var/datum/component/C = dc[c_type]
if(C)
if(length(C))
- C = C[1]
+ var/list/component_list = C
+ C = component_list[1]
if(C.type == c_type)
return C
return null
diff --git a/code/datums/components/bad_leg.dm b/code/datums/components/bad_leg.dm
index 4a8678c4da76..8793271803dc 100644
--- a/code/datums/components/bad_leg.dm
+++ b/code/datums/components/bad_leg.dm
@@ -149,6 +149,7 @@
CRASH("No bound wound to link action")
/datum/action/human_action/rest_legs/action_activate()
+ . = ..()
var/mob/living/carbon/human/homan = owner
if(in_use)
to_chat(homan, SPAN_WARNING("You're already doing that!"))
diff --git a/code/datums/datum.dm b/code/datums/datum.dm
index 3e317ffd601e..e926dfd022ca 100644
--- a/code/datums/datum.dm
+++ b/code/datums/datum.dm
@@ -119,7 +119,7 @@
var/datum/component/C = all_components
qdel(C, FALSE, TRUE)
if(datum_components)
- debug_log("'[src]' datum_components was not null after removing all components! [datum_components.len] entries remained...")
+ debug_log("'[src]' datum_components was not null after removing all components! [length(datum_components)] entries remained...")
datum_components.Cut()
var/list/lookup = comp_lookup
diff --git a/code/datums/diseases/advance/advance.dm b/code/datums/diseases/advance/advance.dm
index 6ccbaa66e7de..41f1fe30e921 100644
--- a/code/datums/diseases/advance/advance.dm
+++ b/code/datums/diseases/advance/advance.dm
@@ -50,7 +50,7 @@ GLOBAL_LIST_INIT(advance_cures, list(
/datum/disease/advance/New(process = 1, datum/disease/advance/D)
// Setup our dictionary if it hasn't already.
- if(!GLOB.dictionary_symptoms.len)
+ if(!length(GLOB.dictionary_symptoms))
for(var/symp in GLOB.list_symptoms)
var/datum/symptom/S = new symp
GLOB.dictionary_symptoms[S.id] = symp
@@ -59,9 +59,9 @@ GLOBAL_LIST_INIT(advance_cures, list(
D = null
// Generate symptoms if we weren't given any.
- if(!symptoms || !symptoms.len)
+ if(!LAZYLEN(symptoms))
- if(!D || !D.symptoms || !D.symptoms.len)
+ if(!D || !LAZYLEN(D.symptoms))
symptoms = GenerateSymptoms()
else
for(var/datum/symptom/S in D.symptoms)
@@ -80,7 +80,7 @@ GLOBAL_LIST_INIT(advance_cures, list(
// Randomly pick a symptom to activate.
/datum/disease/advance/stage_act()
..()
- if(symptoms && symptoms.len)
+ if(LAZYLEN(symptoms))
if(!processing)
processing = 1
@@ -148,7 +148,7 @@ GLOBAL_LIST_INIT(advance_cures, list(
if(!HasSymptom(S))
possible_symptoms += S
- if(!possible_symptoms.len)
+ if(!length(possible_symptoms))
return
//error("Advance Disease - We weren't able to get any possible symptoms in GenerateSymptoms([type_level_limit], [amount_get])")
@@ -182,7 +182,7 @@ GLOBAL_LIST_INIT(advance_cures, list(
//Generate disease properties based on the effects. Returns an associated list.
/datum/disease/advance/proc/GenerateProperties()
- if(!symptoms || !symptoms.len)
+ if(!LAZYLEN(symptoms))
CRASH("We did not have any symptoms before generating properties.")
var/list/properties = list("resistance" = 1, "stealth" = 1, "stage_rate" = 1, "transmittable" = 1, "severity" = 1)
@@ -200,11 +200,11 @@ GLOBAL_LIST_INIT(advance_cures, list(
// Assign the properties that are in the list.
/datum/disease/advance/proc/AssignProperties(list/properties = list())
- if(properties && properties.len)
+ if(LAZYLEN(properties))
hidden = list( (properties["stealth"] > 2), (properties["stealth"] > 3) )
// The more symptoms we have, the less transmittable it is but some symptoms can make up for it.
- SetSpread(clamp(properties["transmittable"] - symptoms.len, BLOOD, AIRBORNE))
+ SetSpread(clamp(properties["transmittable"] - length(symptoms), BLOOD, AIRBORNE))
permeability_mod = max(ceil(0.4 * properties["transmittable"]), 1)
cure_chance = 15 - clamp(properties["resistance"], -5, 5) // can be between 10 and 20
stage_prob = max(properties["stage_rate"], 2)
@@ -253,8 +253,8 @@ GLOBAL_LIST_INIT(advance_cures, list(
// Will generate a random cure, the less resistance the symptoms have, the harder the cure.
/datum/disease/advance/proc/GenerateCure(list/properties = list())
- if(properties && properties.len)
- var/res = clamp(properties["resistance"] - (symptoms.len / 2), 1, GLOB.advance_cures.len)
+ if(LAZYLEN(properties))
+ var/res = clamp(properties["resistance"] - (length(symptoms) / 2), 1, length(GLOB.advance_cures))
cure_id = GLOB.advance_cures[res]
// Get the cure name from the cure_id
@@ -274,7 +274,7 @@ GLOBAL_LIST_INIT(advance_cures, list(
// Randomly remove a symptom.
/datum/disease/advance/proc/Devolve()
- if(symptoms.len > 1)
+ if(length(symptoms) > 1)
var/s = SAFEPICK(symptoms)
if(s)
RemoveSymptom(s)
@@ -305,7 +305,7 @@ GLOBAL_LIST_INIT(advance_cures, list(
if(HasSymptom(S))
return
- if(symptoms.len < 5 + rand(-1, 1))
+ if(length(symptoms) < 5 + rand(-1, 1))
symptoms += S
else
RemoveSymptom(pick(symptoms))
@@ -331,14 +331,14 @@ GLOBAL_LIST_INIT(advance_cures, list(
for(var/datum/disease/advance/A in D_list)
diseases += A.Copy()
- if(!diseases.len)
+ if(!length(diseases))
return null
- if(diseases.len <= 1)
+ if(length(diseases) <= 1)
return pick(diseases) // Just return the only entry.
var/i = 0
// Mix our diseases until we are left with only one result.
- while(i < 20 && diseases.len > 1)
+ while(i < 20 && length(diseases) > 1)
i++
@@ -362,7 +362,7 @@ GLOBAL_LIST_INIT(advance_cures, list(
R.data_properties = data.Copy()
else
R.data_properties = data
- if(preserve.len)
+ if(length(preserve))
R.data_properties["viruses"] = preserve
/proc/AdminCreateVirus(mob/user)
@@ -385,7 +385,7 @@ GLOBAL_LIST_INIT(advance_cures, list(
i--
while(i > 0)
- if(D.symptoms.len > 0)
+ if(length(D.symptoms) > 0)
var/new_name = input(user, "Name your new disease.", "New Name")
D.AssignName(new_name)
diff --git a/code/datums/diseases/advance/symptoms/symptoms.dm b/code/datums/diseases/advance/symptoms/symptoms.dm
index 7746a03b4f89..8ddd5897f92a 100644
--- a/code/datums/diseases/advance/symptoms/symptoms.dm
+++ b/code/datums/diseases/advance/symptoms/symptoms.dm
@@ -17,7 +17,7 @@ GLOBAL_LIST_EMPTY(dictionary_symptoms)
/datum/symptom/New()
var/list/S = GLOB.list_symptoms
- for(var/i = 1; i <= S.len; i++)
+ for(var/i = 1; i <= length(S); i++)
if(src.type == S[i])
id = "[i]"
return
diff --git a/code/datums/diseases/black_goo.dm b/code/datums/diseases/black_goo.dm
index 5d6d96fcc57c..6fb74bc82bd4 100644
--- a/code/datums/diseases/black_goo.dm
+++ b/code/datums/diseases/black_goo.dm
@@ -301,12 +301,12 @@
/obj/item/storage/fancy/blackgoo/get_examine_text(mob/user)
. = ..()
. += "A strange looking metal container..."
- if(contents.len <= 0)
+ if(length(contents) <= 0)
. += "There are no bottles left inside it."
- else if(contents.len == 1)
+ else if(length(contents) == 1)
. += "There is one bottle left inside it."
else
- . += "There are [src.contents.len] bottles inside the container."
+ . += "There are [length(src.contents)] bottles inside the container."
/obj/item/storage/fancy/blackgoo/Initialize()
diff --git a/code/datums/elements/mouth_drop_item.dm b/code/datums/elements/mouth_drop_item.dm
index 7a546c6b3933..f27e1b928b7d 100644
--- a/code/datums/elements/mouth_drop_item.dm
+++ b/code/datums/elements/mouth_drop_item.dm
@@ -18,7 +18,7 @@
/datum/element/mouth_drop_item/proc/item_equipped(obj/item/I, mob/living/carbon/human/user, slot)
SIGNAL_HANDLER
- if(slot == WEAR_FACE)
+ if(slot == WEAR_FACE && !HAS_TRAIT(user, TRAIT_IRON_TEETH))
I.RegisterSignal(user, COMSIG_LIVING_SET_BODY_POSITION, TYPE_PROC_REF(/obj/item, drop_to_floor))
/datum/element/mouth_drop_item/proc/item_dropped(obj/item/I, mob/living/carbon/human/user)
diff --git a/code/datums/emergency_calls/cbrn.dm b/code/datums/emergency_calls/cbrn.dm
index fc20f98f20b3..c5e97bfb2ccf 100644
--- a/code/datums/emergency_calls/cbrn.dm
+++ b/code/datums/emergency_calls/cbrn.dm
@@ -1,8 +1,8 @@
/datum/emergency_call/cbrn
name = "CBRN (Squad)"
- arrival_message = "A CBRN squad has been dispatched to your ship. Stand by."
+ arrival_message = "Attention, this is the USS Kurtz, we have dispatched a CBRN squad to your ship per your distress call. Stand by for arrival."
objectives = "Handle the chemical, biological, radiological, or nuclear threat. Further orders may be provided."
- home_base = /datum/lazy_template/ert/weyland_station
+ home_base = /datum/lazy_template/ert/uscm_station
mob_min = 3
mob_max = 5
max_heavies = 0
@@ -41,7 +41,7 @@
/datum/emergency_call/cbrn/ert
name = "CBRN (Distress)"
- arrival_message = "Your distress signal has been received and we are dispatching the nearest CBRN squad to board with you now. Stand by."
+ arrival_message = "Attention, this is the USS Kurtz, we have dispatched a CBRN squad to your ship per your distress call. Stand by for arrival."
probability = 10
/datum/emergency_call/cbrn/ert/New()
diff --git a/code/datums/emergency_calls/contractor.dm b/code/datums/emergency_calls/contractor.dm
index 05d6ab7b4671..6721abdf1862 100644
--- a/code/datums/emergency_calls/contractor.dm
+++ b/code/datums/emergency_calls/contractor.dm
@@ -87,7 +87,7 @@
/datum/emergency_call/contractors/covert
name = "Military Contractors (Covert) (Hostile to WY)"
mob_max = 7
- probability = 0
+ probability = 20
max_medics = 1
max_engineers = 1
max_heavies = 1
diff --git a/code/datums/emergency_calls/custom.dm b/code/datums/emergency_calls/custom.dm
index 0117c83fc19c..b62d984f6fe3 100644
--- a/code/datums/emergency_calls/custom.dm
+++ b/code/datums/emergency_calls/custom.dm
@@ -19,7 +19,7 @@
if(!istype(spawn_loc))
return //Didn't find a useable spawn point.
- if(!players_to_offer.len)
+ if(!length(players_to_offer))
return // No more players
var/mob/living/carbon/human/H = pick(players_to_offer)
diff --git a/code/datums/emergency_calls/emergency_call.dm b/code/datums/emergency_calls/emergency_call.dm
index a803a7f06c78..99b31ab41f19 100644
--- a/code/datums/emergency_calls/emergency_call.dm
+++ b/code/datums/emergency_calls/emergency_call.dm
@@ -64,11 +64,11 @@
var/home_base = /datum/lazy_template/ert/freelancer_station
/datum/game_mode/proc/initialize_emergency_calls()
- if(all_calls.len) //It's already been set up.
+ if(length(all_calls)) //It's already been set up.
return
var/list/total_calls = typesof(/datum/emergency_call)
- if(!total_calls.len)
+ if(!length(total_calls))
to_world(SPAN_DANGER("\b Error setting up emergency calls, no datums found."))
return FALSE
for(var/S in total_calls)
@@ -154,7 +154,7 @@
if(jobban_isbanned(src, "Syndicate") || jobban_isbanned(src, "Emergency Response Team"))
to_chat(src, SPAN_DANGER("You are jobbanned from the emergency response team!"))
return
- if(!SSticker.mode || !SSticker.mode.picked_calls.len)
+ if(!SSticker.mode || !length(SSticker.mode.picked_calls))
to_chat(src, SPAN_WARNING("No distress beacons are active. You will be notified if this changes."))
return
@@ -230,8 +230,8 @@
SEND_SIGNAL(src, COMSIG_ERT_SETUP)
- if(candidates.len < mob_min && !spawn_max_amount)
- message_admins("Aborting distress beacon, not enough candidates: found [candidates.len].")
+ if(length(candidates) < mob_min && !spawn_max_amount)
+ message_admins("Aborting distress beacon, not enough candidates: found [length(candidates)].")
members = list() //Empty the members list.
candidates = list()
@@ -244,7 +244,7 @@
var/list/datum/mind/picked_candidates = list()
if(mob_max > 0)
var/mob_count = 0
- while (mob_count < mob_max && candidates.len)
+ while (mob_count < mob_max && length(candidates))
var/datum/mind/M = pick(candidates) //Get a random candidate, then remove it from the candidates list.
if(!istype(M))//Something went horrifically wrong
candidates.Remove(M)
@@ -254,13 +254,13 @@
continue
if(M.current && M.current.stat != DEAD)
candidates.Remove(M) //Strip them from the list, they aren't dead anymore.
- if(!candidates.len)
+ if(!length(candidates))
break //NO picking from empty lists
continue
picked_candidates.Add(M)
candidates.Remove(M)
mob_count++
- if(candidates.len)
+ if(length(candidates))
for(var/datum/mind/I in candidates)
if(I.current)
to_chat(I.current, SPAN_WARNING("You didn't get selected to join the distress team. Better luck next time!"))
@@ -310,7 +310,7 @@
SSshuttle.moveShuttleToDock(shuttle, pick(active_lzs), TRUE)
var/i = 0
- if(picked_candidates.len)
+ if(length(picked_candidates))
for(var/datum/mind/M in picked_candidates)
members += M
i++
diff --git a/code/datums/emergency_calls/ert_stations.dm b/code/datums/emergency_calls/ert_stations.dm
index 312ceeaf9eed..5a129723bad0 100644
--- a/code/datums/emergency_calls/ert_stations.dm
+++ b/code/datums/emergency_calls/ert_stations.dm
@@ -15,3 +15,6 @@
/datum/lazy_template/ert/pizza_station
map_name = "pizza_ert_station"
+
+/datum/lazy_template/ert/uscm_station
+ map_name = "uscm_ert_station"
diff --git a/code/datums/emergency_calls/forecon.dm b/code/datums/emergency_calls/forecon.dm
new file mode 100644
index 000000000000..98e6a1c27ec2
--- /dev/null
+++ b/code/datums/emergency_calls/forecon.dm
@@ -0,0 +1,62 @@
+/datum/emergency_call/forecon
+ name = "FORECON (Squad)"
+ arrival_message = "A Force Reconnaissance squad has been dispatched to your ship. Stand by."
+ objectives = "Handle whatever threat is present. Further orders may be provided."
+ home_base = /datum/lazy_template/ert/weyland_station
+ probability = 0
+ mob_min = 3
+ mob_max = 6
+
+ max_heavies = 1
+ max_medics = 1
+ max_smartgunners = 1
+
+/datum/emergency_call/forecon/create_member(datum/mind/new_mind, turf/override_spawn_loc)
+ var/turf/spawn_loc = override_spawn_loc ? override_spawn_loc : get_spawn_point()
+
+ if(!istype(spawn_loc))
+ return //Didn't find a useable spawn point.
+
+ var/mob/living/carbon/human/mob = new(spawn_loc)
+ new_mind.transfer_to(mob, TRUE)
+
+ if(!leader && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(mob.client, JOB_SQUAD_LEADER, time_required_for_job))
+ leader = mob
+ arm_equipment(mob, /datum/equipment_preset/uscm/forecon/squad_leader, TRUE, TRUE)
+ to_chat(mob, SPAN_ROLE_HEADER("You are the FORECON Squad Leader!"))
+
+ else if(medics < max_medics && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_MEDIC) && check_timelock(mob.client, JOB_SQUAD_MEDIC, time_required_for_job))
+ medics++
+ arm_equipment(mob, /datum/equipment_preset/uscm/forecon/tech, TRUE, TRUE)
+ to_chat(mob, SPAN_ROLE_HEADER("You are the FORECON Support Technician!"))
+
+ else if(smartgunners < max_smartgunners && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_SMARTGUNNER) && check_timelock(mob.client, JOB_SQUAD_SMARTGUN))
+ smartgunners++
+ to_chat(mob, SPAN_ROLE_HEADER("You are a FORECON Smartgunner!"))
+ arm_equipment(mob, /datum/equipment_preset/uscm/forecon/smartgunner, TRUE, TRUE)
+
+ else if(heavies < max_heavies && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_HEAVY) && check_timelock(mob.client, JOB_SQUAD_SPECIALIST))
+ heavies++
+ to_chat(mob, SPAN_ROLE_HEADER("You are a FORECON Designated Marskman!"))
+ arm_equipment(mob, /datum/equipment_preset/uscm/forecon/marksman, TRUE, TRUE)
+
+ else
+ arm_equipment(mob, /datum/equipment_preset/uscm/forecon/standard, TRUE, TRUE)
+ to_chat(mob, SPAN_ROLE_HEADER("You are a FORECON Rifleman!"))
+
+ to_chat(mob, SPAN_ROLE_BODY("You are a member of the USCM's Force Reconnisance. FORECON is a force that specializes in special operations behind enemy lines, or conducting reconnisance in situations regular Marines are not expected to handle."))
+ addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS)
+
+/datum/emergency_call/forecon/platoon
+ name = "FORECON (Platoon)"
+ mob_min = 6
+ mob_max = 30
+ probability = 0
+ max_medics = 6
+ max_heavies = 1
+ max_smartgunners = 2
+
+/datum/emergency_call/forecon/platoon/New()
+ ..()
+ arrival_message = "A Force Reconnaissance squad has been dispatched to your ship. Stand by."
+ objectives = "Handle whatever threat is present. Further orders may be provided."
diff --git a/code/datums/entities/player.dm b/code/datums/entities/player.dm
index a62e663ba21c..fbdcc11e1037 100644
--- a/code/datums/entities/player.dm
+++ b/code/datums/entities/player.dm
@@ -606,14 +606,14 @@ BSQL_PROTECT_DATUM(/datum/entity/player)
note.admin_rank = "N/A"
note.date = I.timestamp
var/list/splitting = splittext(I.content, "|")
- if(splitting.len == 1)
+ if(length(splitting) == 1)
note.text = I.content
note.is_ban = FALSE
- if(splitting.len == 3)
+ if(length(splitting) == 3)
note.text = splitting[3]
note.ban_time = text2num(replacetext(replacetext(splitting[2],"Duration: ","")," minutes",""))
note.is_ban = TRUE
- if(splitting.len == 2)
+ if(length(splitting) == 2)
note.text = I.content
note.is_ban = TRUE
diff --git a/code/datums/event_info_text.dm b/code/datums/event_info_text.dm
index 5336c5abed9d..21469ed379cd 100644
--- a/code/datums/event_info_text.dm
+++ b/code/datums/event_info_text.dm
@@ -15,7 +15,6 @@
return
if(msg == "")
- to_chat(user, SPAN_WARNING("No [faction] custom event message has been found. Either no custom event is taking place, admin hasn't properly set this or deemed it unnecessary to be set."))
return
var/dat
diff --git a/code/datums/global_variables.dm b/code/datums/global_variables.dm
index 953f42f1723f..24d32bbf3552 100644
--- a/code/datums/global_variables.dm
+++ b/code/datums/global_variables.dm
@@ -118,15 +118,11 @@
/client/proc/debug_global_variable(name, value, level)
var/html = ""
- var/change = 0
//to make the value bold if changed
if(!(admin_holder.rights & R_DEBUG))
return html
html += "EC "
- if(value != initial(global.vars[name]))
- html += ""
- change = 1
if (isnull(value))
html += "[name] = null"
@@ -158,9 +154,9 @@
else if (istype(value, /list))
var/list/L = value
- html += "[name] = /list ([L.len])"
+ html += "[name] = /list ([length(L)])"
- if (L.len > 0 && !(name == "underlays" || name == "overlays" || name == "vars" || L.len > 500))
+ if (length(L) > 0 && !(name == "underlays" || name == "overlays" || name == "vars" || length(L) > 500))
// not sure if this is completely right...
html += ""
var/index = 1
@@ -175,8 +171,6 @@
else
html += "[name] = [value]"
- if(change)
- html += "
"
html += ""
@@ -353,7 +347,6 @@
if(admin_holder && admin_holder.marked_datum)
possible_classes += "marked datum"
possible_classes += "edit referenced object"
- possible_classes += "restore to default"
class = tgui_input_list(usr, "What kind of variable?","Variable Type", possible_classes)
if(!class)
@@ -365,9 +358,6 @@
mod_list(global.vars[variable])
return
- if("restore to default")
- global.vars[variable] = initial(global.vars[variable])
-
if("edit referenced object")
return .(global.vars[variable])
diff --git a/code/datums/helper_datums/getrev.dm b/code/datums/helper_datums/getrev.dm
index b7d528380a42..aa4665bda652 100644
--- a/code/datums/helper_datums/getrev.dm
+++ b/code/datums/helper_datums/getrev.dm
@@ -41,7 +41,7 @@ GLOBAL_DATUM_INIT(revdata, /datum/getrev, new)
return msg.Join("\n")
/datum/getrev/proc/GetTestMergeInfo(header = TRUE)
- if(!testmerge.len)
+ if(!length(testmerge))
return ""
. = header ? "The following pull requests are currently test merged:
" : ""
for(var/line in testmerge)
@@ -70,7 +70,7 @@ GLOBAL_DATUM_INIT(revdata, /datum/getrev, new)
var/pc = revdata.originmastercommit
if(pc)
msg += "Master commit: [pc]"
- if(revdata.testmerge.len)
+ if(length(revdata.testmerge))
msg += revdata.GetTestMergeInfo()
if(revdata.commit && revdata.commit != revdata.originmastercommit)
msg += "Local commit: [revdata.commit]"
diff --git a/code/datums/helper_datums/teleport.dm b/code/datums/helper_datums/teleport.dm
index 6a4276208d13..2b283c978c3a 100644
--- a/code/datums/helper_datums/teleport.dm
+++ b/code/datums/helper_datums/teleport.dm
@@ -157,8 +157,8 @@
precision = rand(1,100)
var/list/bagholding = teleatom.search_contents_for(/obj/item/storage/backpack/holding)
- if(bagholding.len)
- precision = max(rand(1,100)*bagholding.len,100)
+ if(length(bagholding))
+ precision = max(rand(1,100)*length(bagholding),100)
if(istype(teleatom, /mob/living))
var/mob/living/MM = teleatom
to_chat(MM, SPAN_WARNING("The Bluespace interface on your Bag of Holding interferes with the teleport!"))
diff --git a/code/datums/matrix_editor.dm b/code/datums/matrix_editor.dm
index 8e064d76db7b..c31720014d45 100644
--- a/code/datums/matrix_editor.dm
+++ b/code/datums/matrix_editor.dm
@@ -72,11 +72,11 @@
if(!elements_str)
return
var/list/elements = splittext(elements_str, ",")
- if(elements.len != 6)
- to_chat(usr, "When creating a custom matrix, explicitly provide all 6 elements! Only [elements.len] were provided.")
+ if(length(elements) != 6)
+ to_chat(usr, "When creating a custom matrix, explicitly provide all 6 elements! Only [length(elements)] were provided.")
return
- for(var/i = 1 to elements.len)
+ for(var/i = 1 to length(elements))
var/num_ver = text2num(elements[i])
if(isnull(num_ver))
to_chat(usr, "Failed to convert element #[i] ([elements[i]]) to a number.")
diff --git a/code/datums/medal_awards.dm b/code/datums/medal_awards.dm
index f2dfc6a5c1d5..15152a8179a4 100644
--- a/code/datums/medal_awards.dm
+++ b/code/datums/medal_awards.dm
@@ -402,7 +402,7 @@ GLOBAL_LIST_INIT(xeno_medals, list(XENO_SLAUGHTER_MEDAL, XENO_RESILIENCE_MEDAL,
to_chat(usr, "Error: Could not find the [is_marine_medal ? "marine" : "xeno"] awards for '[recipient_name]'!")
return FALSE
- if(index < 1 || index > recipient_award.medal_names.len)
+ if(index < 1 || index > length(recipient_award.medal_names))
to_chat(usr, "Error: Index [index] is out of bounds!")
return FALSE
@@ -429,7 +429,7 @@ GLOBAL_LIST_INIT(xeno_medals, list(XENO_SLAUGHTER_MEDAL, XENO_RESILIENCE_MEDAL,
// Either entirely delete the award from the list, or just remove the entry if there are multiple
var/medal_type = recipient_award.medal_names[index]
var/citation = recipient_award.medal_citations[index]
- if(recipient_award.medal_names.len == 1)
+ if(length(recipient_award.medal_names) == 1)
if(is_marine_medal)
GLOB.medal_awards.Remove(recipient_name)
else
diff --git a/code/datums/quadtree.dm b/code/datums/quadtree.dm
index 2b0360152997..200a51b358a0 100644
--- a/code/datums/quadtree.dm
+++ b/code/datums/quadtree.dm
@@ -49,43 +49,124 @@
..()
return QDEL_HINT_IWILLGC
-/datum/shape //Leaving rectangles as a subtype if anyone decides to add circles later
+/// A simple geometric shape for testing collisions and intersections. This one is a single point.
+/datum/shape
+ /// Horizontal position of the shape's center point.
var/center_x = 0
+ /// Vertical position of the shape's center point.
var/center_y = 0
+ /// Distance from the shape's leftmost to rightmost extent.
+ var/bounds_x = 0
+ /// Distance from the shape's topmost to bottommost extent.
+ var/bounds_y = 0
-/datum/shape/proc/intersects()
- return
-/datum/shape/proc/contains()
- return
+/datum/shape/New(center_x, center_y)
+ set_shape(center_x, center_y)
+/// Assign shape variables.
+/datum/shape/proc/set_shape(center_x, center_y)
+ src.center_x = center_x
+ src.center_y = center_y
+
+/// Returns TRUE if the coordinates x, y are in or on the shape, otherwise FALSE.
+/datum/shape/proc/contains_xy(x, y)
+ return center_x == x && center_y == y
+
+/// Returns TRUE if the coord datum is in or on the shape, otherwise FALSE.
+/datum/shape/proc/contains_coords(datum/coords/coords)
+ return contains_xy(coords.x_pos, coords.y_pos)
+
+/// Returns TRUE if the atom is in or on the shape, otherwise FALSE.
+/datum/shape/proc/contains_atom(atom/atom)
+ return contains_xy(atom.x, atom.y)
+
+/// Returns TRUE if this shape's bounding box intersects the provided shape's bounding box, otherwise FALSE. Generally faster than a full intersection test.
+/datum/shape/proc/intersects_aabb(datum/shape/aabb)
+ return (abs(src.center_x - aabb.center_x) <= (src.bounds_x + aabb.bounds_x) * 0.5) && (abs(src.center_y - aabb.center_y) <= (src.bounds_x + aabb.bounds_x) * 0.5)
+
+/// Returns TRUE if this shape intersects the provided rectangle shape, otherwise FALSE.
+/datum/shape/proc/intersects_rect(datum/shape/rectangle/rect)
+ return rect.contains_xy(src.center_x, src.center_y)
+
+/// A simple geometric shape for testing collisions and intersections. This one is an axis-aligned rectangle.
/datum/shape/rectangle
+ /// Distance from the shape's leftmost to rightmost extent.
+ var/width = 0
+ /// Distance from the shape's topmost to bottommost extent.
+ var/height = 0
+
+/datum/shape/rectangle/New(center_x, center_y, width, height)
+ set_shape(center_x, center_y, width, height)
+
+/datum/shape/rectangle/set_shape(center_x, center_y, width, height)
+ ..()
+ src.bounds_x = width
+ src.bounds_y = height
+ src.width = width
+ src.height = height
+
+/datum/shape/rectangle/contains_xy(x, y)
+ return (abs(center_x - x) <= width * 0.5) && (abs(center_y - y) <= height * 0.5)
+
+/datum/shape/rectangle/intersects_rect(datum/shape/rectangle/rect)
+ return intersects_aabb(rect)
+
+/// A simple geometric shape for testing collisions and intersections. This one is an axis-aligned square.
+/datum/shape/rectangle/square
+ /// Distance between the shape's opposing extents.
+ var/length = 0
+
+/datum/shape/rectangle/square/New(center_x, center_y, length)
+ set_shape(center_x, center_y, length)
+
+/datum/shape/rectangle/square/set_shape(center_x, center_y, length)
+ ..(center_x, center_y, length, length)
+ src.length = length
+
+/// A simple geometric shape for testing collisions and intersections. This one is an axis-aligned ellipse.
+/datum/shape/ellipse
+ /// Distance from the shape's leftmost to rightmost extent.
var/width = 0
+ /// Distance from the shape's topmost to bottommost extent.
var/height = 0
+ VAR_PROTECTED/_axis_x_sq = 0
+ VAR_PROTECTED/_axis_y_sq = 0
+
+/datum/shape/ellipse/New(center_x, center_y, width, height)
+ set_shape(center_x, center_y, width, height)
-/datum/shape/rectangle/New(x, y, w, h)
+/datum/shape/ellipse/set_shape(center_x, center_y, width, height)
..()
- center_x = x
- center_y = y
- width = w
- height = h
-
-/datum/shape/rectangle/intersects(datum/shape/rectangle/range)
- return !(range.center_x + range.width/2 < center_x - width / 2|| \
- range.center_x - range.width/2 > center_x + width / 2|| \
- range.center_y + range.height/2 < center_y - height / 2|| \
- range.center_y - range.height/2 > center_y + height / 2)
-
-/datum/shape/rectangle/contains(datum/coords/coords)
- return (coords.x_pos >= center_x - width / 2 \
- && coords.x_pos <= center_x + width / 2 \
- && coords.y_pos >= center_y - height /2 \
- && coords.y_pos <= center_y + height / 2)
-
-/datum/shape/rectangle/proc/contains_atom(atom/A)
- return (A.x >= center_x - width / 2 \
- && A.x <= center_x + width / 2 \
- && A.y >= center_y - height /2 \
- && A.y <= center_y + height / 2)
+ src.bounds_x = width
+ src.bounds_y = height
+ src.width = width
+ src.height = height
+ src._axis_x_sq = (width * 0.5)**2
+ src._axis_y_sq = (height * 0.5)**2
+
+/datum/shape/ellipse/contains_xy(x, y)
+ return ((center_x - x)**2 / _axis_x_sq + (center_y - y)**2 / _axis_y_sq <= 1)
+
+/datum/shape/ellipse/intersects_rect(datum/shape/rectangle/rect)
+ if(..())
+ return TRUE
+
+ var/nearest_x = clamp(src.center_x, rect.center_x - rect.width * 0.5, rect.center_x + rect.width * 0.5)
+ var/nearest_y = clamp(src.center_y, rect.center_y - rect.height * 0.5, rect.center_y + rect.height * 0.5)
+
+ return src.contains_xy(nearest_x, nearest_y)
+
+/// A simple geometric shape for testing collisions and intersections. This one is a circle.
+/datum/shape/ellipse/circle
+ /// Distance from the shape's center to edge.
+ var/radius = 0
+
+/datum/shape/ellipse/circle/New(center_x, center_y, radius)
+ set_shape(center_x, center_y, radius)
+
+/datum/shape/ellipse/circle/set_shape(center_x, center_y, radius)
+ ..(center_x, center_y, radius * 2, radius * 2)
+ src.radius = radius
/datum/quadtree/proc/subdivide()
//Warning: this might give you eye cancer
@@ -96,14 +177,14 @@
is_divided = TRUE
/datum/quadtree/proc/insert_player(datum/coords/qtplayer/p_coords)
- if(!boundary.contains(p_coords))
+ if(!boundary.contains_coords(p_coords))
return FALSE
if(!player_coords)
player_coords = list(p_coords)
return TRUE
- else if(!final_divide && player_coords.len >= QUADTREE_CAPACITY)
+ else if(!final_divide && length(player_coords) >= QUADTREE_CAPACITY)
if(!is_divided)
subdivide()
if(nw_branch.insert_player(p_coords))
@@ -118,11 +199,11 @@
player_coords.Add(p_coords)
return TRUE
-/datum/quadtree/proc/query_range(datum/shape/rectangle/range, list/found_players, flags = 0)
+/datum/quadtree/proc/query_range(datum/shape/range, list/found_players, flags = 0)
if(!found_players)
found_players = list()
. = found_players
- if(!range?.intersects(boundary))
+ if(!range?.intersects_rect(boundary))
return
if(is_divided)
nw_branch.query_range(range, found_players, flags)
@@ -136,7 +217,7 @@
continue
if((flags & QTREE_EXCLUDE_OBSERVER) && P.is_observer)
continue
- if(range.contains(P))
+ if(range.contains_coords(P))
if(flags & QTREE_SCAN_MOBS)
found_players.Add(P.player.mob)
else
diff --git a/code/datums/recipe.dm b/code/datums/recipe.dm
index b4b6c45a0c2c..68c036ff71df 100644
--- a/code/datums/recipe.dm
+++ b/code/datums/recipe.dm
@@ -49,7 +49,7 @@
. = -1
else
return 0
- if ((reagents?(reagents.len):(0)) < avail_reagents.reagent_list.len)
+ if ((LAZYLEN(reagents) || 0) < length(avail_reagents.reagent_list))
return -1
return .
@@ -70,7 +70,7 @@
break
if (!found)
. = -1
- if (checklist.len)
+ if (length(checklist))
return 0
return .
@@ -107,17 +107,17 @@
for (var/datum/recipe/recipe in available_recipes)
if (recipe.check_reagents(obj.reagents)==exact && recipe.check_items(obj)==exact)
possible_recipes+=recipe
- if (possible_recipes.len==0)
+ if (length(possible_recipes)==0)
return null
- else if (possible_recipes.len==1)
+ else if (length(possible_recipes)==1)
return possible_recipes[1]
else //okay, let's select the most complicated recipe
var/r_count = 0
var/i_count = 0
. = possible_recipes[1]
for (var/datum/recipe/recipe in possible_recipes)
- var/N_i = (recipe.items)?(recipe.items.len):0
- var/N_r = (recipe.reagents)?(recipe.reagents.len):0
+ var/N_i = LAZYLEN(recipe.items) || 0
+ var/N_r = LAZYLEN(recipe.reagents) || 0
if (N_i > i_count || (N_i== i_count && N_r > r_count ))
r_count = N_r
i_count = N_i
diff --git a/code/datums/research_upgrade_datum.dm b/code/datums/research_upgrade_datum.dm
index 8b19bafad1cd..fd571afdfcf0 100644
--- a/code/datums/research_upgrade_datum.dm
+++ b/code/datums/research_upgrade_datum.dm
@@ -3,8 +3,10 @@
var/name = "Upgrade."
///name of upgrades, not items. Items are at research_upgrades.dm somewhere in item folder.
var/desc = "something is broken. yippee!!"
- ///which behavior should this type follow. Should this be completely excluded from the buy menu? should it be one of the dropdown options? This is also what gets passed to the initizialize of an item, this can be any number *but* it cannot be -1 or -2, as it messes with the buy menu.
+ ///which behavior should this type follow. Should this be completely excluded from the buy menu? should it be one of the dropdown options? or a normal item?
var/behavior = RESEARCH_UPGRADE_EXCLUDE_BUY // should this be on the list?
+ //This is what gets passed to the initizialize of an item, RESEARCH_UPGRADE_NOTHING_TO_PASS to not pass anything.
+ var/on_init_argument = RESEARCH_UPGRADE_NOTHING_TO_PASS
/// the price of the upgrade, refer to this: 500 is a runner, 8k is queen. T3 is usually 3k, woyer is 2k.
var/value_upgrade = 1000
/// actual path to the item.(upgrade)
@@ -33,28 +35,32 @@
/datum/research_upgrades/machinery/autodoc/internal_bleed
name = "AutoDoc Internal Bleeding Repair"
desc = "A data and instruction set for the AutoDoc, making it capable of rapidly fixing internal bleeding."
- behavior = RESEARCH_UPGRADE_TIER_1
+ on_init_argument = RESEARCH_UPGRADE_TIER_1
+ behavior = RESEARCH_UPGRADE_ITEM
value_upgrade = 200
clearance_req = 1
/datum/research_upgrades/machinery/autodoc/broken_bone
name = "AutoDoc Bone Fracture Repair"
desc = "A data instruction set for the AutoDoc, making it capable of setting fractures and applying bonegel."
- behavior = RESEARCH_UPGRADE_TIER_2
+ on_init_argument = RESEARCH_UPGRADE_TIER_2
+ behavior = RESEARCH_UPGRADE_ITEM
value_upgrade = 2000
clearance_req = 3
/datum/research_upgrades/machinery/autodoc/organ_damage
name = "AutoDoc Broken Organ Repair"
desc = "A data and instruction set for the AutoDoc, making it capable of fixing organ damage."
- behavior = RESEARCH_UPGRADE_TIER_3
+ on_init_argument = RESEARCH_UPGRADE_TIER_3
+ behavior = RESEARCH_UPGRADE_ITEM
value_upgrade = 1500
clearance_req = 2
/datum/research_upgrades/machinery/autodoc/larva_removal
name = "AutoDoc Embryo Removal"
desc = "Data and instruction set for AutoDoc making it mildly proficient in removing parasites left by unknown organism."
- behavior = RESEARCH_UPGRADE_TIER_4
+ on_init_argument = RESEARCH_UPGRADE_TIER_4
+ behavior = RESEARCH_UPGRADE_ITEM
value_upgrade = 4000
clearance_req = 6
@@ -62,7 +68,8 @@
/datum/research_upgrades/machinery/sleeper
name = "Sleeper Upgrade"
desc = "Research upgrade for Sleeper system, technology on this disk is used on a sleeper to allow wider spectrum of chemicals to be administered, as well as upgrading dialysis software."
- behavior = RESEARCH_UPGRADE_TIER_1
+ on_init_argument = RESEARCH_UPGRADE_NOTHING_TO_PASS
+ behavior = RESEARCH_UPGRADE_ITEM
value_upgrade = 500
item_reference = /obj/item/research_upgrades/sleeper
upgrade_type = ITEM_MACHINERY_UPGRADE
@@ -77,7 +84,8 @@
desc = "Sell the data acquired to the nearest Weyland-Yutani Science division team for 8 or 9 points."
value_upgrade = 2000
item_reference = /obj/item/research_upgrades/credits
- behavior = RESEARCH_UPGRADE_TIER_1
+ on_init_argument = RESEARCH_UPGRADE_NOTHING_TO_PASS
+ behavior = RESEARCH_UPGRADE_ITEM
upgrade_type = ITEM_ACCESSORY_UPGRADE
change_purchase = 500
maximum_price = 5000
@@ -88,7 +96,8 @@
desc = "An advanced, robust version of the normal scalpel, allowing it to pierce through thick skin and chitin alike with extreme ease."
value_upgrade = 3000
item_reference = /obj/item/tool/surgery/scalpel/laser/advanced
- behavior = RESEARCH_UPGRADE_TIER_1
+ on_init_argument = RESEARCH_UPGRADE_NOTHING_TO_PASS
+ behavior = RESEARCH_UPGRADE_ITEM
upgrade_type = ITEM_ACCESSORY_UPGRADE
clearance_req = 3
@@ -97,7 +106,8 @@
desc = "A true extension of the surgeon's body, this marvel instantly and completely prepares an incision, allowing for the immediate commencement of therapeutic steps."
value_upgrade = 3000
item_reference = /obj/item/tool/surgery/scalpel/manager
- behavior = RESEARCH_UPGRADE_TIER_1
+ on_init_argument = RESEARCH_UPGRADE_NOTHING_TO_PASS
+ behavior = RESEARCH_UPGRADE_ITEM
upgrade_type = ITEM_ACCESSORY_UPGRADE
clearance_req = 4
@@ -109,7 +119,8 @@
change_purchase = -200
minimum_price = 200
item_reference = /obj/item/stack/medical/splint/nano/research
- behavior = RESEARCH_UPGRADE_TIER_5 //adjust this to change amount of nanosplints in a stack, cant be higher than five, go change max_amount in the nanosplint itself, then change it.
+ on_init_argument = RESEARCH_UPGRADE_TIER_5 //adjust this to change amount of nanosplints in a stack, cant be higher than five, go change max_amount in the nanosplint itself, then change it.
+ behavior = RESEARCH_UPGRADE_ITEM
upgrade_type = ITEM_ACCESSORY_UPGRADE
/datum/research_upgrades/item/flamer_tank
@@ -121,7 +132,8 @@
minimum_price = 100
maximum_price = 1000
item_reference = /obj/item/ammo_magazine/flamer_tank/custom/upgraded
- behavior = RESEARCH_UPGRADE_NULL
+ on_init_argument = RESEARCH_UPGRADE_NOTHING_TO_PASS
+ behavior = RESEARCH_UPGRADE_ITEM
upgrade_type = ITEM_ACCESSORY_UPGRADE
/datum/research_upgrades/item/flamer_tank/smoke
@@ -142,7 +154,8 @@
name = "Universal Translator Plate"
desc = "A uniform-attachable plate capable of translating any unknown language heard by the wearer."
value_upgrade = 2000
- behavior = RESEARCH_UPGRADE_TIER_1
+ on_init_argument = RESEARCH_UPGRADE_NOTHING_TO_PASS
+ behavior = RESEARCH_UPGRADE_ITEM
clearance_req = 6
upgrade_type = ITEM_ARMOR_UPGRADE
item_reference = /obj/item/clothing/accessory/health/research_plate/translator
@@ -152,7 +165,8 @@
name = "Active Blood Coagulator Plate"
desc = "A uniform-attachable plate capable of coagulating any bleeding wounds the user possesses."
value_upgrade = 1200
- behavior = RESEARCH_UPGRADE_TIER_1
+ on_init_argument = RESEARCH_UPGRADE_NOTHING_TO_PASS
+ behavior = RESEARCH_UPGRADE_ITEM
clearance_req = 2
change_purchase = -200
minimum_price = 200
@@ -164,7 +178,8 @@
desc = "A medical plate with two buttons on the sides and a hefty chemical tank. Attached to a uniform and on a simultaneous press, it injects an emergency dose of medical chemicals much larger than a normal emergency autoinjector. Single time use and is recycled in biomass printer. Features overdose protection."
value_upgrade = 250
clearance_req = 1
- behavior = RESEARCH_UPGRADE_TIER_1
+ on_init_argument = RESEARCH_UPGRADE_NOTHING_TO_PASS
+ behavior = RESEARCH_UPGRADE_ITEM
change_purchase = -100
minimum_price = 100
upgrade_type = ITEM_ARMOR_UPGRADE
@@ -175,7 +190,8 @@
desc = "A strong trauma plate, able to protect the user from a large amount of bullets. Completely useless against sharp objects."
value_upgrade = 500
clearance_req = 4
- behavior = RESEARCH_UPGRADE_TIER_1
+ on_init_argument = RESEARCH_UPGRADE_NOTHING_TO_PASS
+ behavior = RESEARCH_UPGRADE_ITEM
upgrade_type = ITEM_ARMOR_UPGRADE
change_purchase = -50
minimum_price = 200
@@ -183,10 +199,11 @@
/datum/research_upgrades/armor/preservation
name = "Death Preservation Plate"
- desc = "preservation plate which activates once the user is dead, uses variety of different substances and sensors to slow down the decay and increase the time before the user is permanently dead, due to small tank of preservatives, it needs to be replaced on each death. Extends time to permadeath by around four minutes."
+ desc = "Preservation plate which activates once the user is dead, uses variety of different substances and sensors to slow down the decay and increase the time before the user is permanently dead, due to small tank of preservatives, it needs to be replaced on each death. Extends time to permadeath by around four minutes."
value_upgrade = 500
clearance_req = 4
- behavior = RESEARCH_UPGRADE_TIER_1
+ on_init_argument = RESEARCH_UPGRADE_NOTHING_TO_PASS
+ behavior = RESEARCH_UPGRADE_ITEM
upgrade_type = ITEM_ARMOR_UPGRADE
change_purchase = -100
minimum_price = 100
diff --git a/code/datums/soundOutput.dm b/code/datums/soundOutput.dm
index 1f4512b28d59..6ebc32c7e41f 100644
--- a/code/datums/soundOutput.dm
+++ b/code/datums/soundOutput.dm
@@ -4,13 +4,25 @@
var/list/soundscape_playlist = list() //Updated on changing areas
var/ambience = null //The file currently being played as ambience
var/status_flags = 0 //For things like ear deafness, psychodelic effects, and other things that change how all sounds behave
- var/list/echo
-/datum/soundOutput/New(client/C)
- if(!C)
+
+ /// Currently applied environmental reverb.
+ VAR_PROTECTED/owner_environment = SOUND_ENVIRONMENT_NONE
+
+/datum/soundOutput/New(client/client)
+ if(!client)
qdel(src)
return
- owner = C
- . = ..()
+ owner = client
+ RegisterSignal(owner.mob, COMSIG_MOVABLE_MOVED, PROC_REF(on_mob_moved))
+ RegisterSignal(owner.mob, COMSIG_MOB_LOGOUT, PROC_REF(on_mob_logout))
+ RegisterSignal(owner, COMSIG_CLIENT_MOB_LOGGED_IN, PROC_REF(on_client_mob_logged_in))
+ return ..()
+
+/datum/soundOutput/Destroy()
+ UnregisterSignal(owner.mob, list(COMSIG_MOVABLE_MOVED, COMSIG_MOB_LOGOUT))
+ UnregisterSignal(owner, COMSIG_CLIENT_MOB_LOGGED_IN)
+ owner = null
+ return ..()
/datum/soundOutput/proc/process_sound(datum/sound_template/T)
var/sound/S = sound(T.file, T.wait, T.repeat)
@@ -22,7 +34,6 @@
S.frequency = T.frequency
S.falloff = T.falloff
S.status = T.status
- S.echo = T.echo
if(T.x && T.y && T.z)
var/turf/owner_turf = get_turf(owner.mob)
if(owner_turf)
@@ -38,16 +49,12 @@
S.x = T.x - owner_turf.x
S.y = 0
S.z = T.y - owner_turf.y
- var/area/A = owner_turf.loc
- S.environment = A.sound_environment
S.y += T.y_s_offset
S.x += T.x_s_offset
+ S.echo = SOUND_ECHO_REVERB_ON //enable environment reverb for positional sounds
if(owner.mob.ear_deaf > 0)
S.status |= SOUND_MUTE
- if(owner.mob.sound_environment_override != SOUND_ENVIRONMENT_NONE)
- S.environment = owner.mob.sound_environment_override
-
sound_to(owner,S)
/datum/soundOutput/proc/update_ambience(area/target_area, ambience_override, force_update = FALSE)
@@ -84,7 +91,6 @@
S.status = status_flags
if(target_area)
- S.environment = target_area.sound_environment
var/muffle
if(target_area.ceiling_muffle)
switch(target_area.ceiling)
@@ -104,7 +110,7 @@
/datum/soundOutput/proc/update_soundscape()
scape_cooldown--
if(scape_cooldown <= 0)
- if(soundscape_playlist.len)
+ if(length(soundscape_playlist))
var/sound/S = sound()
S.file = pick(soundscape_playlist)
S.volume = 100 * owner.volume_preferences[VOLUME_AMB]
@@ -128,6 +134,51 @@
S.status = SOUND_UPDATE
sound_to(owner, S)
+/// Pulls mob's area's sound_environment and applies if necessary and not overridden.
+/datum/soundOutput/proc/update_area_environment()
+ var/area/owner_area = get_area(owner.mob)
+ var/new_environment = owner_area.sound_environment
+
+ if(owner.mob.sound_environment_override != SOUND_ENVIRONMENT_NONE) //override in effect, can't apply
+ return
+
+ set_owner_environment(new_environment)
+
+/// Pulls mob's sound_environment_override and applies if necessary.
+/datum/soundOutput/proc/update_mob_environment_override()
+ var/new_environment_override = owner.mob.sound_environment_override
+
+ if(new_environment_override == SOUND_ENVIRONMENT_NONE) //revert to area environment
+ update_area_environment()
+ return
+
+ set_owner_environment(new_environment_override)
+
+/// Pushes new_environment to owner and updates owner_environment var.
+/datum/soundOutput/proc/set_owner_environment(new_environment = SOUND_ENVIRONMENT_NONE)
+ if(new_environment ~= src.owner_environment) //no need to change
+ return
+
+ var/sound/sound = sound()
+ sound.environment = new_environment
+ sound_to(owner, sound)
+
+ src.owner_environment = new_environment
+
+/datum/soundOutput/proc/on_mob_moved(datum/source, atom/oldloc, direction, Forced)
+ SIGNAL_HANDLER //COMSIG_MOVABLE_MOVED
+ update_area_environment()
+
+/datum/soundOutput/proc/on_mob_logout(datum/source)
+ SIGNAL_HANDLER //COMSIG_MOB_LOGOUT
+ UnregisterSignal(owner.mob, list(COMSIG_MOVABLE_MOVED, COMSIG_MOB_LOGOUT))
+
+/datum/soundOutput/proc/on_client_mob_logged_in(datum/source, mob/new_mob)
+ SIGNAL_HANDLER //COMSIG_CLIENT_MOB_LOGGED_IN
+ RegisterSignal(owner.mob, COMSIG_MOVABLE_MOVED, PROC_REF(on_mob_moved))
+ RegisterSignal(owner.mob, COMSIG_MOB_LOGOUT, PROC_REF(on_mob_logout))
+ update_mob_environment_override()
+
/client/proc/adjust_volume_prefs(volume_key, prompt = "", channel_update = 0)
volume_preferences[volume_key] = (tgui_input_number(src, prompt, "Volume", volume_preferences[volume_key]*100)) / 100
if(volume_preferences[volume_key] > 1)
diff --git a/code/datums/statistics/entities/panel_stats.dm b/code/datums/statistics/entities/panel_stats.dm
index 5cfb888b8ea1..c62925673622 100644
--- a/code/datums/statistics/entities/panel_stats.dm
+++ b/code/datums/statistics/entities/panel_stats.dm
@@ -463,7 +463,7 @@
total_deaths_list += list(list("name" = S.name, "value" = S.value))
for(var/datum/entity/statistic/death/S in death_stats_list)
- if(new_death_stats_list.len >= STATISTICS_DEATH_LIST_LEN)
+ if(length(new_death_stats_list) >= STATISTICS_DEATH_LIST_LEN)
break
var/list/damage_list = list()
if(S.total_brute)
@@ -496,7 +496,7 @@
"y" = S.y,
"z" = S.z
))
- if(new_death_stats_list.len < STATISTICS_DEATH_LIST_LEN)
+ if(length(new_death_stats_list) < STATISTICS_DEATH_LIST_LEN)
new_death_stats_list += death
for(var/iteration in weapon_stats_list)
diff --git a/code/datums/statistics/entities/round_stats.dm b/code/datums/statistics/entities/round_stats.dm
index 25543dff22b1..79493ca87ef0 100644
--- a/code/datums/statistics/entities/round_stats.dm
+++ b/code/datums/statistics/entities/round_stats.dm
@@ -300,8 +300,8 @@
if(death_data["death_stats_list"])
new_death_list = death_data["death_stats_list"]
new_death_list.Insert(1, death)
- if(new_death_list.len > STATISTICS_DEATH_LIST_LEN)
- new_death_list.Cut(STATISTICS_DEATH_LIST_LEN+1, new_death_list.len)
+ if(length(new_death_list) > STATISTICS_DEATH_LIST_LEN)
+ new_death_list.Cut(STATISTICS_DEATH_LIST_LEN+1, length(new_death_list))
death_data["death_stats_list"] = new_death_list
track_dead_participant(new_death.faction_name)
@@ -393,6 +393,7 @@
return TRUE
/datum/action/show_round_statistics/action_activate()
+ . = ..()
if(!can_use_action())
return
diff --git a/code/datums/supply_packs/restricted_equipment.dm b/code/datums/supply_packs/restricted_equipment.dm
index 7979d21f9743..bc13d0fbd610 100644
--- a/code/datums/supply_packs/restricted_equipment.dm
+++ b/code/datums/supply_packs/restricted_equipment.dm
@@ -21,3 +21,23 @@
containertype = /obj/structure/closet/crate
containername = "M4 pattern marine armor crate"
group = "Restricted Equipment"
+
+/datum/supply_packs/intel_kit
+ name = "Field Intelligence Support Kit crate (x1 fulton pack, x1 data detector, x1 intel pamphlet, x1 large document pouch, 1x intel radio key)"
+ contains = list(
+ /obj/item/storage/box/kit/mini_intel,
+ )
+ cost = 20
+ containertype = /obj/structure/closet/crate
+ containername = "Field Intelligence Support Kit crate"
+ group = "Restricted Equipment"
+
+/datum/supply_packs/jtac_kit
+ name = "JTAC Radio Kit crate (x1 full flare gun belt, x2 M89-S signal flare packs, 1x laser designator, 1x jtac radio key, 1x radiopack)"
+ contains = list(
+ /obj/item/storage/box/kit/mini_jtac,
+ )
+ cost = 30
+ containertype = /obj/structure/closet/crate
+ containername = "JTAC Radio Kit crate"
+ group = "Restricted Equipment"
diff --git a/code/datums/tutorial/_tutorial.dm b/code/datums/tutorial/_tutorial.dm
index ddeddddd0407..b7403da3c0a9 100644
--- a/code/datums/tutorial/_tutorial.dm
+++ b/code/datums/tutorial/_tutorial.dm
@@ -4,7 +4,7 @@ GLOBAL_LIST_EMPTY_TYPED(ongoing_tutorials, /datum/tutorial)
/datum/tutorial
/// What the tutorial is called, is player facing
var/name = "Base"
- /// Internal ID of the tutorial, kept for save files
+ /// Internal ID of the tutorial, kept for save files. Format is "tutorialtype_specifictutorial_number". So, the first basic xeno tutorial would be "xeno_basic_1", and the 2nd marine medical tutorial would be "marine_medical_2"
var/tutorial_id = "base"
/// A short 1-2 sentence description of the tutorial itself
var/desc = ""
@@ -144,6 +144,8 @@ GLOBAL_LIST_EMPTY_TYPED(ongoing_tutorials, /datum/tutorial)
/// Ends the tutorial after a certain amount of time.
/datum/tutorial/proc/tutorial_end_in(time = 5 SECONDS, completed = TRUE)
+ if(completed)
+ mark_completed() // This is done because if you're calling this proc with completed == TRUE, then the tutorial's a done deal. We shouldn't penalize the player if they exit a few seconds before it actually completes.
tutorial_ending = TRUE
addtimer(CALLBACK(src, PROC_REF(end_tutorial), completed), time)
@@ -221,6 +223,7 @@ GLOBAL_LIST_EMPTY_TYPED(ongoing_tutorials, /datum/tutorial)
tutorial = WEAKREF(selected_tutorial)
/datum/action/tutorial_end/action_activate()
+ . = ..()
if(!tutorial)
return
diff --git a/code/datums/tutorial/marine/reqs_line.dm b/code/datums/tutorial/marine/reqs_line.dm
index ba2d7ddade9d..5b63af30720e 100644
--- a/code/datums/tutorial/marine/reqs_line.dm
+++ b/code/datums/tutorial/marine/reqs_line.dm
@@ -106,6 +106,8 @@
active_agent = null
loser_agent = null
QDEL_LIST(agents)
+ var/obj/effect/landmark/tutorial/reqs_line_cleaner/line_cleaner = locate() in GLOB.landmarks_list
+ qdel(line_cleaner)
return ..()
/datum/tutorial/marine/reqs_line/init_map()
diff --git a/code/datums/tutorial/xenomorph/abomination.dm b/code/datums/tutorial/xenomorph/abomination.dm
new file mode 100644
index 000000000000..db9b77cf2e75
--- /dev/null
+++ b/code/datums/tutorial/xenomorph/abomination.dm
@@ -0,0 +1,247 @@
+/datum/tutorial/xenomorph/abomination
+ name = "Xenomorph - Predalien"
+ desc = "A tutorial to teach you how to play the \"Predalien\", also known as Abomination, xenomorph caste. Completing this is required to be able to play an Abomination."
+ icon_state = "predalien"
+ tutorial_id = "xeno_abom_1"
+ tutorial_template = /datum/map_template/tutorial/s7x7
+ starting_xenomorph_type = /mob/living/carbon/xenomorph/predalien/tutorial
+ /// How many marines in the kill_marines stage have been killed
+ var/ending_marines_killed = 0
+
+// START OF SCRITPING
+
+/datum/tutorial/xenomorph/abomination/start_tutorial(mob/starting_mob)
+ . = ..()
+ if(!.)
+ return
+
+ init_mob()
+ xeno.lock_evolve = TRUE
+
+ message_to_player("Welcome to the tutorial for the Abomination xenomorph. As an Abomination, you are a frontline powerhouse whose damage scales with your kill count.")
+ message_to_player("Your kill count scales when you kill humans with your slash attack, up to 10 kills. Ability kills do not count towards this.")
+
+ addtimer(CALLBACK(src, PROC_REF(how_to_be_abom)), 12 SECONDS)
+
+/datum/tutorial/xenomorph/abomination/proc/how_to_be_abom()
+ message_to_player("Be aware that you are kill-on-sight to all Predators forever, and will very likely need to defend yourself against multiple.")
+ message_to_player("Be sure to stick close to other xenomorphs or over-extend. While you may be stronger than many, you don't have enough health or armor to go out on your own.")
+ addtimer(CALLBACK(src, PROC_REF(feral_rush_tutorial)), 10.5 SECONDS)
+
+/datum/tutorial/xenomorph/abomination/proc/feral_rush_tutorial()
+ var/datum/action/rush = give_action(xeno, /datum/action/xeno_action/onclick/feralrush)
+ message_to_player("Your first unique ability is Feral Rush, an ability that temporarily increases your speed and your armor. Use Feral Rush to continue.")
+ update_objective("Use your Feral Rush ability.")
+ add_highlight(rush.button)
+ RegisterSignal(rush, COMSIG_XENO_ACTION_USED, PROC_REF(on_rush_used))
+
+/datum/tutorial/xenomorph/abomination/proc/on_rush_used(datum/action/source, mob/owner)
+ SIGNAL_HANDLER
+
+ UnregisterSignal(source, COMSIG_XENO_ACTION_USED)
+ remove_highlight(source.button)
+ addtimer(CALLBACK(src, PROC_REF(predalien_roar_tutorial_1)), 5 SECONDS)
+
+/datum/tutorial/xenomorph/abomination/proc/predalien_roar_tutorial_1()
+ hide_action(xeno, /datum/action/xeno_action/onclick/feralrush)
+ xeno.cannot_slash = TRUE
+ message_to_player("Your next ability is Roar, a versatile ability that disables any motion detectors or cloaks in a medium radius around you.")
+ message_to_player("Additionally, it gives a slash and speed bonus to any friendly xenomorphs in range.")
+ addtimer(CALLBACK(src, PROC_REF(predalien_roar_tutorial_2)), 8 SECONDS)
+
+/datum/tutorial/xenomorph/abomination/proc/predalien_roar_tutorial_2()
+ var/datum/action/roar = give_action(xeno, /datum/action/xeno_action/onclick/predalien_roar)
+ message_to_player("One of Roar's most useful abilities is uncloaking nearby Predators. Use Roar to uncloak the newly spawned Predator.")
+ update_objective("Use your Roar ability to uncloak the nearby predator.")
+ add_highlight(roar.button)
+ var/mob/living/carbon/human/pred = new(loc_from_corner(3, 3))
+ add_to_tracking_atoms(pred)
+ pred.create_hud()
+ arm_equipment(pred, /datum/equipment_preset/yautja/blooded)
+ var/obj/item/clothing/gloves/yautja/hunter/bracers = locate() in pred
+ if(!bracers)
+ message_to_player("Something has gone wrong. Please make a bug report.")
+ CRASH("predator spawned without bracers in tutorial")
+
+ bracers.cloaker_internal(pred, TRUE, TRUE, TRUE)
+ RegisterSignal(bracers, COMSIG_PRED_BRACER_DECLOAKED, PROC_REF(smash_tutorial_1))
+
+/datum/tutorial/xenomorph/abomination/proc/smash_tutorial_1(datum/source)
+ SIGNAL_HANDLER
+
+ var/datum/action/roar = get_action(xeno, /datum/action/xeno_action/onclick/predalien_roar)
+ remove_highlight(roar.button)
+ update_objective("")
+
+ UnregisterSignal(source, COMSIG_PRED_BRACER_DECLOAKED)
+ addtimer(CALLBACK(src, PROC_REF(smash_tutorial_2)), 2.5 SECONDS)
+
+/datum/tutorial/xenomorph/abomination/proc/smash_tutorial_2()
+ hide_action(xeno, /datum/action/xeno_action/onclick/predalien_roar)
+ message_to_player("Good. Roar will be one of your primary tools for defending against Predators. Your next ability is Feral Smash.")
+ xeno.cannot_slash = FALSE
+
+ TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, pred)
+ remove_from_tracking_atoms(pred)
+ qdel(pred)
+
+ addtimer(CALLBACK(src, PROC_REF(smash_tutorial_3)), 5 SECONDS)
+
+/datum/tutorial/xenomorph/abomination/proc/smash_tutorial_3()
+ var/datum/action/smash = give_action(xeno, /datum/action/xeno_action/activable/feral_smash)
+ RegisterSignal(smash, COMSIG_XENO_PRE_ACTION_USED, PROC_REF(frenzy_tutorial_1))
+ add_highlight(smash.button)
+
+ message_to_player("Feral Smash is a strong lunge with a range of five tiles. It deals decent damage that scales with your kill count.")
+ message_to_player("Use Feral Smash on the marine to continue.")
+ update_objective("Use your Feral Smash ability on the marine.")
+
+ xeno.forceMove(loc_from_corner(0, 2))
+ xeno.anchored = TRUE
+ ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL)
+
+ var/mob/living/carbon/human/marine = new(loc_from_corner(4, 2))
+ add_to_tracking_atoms(marine)
+ arm_equipment(marine, /datum/equipment_preset/uscm/private_equipped)
+
+/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_1(datum/action/source, mob/owner)
+ SIGNAL_HANDLER
+
+ xeno.anchored = FALSE
+ REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL)
+ RegisterSignal(source, COMSIG_XENO_ACTION_USED, PROC_REF(frenzy_tutorial_2))
+ RegisterSignal(source, COMSIG_XENO_FAILED_ACTION_USED, PROC_REF(frenzy_tutorial_1_fail))
+
+/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_1_fail(datum/action/source, mob/owner)
+ SIGNAL_HANDLER
+
+ xeno.anchored = TRUE
+ ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL)
+ UnregisterSignal(source, list(COMSIG_XENO_FAILED_ACTION_USED, COMSIG_XENO_ACTION_USED))
+
+/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_2(datum/action/source, mob/owner)
+ SIGNAL_HANDLER
+
+ if(get_turf(xeno) == loc_from_corner(0, 2)) // xeno didn't lunge at the mob
+ xeno.anchored = TRUE
+ UnregisterSignal(source, COMSIG_XENO_ACTION_USED)
+ ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL)
+ return
+
+ update_objective("")
+ var/datum/action/smash = get_action(xeno, /datum/action/xeno_action/activable/feral_smash)
+ remove_highlight(smash.button)
+ UnregisterSignal(source, list(COMSIG_XENO_ACTION_USED, COMSIG_XENO_PRE_ACTION_USED))
+ addtimer(CALLBACK(src, PROC_REF(frenzy_tutorial_3)), 2 SECONDS)
+
+/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_3()
+ remove_action(xeno, /datum/action/xeno_action/activable/feral_smash)
+ message_to_player("Good. Your final ability is Feral Frenzy, a strong ability that can alternate between hitting a single target or all within a large radius. However, it locks you in place while it winds up.")
+
+ TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine)
+ remove_from_tracking_atoms(marine)
+ qdel(marine)
+
+ addtimer(CALLBACK(src, PROC_REF(frenzy_tutorial_4)), 6 SECONDS)
+
+/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_4()
+ var/mob/living/carbon/human/marine = new(loc_from_corner(4, 2))
+ add_to_tracking_atoms(marine)
+ arm_equipment(marine, /datum/equipment_preset/uscm/private_equipped)
+
+ var/datum/action/frenzy = give_action(xeno, /datum/action/xeno_action/activable/feralfrenzy)
+ add_highlight(frenzy.button)
+ message_to_player("By default, Feral Frenzy is on single-target mode. Use Feral Frenzy on the newly spawned marine.")
+ update_objective("Use Feral Frenzy on the marine.")
+
+ RegisterSignal(frenzy, COMSIG_XENO_ACTION_USED, PROC_REF(frenzy_tutorial_5))
+
+/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_5(datum/action/xeno_action/source, mob/owner)
+ SIGNAL_HANDLER
+
+ TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine)
+ if(get_dist(marine, xeno) > 1)
+ return
+
+ UnregisterSignal(source, COMSIG_XENO_ACTION_USED)
+ var/datum/action/frenzy = get_action(xeno, /datum/action/xeno_action/activable/feralfrenzy)
+ remove_highlight(frenzy.button)
+ var/datum/action/frenzy_toggle = give_action(xeno, /datum/action/xeno_action/onclick/toggle_gut_targeting)
+ add_highlight(frenzy_toggle.button)
+ message_to_player("Good, now toggle Feral Frenzy's AOE mode with the newly available Toggle Gutting Type ability.")
+ update_objective("Use the Toggle Gutting Type ability to change your frenzy mode.")
+
+ RegisterSignal(frenzy_toggle, COMSIG_XENO_ACTION_USED, PROC_REF(frenzy_tutorial_6))
+
+/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_6(datum/action/xeno_action/source, mob/owner)
+ SIGNAL_HANDLER
+
+ UnregisterSignal(source, COMSIG_XENO_ACTION_USED)
+ remove_highlight(source.button)
+ source.plasma_cost = INFINITY // slightly scuffed way of disabling the switch button
+ source.update_button_icon()
+
+ message_to_player("Feral Frenzy has now been changed into AOE mode. Use Feral Frenzy again anywhere within 2 tiles of the marine.")
+ update_objective("Use Feral Frenzy within 2 tiles of the marine.")
+ TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine)
+ marine.rejuvenate()
+ var/datum/action/xeno_action/activable/feralfrenzy/frenzy = get_action(xeno, /datum/action/xeno_action/activable/feralfrenzy)
+ frenzy.targeting = AOETARGETGUT
+ frenzy.reduce_cooldown(frenzy.xeno_cooldown)
+ add_highlight(frenzy.button)
+
+ RegisterSignal(frenzy, COMSIG_XENO_ACTION_USED, PROC_REF(frenzy_tutorial_7))
+
+/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_7(datum/action/source)
+ SIGNAL_HANDLER
+
+ TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine)
+ var/datum/action/xeno_action/activable/feralfrenzy/frenzy = get_action(xeno, /datum/action/xeno_action/activable/feralfrenzy)
+ if(get_dist(xeno, marine) > frenzy.range)
+ // Not close enough to actually hit the marine
+ return
+
+ UnregisterSignal(frenzy, COMSIG_XENO_ACTION_USED)
+ remove_highlight(frenzy.button)
+ message_to_player("Good. As you may have noticed, the AOE version of Feral Frenzy takes longer to wind up, in addition to doing less overall damage.")
+ addtimer(CALLBACK(src, PROC_REF(kill_marines)), 6 SECONDS)
+
+/datum/tutorial/xenomorph/abomination/proc/kill_marines()
+ message_to_player("To finish the tutorial, kill the three newly-spawned marines using any of your attacks or abilities.")
+
+ // Spawn/rejuv the dummies
+ TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine) // we can reuse this one though
+ marine.rejuvenate()
+ marine.forceMove(loc_from_corner(4, 2))
+ RegisterSignal(marine, COMSIG_MOB_DEATH, PROC_REF(kill_marines_2))
+
+ var/mob/living/carbon/human/marine_2 = new(loc_from_corner(2, 2))
+ arm_equipment(marine_2, /datum/equipment_preset/uscm/private_equipped)
+ RegisterSignal(marine_2, COMSIG_MOB_DEATH, PROC_REF(kill_marines_2))
+
+ var/mob/living/carbon/human/marine_3 = new(loc_from_corner(0, 2))
+ arm_equipment(marine_3, /datum/equipment_preset/uscm/private_equipped)
+ RegisterSignal(marine_3, COMSIG_MOB_DEATH, PROC_REF(kill_marines_2))
+
+ // Arrange the actions about how they'd be in an actual game
+ remove_action(xeno, /datum/action/xeno_action/activable/feralfrenzy)
+ remove_action(xeno, /datum/action/xeno_action/onclick/toggle_gut_targeting)
+
+ give_action(xeno, /datum/action/xeno_action/activable/tail_stab)
+ give_action(xeno, /datum/action/xeno_action/onclick/feralrush)
+ give_action(xeno, /datum/action/xeno_action/onclick/predalien_roar)
+ give_action(xeno, /datum/action/xeno_action/activable/feral_smash)
+ give_action(xeno, /datum/action/xeno_action/activable/feralfrenzy)
+ give_action(xeno, /datum/action/xeno_action/onclick/toggle_gut_targeting)
+
+/datum/tutorial/xenomorph/abomination/proc/kill_marines_2(datum/source)
+ SIGNAL_HANDLER
+
+ if(ending_marines_killed < 2)
+ ending_marines_killed++
+ return
+
+ message_to_player("Good work. The tutorial will end shortly.")
+ tutorial_end_in(7 SECONDS, TRUE)
+
+// END OF SCRIPTING
diff --git a/code/datums/weather/weather_map_holder.dm b/code/datums/weather/weather_map_holder.dm
index c72925399a85..eb3458d70a25 100644
--- a/code/datums/weather/weather_map_holder.dm
+++ b/code/datums/weather/weather_map_holder.dm
@@ -33,7 +33,7 @@
// Return a type that can be initialized into the next weather event.
// Feel free to override this
/datum/weather_ss_map_holder/proc/get_new_event()
- if (potential_weather_events && potential_weather_events.len != 0)
+ if (LAZYLEN(potential_weather_events) != 0)
return pick(potential_weather_events)
else
log_debug("Weather subsystem map holder [src] is improperly configured. Code: WSSMH03")
diff --git a/code/datums/xeno_shields/shield_types/vanguard_shield.dm b/code/datums/xeno_shields/shield_types/vanguard_shield.dm
index 21d9fb12cfd7..cd9e4534e778 100644
--- a/code/datums/xeno_shields/shield_types/vanguard_shield.dm
+++ b/code/datums/xeno_shields/shield_types/vanguard_shield.dm
@@ -42,7 +42,7 @@
return
linked_xeno.overlay_shields()
- var/datum/action/xeno_action/activable/cleave/cAction = get_xeno_action_by_type(linked_xeno, /datum/action/xeno_action/activable/cleave)
+ var/datum/action/xeno_action/activable/cleave/cAction = get_action(linked_xeno, /datum/action/xeno_action/activable/cleave)
if (istype(cAction))
addtimer(CALLBACK(cAction, TYPE_PROC_REF(/datum/action/xeno_action/activable/cleave, remove_buff)), 7, TIMER_UNIQUE)
diff --git a/code/defines/procs/AStar.dm b/code/defines/procs/AStar.dm
index fad263aea42b..b4baef969815 100644
--- a/code/defines/procs/AStar.dm
+++ b/code/defines/procs/AStar.dm
@@ -46,13 +46,13 @@ length to avoid portals or something i guess?? Not that they're counted right no
cmp = compare
/PriorityQueue/proc/IsEmpty()
- return !L.len
+ return !length(L)
/PriorityQueue/proc/Enqueue(d)
var/i
var/j
L.Add(d)
- i = L.len
+ i = length(L)
j = i>>1
while(i > 1 && call(cmp)(L[j],L[i]) > 0)
L.Swap(i,j)
@@ -60,22 +60,22 @@ length to avoid portals or something i guess?? Not that they're counted right no
j >>= 1
/PriorityQueue/proc/Dequeue()
- if(!L.len) return 0
+ if(!length(L)) return 0
. = L[1]
Remove(1)
/PriorityQueue/proc/Remove(i)
- if(i > L.len) return 0
- L.Swap(i,L.len)
- L.Cut(L.len)
- if(i < L.len)
+ if(i > length(L)) return 0
+ L.Swap(i,length(L))
+ L.Cut(length(L))
+ if(i < length(L))
_Fix(i)
/PriorityQueue/proc/_Fix(i)
var/child = i + i
var/item = L[i]
- while(child <= L.len)
- if(child + 1 <= L.len && call(cmp)(L[child],L[child + 1]) > 0)
+ while(child <= length(L))
+ if(child + 1 <= length(L) && call(cmp)(L[child],L[child + 1]) > 0)
child++
if(call(cmp)(item,L[child]) > 0)
L[i] = L[child]
@@ -159,7 +159,7 @@ length to avoid portals or something i guess?? Not that they're counted right no
var/ng = cur.g + call(cur.source,dist)(d)
if(d.bestF)
if(ng + call(d,dist)(end) < d.bestF)
- for(var/i = 1; i <= open.L.len; i++)
+ for(var/i = 1; i <= length(open.L); i++)
var/PathNode/n = open.L[i]
if(n.source == d)
open.Remove(i)
@@ -168,21 +168,21 @@ length to avoid portals or something i guess?? Not that they're counted right no
continue
open.Enqueue(new /PathNode(d,cur,ng,call(d,dist)(end),cur.nt+1))
- if(maxnodes && open.L.len > maxnodes)
- open.L.Cut(open.L.len)
+ if(maxnodes && length(open.L) > maxnodes)
+ open.L.Cut(length(open.L))
}
var/PathNode/temp
while(!open.IsEmpty())
temp = open.Dequeue()
temp.source.bestF = 0
- while(closed.len)
- temp = closed[closed.len]
+ while(length(closed))
+ temp = closed[length(closed)]
temp.bestF = 0
- closed.Cut(closed.len)
+ closed.Cut(length(closed))
if(path)
- for(var/i = 1; i <= path.len/2; i++)
- path.Swap(i,path.len-i+1)
+ for(var/i = 1; i <= length(path)/2; i++)
+ path.Swap(i,length(path)-i+1)
return path
diff --git a/code/game/area/admin_level.dm b/code/game/area/admin_level.dm
index 49bbc43c0b9c..9dc43256f4de 100644
--- a/code/game/area/admin_level.dm
+++ b/code/game/area/admin_level.dm
@@ -125,6 +125,10 @@
name = "Weyland-Yutani Station"
icon_state = "red"
+/area/adminlevel/ert_station/uscm_station
+ name = "USCM Station"
+ icon_state = "green"
+
/area/adminlevel/ert_station/freelancer_station
name = "Freelancer Station"
icon_state = "yellow"
diff --git a/code/game/atoms.dm b/code/game/atoms.dm
index a14f1018e49a..bc0e41a338e3 100644
--- a/code/game/atoms.dm
+++ b/code/game/atoms.dm
@@ -238,7 +238,7 @@ directive is properly returned.
pass |= istype(A, type)
if(!pass)
continue
- if(A.contents.len)
+ if(length(A.contents))
found += A.search_contents_for(path,filter_path)
return found
diff --git a/code/game/bioscans.dm b/code/game/bioscans.dm
index 5be3c9fbe3fd..edd0b174212d 100644
--- a/code/game/bioscans.dm
+++ b/code/game/bioscans.dm
@@ -151,7 +151,7 @@ GLOBAL_DATUM_INIT(bioscan_data, /datum/bioscan_data, new)
var/planet_location = "[marines_on_planet && marine_planet_location ? ", including one in [marine_planet_location]" : ""]"
var/title = SPAN_XENOANNOUNCE("The Queen Mother reaches into your mind from worlds away.")
- var/content = SPAN_XENOANNOUNCE("To my children and their Queen. I sense [metalhive_hosts] host[plural] in the metal hive [metalhive_location] and [planet_hosts] scattered elsewhere[planet_location].")
+ var/content = SPAN_XENOANNOUNCE("To my children and their Queen: I sense [metalhive_hosts] host[plural] in the metal hive[metalhive_location] and [planet_hosts] scattered elsewhere[planet_location].")
log_game("BIOSCAN: Queen Mother bioscan completed. [content]")
/// Shout it at everyone
diff --git a/code/game/camera_manager/camera_manager.dm b/code/game/camera_manager/camera_manager.dm
index 9f111b0f8ec6..90e80ec7037e 100644
--- a/code/game/camera_manager/camera_manager.dm
+++ b/code/game/camera_manager/camera_manager.dm
@@ -6,7 +6,7 @@
/datum/component/camera_manager
var/map_name
var/obj/structure/machinery/camera/current
- var/datum/shape/rectangle/current_area
+ var/datum/shape/current_area
var/atom/movable/screen/map_view/cam_screen
var/atom/movable/screen/background/cam_background
var/list/range_turfs = list()
@@ -86,7 +86,7 @@
RegisterSignal(parent, COMSIG_CAMERA_UNREGISTER_UI, PROC_REF(unregister))
RegisterSignal(parent, COMSIG_CAMERA_SET_NVG, PROC_REF(enable_nvg))
RegisterSignal(parent, COMSIG_CAMERA_CLEAR_NVG, PROC_REF(disable_nvg))
- RegisterSignal(parent, COMSIG_CAMERA_SET_AREA, PROC_REF(set_camera_rect))
+ RegisterSignal(parent, COMSIG_CAMERA_SET_AREA, PROC_REF(set_camera_area))
RegisterSignal(parent, COMSIG_CAMERA_SET_TARGET, PROC_REF(set_camera))
RegisterSignal(parent, COMSIG_CAMERA_CLEAR, PROC_REF(clear_camera))
RegisterSignal(parent, COMSIG_CAMERA_REFRESH, PROC_REF(refresh_camera))
@@ -133,18 +133,18 @@
RegisterSignal(current, COMSIG_PARENT_QDELETING, PROC_REF(show_camera_static))
update_target_camera()
-/datum/component/camera_manager/proc/set_camera_rect(source, x, y, z, w, h)
+/datum/component/camera_manager/proc/set_camera_area(source, datum/shape/new_area, z)
SIGNAL_HANDLER
render_mode = RENDER_MODE_AREA
if(current)
UnregisterSignal(current, COMSIG_PARENT_QDELETING)
current = null
- current_area = RECT(x, y, w, h)
- target_x = x
- target_y = y
+ current_area = new_area
+ target_x = current_area.center_x
+ target_y = current_area.center_y
target_z = z
- target_width = w
- target_height = h
+ target_width = current_area.bounds_x
+ target_height = current_area.bounds_y
update_area_camera()
/datum/component/camera_manager/proc/enable_nvg(source, power, matrixcol)
@@ -221,8 +221,8 @@
// Cameras that get here are moving, and are likely attached to some moving atom such as cyborgs.
last_camera_turf = new_location
- var/x_size = current_area.width
- var/y_size = current_area.height
+ var/x_size = current_area.bounds_x
+ var/y_size = current_area.bounds_y
var/turf/target = locate(current_area.center_x, current_area.center_y, target_z)
var/list/visible_things = isXRay ? range("[x_size]x[y_size]", target) : view("[x_size]x[y_size]", target)
diff --git a/code/game/cas_manager/datums/cas_fire_mission.dm b/code/game/cas_manager/datums/cas_fire_mission.dm
index dc55e057edcd..f672dffed83a 100644
--- a/code/game/cas_manager/datums/cas_fire_mission.dm
+++ b/code/game/cas_manager/datums/cas_fire_mission.dm
@@ -80,7 +80,7 @@
/datum/cas_fire_mission/proc/check(obj/structure/machinery/computer/dropship_weapons/linked_console)
error_weapon = null
- if(records.len == 0)
+ if(length(records) == 0)
return FIRE_MISSION_ALL_GOOD //I mean yes... but why?
for(var/datum/cas_fire_mission_record/record in records)
@@ -105,7 +105,7 @@
var/i
if(!record.offsets)
continue
- for(i=1,i<=record.offsets.len,i++)
+ for(i=1,i<=length(record.offsets),i++)
if(cd > 0)
cd--
if(record.offsets[i] == null || record.offsets[i] == "-")
@@ -192,7 +192,7 @@
envelope.change_current_loc(current_turf)
var/datum/cas_fire_mission_record/item
for(item in records)
- if(item.offsets.len < step || item.offsets[step] == null || item.offsets[step]=="-")
+ if(length(item.offsets) < step || item.offsets[step] == null || item.offsets[step]=="-")
continue
var/offset = item.offsets[step]
if (current_turf == null)
diff --git a/code/game/gamemodes/cm_initialize.dm b/code/game/gamemodes/cm_initialize.dm
index ae6cdf10c64e..4a208b00a796 100644
--- a/code/game/gamemodes/cm_initialize.dm
+++ b/code/game/gamemodes/cm_initialize.dm
@@ -118,7 +118,7 @@ Additional game mode variables.
/datum/game_mode/proc/initialize_special_clamps()
xeno_starting_num = clamp((GLOB.readied_players/CONFIG_GET(number/xeno_number_divider)), xeno_required_num, INFINITY) //(n, minimum, maximum)
surv_starting_num = clamp((GLOB.readied_players/CONFIG_GET(number/surv_number_divider)), 2, 8) //this doesnt run
- marine_starting_num = GLOB.player_list.len - xeno_starting_num - surv_starting_num
+ marine_starting_num = length(GLOB.player_list) - xeno_starting_num - surv_starting_num
for(var/datum/squad/sq in GLOB.RoleAuthority.squads)
if(sq)
sq.max_engineers = engi_slot_formula(marine_starting_num)
@@ -266,7 +266,7 @@ Additional game mode variables.
/datum/game_mode/proc/initialize_starting_xenomorph_list(list/hives = list(XENO_HIVE_NORMAL), bypass_checks = FALSE)
var/list/datum/mind/possible_xenomorphs = get_players_for_role(JOB_XENOMORPH)
var/list/datum/mind/possible_queens = get_players_for_role(JOB_XENOMORPH_QUEEN)
- if(possible_xenomorphs.len < xeno_required_num && !bypass_checks) //We don't have enough aliens, we don't consider people rolling for only Queen.
+ if(length(possible_xenomorphs) < xeno_required_num && !bypass_checks) //We don't have enough aliens, we don't consider people rolling for only Queen.
to_world("Not enough players have chosen to be a xenomorph in their character setup. Aborting.
")
return
@@ -388,7 +388,7 @@ Additional game mode variables.
available_xenos += larva_option
available_xenos[larva_option] = list(hive)
- if(!available_xenos.len || (instant_join && !available_xenos_non_ssd.len))
+ if(!length(available_xenos) || (instant_join && !length(available_xenos_non_ssd)))
if(!xeno_candidate.client?.prefs || !(xeno_candidate.client.prefs.be_special & BE_ALIEN_AFTER_DEATH))
to_chat(xeno_candidate, SPAN_WARNING("There aren't any available xenomorphs or burrowed larvae. \
You can try getting spawned as a chestburster larva by toggling your Xenomorph candidacy in \
@@ -524,16 +524,16 @@ Additional game mode variables.
var/last_active_hive = 0
for(var/hivenumber in GLOB.hive_datum)
hive = GLOB.hive_datum[hivenumber]
- if(hive.totalXenos.len <= 0)
+ if(length(hive.totalXenos) <= 0)
continue
active_hives[hive.name] = hive.hivenumber
last_active_hive = hive.hivenumber
- if(active_hives.len <= 0)
+ if(length(active_hives) <= 0)
to_chat(xeno_candidate, SPAN_WARNING("There aren't any Hives active at this point for you to join."))
return FALSE
- if(active_hives.len > 1)
+ if(length(active_hives) > 1)
var/hive_picked = tgui_input_list(xeno_candidate, "Select which Hive to attempt joining.", "Hive Choice", active_hives, theme="hive_status")
if(!hive_picked)
to_chat(xeno_candidate, SPAN_ALERT("Hive choice error. Aborting."))
@@ -558,7 +558,7 @@ Additional game mode variables.
var/descriptive_name = "[morpher.name] in [area_name]"
available_facehugger_sources[descriptive_name] = morpher
- if(available_facehugger_sources.len <= 0)
+ if(length(available_facehugger_sources) <= 0)
to_chat(xeno_candidate, SPAN_WARNING("There aren't any Carriers or Egg Morphers with available Facehuggers for you to join. Please try again later!"))
return FALSE
@@ -590,16 +590,16 @@ Additional game mode variables.
var/last_active_hive = 0
for(var/hivenumber in GLOB.hive_datum)
hive = GLOB.hive_datum[hivenumber]
- if(hive.totalXenos.len <= 0)
+ if(length(hive.totalXenos) <= 0)
continue
active_hives[hive.name] = hive.hivenumber
last_active_hive = hive.hivenumber
- if(active_hives.len <= 0)
+ if(length(active_hives) <= 0)
to_chat(xeno_candidate, SPAN_WARNING("There aren't any Hives active at this point for you to join."))
return FALSE
- if(active_hives.len > 1)
+ if(length(active_hives) > 1)
var/hive_picked = tgui_input_list(xeno_candidate, "Select which Hive to attempt joining.", "Hive Choice", active_hives, theme="hive_status")
if(!hive_picked)
to_chat(xeno_candidate, SPAN_ALERT("Hive choice error. Aborting."))
@@ -826,7 +826,7 @@ Additional game mode variables.
H.name = H.get_visible_name()
if(!H.first_xeno) //Only give objectives/back-stories to uninfected survivors
- if(spawner.intro_text && spawner.intro_text.len)
+ if(LAZYLEN(spawner.intro_text))
spawn(4)
for(var/line in spawner.intro_text)
to_chat(H, line)
@@ -893,7 +893,7 @@ Additional game mode variables.
var/story //The actual story they will get to read.
var/random_name
var/datum/mind/survivor
- while(current_survivors.len)
+ while(length(current_survivors))
survivor = pick(current_survivors)
if(!istype(survivor))
current_survivors -= survivor
@@ -905,8 +905,8 @@ Additional game mode variables.
current_survivors -= survivor
continue
- if(current_survivors.len > 1) //If we have another survivor to pick from.
- if(survivor_multi_story.len) //Unlikely.
+ if(length(current_survivors) > 1) //If we have another survivor to pick from.
+ if(length(survivor_multi_story)) //Unlikely.
var/datum/mind/another_survivor = pick(current_survivors - survivor) // We don't want them to be picked twice.
current_survivors -= another_survivor
if(!istype(another_survivor)) continue//If somehow this thing screwed up, we're going to run another pass.
@@ -921,7 +921,7 @@ Additional game mode variables.
to_chat(another_survivor.current, temp_story)
another_survivor.memory += temp_story
else
- if(survivor_story.len) //Shouldn't happen, but technically possible.
+ if(length(survivor_story)) //Shouldn't happen, but technically possible.
story = pick(survivor_story)
survivor_story -= story
spawn(6)
diff --git a/code/game/gamemodes/cm_process.dm b/code/game/gamemodes/cm_process.dm
index 462f82e99cec..d6519bbcd887 100644
--- a/code/game/gamemodes/cm_process.dm
+++ b/code/game/gamemodes/cm_process.dm
@@ -40,12 +40,12 @@ of predators), but can be added to include variant game modes (like humans vs. h
set waitfor = 0
sleep(2 SECONDS)
GLOB.fallen_list += GLOB.fallen_list_cross
- if(GLOB.fallen_list.len)
+ if(length(GLOB.fallen_list))
var/dat = "
"
dat += SPAN_ROUNDBODY("In Flanders fields...
")
dat += SPAN_CENTERBOLD("In memoriam of our fallen soldiers:
")
- for(var/i = 1 to GLOB.fallen_list.len)
- if(i != GLOB.fallen_list.len)
+ for(var/i = 1 to length(GLOB.fallen_list))
+ if(i != length(GLOB.fallen_list))
dat += "[GLOB.fallen_list[i]], "
else
dat += "[GLOB.fallen_list[i]].
"
@@ -87,20 +87,20 @@ of predators), but can be added to include variant game modes (like humans vs. h
/datum/game_mode/proc/declare_completion_announce_medal_awards()
set waitfor = 0
sleep(2 SECONDS)
- if(GLOB.medal_awards.len)
+ if(length(GLOB.medal_awards))
var/dat = "
"
dat += SPAN_ROUNDBODY("
Medal Awards:")
for(var/recipient in GLOB.medal_awards)
var/datum/recipient_awards/recipient_award = GLOB.medal_awards[recipient]
- for(var/i in 1 to recipient_award.medal_names.len)
+ for(var/i in 1 to length(recipient_award.medal_names))
dat += "
[recipient_award.recipient_rank] [recipient] is awarded [recipient_award.posthumous[i] ? "posthumously " : ""]the [recipient_award.medal_names[i]]: \'[recipient_award.medal_citations[i]]\'."
to_world(dat)
- if(GLOB.jelly_awards.len)
+ if(length(GLOB.jelly_awards))
var/dat = "
"
dat += SPAN_ROUNDBODY("
Royal Jelly Awards:")
for(var/recipient in GLOB.jelly_awards)
var/datum/recipient_awards/recipient_award = GLOB.jelly_awards[recipient]
- for(var/i in 1 to recipient_award.medal_names.len)
+ for(var/i in 1 to length(recipient_award.medal_names))
dat += "
[recipient] is awarded [recipient_award.posthumous[i] ? "posthumously " : ""]a [recipient_award.medal_names[i]]: \'[recipient_award.medal_citations[i]]\'[recipient_award.giver_rank[i] ? " by [recipient_award.giver_rank[i]]" : ""][recipient_award.giver_name[i] ? " ([recipient_award.giver_name[i]])" : ""]."
to_world(dat)
diff --git a/code/game/gamemodes/colonialmarines/colonialmarines.dm b/code/game/gamemodes/colonialmarines/colonialmarines.dm
index 526e4b4bc2b9..14f5397b1f91 100644
--- a/code/game/gamemodes/colonialmarines/colonialmarines.dm
+++ b/code/game/gamemodes/colonialmarines/colonialmarines.dm
@@ -89,7 +89,7 @@
new type_to_spawn(T)
//desert river test
- if(!round_toxic_river.len)
+ if(!length(round_toxic_river))
round_toxic_river = null //No tiles?
else
round_time_river = rand(-100,100)
@@ -100,7 +100,7 @@
var/obj/structure/tunnel/T
var/i = 0
var/turf/t
- while(GLOB.xeno_tunnels.len && i++ < 3)
+ while(length(GLOB.xeno_tunnels) && i++ < 3)
t = get_turf(pick_n_take(GLOB.xeno_tunnels))
T = new(t)
T.id = "hole[i]"
@@ -225,7 +225,11 @@
continue
for(var/turf/turf in area)
if(turf.density)
- continue
+ if(!istype(turf, /turf/closed/wall))
+ continue
+ var/turf/closed/wall/wall = turf
+ if(wall.hull)
+ continue
lz_smoke += new /obj/effect/particle_effect/smoke/miasma(turf, null, new_cause_data)
///Clears miasma smoke in landing zones
@@ -518,7 +522,7 @@
GLOB.round_statistics.game_mode = name
GLOB.round_statistics.round_length = world.time
GLOB.round_statistics.round_result = round_finished
- GLOB.round_statistics.end_round_player_population = GLOB.clients.len
+ GLOB.round_statistics.end_round_player_population = length(GLOB.clients)
GLOB.round_statistics.log_round_statistics()
@@ -637,7 +641,7 @@
total_marines += squad_marines_job_report[job_type]
total_squad_marines += squad_marines_job_report[job_type]
incrementer++
- if(incrementer < squad_marines_job_report.len)
+ if(incrementer < length(squad_marines_job_report))
squad_marine_job_text += ", "
var/auxiliary_marine_job_text = ""
@@ -647,7 +651,7 @@
auxiliary_marine_job_text += "[job_type]: [auxiliary_marines_job_report[job_type]]"
total_marines += auxiliary_marines_job_report[job_type]
incrementer++
- if(incrementer < auxiliary_marines_job_report.len)
+ if(incrementer < length(auxiliary_marines_job_report))
auxiliary_marine_job_text += ", "
var/total_non_standard = 0
@@ -658,7 +662,7 @@
non_standard_job_text += "[job_type]: [non_standard_job_report[job_type]]"
total_non_standard += non_standard_job_report[job_type]
incrementer++
- if(incrementer < non_standard_job_report.len)
+ if(incrementer < length(non_standard_job_report))
non_standard_job_text += ", "
var/list/hive_xeno_numbers = list()
@@ -672,7 +676,7 @@
hive_caste_text += "[hive_caste]: [per_hive_status[hive_caste]]"
hive_amount += per_hive_status[hive_caste]
incrementer++
- if(incrementer < per_hive_status.len)
+ if(incrementer < length(per_hive_status))
hive_caste_text += ", "
if(hive_amount)
hive_xeno_numbers[hive] = hive_amount
diff --git a/code/game/gamemodes/colonialmarines/huntergames.dm b/code/game/gamemodes/colonialmarines/huntergames.dm
index 310785070458..23344ee9e8f0 100644
--- a/code/game/gamemodes/colonialmarines/huntergames.dm
+++ b/code/game/gamemodes/colonialmarines/huntergames.dm
@@ -212,10 +212,10 @@
var/mob/living/carbon/human/H
var/turf/picked
- if(GLOB.hunter_primaries.len)
+ if(length(GLOB.hunter_primaries))
picked = get_turf(pick_n_take(GLOB.hunter_primaries))
else
- if(GLOB.hunter_secondaries.len)
+ if(length(GLOB.hunter_secondaries))
picked = get_turf(pick_n_take(GLOB.hunter_secondaries))
else
message_admins("There were no spawn points available for a contestant.")
@@ -226,7 +226,7 @@
if(istype(M,/mob/living/carbon/human)) //somehow?
H = M
- if(H.contents.len)
+ if(length(H.contents))
for(var/obj/item/I in H.contents)
qdel(I)
H.forceMove(picked)
@@ -315,7 +315,7 @@
last_drop = world.time
waiting_for_drop_votes = 1
sleep(600)
- if(!supply_votes.len)
+ if(!length(supply_votes))
to_world(SPAN_ROUNDBODY("Nobody got anything! .. weird."))
waiting_for_drop_votes = 0
supply_votes = list()
diff --git a/code/game/gamemodes/colonialmarines/whiskey_outpost.dm b/code/game/gamemodes/colonialmarines/whiskey_outpost.dm
index e7a43debb5fc..b3fd079d638c 100644
--- a/code/game/gamemodes/colonialmarines/whiskey_outpost.dm
+++ b/code/game/gamemodes/colonialmarines/whiskey_outpost.dm
@@ -201,9 +201,9 @@
/datum/game_mode/whiskey_outpost/proc/announce_xeno_wave(datum/whiskey_outpost_wave/wave_data)
if(!istype(wave_data))
return
- if(wave_data.command_announcement.len > 0)
+ if(length(wave_data.command_announcement) > 0)
marine_announcement(wave_data.command_announcement[1], wave_data.command_announcement[2])
- if(wave_data.sound_effect.len > 0)
+ if(length(wave_data.sound_effect) > 0)
playsound_z(SSmapping.levels_by_trait(ZTRAIT_GROUND), pick(wave_data.sound_effect))
//CHECK WIN
@@ -297,7 +297,7 @@
if(GLOB.round_statistics)
GLOB.round_statistics.game_mode = name
GLOB.round_statistics.round_length = world.time
- GLOB.round_statistics.end_round_player_population = GLOB.clients.len
+ GLOB.round_statistics.end_round_player_population = length(GLOB.clients)
GLOB.round_statistics.log_round_statistics()
@@ -485,7 +485,7 @@
if(crate)
crate.storage_capacity = 60
- if(randomitems.len)
+ if(length(randomitems))
for(var/i = 0; i < choosemax; i++)
var/path = pick(randomitems)
var/obj/I = new path(crate)
@@ -536,7 +536,7 @@
for(var/obj/O in T)
if(istype(O,/obj/structure/closet/crate))
var/obj/structure/closet/crate/C = O
- if(C.contents.len)
+ if(length(C.contents))
to_chat(user, SPAN_DANGER("[O] must be emptied before it can be recycled"))
continue
new /obj/item/stack/sheet/metal(get_step(src,dir))
@@ -778,7 +778,7 @@
return
/obj/item/storage/box/attachments/update_icon()
- if(!contents.len)
+ if(!length(contents))
var/turf/T = get_turf(src)
if(T)
new /obj/item/paper/crumpled(T)
diff --git a/code/game/gamemodes/colonialmarines/whiskey_outpost/whiskey_output_waves.dm b/code/game/gamemodes/colonialmarines/whiskey_outpost/whiskey_output_waves.dm
index 609a70f1dd3b..68b2a51e76e7 100644
--- a/code/game/gamemodes/colonialmarines/whiskey_outpost/whiskey_output_waves.dm
+++ b/code/game/gamemodes/colonialmarines/whiskey_outpost/whiskey_output_waves.dm
@@ -43,7 +43,7 @@
available_xenos += unique_xenos
- if(!available_xenos.len)
+ if(!length(available_xenos))
to_chat(xeno_candidate, SPAN_WARNING("There aren't any available xenomorphs."))
return FALSE
diff --git a/code/game/gamemodes/colonialmarines/xenovsxeno.dm b/code/game/gamemodes/colonialmarines/xenovsxeno.dm
index 40e67df4d458..e1672f362731 100644
--- a/code/game/gamemodes/colonialmarines/xenovsxeno.dm
+++ b/code/game/gamemodes/colonialmarines/xenovsxeno.dm
@@ -44,8 +44,8 @@
/datum/game_mode/xenovs/pre_setup()
monkey_types = SSmapping.configs[GROUND_MAP].monkey_types
if(monkey_amount)
- if(monkey_types.len)
- for(var/i = min(floor(monkey_amount*GLOB.clients.len), GLOB.monkey_spawns.len), i > 0, i--)
+ if(length(monkey_types))
+ for(var/i = min(floor(monkey_amount*length(GLOB.clients)), length(GLOB.monkey_spawns)), i > 0, i--)
var/turf/T = get_turf(pick_n_take(GLOB.monkey_spawns))
var/monkey_to_spawn = pick(monkey_types)
@@ -265,7 +265,7 @@
if(GLOB.round_statistics)
GLOB.round_statistics.game_mode = name
GLOB.round_statistics.round_length = world.time
- GLOB.round_statistics.end_round_player_population = GLOB.clients.len
+ GLOB.round_statistics.end_round_player_population = length(GLOB.clients)
GLOB.round_statistics.log_round_statistics()
diff --git a/code/game/gamemodes/extended/extended.dm b/code/game/gamemodes/extended/extended.dm
index 72512a7e77ff..f5b64571f98c 100644
--- a/code/game/gamemodes/extended/extended.dm
+++ b/code/game/gamemodes/extended/extended.dm
@@ -42,7 +42,7 @@
if(GLOB.round_statistics)
GLOB.round_statistics.game_mode = name
GLOB.round_statistics.round_length = world.time
- GLOB.round_statistics.end_round_player_population = GLOB.clients.len
+ GLOB.round_statistics.end_round_player_population = length(GLOB.clients)
GLOB.round_statistics.log_round_statistics()
calculate_end_statistics()
diff --git a/code/game/gamemodes/extended/infection.dm b/code/game/gamemodes/extended/infection.dm
index e2c34f9aa16c..1f641917d53f 100644
--- a/code/game/gamemodes/extended/infection.dm
+++ b/code/game/gamemodes/extended/infection.dm
@@ -71,16 +71,16 @@
possible_synth_survivors -= A
possible_survivors = shuffle(possible_survivors) //Shuffle them up a bit
- if(possible_survivors.len) //We have some, it looks like.
+ if(length(possible_survivors)) //We have some, it looks like.
for(var/datum/mind/A in possible_survivors) //Strip out any xenos first so we don't double-dip.
if(A.roundstart_picked)
possible_survivors -= A
- if(possible_survivors.len) //We may have stripped out all the contendors, so check again.
+ if(length(possible_survivors)) //We may have stripped out all the contendors, so check again.
var/i = surv_starting_num
var/datum/mind/new_survivor
while(i > 0)
- if(!possible_survivors.len)
+ if(!length(possible_survivors))
break //Ran out of candidates! Can't have a null pick(), so just stick with what we have.
new_survivor = pick(possible_survivors)
if(!new_survivor)
@@ -123,7 +123,7 @@
if(GLOB.round_statistics)
GLOB.round_statistics.game_mode = name
GLOB.round_statistics.round_length = world.time
- GLOB.round_statistics.end_round_player_population = GLOB.clients.len
+ GLOB.round_statistics.end_round_player_population = length(GLOB.clients)
GLOB.round_statistics.log_round_statistics()
declare_completion_announce_xenomorphs()
diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm
index 1803d7ac127c..603f0313f840 100644
--- a/code/game/gamemodes/game_mode.dm
+++ b/code/game/gamemodes/game_mode.dm
@@ -108,7 +108,7 @@ GLOBAL_VAR_INIT(cas_tracking_id_increment, 0) //this var used to assign unique t
log_game("Round started at [time2text(world.realtime)]")
log_game("Operation time at round start is [worldtime2text()]")
if(SSticker.mode)
- log_game("Game mode set to [SSticker.mode]")
+ log_game("Game mode set to [SSticker.mode] on the [SSmapping.configs[GROUND_MAP].map_name] map")
log_game("Server IP: [world.internet_address]:[world.port]")
return TRUE
diff --git a/code/game/jobs/access.dm b/code/game/jobs/access.dm
index 94e59cbd93ef..5c10e8e7d934 100644
--- a/code/game/jobs/access.dm
+++ b/code/game/jobs/access.dm
@@ -61,7 +61,7 @@
gen_access()
if(!islist(req_access)) return 1//something's very wrong
var/L[] = req_access
- if(!L.len && (!req_one_access || !req_one_access.len)) return 1//no requirements
+ if(!length(L) && !LAZYLEN(req_one_access)) return 1//no requirements
if(!I) return
var/list/A = I.GetAccess()
@@ -69,7 +69,7 @@
if(!(i in A))
return FALSE//doesn't have this access
- if(req_one_access && req_one_access.len)
+ if(LAZYLEN(req_one_access))
for(var/i in req_one_access)
if(i in A)
return TRUE//has an access from the single access list
@@ -80,14 +80,14 @@
gen_access()
if(!req_access && !req_one_access) return 1
if(!islist(req_access)) return 1
- if(!req_access.len && !islist(req_one_access))
+ if(!length(req_access) && !islist(req_one_access))
return TRUE
- if(!req_access.len && (!req_one_access || !req_one_access.len)) return 1
+ if(!length(req_access) && !LAZYLEN(req_one_access)) return 1
if(!islist(L)) return
var/i
for(i in req_access)
if(!(i in L)) return //doesn't have this access
- if(req_one_access && req_one_access.len)
+ if(LAZYLEN(req_one_access))
for(i in req_one_access)
if(i in L) return 1//has an access from the single access list
return
diff --git a/code/game/jobs/job/civilians/other/survivors.dm b/code/game/jobs/job/civilians/other/survivors.dm
index 4fc344713d61..87b7fcb2b18f 100644
--- a/code/game/jobs/job/civilians/other/survivors.dm
+++ b/code/game/jobs/job/civilians/other/survivors.dm
@@ -187,7 +187,7 @@ AddTimelock(/datum/job/civilian/survivor, list(
/datum/job/civilian/survivor/commanding_officer/set_spawn_positions()
var/list/CO_survivor_types = SSmapping.configs[GROUND_MAP].CO_survivor_types
- if(CO_survivor_types.len)
+ if(length(CO_survivor_types))
total_positions = 1
spawn_positions = 1
return spawn_positions
diff --git a/code/game/jobs/job/command/police/chief_police.dm b/code/game/jobs/job/command/police/chief_police.dm
index 63e6d8023f17..ecc8af38526c 100644
--- a/code/game/jobs/job/command/police/chief_police.dm
+++ b/code/game/jobs/job/command/police/chief_police.dm
@@ -5,6 +5,16 @@
flags_startup_parameters = ROLE_ADD_TO_DEFAULT
gear_preset = /datum/equipment_preset/uscm_ship/uscm_police/cmp
entry_message_body = "You are held by a higher standard and are required to obey not only the server rules but the Marine Law. Failure to do so may result in a job ban or server ban. You lead the Military Police, ensure your officers maintain peace and stability aboard the ship. Marines can get rowdy after a few weeks of cryosleep! In addition, you are tasked with the security of high-ranking personnel, including the command staff. Keep them safe!"
+ var/mob/living/carbon/human/active_cmp
+
+/datum/job/command/warrant/generate_entry_conditions(mob/living/cmp, whitelist_status)
+ . = ..()
+ active_cmp = cmp
+ RegisterSignal(cmp, COMSIG_PARENT_QDELETING, PROC_REF(cleanup_active_cmp))
+
+/datum/job/command/warrant/proc/cleanup_active_cmp(mob/cmp)
+ SIGNAL_HANDLER
+ active_cmp = null
AddTimelock(/datum/job/command/warrant, list(
JOB_POLICE_ROLES = 15 HOURS,
diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm
index d758e187ce70..0af315fc3b9d 100644
--- a/code/game/jobs/job/job.dm
+++ b/code/game/jobs/job/job.dm
@@ -188,7 +188,7 @@
remembered_info += "Your account pin is: [generated_account.remote_access_pin]
"
remembered_info += "Your account funds are: $[generated_account.money]
"
- if(generated_account.transaction_log.len)
+ if(length(generated_account.transaction_log))
var/datum/transaction/T = generated_account.transaction_log[1]
remembered_info += "Your account was created: [T.time], [T.date] at [T.source_terminal]
"
account_user.mind.store_memory(remembered_info)
diff --git a/code/game/jobs/job/marine/squad_info.dm b/code/game/jobs/job/marine/squad_info.dm
index 7e7dfcc0229a..37db48c3116e 100644
--- a/code/game/jobs/job/marine/squad_info.dm
+++ b/code/game/jobs/job/marine/squad_info.dm
@@ -9,7 +9,7 @@
return GLOB.not_incapacitated_state
/datum/squad/ui_data(mob/user)
- if(!squad_info_data.len) //initial first update of data
+ if(!length(squad_info_data)) //initial first update of data
update_all_squad_info()
if(squad_info_data["total_mar"] != count) //updates for new marines
update_free_mar()
@@ -130,7 +130,7 @@
//fireteam and TL update
/datum/squad/proc/update_fireteam(team)
- squad_info_data["fireteams"][team]["total"] = fireteams[team].len
+ squad_info_data["fireteams"][team]["total"] = length(fireteams[team])
if(squad_info_data["fireteams"][team]["total"] < 1)
squad_info_data["fireteams"][team]["tl"] = list()
squad_info_data["fireteams"][team]["mar"] = list()
@@ -197,7 +197,7 @@
squad_info_data["total_kia"] = 0
var/mar_free = count
for(var/team in fireteams)
- mar_free -= fireteams[team].len
+ mar_free -= length(fireteams[team])
if(squad_leader)
mar_free--
for(var/list/freeman in squad_info_data["mar_free"])
diff --git a/code/game/jobs/job/marine/squads.dm b/code/game/jobs/job/marine/squads.dm
index 3285e75e45c3..75f6622506a9 100644
--- a/code/game/jobs/job/marine/squads.dm
+++ b/code/game/jobs/job/marine/squads.dm
@@ -221,6 +221,18 @@
roundstart = FALSE
locked = TRUE
+/datum/squad/marine/forecon
+ name = SQUAD_FORECON
+ equipment_color = "#32CD32"
+ chat_color = "#32CD32"
+ radio_freq = FORECON_FREQ
+ minimap_color = "#32CD32"
+
+ active = FALSE
+ roundstart = FALSE
+ locked = TRUE
+
+
//############################### UPP Squads
/datum/squad/upp
name = "Root"
@@ -649,7 +661,7 @@
//Not a safe proc. Returns null if squads or jobs aren't set up.
//Mostly used in the marine squad console in marine_consoles.dm.
/proc/get_squad_by_name(text)
- if(!GLOB.RoleAuthority || GLOB.RoleAuthority.squads.len == 0)
+ if(!GLOB.RoleAuthority || length(GLOB.RoleAuthority.squads) == 0)
return null
var/datum/squad/S
for(S in GLOB.RoleAuthority.squads)
diff --git a/code/game/jobs/role_authority.dm b/code/game/jobs/role_authority.dm
index a9017e2cc8d3..b4894eda4d24 100644
--- a/code/game/jobs/role_authority.dm
+++ b/code/game/jobs/role_authority.dm
@@ -331,7 +331,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
var/i = 0
var/j
while(++i < 3) //Get two passes.
- if(!roles_to_iterate.len || prob(65)) break //Base chance to become a marine when being assigned randomly, or there are no roles available.
+ if(!length(roles_to_iterate) || prob(65)) break //Base chance to become a marine when being assigned randomly, or there are no roles available.
j = pick(roles_to_iterate)
J = roles_to_iterate[j]
@@ -533,7 +533,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
//Find which squad has the least population. If all 4 squads are equal it should just use a random one
/datum/authority/branch/role/proc/get_lowest_squad(mob/living/carbon/human/H)
- if(!squads.len) //Something went wrong, our squads aren't set up.
+ if(!length(squads)) //Something went wrong, our squads aren't set up.
to_world("Warning, something messed up in get_lowest_squad(). No squads set up!")
return null
@@ -542,7 +542,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
var/list/squads_copy = squads.Copy()
var/list/mixed_squads = list()
- for(var/i= 1 to squads_copy.len)
+ for(var/i= 1 to length(squads_copy))
var/datum/squad/S = pick_n_take(squads_copy)
if (S.roundstart && S.usable && S.faction == H.faction && S.name != "Root")
mixed_squads += S
@@ -586,7 +586,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
if(!H)
return
- if(!squads.len)
+ if(!length(squads))
to_chat(H, "Something went wrong with your squad randomizer! Tell a coder!")
return //Shit, where's our squad data
@@ -597,7 +597,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou
var/list/squads_copy = squads.Copy()
var/list/mixed_squads = list()
// The following code removes non useable squads from the lists of squads we assign marines too.
- for(var/i= 1 to squads_copy.len)
+ for(var/i= 1 to length(squads_copy))
var/datum/squad/S = pick_n_take(squads_copy)
if (S.roundstart && S.usable && S.faction == H.faction && S.name != "Root")
mixed_squads += S
diff --git a/code/game/machinery/air_alarm.dm b/code/game/machinery/air_alarm.dm
index 7eccb51c0660..3efb579ceadc 100644
--- a/code/game/machinery/air_alarm.dm
+++ b/code/game/machinery/air_alarm.dm
@@ -264,10 +264,10 @@
/obj/structure/machinery/alarm/proc/register_env_machine(m_id, device_type)
var/new_name
if (device_type=="AVP")
- new_name = "[alarm_area.name] Vent Pump #[alarm_area.air_vent_names.len+1]"
+ new_name = "[alarm_area.name] Vent Pump #[length(alarm_area.air_vent_names)+1]"
alarm_area.air_vent_names[m_id] = new_name
else if (device_type=="AScr")
- new_name = "[alarm_area.name] Air Scrubber #[alarm_area.air_scrub_names.len+1]"
+ new_name = "[alarm_area.name] Air Scrubber #[length(alarm_area.air_scrub_names)+1]"
alarm_area.air_scrub_names[m_id] = new_name
else
return
@@ -648,7 +648,7 @@ Pressure: [environment_pressure]kP
if (AALARM_SCREEN_VENT)
var/sensor_data = ""
- if(alarm_area.air_vent_names.len)
+ if(length(alarm_area.air_vent_names))
for(var/id_tag in alarm_area.air_vent_names)
var/long_name = alarm_area.air_vent_names[id_tag]
var/list/data = alarm_area.air_vent_info[id_tag]
@@ -690,7 +690,7 @@ siphoning
output = {"Main menu
[sensor_data]"}
if (AALARM_SCREEN_SCRUB)
var/sensor_data = ""
- if(alarm_area.air_scrub_names.len)
+ if(length(alarm_area.air_scrub_names))
for(var/id_tag in alarm_area.air_scrub_names)
var/long_name = alarm_area.air_scrub_names[id_tag]
var/list/data = alarm_area.air_scrub_info[id_tag]
@@ -735,7 +735,7 @@ Nitrous Oxide
AALARM_MODE_FILL = SET_CLASS("Fill - Shuts off scrubbers and opens vents", INTERFACE_GREEN),\
AALARM_MODE_OFF = SET_CLASS("Off - Shuts off vents and scrubbers", INTERFACE_BLUE)
)
- for (var/m=1,m<=modes.len,m++)
+ for (var/m=1,m<=length(modes),m++)
if (mode==m)
output += "[modes[m]] (selected)"
else
diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm
index fed690f6707b..4150aead979e 100644
--- a/code/game/machinery/autolathe.dm
+++ b/code/game/machinery/autolathe.dm
@@ -106,7 +106,7 @@
/obj/structure/machinery/autolathe/ui_data(mob/user)
var/list/data = list()
- if(queue.len)
+ if(length(queue))
var/list/queue_list = list()
var/i = 0
for(var/params in queue)
@@ -119,7 +119,7 @@
else
data["queued"] = null
- if(currently_making_data.len)
+ if(length(currently_making_data))
data["currently_making"] = currently_making_data
else
data["currently_making"] = null
@@ -129,7 +129,7 @@
var/list/wire_descriptions = get_wire_descriptions()
var/list/panel_wires = list()
- for(var/wire = 1 to wire_descriptions.len)
+ for(var/wire = 1 to length(wire_descriptions))
panel_wires += list(list("desc" = wire_descriptions[wire], "cut" = isWireCut(wire)))
data["electrical"] = list(
@@ -164,7 +164,7 @@
switch(action)
if("cancel")
var/index = params["index"]
- if(index < 1 || index > queue.len)
+ if(index < 1 || index > length(queue))
return
var/list/to_del = queue[index]
@@ -198,7 +198,7 @@
if(!initial(make_loc))
make_loc = get_step(loc, get_dir(src,usr))
- if(index > 0 && index <= recipes.len)
+ if(index > 0 && index <= length(recipes))
making = recipes[index]
//Exploit detection, not sure if necessary after rewrite.
@@ -358,7 +358,7 @@
storage_capacity[material] = tot_rating * 30000
/obj/structure/machinery/autolathe/proc/try_queue(mob/living/carbon/human/user, datum/autolathe/recipe/making, turf/make_loc, multiplier = 1)
- if(queue.len >= queue_max)
+ if(length(queue) >= queue_max)
to_chat(usr, SPAN_DANGER("The [name] has queued the maximum number of operations. Please wait for completion of current operation."))
return AUTOLATHE_FAILED
@@ -392,7 +392,7 @@
busy = TRUE
- while (queue.len)
+ while (length(queue))
print_params = queue[1]
queue -= list(print_params)
print_item(arglist(print_params))
@@ -526,7 +526,7 @@
max_print_amt = -1
- if(!R.resources || !R.resources.len)
+ if(!LAZYLEN(R.resources))
print_data["materials"] = "No resources required"
else
//Make sure it's buildable and list requires resources.
diff --git a/code/game/machinery/bots/cleanbot.dm b/code/game/machinery/bots/cleanbot.dm
index c21a7a854bc3..cd93ce513972 100644
--- a/code/game/machinery/bots/cleanbot.dm
+++ b/code/game/machinery/bots/cleanbot.dm
@@ -180,7 +180,7 @@ text("[src.oddbutton ? "Yes" : "No"
if (!should_patrol)
return
- if (!patrol_path || patrol_path.len < 1)
+ if (LAZYLEN(patrol_path) < 1)
var/datum/radio_frequency/frequency = SSradio.return_frequency(beacon_freq)
if(!frequency) return
@@ -204,20 +204,20 @@ text("[src.oddbutton ? "Yes" : "No"
return
- if(target && path.len == 0)
+ if(target && length(path) == 0)
spawn(0)
if(!src || !target) return
src.path = AStar(src.loc, src.target.loc, /turf/proc/CardinalTurfsWithAccess, /turf/proc/Distance, 0, 30, id=botcard)
if (!path) path = list()
- if(src.path.len == 0)
+ if(length(src.path) == 0)
src.oldtarget = src.target
target.targeted_by = null
src.target = null
return
- if(src.path.len > 0 && src.target && (src.target != null))
+ if(length(src.path) > 0 && src.target && (src.target != null))
step_to(src, src.path[1])
src.path -= src.path[1]
- else if(src.path.len == 1)
+ else if(length(src.path) == 1)
step_to(src, target)
if(src.target && (src.target != null))
@@ -231,7 +231,7 @@ text("[src.oddbutton ? "Yes" : "No"
src.oldloc = src.loc
/obj/structure/machinery/bot/cleanbot/proc/patrol_move()
- if (src.patrol_path.len <= 0)
+ if (length(src.patrol_path) <= 0)
return
var/next = src.patrol_path[1]
diff --git a/code/game/machinery/bots/floorbot.dm b/code/game/machinery/bots/floorbot.dm
index be8ec5aa8574..85f6d580cec7 100644
--- a/code/game/machinery/bots/floorbot.dm
+++ b/code/game/machinery/bots/floorbot.dm
@@ -199,21 +199,21 @@
src.oldtarget = null
return
- if(src.target && (src.target != null) && src.path.len == 0)
+ if(src.target && (src.target != null) && length(src.path) == 0)
spawn(0)
if(!istype(src.target, /turf/))
src.path = AStar(src.loc, src.target.loc, /turf/proc/AdjacentTurfsSpace, /turf/proc/Distance, 0, 30, id=botcard)
else
src.path = AStar(src.loc, src.target, /turf/proc/AdjacentTurfsSpace, /turf/proc/Distance, 0, 30, id=botcard)
if (!src.path) src.path = list()
- if(src.path.len == 0)
+ if(length(src.path) == 0)
src.oldtarget = src.target
src.target = null
return
- if(src.path.len > 0 && src.target && (src.target != null))
+ if(length(src.path) > 0 && src.target && (src.target != null))
step_to(src, src.path[1])
src.path -= src.path[1]
- else if(src.path.len == 1)
+ else if(length(src.path) == 1)
step_to(src, target)
src.path = new()
@@ -342,7 +342,7 @@
if(!istype(T, /obj/item/stack/tile/plasteel))
..()
return
- if(src.contents.len >= 1)
+ if(length(src.contents) >= 1)
to_chat(user, SPAN_NOTICE("That won't fit, there's already stuff inside."))
return
for(var/mob/M in content_watchers)
diff --git a/code/game/machinery/bots/medbot.dm b/code/game/machinery/bots/medbot.dm
index 77e890d88d34..5193b1b7cddd 100644
--- a/code/game/machinery/bots/medbot.dm
+++ b/code/game/machinery/bots/medbot.dm
@@ -62,7 +62,7 @@
src.overlays += image('icons/obj/structures/machinery/aibots.dmi', "medskin_[src.skin]")
src.botcard = new /obj/item/card/id(src)
- if(isnull(src.botcard_access) || (src.botcard_access.len < 1))
+ if(!LAZYLEN(src.botcard_access))
var/datum/job/J = GLOB.RoleAuthority ? GLOB.RoleAuthority.roles_by_path[/datum/job/civilian/doctor] : new /datum/job/civilian/doctor
botcard.access = J.get_access()
else
@@ -278,31 +278,31 @@
src.medicate_patient(src.patient)
return
- else if(src.patient && (src.path.len) && (get_dist(src.patient,src.path[src.path.len]) > 2))
+ else if(src.patient && (length(src.path)) && (get_dist(src.patient,src.path[length(src.path)]) > 2))
src.path = new()
src.currently_healing = 0
src.last_found = world.time
- if(src.patient && src.path.len == 0 && (get_dist(src,src.patient) > 1))
+ if(src.patient && length(src.path) == 0 && (get_dist(src,src.patient) > 1))
spawn(0)
src.path = AStar(src.loc, get_turf(src.patient), /turf/proc/CardinalTurfsWithAccess, /turf/proc/Distance, 0, 30,id=botcard)
if (!path) path = list()
- if(src.path.len == 0)
+ if(length(src.path) == 0)
src.oldpatient = src.patient
src.patient = null
src.currently_healing = 0
src.last_found = world.time
return
- if(src.path.len > 0 && src.patient)
+ if(length(src.path) > 0 && src.patient)
step_to(src, src.path[1])
src.path -= src.path[1]
spawn(3)
- if(src.path.len)
+ if(length(src.path))
step_to(src, src.path[1])
src.path -= src.path[1]
- if(src.path.len > 8 && src.patient)
+ if(length(src.path) > 8 && src.patient)
src.frustration++
return
@@ -487,7 +487,7 @@
return
//Making a medibot!
- if(src.contents.len >= 1)
+ if(length(src.contents) >= 1)
to_chat(user, SPAN_NOTICE("You need to empty [src] out first."))
return
diff --git a/code/game/machinery/bots/mulebot.dm b/code/game/machinery/bots/mulebot.dm
index 0686759f0edd..563c4b89c590 100644
--- a/code/game/machinery/bots/mulebot.dm
+++ b/code/game/machinery/bots/mulebot.dm
@@ -105,12 +105,12 @@
var/list/orders = list("0","1","2","3","4","5","6","7","8","9")
wire_text = list()
wire_order = list()
- while(colours.len > 0)
- var/color = colours[ rand(1,colours.len) ]
+ while(length(colours) > 0)
+ var/color = colours[ rand(1,length(colours)) ]
wire_text += color
colours -= color
- var/order = orders[ rand(1,orders.len) ]
+ var/order = orders[ rand(1,length(orders)) ]
wire_order += text2num(order)
orders -= order
@@ -584,7 +584,7 @@
at_target()
return
- else if(path.len > 0 && target) // valid path
+ else if(length(path) > 0 && target) // valid path
var/turf/next = path[1]
reached_target = 0
@@ -645,7 +645,7 @@
spawn(2)
calc_path(next)
- if(path.len > 0)
+ if(length(path) > 0)
src.visible_message("[src] makes a delighted ping!", "You hear a ping.")
playsound(src.loc, 'sound/machines/ping.ogg', 25, 0)
mode = 4
@@ -667,7 +667,7 @@
calc_path()
- if(path.len > 0)
+ if(length(path) > 0)
blockcount = 0
mode = 4
src.visible_message("[src] makes a delighted ping!", "You hear a ping.")
diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm
index 6943544e30d4..4f6b40968bdb 100644
--- a/code/game/machinery/camera/camera.dm
+++ b/code/game/machinery/camera/camera.dm
@@ -52,13 +52,13 @@ GLOBAL_LIST_EMPTY_TYPED(all_cameras, /obj/structure/machinery/camera)
if(colony_camera_mapload && mapload && is_ground_level(z))
network = list(CAMERA_NET_COLONY)
- if(!src.network || src.network.len < 1)
+ if(LAZYLEN(src.network) < 1)
if(loc)
error("[src.name] in [get_area(src)] (x:[src.x] y:[src.y] z:[src.z]) has errored. [src.network?"Empty network list":"Null network list"]")
else
error("[src.name] in [get_area(src)]has errored. [src.network?"Empty network list":"Null network list"]")
ASSERT(src.network)
- ASSERT(src.network.len > 0)
+ ASSERT(length(src.network) > 0)
set_pixel_location()
update_icon()
diff --git a/code/game/machinery/camera/motion.dm b/code/game/machinery/camera/motion.dm
index 6a869f443d12..498984a48736 100644
--- a/code/game/machinery/camera/motion.dm
+++ b/code/game/machinery/camera/motion.dm
@@ -32,7 +32,7 @@
/obj/structure/machinery/camera/proc/lostTarget(mob/target)
if (target in motionTargets)
motionTargets -= target
- if (motionTargets.len == 0)
+ if (length(motionTargets) == 0)
cancelAlarm()
/obj/structure/machinery/camera/proc/cancelAlarm()
diff --git a/code/game/machinery/computer/HolodeckControl.dm b/code/game/machinery/computer/HolodeckControl.dm
index 58b3d8ea5e64..9288033d61d5 100644
--- a/code/game/machinery/computer/HolodeckControl.dm
+++ b/code/game/machinery/computer/HolodeckControl.dm
@@ -14,6 +14,12 @@
/turf/open/floor/holofloor/attackby(obj/item/W as obj, mob/user as mob)
return
+/turf/open/floor/holofloor/cult
+ icon_state = "cult"
+
+/turf/open/floor/holofloor/cult/south
+ dir = SOUTH
+
/turf/open/floor/holofloor/grass
name = "lush grass"
icon_state = "grass1"
diff --git a/code/game/machinery/computer/almayer_control.dm b/code/game/machinery/computer/almayer_control.dm
index 8cd043e23998..3d3c0fdbe4df 100644
--- a/code/game/machinery/computer/almayer_control.dm
+++ b/code/game/machinery/computer/almayer_control.dm
@@ -85,7 +85,7 @@
if(SShijack.evac_status == EVACUATION_STATUS_INITIATED)
data["evac_eta"] = SShijack.get_evac_eta()
- if(!messagetitle.len)
+ if(!length(messagetitle))
data["messages"] = null
else
for(var/i in 1 to length(messagetitle))
diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm
index 1ac5a06738d5..ff8f3959d64e 100644
--- a/code/game/machinery/computer/arcade.dm
+++ b/code/game/machinery/computer/arcade.dm
@@ -122,7 +122,7 @@
src.gameover = 1
src.temp = "[src.enemy_name] has fallen! Rejoice!"
- if(!contents.len)
+ if(!length(contents))
var/prizeselect = pickweight(prizes)
new prizeselect(src.loc)
diff --git a/code/game/machinery/computer/atmos_alert.dm b/code/game/machinery/computer/atmos_alert.dm
index 9a17449b9e47..8ce8248b07a2 100644
--- a/code/game/machinery/computer/atmos_alert.dm
+++ b/code/game/machinery/computer/atmos_alert.dm
@@ -62,10 +62,10 @@
..()
if(inoperable())
return
- if(priority_alarms.len)
+ if(length(priority_alarms))
icon_state = "alert:2"
- else if(minor_alarms.len)
+ else if(length(minor_alarms))
icon_state = "alert:1"
else
@@ -77,13 +77,13 @@
var/priority_text
var/minor_text
- if(priority_alarms.len)
+ if(length(priority_alarms))
for(var/zone in priority_alarms)
priority_text += "[zone] X
"
else
priority_text = "No priority alerts detected.
"
- if(minor_alarms.len)
+ if(length(minor_alarms))
for(var/zone in minor_alarms)
minor_text += "[zone] X
"
else
diff --git a/code/game/machinery/computer/camera_console.dm b/code/game/machinery/computer/camera_console.dm
index 1e2cb427cab4..c818df9fbfb9 100644
--- a/code/game/machinery/computer/camera_console.dm
+++ b/code/game/machinery/computer/camera_console.dm
@@ -167,7 +167,7 @@
stack_trace("Camera in a cameranet has a non-list camera network")
continue
var/list/tempnetwork = C.network & network
- if(tempnetwork.len)
+ if(length(tempnetwork))
D["[C.c_tag]"] = C
return D
diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm
index dec523ccc5b2..2e6922e43a85 100644
--- a/code/game/machinery/computer/communications.dm
+++ b/code/game/machinery/computer/communications.dm
@@ -366,7 +366,7 @@
dat += "
Select primary LZ"
dat += "
"
dat += "
Make an announcement"
- dat += GLOB.admins.len > 0 ? "
Send a message to USCM" : "
USCM communication offline"
+ dat += length(GLOB.admins) > 0 ? "
Send a message to USCM" : "
USCM communication offline"
dat += "
Award a medal"
dat += "
Send Distress Beacon"
dat += "
Activate Self-Destruct"
@@ -393,7 +393,7 @@
if(STATE_MESSAGELIST)
dat += "Messages:"
- for(var/i = 1; i<=messagetitle.len; i++)
+ for(var/i = 1; i<=length(messagetitle); i++)
dat += "
[messagetitle[i]]"
if(STATE_VIEWMESSAGE)
@@ -466,7 +466,7 @@
if(STATE_MESSAGELIST)
dat += "Messages:"
- for(var/i = 1; i<=messagetitle.len; i++)
+ for(var/i = 1; i<=length(messagetitle); i++)
dat += "
[messagetitle[i]]"
if(STATE_VIEWMESSAGE)
diff --git a/code/game/machinery/computer/dropship_weapons.dm b/code/game/machinery/computer/dropship_weapons.dm
index abd3ab50b75c..7f8f4f2b3850 100644
--- a/code/game/machinery/computer/dropship_weapons.dm
+++ b/code/game/machinery/computer/dropship_weapons.dm
@@ -313,9 +313,8 @@
var/obj/structure/machinery/defenses/sentry/defense = sentry.deployed_turret
if(defense.has_camera)
defense.set_range()
- var/datum/shape/rectangle/current_bb = defense.range_bounds
camera_area_equipment = sentry
- SEND_SIGNAL(src, COMSIG_CAMERA_SET_AREA, current_bb.center_x, current_bb.center_y, defense.loc.z, current_bb.width, current_bb.height)
+ SEND_SIGNAL(src, COMSIG_CAMERA_SET_AREA, defense.range_bounds, defense.loc.z)
return TRUE
if("clear-camera")
@@ -581,8 +580,8 @@
for(var/datum/cas_fire_mission_record/firerec as anything in editing_firemission.records)
var/gimbal = firerec.get_offsets()
var/ammo = firerec.get_ammo()
- var/offsets = new /list(firerec.offsets.len)
- for(var/idx = 1; idx < firerec.offsets.len; idx++)
+ var/offsets = new /list(length(firerec.offsets))
+ for(var/idx = 1; idx < length(firerec.offsets); idx++)
offsets[idx] = firerec.offsets[idx] == null ? "-" : firerec.offsets[idx]
. += list(
"name" = sanitize(copytext(firerec.weapon.name, 1, 50)),
@@ -738,7 +737,7 @@
if(!skillcheck(weapon_operator, SKILL_PILOT, SKILL_PILOT_TRAINED)) //only pilots can fire dropship weapons.
to_chat(weapon_operator, SPAN_WARNING("A screen with graphics and walls of physics and engineering values open, you immediately force it closed."))
return FALSE
- if(firemission_tag > firemission_envelope.missions.len)
+ if(firemission_tag > length(firemission_envelope.missions))
to_chat(weapon_operator, SPAN_WARNING("Fire Mission ID corrupted or already deleted."))
return FALSE
if(selected_firemission == firemission_envelope.missions[firemission_tag])
@@ -757,7 +756,7 @@
if(firemission_envelope.stat > FIRE_MISSION_STATE_IN_TRANSIT && firemission_envelope.stat < FIRE_MISSION_STATE_COOLDOWN)
to_chat(weapon_operator, SPAN_WARNING("Fire Mission already underway."))
return FALSE
- if(firemission_tag > firemission_envelope.missions.len)
+ if(firemission_tag > length(firemission_envelope.missions))
to_chat(weapon_operator, SPAN_WARNING("Fire Mission ID corrupted or deleted."))
return FALSE
if(selected_firemission == firemission_envelope.missions[firemission_tag])
diff --git a/code/game/machinery/computer/guestpass.dm b/code/game/machinery/computer/guestpass.dm
index 5204b53e20ee..20a7260320f2 100644
--- a/code/game/machinery/computer/guestpass.dm
+++ b/code/game/machinery/computer/guestpass.dm
@@ -165,7 +165,7 @@
if (giver)
var/number = add_zero("[rand(0,9999)]", 4)
var/entry = "\[[worldtime2text()]\] Pass #[number] issued by [giver.registered_name] ([giver.assignment]) to [giv_name]. Reason: [reason]. Grants access to following areas: "
- for (var/i=1 to accesses.len)
+ for (var/i=1 to length(accesses))
var/A = accesses[i]
if (A)
var/area = get_access_desc(A)
diff --git a/code/game/machinery/computer/security.dm b/code/game/machinery/computer/security.dm
index 4138d89908d4..b3892de24413 100644
--- a/code/game/machinery/computer/security.dm
+++ b/code/game/machinery/computer/security.dm
@@ -155,7 +155,7 @@
dat += text("New Security Record
", src)
dat += text("\nPrint Record
\nBack
", src, src)
if(4.0)
- if(!Perp.len)
+ if(!length(Perp))
dat += text("ERROR. String could not be located.
Back", src)
else
dat += {"
@@ -172,7 +172,7 @@
Rank |
Criminal Status |
"}
- for(var/i=1, i<=Perp.len, i += 2)
+ for(var/i=1, i<=length(Perp), i += 2)
var/crimstat = ""
var/datum/data/record/R = Perp[i]
if(istype(Perp[i+1],/datum/data/record/))
@@ -271,16 +271,16 @@ What a mess.*/
Perp = new/list()
t1 = lowertext(t1)
var/list/components = splittext(t1, " ")
- if(components.len > 5)
+ if(length(components) > 5)
return //Lets not let them search too greedily.
for(var/datum/data/record/R in GLOB.data_core.general)
var/temptext = R.fields["name"] + " " + R.fields["id"] + " " + R.fields["rank"]
- for(var/i = 1, i<=components.len, i++)
+ for(var/i = 1, i<=length(components), i++)
if(findtext(temptext,components[i]))
var/prelist = new/list(2)
prelist[1] = R
Perp += prelist
- for(var/i = 1, i<=Perp.len, i+=2)
+ for(var/i = 1, i<=length(Perp), i+=2)
for(var/datum/data/record/E in GLOB.data_core.security)
var/datum/data/record/R = Perp[i]
if ((E.fields["name"] == R.fields["name"] && E.fields["id"] == R.fields["id"]))
diff --git a/code/game/machinery/computer/skills.dm b/code/game/machinery/computer/skills.dm
index cc4d93f5a24c..cba8d50791f9 100644
--- a/code/game/machinery/computer/skills.dm
+++ b/code/game/machinery/computer/skills.dm
@@ -97,7 +97,7 @@
dat += "General Record Lost!
"
dat += "\nDelete Record (ALL)
\nPrint Record
\nBack
"
if(4.0)
- if(!Perp.len)
+ if(!length(Perp))
dat += "ERROR. String could not be located.
Back"
else
dat += {"
@@ -114,7 +114,7 @@
Rank |
Fingerprints |
"}
- for(var/i=1, i<=Perp.len, i += 2)
+ for(var/i=1, i<=length(Perp), i += 2)
var/crimstat = ""
var/datum/data/record/R = Perp[i]
if(istype(Perp[i+1],/datum/data/record/))
@@ -202,16 +202,16 @@ What a mess.*/
Perp = new/list()
t1 = lowertext(t1)
var/list/components = splittext(t1, " ")
- if(components.len > 5)
+ if(length(components) > 5)
return //Lets not let them search too greedily.
for(var/datum/data/record/R in GLOB.data_core.general)
var/temptext = R.fields["name"] + " " + R.fields["id"] + " " + R.fields["rank"]
- for(var/i = 1, i<=components.len, i++)
+ for(var/i = 1, i<=length(components), i++)
if(findtext(temptext,components[i]))
var/prelist = new/list(2)
prelist[1] = R
Perp += prelist
- for(var/i = 1, i<=Perp.len, i+=2)
+ for(var/i = 1, i<=length(Perp), i+=2)
for(var/datum/data/record/E in GLOB.data_core.security)
var/datum/data/record/R = Perp[i]
if ((E.fields["name"] == R.fields["name"] && E.fields["id"] == R.fields["id"]))
diff --git a/code/game/machinery/computer/station_alert.dm b/code/game/machinery/computer/station_alert.dm
index d262caf47859..ddce92c966fb 100644
--- a/code/game/machinery/computer/station_alert.dm
+++ b/code/game/machinery/computer/station_alert.dm
@@ -55,7 +55,7 @@
var/list/CL = null
if(O && islist(O))
CL = O
- if (CL.len == 1)
+ if (length(CL) == 1)
C = CL[1]
else if(O && istype(O, /obj/structure/machinery/camera))
C = O
@@ -73,7 +73,7 @@
var/list/srcs = alarm[3]
if (origin in srcs)
srcs -= origin
- if (srcs.len == 0)
+ if (length(srcs) == 0)
cleared = 1
L -= I
return !cleared
@@ -85,7 +85,7 @@
var/active_alarms = 0
for (var/cat in src.alarms)
var/list/L = src.alarms[cat]
- if(L.len) active_alarms = 1
+ if(length(L)) active_alarms = 1
if(active_alarms)
icon_state = "alert:2"
else
diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm
index 357ef48fff37..0c8cc62c3f87 100644
--- a/code/game/machinery/constructable_frame.dm
+++ b/code/game/machinery/constructable_frame.dm
@@ -124,7 +124,7 @@
state = CONSTRUCTION_STATE_BEGIN
circuit.forceMove(loc)
circuit = null
- if(components.len == 0)
+ if(length(components) == 0)
to_chat(user, SPAN_NOTICE("You remove the circuit board."))
else
to_chat(user, SPAN_NOTICE("You remove the circuit board and other components."))
diff --git a/code/game/machinery/cryo.dm b/code/game/machinery/cryo.dm
index 61972f2f6c46..70c4a175489c 100644
--- a/code/game/machinery/cryo.dm
+++ b/code/game/machinery/cryo.dm
@@ -114,7 +114,7 @@
data["isBeakerLoaded"] = beaker ? TRUE : FALSE
var/beakerContents = list()
- if(beaker && beaker.reagents && beaker.reagents.reagent_list.len)
+ if(beaker && beaker.reagents && length(beaker.reagents.reagent_list))
for(var/datum/reagent/R in beaker.reagents.reagent_list)
beakerContents += list(list("name" = R.name, "volume" = R.volume))
data["beakerContents"] = beakerContents
diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm
index 1793b87c72ae..658e2aa150f3 100644
--- a/code/game/machinery/cryopod.dm
+++ b/code/game/machinery/cryopod.dm
@@ -103,7 +103,7 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li
else if(href_list["item"])
- if(frozen_items_for_type.len == 0)
+ if(length(frozen_items_for_type) == 0)
to_chat(user, SPAN_WARNING("There is nothing to recover from storage."))
return
@@ -122,7 +122,7 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li
else if(href_list["allitems"])
- if(frozen_items_for_type.len == 0)
+ if(length(frozen_items_for_type) == 0)
to_chat(user, SPAN_WARNING("There is nothing to recover from storage."))
return
diff --git a/code/game/machinery/door_display/door_display.dm b/code/game/machinery/door_display/door_display.dm
index 3f0c53ada18e..4624ba5f1bd2 100644
--- a/code/game/machinery/door_display/door_display.dm
+++ b/code/game/machinery/door_display/door_display.dm
@@ -35,7 +35,7 @@
if (D.id == id)
targets += D
- if(targets.len == 0)
+ if(length(targets) == 0)
stat |= BROKEN
update_icon()
diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm
index e8db9dd63875..84f02f0a5bbd 100644
--- a/code/game/machinery/doors/airlock.dm
+++ b/code/game/machinery/doors/airlock.dm
@@ -677,9 +677,9 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list(
airlock_electronics = new/obj/item/circuitboard/airlock(loc)
if(!req_access || !req_one_access)
check_access()
- if(req_access.len)
+ if(length(req_access))
airlock_electronics.conf_access = req_access
- else if(req_one_access.len)
+ else if(length(req_one_access))
airlock_electronics.conf_access = req_one_access
airlock_electronics.one_access = TRUE
else
diff --git a/code/game/machinery/doors/firedoor.dm b/code/game/machinery/doors/firedoor.dm
index cddd67c7e2b2..f3fba382fb04 100644
--- a/code/game/machinery/doors/firedoor.dm
+++ b/code/game/machinery/doors/firedoor.dm
@@ -75,7 +75,7 @@
. += SPAN_WARNING("WARNING: Current pressure differential is [pdiff]kPa! Opening door may result in injury!")
. += "Sensor readings:"
- for(var/index = 1; index <= tile_info.len; index++)
+ for(var/index = 1; index <= length(tile_info); index++)
var/o = " "
switch(index)
if(1)
@@ -101,10 +101,10 @@
o += "[pressure]kPa"
. += o
- if(islist(users_to_open) && users_to_open.len)
+ if(islist(users_to_open) && length(users_to_open))
var/users_to_open_string = users_to_open[1]
- if(users_to_open.len >= 2)
- for(var/i = 2 to users_to_open.len)
+ if(length(users_to_open) >= 2)
+ for(var/i = 2 to length(users_to_open))
users_to_open_string += ", [users_to_open[i]]"
. += "These people have opened \the [src] during an alert: [users_to_open_string]."
@@ -275,7 +275,7 @@
if(dir_alerts)
for(var/d=1;d<=4;d++)
var/cdir = GLOB.cardinals[d]
- for(var/i=1;i<=ALERT_STATES.len;i++)
+ for(var/i=1;i<=length(ALERT_STATES);i++)
if(dir_alerts[d] & (1<<(i-1)))
overlays += new/icon(icon,"alert_[ALERT_STATES[i]]", dir=cdir)
else
diff --git a/code/game/machinery/doors/windowdoor.dm b/code/game/machinery/doors/windowdoor.dm
index a7af3ba4bdcb..61727d1fa471 100644
--- a/code/game/machinery/doors/windowdoor.dm
+++ b/code/game/machinery/doors/windowdoor.dm
@@ -15,7 +15,7 @@
/obj/structure/machinery/door/window/Initialize()
. = ..()
addtimer(CALLBACK(src, PROC_REF(update_icon)), 1)
- if (src.req_access && src.req_access.len)
+ if (LAZYLEN(src.req_access))
src.icon_state = "[src.icon_state]"
src.base_state = src.icon_state
@@ -105,9 +105,9 @@
ae = new/obj/item/circuitboard/airlock( src.loc )
if(!src.req_access)
src.check_access()
- if(src.req_access.len)
+ if(length(src.req_access))
ae.conf_access = src.req_access
- else if (src.req_one_access && src.req_one_access.len)
+ else if (LAZYLEN(src.req_one_access))
ae.conf_access = src.req_one_access
ae.one_access = 1
else
@@ -189,9 +189,9 @@
ae = new/obj/item/circuitboard/airlock( src.loc )
if(!src.req_access)
src.check_access()
- if(src.req_access.len)
+ if(length(src.req_access))
ae.conf_access = src.req_access
- else if (src.req_one_access.len)
+ else if (length(src.req_one_access))
ae.conf_access = src.req_one_access
ae.one_access = 1
else
diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm
index 4e4e38d953d1..f4a3a9f25cc3 100644
--- a/code/game/machinery/iv_drip.dm
+++ b/code/game/machinery/iv_drip.dm
@@ -190,7 +190,7 @@
. += "The IV drip is [mode ? "injecting" : "taking blood"]."
if(beaker)
- if(beaker.reagents && beaker.reagents.reagent_list.len)
+ if(beaker.reagents && length(beaker.reagents.reagent_list))
. += SPAN_NOTICE(" Attached is \a [beaker] with [beaker.reagents.total_volume] units of liquid.")
else
. += SPAN_NOTICE(" Attached is an empty [beaker].")
diff --git a/code/game/machinery/kitchen/microwave.dm b/code/game/machinery/kitchen/microwave.dm
index 78e64ab49f89..dbb93a0e30c1 100644
--- a/code/game/machinery/kitchen/microwave.dm
+++ b/code/game/machinery/kitchen/microwave.dm
@@ -42,7 +42,7 @@
for (var/reagent in recipe.reagents)
acceptable_reagents |= reagent
if (recipe.items)
- max_n_of_items = max(max_n_of_items,recipe.items.len)
+ max_n_of_items = max(max_n_of_items,length(recipe.items))
// This will do until I can think of a fun recipe to use dionaea in -
// will also allow anything using the holder item to be microwaved into
@@ -115,7 +115,7 @@
else if(operating)
to_chat(user, SPAN_DANGER("It's running!"))
else if(is_type_in_list(O,acceptable_items))
- if (contents.len>=max_n_of_items)
+ if (length(contents)>=max_n_of_items)
to_chat(user, SPAN_DANGER("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
diff --git a/code/game/machinery/kitchen/processor.dm b/code/game/machinery/kitchen/processor.dm
index 4918df4d9a5b..62455d770539 100644
--- a/code/game/machinery/kitchen/processor.dm
+++ b/code/game/machinery/kitchen/processor.dm
@@ -41,7 +41,7 @@
if(!skillcheck(user, SKILL_DOMESTIC, SKILL_DOMESTIC_MASTER))
to_chat(user, SPAN_DANGER("You aren't trained to remove dangerous substances from food!"))
return FALSE
- return TRUE
+ return TRUE
/datum/food_processor_process/meat
input = /obj/item/reagent_container/food/snacks/meat
@@ -55,7 +55,7 @@
if(!skillcheck(user, SKILL_DOMESTIC, SKILL_DOMESTIC_MASTER))
to_chat(user, SPAN_DANGER("You aren't trained to remove dangerous substances from food!"))
return FALSE
- return TRUE
+ return TRUE
/datum/food_processor_process/potato
input = /obj/item/reagent_container/food/snacks/grown/potato
@@ -102,7 +102,7 @@
if(processing)
to_chat(user, SPAN_DANGER("The processor is in the process of processing."))
return 1
- if(contents.len > 0) //TODO: several items at once? several different items?
+ if(length(contents) > 0) //TODO: several items at once? several different items?
to_chat(user, SPAN_DANGER("Something is already in the processing chamber."))
return 1
if(HAS_TRAIT(O, TRAIT_TOOL_WRENCH))
@@ -130,7 +130,7 @@
if(src.processing)
to_chat(user, SPAN_DANGER("The processor is in the process of processing."))
return 1
- if(src.contents.len == 0)
+ if(length(src.contents) == 0)
to_chat(user, SPAN_DANGER("The processor is empty."))
return 1
for(var/O in src.contents)
diff --git a/code/game/machinery/kitchen/smartfridge.dm b/code/game/machinery/kitchen/smartfridge.dm
index 6d3e18933457..774153316baa 100644
--- a/code/game/machinery/kitchen/smartfridge.dm
+++ b/code/game/machinery/kitchen/smartfridge.dm
@@ -125,7 +125,7 @@
user.visible_message( \
SPAN_NOTICE("[user] loads \the [src] with \the [P]."), \
SPAN_NOTICE("You load \the [src] with \the [P]."))
- if(P.contents.len > 0)
+ if(length(P.contents) > 0)
to_chat(user, SPAN_NOTICE("Some items are refused."))
else if(!(O.flags_item & NOBLUDGEON)) //so we can spray, scan, c4 the machine.
@@ -186,7 +186,7 @@
var/list/wire_descriptions = get_wire_descriptions()
var/list/panel_wires = list()
- for(var/wire = 1 to wire_descriptions.len)
+ for(var/wire = 1 to length(wire_descriptions))
panel_wires += list(list("desc" = wire_descriptions[wire], "cut" = isWireCut(wire)))
.["electrical"] = list(
diff --git a/code/game/machinery/medical_pod/autodoc.dm b/code/game/machinery/medical_pod/autodoc.dm
index 937afa0cdb4d..ef335c6841e6 100644
--- a/code/game/machinery/medical_pod/autodoc.dm
+++ b/code/game/machinery/medical_pod/autodoc.dm
@@ -109,7 +109,7 @@
/obj/structure/machinery/medical_pod/autodoc/proc/heal_limb(mob/living/carbon/human/human, brute, burn)
var/list/obj/limb/parts = human.get_damaged_limbs(brute,burn)
- if(!parts.len) return
+ if(!length(parts)) return
var/obj/limb/picked = pick(parts)
if(picked.status & (LIMB_ROBOT|LIMB_SYNTHSKIN))
picked.heal_damage(brute, burn, TRUE)
@@ -248,7 +248,7 @@
if(L.status & LIMB_DESTROYED)
if(!(L.parent.status & LIMB_DESTROYED) && L.name != "head")
surgery_list += create_autodoc_surgery(L,LIMB_SURGERY,"missing")
- if(L.implants.len)
+ if(length(L.implants))
for(var/I in L.implants)
if(!is_type_in_list(I,known_implants))
surgery_list += create_autodoc_surgery(L,LIMB_SURGERY,"shrapnel")
@@ -294,7 +294,7 @@
var/list/surgery_todo_list = N.fields["autodoc_manual"]
- if(!surgery_todo_list.len)
+ if(!length(surgery_todo_list))
visible_message("\The [src] buzzes, no surgical procedures were queued.")
return
@@ -320,7 +320,7 @@
surgery_todo_list -= A
var/currentsurgery = 1
- while(surgery_todo_list.len > 0)
+ while(length(surgery_todo_list) > 0)
if(!surgery)
break;
sleep(-1)
@@ -508,7 +508,7 @@
open_incision(H,S.limb_ref)
if(S.limb_ref.name == "chest" || S.limb_ref.name == "head")
open_encased(H,S.limb_ref)
- if(S.limb_ref.implants.len)
+ if(length(S.limb_ref.implants))
for(var/obj/item/I in S.limb_ref.implants)
if(!surgery) break
if(!is_type_in_list(I,known_implants))
@@ -893,7 +893,7 @@
var/known_implants = list(/obj/item/implant/chem, /obj/item/implant/death_alarm, /obj/item/implant/loyalty, /obj/item/implant/tracking, /obj/item/implant/neurostim)
for(var/obj/limb/L in connected.occupant.limbs)
if(L)
- if(L.implants.len)
+ if(length(L.implants))
for(var/I in L.implants)
if(!is_type_in_list(I,known_implants))
N.fields["autodoc_manual"] += create_autodoc_surgery(L,LIMB_SURGERY,"shrapnel")
diff --git a/code/game/machinery/medical_pod/bodyscanner.dm b/code/game/machinery/medical_pod/bodyscanner.dm
index 73e5a87b2304..54b454f945a8 100644
--- a/code/game/machinery/medical_pod/bodyscanner.dm
+++ b/code/game/machinery/medical_pod/bodyscanner.dm
@@ -333,7 +333,7 @@
open = "Open
"
var/unknown_body = 0
- if (e.implants.len)
+ if (length(e.implants))
for(var/I in e.implants)
if(is_type_in_list(I,known_implants))
imp += "[I] implanted
"
diff --git a/code/game/machinery/nuclearbomb.dm b/code/game/machinery/nuclearbomb.dm
index bb83261ae948..42b5d95694cb 100644
--- a/code/game/machinery/nuclearbomb.dm
+++ b/code/game/machinery/nuclearbomb.dm
@@ -345,7 +345,7 @@ GLOBAL_VAR_INIT(bomb_set, FALSE)
var/datum/hive_status/hive
for(var/hivenumber in GLOB.hive_datum)
hive = GLOB.hive_datum[hivenumber]
- if(!hive.totalXenos.len)
+ if(!length(hive.totalXenos))
return
xeno_announcement(SPAN_XENOANNOUNCE(warning), hive.hivenumber, XENO_GENERAL_ANNOUNCE)
return
@@ -358,7 +358,7 @@ GLOBAL_VAR_INIT(bomb_set, FALSE)
yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!
A human purification device has been detected. You have approximately [t_left] to abandon the hunting grounds before it activates."))
for(var/hivenumber in GLOB.hive_datum)
hive = GLOB.hive_datum[hivenumber]
- if(!hive.totalXenos.len)
+ if(!length(hive.totalXenos))
continue
xeno_announcement(SPAN_XENOANNOUNCE("The tallhosts have deployed a hive killer at [get_area_name(loc)]! Stop it at all costs!"), hive.hivenumber, XENO_GENERAL_ANNOUNCE)
else
@@ -367,7 +367,7 @@ GLOBAL_VAR_INIT(bomb_set, FALSE)
yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!
The human purification device's signature has disappeared."))
for(var/hivenumber in GLOB.hive_datum)
hive = GLOB.hive_datum[hivenumber]
- if(!hive.totalXenos.len)
+ if(!length(hive.totalXenos))
continue
xeno_announcement(SPAN_XENOANNOUNCE("The hive killer has been disabled! Rejoice!"), hive.hivenumber, XENO_GENERAL_ANNOUNCE)
return
@@ -594,7 +594,7 @@ GLOBAL_VAR_INIT(bomb_set, FALSE)
var/datum/hive_status/hive
for(var/hivenumber in GLOB.hive_datum)
hive = GLOB.hive_datum[hivenumber]
- if(!hive.totalXenos.len)
+ if(!length(hive.totalXenos))
return
xeno_announcement(SPAN_XENOANNOUNCE(warning), hive.hivenumber, XENO_GENERAL_ANNOUNCE)
return
diff --git a/code/game/machinery/rechargestation.dm b/code/game/machinery/rechargestation.dm
index 2e98eb7e88e9..536ad72557d9 100644
--- a/code/game/machinery/rechargestation.dm
+++ b/code/game/machinery/rechargestation.dm
@@ -167,7 +167,7 @@
doing_stuff = TRUE
if(!doing_stuff)
for(var/obj/limb/current_limb in humanoid_occupant.limbs)
- if(current_limb.implants.len)
+ if(length(current_limb.implants))
doing_stuff = TRUE
to_chat(occupant, "Foreign material detected. Beginning removal process...")
for(var/obj/item/current_implant in current_limb.implants)
diff --git a/code/game/machinery/scoreboard.dm b/code/game/machinery/scoreboard.dm
index 8fd5dd984e6f..0810ae26cbf4 100644
--- a/code/game/machinery/scoreboard.dm
+++ b/code/game/machinery/scoreboard.dm
@@ -16,8 +16,7 @@
update_display()
/obj/structure/machinery/scoreboard/proc/update_display()
- if(overlays.len)
- overlays.Cut()
+ LAZYCLEARLIST(overlays)
var/score_state = "s[( floor(scoreleft/10) > scoreleft/10 ? floor(scoreleft/10)-1 : floor(scoreleft/10) )]a"
overlays += image('icons/obj/structures/machinery/scoreboard.dmi', icon_state=score_state)
diff --git a/code/game/machinery/status_display.dm b/code/game/machinery/status_display.dm
index 547dbba68e4f..db2e58cf325b 100644
--- a/code/game/machinery/status_display.dm
+++ b/code/game/machinery/status_display.dm
@@ -158,8 +158,7 @@
return ""
/obj/structure/machinery/status_display/proc/remove_display()
- if(overlays.len)
- overlays.Cut()
+ LAZYCLEARLIST(overlays)
if(maptext)
maptext = ""
@@ -241,8 +240,7 @@
/obj/structure/machinery/ai_status_display/proc/set_picture(state)
picture_state = state
- if(overlays.len)
- overlays.Cut()
+ LAZYCLEARLIST(overlays)
overlays += image('icons/obj/structures/machinery/status_display.dmi', icon_state=picture_state)
#undef DEFAULT_FONT_COLOR
diff --git a/code/game/machinery/telecomms/machine_interactions.dm b/code/game/machinery/telecomms/machine_interactions.dm
index 87bfcd466766..9bffa8ebe450 100644
--- a/code/game/machinery/telecomms/machine_interactions.dm
+++ b/code/game/machinery/telecomms/machine_interactions.dm
@@ -69,7 +69,7 @@
to_chat(user, "You finish prying out the components.")
// Drop all the component stuff
- if(contents.len > 0)
+ if(length(contents) > 0)
for(var/obj/x in src)
x.forceMove(user.loc)
else
@@ -125,7 +125,7 @@
else
dat += "
Identification String: NULL"
dat += "
Network: [network]"
- dat += "
Prefabrication: [autolinkers.len ? "TRUE" : "FALSE"]"
+ dat += "
Prefabrication: [length(autolinkers) ? "TRUE" : "FALSE"]"
if(hide) dat += "
Shadow Link: ACTIVE"
//Show additional options for certain GLOB.machines.
diff --git a/code/game/machinery/telecomms/portable_comms.dm b/code/game/machinery/telecomms/portable_comms.dm
index f8f34133750f..c2a9bb1072ac 100644
--- a/code/game/machinery/telecomms/portable_comms.dm
+++ b/code/game/machinery/telecomms/portable_comms.dm
@@ -18,9 +18,9 @@
is_wired = 1
break
if(components)
- switch(components.len)
+ switch(length(components))
if(0 to 8)
- icon_state = "construct_[contents.len]_[is_wired]"
+ icon_state = "construct_[length(contents)]_[is_wired]"
else
icon_state = "construct_8_1"
else if(state)
diff --git a/code/game/machinery/telecomms/presets.dm b/code/game/machinery/telecomms/presets.dm
index 3997484f39e7..0c9e875534da 100644
--- a/code/game/machinery/telecomms/presets.dm
+++ b/code/game/machinery/telecomms/presets.dm
@@ -458,7 +458,7 @@ GLOBAL_LIST_EMPTY(all_static_telecomms_towers)
id = "CentComm Receiver"
network = "tcommsat"
autolinkers = list("receiverCent")
- freq_listening = list(WY_WO_FREQ, PMC_FREQ, DUT_FREQ, YAUT_FREQ, HC_FREQ, PVST_FREQ, SOF_FREQ, CBRN_FREQ)
+ freq_listening = list(WY_WO_FREQ, PMC_FREQ, DUT_FREQ, YAUT_FREQ, HC_FREQ, PVST_FREQ, SOF_FREQ, CBRN_FREQ, FORECON_FREQ)
//Buses
diff --git a/code/game/machinery/vending/cm_vending.dm b/code/game/machinery/vending/cm_vending.dm
index afce800b0af4..db173e7b1608 100644
--- a/code/game/machinery/vending/cm_vending.dm
+++ b/code/game/machinery/vending/cm_vending.dm
@@ -247,7 +247,7 @@ GLOBAL_LIST_EMPTY(vending_products)
//M94 flare packs handling
else if(istype(item_to_stock, /obj/item/storage/box/m94))
var/obj/item/storage/box/m94/flare_pack = item_to_stock
- if(flare_pack.contents.len < flare_pack.max_storage_space)
+ if(length(flare_pack.contents) < flare_pack.max_storage_space)
to_chat(user, SPAN_WARNING("\The [item_to_stock] is not full."))
return
var/flare_type
@@ -272,7 +272,7 @@ GLOBAL_LIST_EMPTY(vending_products)
//Machete holsters handling
else if(istype(item_to_stock, /obj/item/clothing/suit/storage/marine))
var/obj/item/clothing/suit/storage/marine/AR = item_to_stock
- if(AR.pockets && AR.pockets.contents.len)
+ if(AR.pockets && length(AR.pockets.contents))
if(user)
to_chat(user, SPAN_WARNING("\The [AR] has something inside it. Empty it before restocking."))
return FALSE
@@ -300,7 +300,7 @@ GLOBAL_LIST_EMPTY(vending_products)
if(AM.current_rounds != AM.max_rounds)
to_chat(user, SPAN_WARNING("\The [A] isn't full. You need to fill it before you can restock it."))
return
- else if(A.contents.len < A.num_of_magazines)
+ else if(length(A.contents) < A.num_of_magazines)
to_chat(user, SPAN_WARNING("[A] is not full."))
return
else
@@ -317,14 +317,14 @@ GLOBAL_LIST_EMPTY(vending_products)
//Marine armor handling
else if(istype(item_to_stock, /obj/item/clothing/suit/storage/marine))
var/obj/item/clothing/suit/storage/marine/AR = item_to_stock
- if(AR.pockets && AR.pockets.contents.len)
+ if(AR.pockets && length(AR.pockets.contents))
if(user)
to_chat(user, SPAN_WARNING("\The [AR] has something inside it. Empty it before restocking."))
return FALSE
//Marine helmet handling
else if(istype(item_to_stock, /obj/item/clothing/head/helmet/marine))
var/obj/item/clothing/head/helmet/marine/H = item_to_stock
- if(H.pockets && H.pockets.contents.len)
+ if(H.pockets && length(H.pockets.contents))
if(user)
to_chat(user, SPAN_WARNING("\The [H] has something inside it. Empty it before restocking."))
return FALSE
@@ -541,7 +541,7 @@ GLOBAL_LIST_EMPTY(vending_products)
var/turf/target_turf = get_appropriate_vend_turf(user)
if(vend_flags & VEND_CLUTTER_PROTECTION)
- if(target_turf.contents.len > 25)
+ if(length(target_turf.contents) > 25)
to_chat(usr, SPAN_WARNING("The floor is too cluttered, make some space."))
vend_fail()
return FALSE
@@ -990,10 +990,24 @@ GLOBAL_LIST_EMPTY(vending_products)
for(var/datum/item_box_pairing/IBP as anything in IMBP.item_box_pairings)
tmp_list += list(list(initial(IBP.box.name), floor(L[2] / IBP.items_in_box), IBP.box, VENDOR_ITEM_REGULAR))
- //Putting Ammo and other boxes on the bottom of the list as per player preferences
- if(tmp_list.len > 0)
+ //For every item that goes into a box, check if the box is already listed in the vendor and if so, update its amount
+ var/list/box_list = list()
+ if(length(tmp_list))
+ for(var/list/tmp_item as anything in tmp_list)
+ var/item_found = FALSE
+ for(var/list/product as anything in listed_products)
+ if(tmp_item[3] == product[3]) //We found a box we already have!
+ product[2] = tmp_item[2] //Update box amount
+ item_found = TRUE
+ break
+ if(!item_found)
+ //We will be adding this box item at the end of the list
+ box_list += list(tmp_item)
+
+ //Putting Ammo and other boxes on the bottom of the list if they haven't been accounted for already
+ if(length(box_list))
listed_products += list(list("BOXES", -1, null, null))
- for(var/list/L as anything in tmp_list)
+ for(var/list/L as anything in box_list)
listed_products += list(L)
/obj/structure/machinery/cm_vending/sorted/ui_static_data(mob/user)
@@ -1293,7 +1307,8 @@ GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list(
var/obj/item/item_ref = myprod[3]
var/priority = myprod[priority_index]
if(islist(item_ref)) // multi-vending
- item_ref = item_ref[1]
+ var/list/ref_list = item_ref
+ item_ref = ref_list[1]
var/is_category = item_ref == null
diff --git a/code/game/machinery/vending/vending.dm b/code/game/machinery/vending/vending.dm
index 8629ce2bb2be..a05245e4b185 100644
--- a/code/game/machinery/vending/vending.dm
+++ b/code/game/machinery/vending/vending.dm
@@ -728,7 +728,7 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending
var/list/wire_descriptions = get_wire_descriptions()
var/list/panel_wires = list()
- for(var/wire = 1 to wire_descriptions.len)
+ for(var/wire = 1 to length(wire_descriptions))
panel_wires += list(list("desc" = wire_descriptions[wire], "cut" = isWireCut(wire)))
.["electrical"] = list(
@@ -898,7 +898,7 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending
seconds_electrified--
//Pitch to the people! Really sell it!
- if(((last_slogan + slogan_delay) <= world.time) && (slogan_list.len > 0) && (!shut_up) && prob(5))
+ if(((last_slogan + slogan_delay) <= world.time) && (length(slogan_list) > 0) && (!shut_up) && prob(5))
var/slogan = pick(slogan_list)
speak(slogan)
last_slogan = world.time
diff --git a/code/game/machinery/vending/vending_types.dm b/code/game/machinery/vending/vending_types.dm
index b69773dbf8bf..85d08641bfdf 100644
--- a/code/game/machinery/vending/vending_types.dm
+++ b/code/game/machinery/vending/vending_types.dm
@@ -296,6 +296,7 @@
/obj/item/storage/firstaid/fire = 2,
/obj/item/storage/firstaid/rad = 1,
/obj/item/device/radio/headset = 6,
+ /obj/item/tool/crew_monitor = 1,
)
contraband = list(/obj/item/storage/fancy/cigar = 2,/obj/item/tool/lighter/zippo = 2)
diff --git a/code/game/machinery/vending/vendor_types/crew/medical.dm b/code/game/machinery/vending/vendor_types/crew/medical.dm
index af519a908ee6..fe9b7b06648e 100644
--- a/code/game/machinery/vending/vendor_types/crew/medical.dm
+++ b/code/game/machinery/vending/vendor_types/crew/medical.dm
@@ -45,6 +45,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_doctor, list(
list("Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/blue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
list("Light Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/lightblue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
list("Purple Scrubs", 0, /obj/item/clothing/under/rank/medical/purple, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
+ list("Olive Scrubs", 0, /obj/item/clothing/under/rank/medical/olive, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
+ list("Grey Scrubs", 0, /obj/item/clothing/under/rank/medical/grey, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
list("SUIT (CHOOSE 1)", 0, null, null, null),
list("Labcoat", 0, /obj/item/clothing/suit/storage/labcoat, MARINE_CAN_BUY_MRE, VENDOR_ITEM_REGULAR),
@@ -111,6 +113,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_nurse, list(
list("Green Scrubs", 0, /obj/item/clothing/under/rank/medical/green, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_RECOMMENDED),
list("Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/blue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
list("Purple Scrubs", 0, /obj/item/clothing/under/rank/medical/purple, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
+ list("Olive Scrubs", 0, /obj/item/clothing/under/rank/medical/olive, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
+ list("Grey Scrubs", 0, /obj/item/clothing/under/rank/medical/grey, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
list("SUIT (CHOOSE 1)", 0, null, null, null),
list("Medical's apron", 0, /obj/item/clothing/suit/chef/classic/medical, MARINE_CAN_BUY_MRE, VENDOR_ITEM_REGULAR),
@@ -181,6 +185,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_researcher, list(
list("Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/blue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
list("Light Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/lightblue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
list("Purple Scrubs", 0, /obj/item/clothing/under/rank/medical/purple, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
+ list("Olive Scrubs", 0, /obj/item/clothing/under/rank/medical/olive, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
+ list("Grey Scrubs", 0, /obj/item/clothing/under/rank/medical/grey, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
list("SUIT (CHOOSE 1)", 0, null, null, null),
list("Labcoat", 0, /obj/item/clothing/suit/storage/labcoat/researcher, MARINE_CAN_BUY_MRE, VENDOR_ITEM_RECOMMENDED),
diff --git a/code/game/machinery/vending/vendor_types/crew/senior_officers.dm b/code/game/machinery/vending/vendor_types/crew/senior_officers.dm
index a5d3cbe85b01..c43d7e730d89 100644
--- a/code/game/machinery/vending/vendor_types/crew/senior_officers.dm
+++ b/code/game/machinery/vending/vendor_types/crew/senior_officers.dm
@@ -233,6 +233,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_cmo, list(
list("Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/blue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
list("Light Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/lightblue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
list("Purple Scrubs", 0, /obj/item/clothing/under/rank/medical/purple, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
+ list("Olive Scrubs", 0, /obj/item/clothing/under/rank/medical/olive, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
+ list("Grey Scrubs", 0, /obj/item/clothing/under/rank/medical/grey, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
list("SUIT (CHOOSE 1)", 0, null, null, null),
list("Labcoat", 0, /obj/item/clothing/suit/storage/labcoat, MARINE_CAN_BUY_MRE, VENDOR_ITEM_RECOMMENDED),
diff --git a/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm b/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm
index ac7b22b4e0a0..1e21f2f7256d 100644
--- a/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm
+++ b/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm
@@ -18,6 +18,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer_armory, list(
list("Marine Combat Gloves", 0, /obj/item/clothing/gloves/marine, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY),
list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY),
list("Aviator Shades", 0, /obj/item/clothing/glasses/sunglasses/aviator, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR),
+ list("Bayonet", 0, /obj/item/attachable/bayonet, null, VENDOR_ITEM_REGULAR),
list("SPECIALISATION KIT (CHOOSE 1)", 0, null, null, null),
list("Essential Engineer Set", 0, /obj/effect/essentials_set/engi, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_RECOMMENDED),
@@ -68,6 +69,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer_armory, list(
list("OTHER SUPPLIES", 0, null, null, null),
list("Medical Helmet Optic", 5, /obj/item/device/helmet_visor/medical, null, VENDOR_ITEM_REGULAR),
+ list("Welding Visor", 5, /obj/item/device/helmet_visor/welding_visor, null, VENDOR_ITEM_REGULAR),
list("Magnetic Harness", 12, /obj/item/attachable/magnetic_harness, null, VENDOR_ITEM_REGULAR),
list("Radio Telephone Pack", 15, /obj/item/storage/backpack/marine/satchel/rto, null, VENDOR_ITEM_RECOMMENDED),
list("Binoculars", 5,/obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR),
@@ -78,6 +80,10 @@ GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer_armory, list(
list("Fulton Recovery Device", 5, /obj/item/stack/fulton, null, VENDOR_ITEM_REGULAR),
list("Motion Detector", 5, /obj/item/device/motiondetector, null, VENDOR_ITEM_REGULAR),
list("Space Cleaner", 2, /obj/item/reagent_container/spray/cleaner, null, VENDOR_ITEM_REGULAR),
+ list("Blowtorch", 5, /obj/item/tool/weldingtool, null, VENDOR_ITEM_REGULAR),
+ list("Wrench", 1, /obj/item/tool/wrench, null, VENDOR_ITEM_REGULAR),
+ list("Crowbar", 1, /obj/item/tool/crowbar, null, VENDOR_ITEM_REGULAR),
+ list("Entrenching Tool", 1, /obj/item/tool/shovel/etool, null, VENDOR_ITEM_REGULAR),
list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR),
list("Machete Scabbard (Full)", 5, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR)
))
diff --git a/code/game/machinery/vending/vendor_types/crew/synthetic.dm b/code/game/machinery/vending/vendor_types/crew/synthetic.dm
index 1ece8d353d4f..3f8eff44d052 100644
--- a/code/game/machinery/vending/vendor_types/crew/synthetic.dm
+++ b/code/game/machinery/vending/vendor_types/crew/synthetic.dm
@@ -91,7 +91,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth, list(
list("Experimental Tool Vendor Token", 0, /obj/item/coin/marine/synth, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY),
list("RADIO (TAKE ALL)", 0, null, null, null),
- list("Headset", 0, /obj/item/device/radio/headset/almayer/mcom/cdrcom, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY),
+ list("Headset", 0, /obj/item/device/radio/headset/almayer/mcom/synth, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY),
list("UNIFORM (CHOOSE 1)", 0, null, null, null),
list("Uniform, Outdated Synth", 0, /obj/item/clothing/under/rank/synthetic/old, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
@@ -191,6 +191,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list(
list("Medical Scrubs, Light Blue", 0, /obj/item/clothing/under/rank/medical/lightblue, null, VENDOR_ITEM_REGULAR),
list("Medical Scrubs, Green", 12, /obj/item/clothing/under/rank/medical/green, null, VENDOR_ITEM_REGULAR),
list("Medical Scrubs, Purple", 12, /obj/item/clothing/under/rank/medical/purple, null, VENDOR_ITEM_REGULAR),
+ list("Medical Scrubs, Olive", 12, /obj/item/clothing/under/rank/medical/olive, null, VENDOR_ITEM_REGULAR),
+ list("Medical Scrubs, Grey", 12, /obj/item/clothing/under/rank/medical/grey, null, VENDOR_ITEM_REGULAR),
list("Medical Scrubs, White", 12, /obj/item/clothing/under/rank/medical, null, VENDOR_ITEM_REGULAR),
list("USCM Service Uniform, Tan", 12, /obj/item/clothing/under/marine/officer/bridge, null, VENDOR_ITEM_REGULAR),
list("USCM Service Uniform, White", 12, /obj/item/clothing/under/marine/dress, null, VENDOR_ITEM_REGULAR),
@@ -271,6 +273,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list(
list("Marine Helmet (Desert)", 12, /obj/item/clothing/head/helmet/marine/desert, null, VENDOR_ITEM_REGULAR),
list("Technician Helmet", 12, /obj/item/clothing/head/helmet/marine/tech, null, VENDOR_ITEM_REGULAR),
list("Corpsman Helmet", 12, /obj/item/clothing/head/helmet/marine/medic, null, VENDOR_ITEM_REGULAR),
+ list("White Corpsman Helmet", 12, /obj/item/clothing/head/helmet/marine/medic/white, null, VENDOR_ITEM_REGULAR),
list("Attachable Helmet Shield", 12, /obj/item/prop/helmetgarb/riot_shield, null, VENDOR_ITEM_REGULAR),
list("MASK", 0, null, null, null),
@@ -346,6 +349,13 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list(
list("Purple Armband", 6, /obj/item/clothing/accessory/armband/science, null, VENDOR_ITEM_REGULAR),
list("Yellow Armband", 6, /obj/item/clothing/accessory/armband/engine, null, VENDOR_ITEM_REGULAR),
list("Green Armband", 6, /obj/item/clothing/accessory/armband/medgreen, null, VENDOR_ITEM_REGULAR),
+ list("Blue Tie", 6, /obj/item/clothing/accessory/blue, null, VENDOR_ITEM_REGULAR),
+ list("Green Tie", 6, /obj/item/clothing/accessory/green, null, VENDOR_ITEM_REGULAR),
+ list("Black Tie", 6, /obj/item/clothing/accessory/black, null, VENDOR_ITEM_REGULAR),
+ list("Gold Tie", 6, /obj/item/clothing/accessory/gold, null, VENDOR_ITEM_REGULAR),
+ list("Red Tie", 6, /obj/item/clothing/accessory/red, null, VENDOR_ITEM_REGULAR),
+ list("Purple Tie", 6, /obj/item/clothing/accessory/purple, null, VENDOR_ITEM_REGULAR),
+ list("Stethoscope", 6, /obj/item/clothing/accessory/stethoscope, null, VENDOR_ITEM_REGULAR),
list("Dress Gloves", 6, /obj/item/clothing/gloves/marine/dress, null, VENDOR_ITEM_REGULAR),
))
diff --git a/code/game/machinery/vending/vendor_types/dress.dm b/code/game/machinery/vending/vendor_types/dress.dm
index 68809c10003f..6a4e76cda49c 100644
--- a/code/game/machinery/vending/vendor_types/dress.dm
+++ b/code/game/machinery/vending/vendor_types/dress.dm
@@ -197,11 +197,11 @@
if(findtext("[path]", item))
matches += path
- if(matches.len==0)
+ if(length(matches)==0)
return
var/obj/item/chosen
- if(matches.len==1)
+ if(length(matches)==1)
chosen = matches[1]
else
//If we have multiple options, let them select which one they meant
diff --git a/code/game/machinery/vending/vendor_types/intelligence_officer.dm b/code/game/machinery/vending/vendor_types/intelligence_officer.dm
index 3aedaf79e3e4..e33097221c23 100644
--- a/code/game/machinery/vending/vendor_types/intelligence_officer.dm
+++ b/code/game/machinery/vending/vendor_types/intelligence_officer.dm
@@ -54,6 +54,9 @@ GLOBAL_LIST_INIT(cm_vending_gear_intelligence_officer, list(
list("RADIO KEYS", 0, null, null, null),
list("Intel Radio Encryption Key", 5, /obj/item/device/encryptionkey/intel, null, VENDOR_ITEM_REGULAR),
+
+ list("SPARE INTEL KIT", 0, null, null, null),
+ list("Field Intelligence Support Kit (For untrained personnel)", 20, /obj/item/storage/box/kit/mini_intel, null, VENDOR_ITEM_REGULAR),
))
/obj/structure/machinery/cm_vending/gear/intelligence_officer
diff --git a/code/game/machinery/vending/vendor_types/requisitions.dm b/code/game/machinery/vending/vendor_types/requisitions.dm
index afc994a2e4e8..0ea12e07393c 100644
--- a/code/game/machinery/vending/vendor_types/requisitions.dm
+++ b/code/game/machinery/vending/vendor_types/requisitions.dm
@@ -139,7 +139,28 @@
list("Engineering Pamphlet", floor(scale * 1), /obj/item/pamphlet/skill/engineer, VENDOR_ITEM_REGULAR),
list("Powerloader Certification", 0.75, /obj/item/pamphlet/skill/powerloader, VENDOR_ITEM_REGULAR),
list("Spare PDT/L Battle Buddy Kit", floor(scale * 4), /obj/item/storage/box/pdt_kit, VENDOR_ITEM_REGULAR),
- list("W-Y brand rechargeable mini-battery", floor(scale * 3), /obj/item/cell/crap, VENDOR_ITEM_REGULAR)
+ list("W-Y brand rechargeable mini-battery", floor(scale * 3), /obj/item/cell/crap, VENDOR_ITEM_REGULAR),
+
+ list("EXPLOSIVES BOXES", -1, null, null),
+ list("M15 Fragmentation Grenade Packet", 0, /obj/item/storage/box/packet/m15, VENDOR_ITEM_REGULAR),
+ list("M40 HEDP Grenade Packet", 0, /obj/item/storage/box/packet/high_explosive, VENDOR_ITEM_REGULAR),
+ list("M40 HEDP Grenade Box", 0, /obj/item/storage/box/nade_box, VENDOR_ITEM_REGULAR),
+ list("M40 HIDP Grenade Packet", 0, /obj/item/storage/box/packet/incendiary, VENDOR_ITEM_REGULAR),
+ list("M40 HPDP Grenade Box", 0, /obj/item/storage/box/nade_box/phophorus, VENDOR_ITEM_REGULAR),
+ list("M40 HSDP Grenade Packet", 0, /obj/item/storage/box/packet/smoke, VENDOR_ITEM_REGULAR),
+ list("M40 HIRR Baton Slug Packet", 0, /obj/item/storage/box/packet/baton_slug, VENDOR_ITEM_REGULAR),
+ list("M74 AGM-Airburst Grenade Packet", 0, /obj/item/storage/box/packet/airburst_he, VENDOR_ITEM_REGULAR),
+ list("M74 AGM-F grenade box", 0, /obj/item/storage/box/nade_box/airburst, VENDOR_ITEM_REGULAR),
+ list("M74 AGM-Airburst Incendiary Grenade Packet", 0, /obj/item/storage/box/packet/airburst_incen, VENDOR_ITEM_REGULAR),
+ list("M74 AGM-Airburst Smoke Grenade Packet", 0, /obj/item/storage/box/packet/airburst_smoke, VENDOR_ITEM_REGULAR),
+ list("M74 AGM-S Star Shell Packet", 0, /obj/item/storage/box/packet/flare, VENDOR_ITEM_REGULAR),
+ list("M74 AGM-H Hornet Shell Packet", 0, /obj/item/storage/box/packet/hornet, VENDOR_ITEM_REGULAR),
+ list("M20 mine box", 0, /obj/item/storage/box/explosive_mines, VENDOR_ITEM_REGULAR),
+
+ list("OTHER BOXES", -1, null, null),
+ list("Box of M94 Marking Flare Packs", 0, /obj/item/ammo_box/magazine/misc/flares, VENDOR_ITEM_REGULAR),
+ list("Box of M89 Signal Flare Packs", 0, /obj/item/ammo_box/magazine/misc/flares/signal, VENDOR_ITEM_REGULAR),
+ list("Box of High-Capacity Power Cells", 0, /obj/item/ammo_box/magazine/misc/power_cell, VENDOR_ITEM_REGULAR)
)
/obj/structure/machinery/cm_vending/sorted/cargo_guns/stock(obj/item/item_to_stock, mob/user)
@@ -209,9 +230,9 @@
/obj/structure/machinery/cm_vending/sorted/cargo_ammo/populate_product_list(scale)
listed_products = list(
list("REGULAR AMMUNITION", -1, null, null),
- list("Box Of Buckshot Shells", floor(scale * 40), /obj/item/ammo_magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR),
- list("Box Of Flechette Shells", floor(scale * 40), /obj/item/ammo_magazine/shotgun/flechette, VENDOR_ITEM_REGULAR),
- list("Box Of Shotgun Slugs", floor(scale * 40), /obj/item/ammo_magazine/shotgun/slugs, VENDOR_ITEM_REGULAR),
+ list("Box Of Buckshot Shells", floor(scale * 56), /obj/item/ammo_magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR),
+ list("Box Of Flechette Shells", floor(scale * 56), /obj/item/ammo_magazine/shotgun/flechette, VENDOR_ITEM_REGULAR),
+ list("Box Of Shotgun Slugs", floor(scale * 56), /obj/item/ammo_magazine/shotgun/slugs, VENDOR_ITEM_REGULAR),
list("M4RA Magazine (10x24mm)", floor(scale * 60), /obj/item/ammo_magazine/rifle/m4ra, VENDOR_ITEM_REGULAR),
list("M41A MK2 Magazine (10x24mm)", floor(scale * 100), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR),
list("M39 HV Magazine (10x20mm)", floor(scale * 100), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR),
@@ -250,11 +271,37 @@
list("M2C Box Magazine", floor(scale * 2), /obj/item/ammo_magazine/m2c, VENDOR_ITEM_REGULAR),
list("XM51 Magazine (16g)", floor(scale * 3), /obj/item/ammo_magazine/rifle/xm51, VENDOR_ITEM_REGULAR),
- list("SHOTGUN SHELL BOXES", -1, null, null),
- list("Shotgun Shell Box (Buckshot x 100)", floor(scale * 4), /obj/item/ammo_box/magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR),
- list("Shotgun Shell Box (Flechette x 100)", floor(scale * 4), /obj/item/ammo_box/magazine/shotgun/flechette, VENDOR_ITEM_REGULAR),
- list("Shotgun Shell Box (Slugs x 100)", floor(scale * 4), /obj/item/ammo_box/magazine/shotgun, VENDOR_ITEM_REGULAR),
+ list("MAGAZINE BOXES", -1, null, null),
+ list("Magazine Box (M39 x 12)", 0, /obj/item/ammo_box/magazine/m39, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (AP M39 x 12)", 0, /obj/item/ammo_box/magazine/m39/ap, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (Ext M39 x 10)", 0, /obj/item/ammo_box/magazine/m39/ext, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (M41A x 10)", 0, /obj/item/ammo_box/magazine, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (AP M41A x 10)", 0, /obj/item/ammo_box/magazine/ap, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (Ext M41A x 8)", 0, /obj/item/ammo_box/magazine/ext, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (M4A3 x 16)", 0, /obj/item/ammo_box/magazine/m4a3, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (AP M4A3 x 16)", 0, /obj/item/ammo_box/magazine/m4a3/ap, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (HP M4A3 x 16)", 0, /obj/item/ammo_box/magazine/m4a3/hp, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (M4RA x 16)", 0, /obj/item/ammo_box/magazine/m4ra, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (AP M4RA x 16)", 0, /obj/item/ammo_box/magazine/m4ra/ap, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (M41AE2 x 8)", 0, /obj/item/ammo_box/magazine/m41ae2, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (M41AE2 Holo-Target x 8)", 0, /obj/item/ammo_box/magazine/m41ae2/holo, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (M41A MK1 x 8)", 0, /obj/item/ammo_box/magazine/mk1, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (M41A MK1 AP x 8)", 0, /obj/item/ammo_box/magazine/mk1/ap, VENDOR_ITEM_REGULAR),
+ list("Shotgun Shell Box (Buckshot x 100)", 0, /obj/item/ammo_box/magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR),
+ list("Shotgun Shell Box (Flechette x 100)", 0, /obj/item/ammo_box/magazine/shotgun/flechette, VENDOR_ITEM_REGULAR),
+ list("Shotgun Shell Box (Slugs x 100)", 0, /obj/item/ammo_box/magazine/shotgun, VENDOR_ITEM_REGULAR),
list("Shotgun Shell Box (16g) (Breaching x 120)", 1, /obj/item/ammo_box/magazine/shotgun/light/breaching, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (88 Mod 4 AP x 16)", 0, /obj/item/ammo_box/magazine/mod88, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (SU-6 x 16)", 0, /obj/item/ammo_box/magazine/su6, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (VP78 x 16)", 0, /obj/item/ammo_box/magazine/vp78, VENDOR_ITEM_REGULAR),
+ list("Magazine Box (XM51 x 8)", 0, /obj/item/ammo_box/magazine/xm51, VENDOR_ITEM_REGULAR),
+ list("Ammo Box (M2C x 8)", 0, /obj/item/ammo_box/magazine/m2c, VENDOR_ITEM_REGULAR),
+ list("Drum Box (M56B x 8)", 0, /obj/item/ammo_box/magazine/m56b, VENDOR_ITEM_REGULAR),
+ list("Drum Box (M56D x 8)", 0, /obj/item/ammo_box/magazine/m56d, VENDOR_ITEM_REGULAR),
+ list("Speed Loaders Box (M44 x 16)", 0, /obj/item/ammo_box/magazine/m44, VENDOR_ITEM_REGULAR),
+ list("Speed Loaders Box (Marksman M44 x 16)", 0, /obj/item/ammo_box/magazine/m44/marksman, VENDOR_ITEM_REGULAR),
+ list("Speed Loaders Box (Heavy M44 x 16)", 0, /obj/item/ammo_box/magazine/m44/heavy, VENDOR_ITEM_REGULAR),
+ list("Flamer Tank Box (UT-Napthal Fuel x 8)", 0, /obj/item/ammo_box/magazine/flamer, VENDOR_ITEM_REGULAR),
)
/obj/structure/machinery/cm_vending/sorted/cargo_ammo/stock(obj/item/item_to_stock, mob/user)
@@ -441,13 +488,13 @@
//Marine armor handling
if(istype(item_to_stock, /obj/item/clothing/suit/storage/marine))
var/obj/item/clothing/suit/storage/marine/AR = item_to_stock
- if(AR.pockets && AR.pockets.contents.len)
+ if(AR.pockets && length(AR.pockets.contents))
to_chat(user, SPAN_WARNING("\The [AR] has something inside it. Empty it before restocking."))
return
//Marine helmet handling
else if(istype(item_to_stock, /obj/item/clothing/head/helmet/marine))
var/obj/item/clothing/head/helmet/marine/H = item_to_stock
- if(H.pockets && H.pockets.contents.len)
+ if(H.pockets && length(H.pockets.contents))
to_chat(user, SPAN_WARNING("\The [H] has something inside it. Empty it before restocking."))
return
diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm
index 8fca3b5a0fdd..a73df202d4ef 100644
--- a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm
+++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm
@@ -127,7 +127,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_medic, list(
GLOBAL_LIST_INIT(cm_vending_clothing_medic, list(
list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null),
- list("Standard Marine Apparel", 0, list(/obj/item/clothing/under/marine/medic, /obj/item/clothing/shoes/marine/knife, /obj/item/clothing/gloves/marine, /obj/item/device/radio/headset/almayer/marine, /obj/item/clothing/head/helmet/marine/medic), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY),
+ list("Standard Marine Apparel", 0, list(/obj/item/clothing/under/marine/medic, /obj/item/clothing/shoes/marine/knife, /obj/item/clothing/gloves/marine, /obj/item/device/radio/headset/almayer/marine), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY),
list("Combat Sterile Gloves", 0, /obj/item/clothing/gloves/marine/medical, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_REGULAR),
list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY),
list("Map", 0, /obj/item/map/current_map, MARINE_CAN_BUY_KIT, VENDOR_ITEM_MANDATORY),
@@ -137,6 +137,10 @@ GLOBAL_LIST_INIT(cm_vending_clothing_medic, list(
list("Medium Armor", 0, /obj/item/clothing/suit/storage/marine/medium, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_RECOMMENDED),
list("Heavy Armor", 0, /obj/item/clothing/suit/storage/marine/heavy, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR),
+ list("HELMET (CHOOSE 1)", 0, null, null, null),
+ list("M10 Corpsman Helmet", 0, /obj/item/clothing/head/helmet/marine/medic, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR),
+ list("M10 White Corpsman Helmet", 0, /obj/item/clothing/head/helmet/marine/medic/white, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR),
+
list("BACKPACK (CHOOSE 1)", 0, null, null, null),
list("Medical Backpack", 0, /obj/item/storage/backpack/marine/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR),
list("Medical Satchel", 0, /obj/item/storage/backpack/marine/satchel/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED),
diff --git a/code/game/machinery/washing_machine.dm b/code/game/machinery/washing_machine.dm
index e32d4091c16e..1214b141da15 100644
--- a/code/game/machinery/washing_machine.dm
+++ b/code/game/machinery/washing_machine.dm
@@ -131,7 +131,7 @@
to_chat(user, "This item does not fit.")
return
- if(contents.len < 5)
+ if(length(contents) < 5)
if ( state in list(1, 3) )
if(user.drop_inv_item_to_loc(W, src))
state = 3
diff --git a/code/game/objects/effects/aliens.dm b/code/game/objects/effects/aliens.dm
index 10d4e8d098fb..34da5e3d2623 100644
--- a/code/game/objects/effects/aliens.dm
+++ b/code/game/objects/effects/aliens.dm
@@ -597,7 +597,7 @@
total_hits++
- var/datum/action/xeno_action/activable/boiler_trap/trap = get_xeno_action_by_type(linked_xeno, /datum/action/xeno_action/activable/boiler_trap)
+ var/datum/action/xeno_action/activable/boiler_trap/trap = get_action(linked_xeno, /datum/action/xeno_action/activable/boiler_trap)
trap.reduce_cooldown(total_hits*4 SECONDS)
diff --git a/code/game/objects/effects/decals/cleanable/blood/blood.dm b/code/game/objects/effects/decals/cleanable/blood/blood.dm
index 918797608b7b..9fd5e79965af 100644
--- a/code/game/objects/effects/decals/cleanable/blood/blood.dm
+++ b/code/game/objects/effects/decals/cleanable/blood/blood.dm
@@ -112,7 +112,7 @@
/obj/effect/decal/cleanable/blood/writing/New()
..()
- if(random_icon_states.len)
+ if(length(random_icon_states))
for(var/obj/effect/decal/cleanable/blood/writing/W in loc)
random_icon_states.Remove(W.icon_state)
icon_state = pick(random_icon_states)
diff --git a/code/game/objects/effects/decals/posters.dm b/code/game/objects/effects/decals/posters.dm
index 23f7b8c5296a..f13244cbc058 100644
--- a/code/game/objects/effects/decals/posters.dm
+++ b/code/game/objects/effects/decals/posters.dm
@@ -10,7 +10,7 @@
/obj/item/poster/New(turf/loc, given_serial = 0)
if(given_serial == 0)
- serial_number = rand(1, GLOB.poster_designs.len)
+ serial_number = rand(1, length(GLOB.poster_designs))
else
serial_number = given_serial
name += " - No. [serial_number]"
@@ -33,7 +33,7 @@
serial_number = serial
if(!isnum(serial_number))
- serial_number = rand(1, GLOB.poster_designs.len)
+ serial_number = rand(1, length(GLOB.poster_designs))
var/designtype = GLOB.poster_designs[serial_number]
var/datum/poster/design=new designtype
diff --git a/code/game/objects/effects/effect_system/chemsmoke.dm b/code/game/objects/effects/effect_system/chemsmoke.dm
index eea302f29325..1b22ed6054eb 100644
--- a/code/game/objects/effects/effect_system/chemsmoke.dm
+++ b/code/game/objects/effects/effect_system/chemsmoke.dm
@@ -70,7 +70,7 @@
smokeFlow(location, targetTurfs, wallList)
//set the density of the cloud - for diluting reagents
- density = max(1, targetTurfs.len / 4) //clamp the cloud density minimum to 1 so it cant multiply the reagents
+ density = max(1, length(targetTurfs) / 4) //clamp the cloud density minimum to 1 so it cant multiply the reagents
//Admin messaging
var/contained = ""
@@ -110,7 +110,7 @@
return
//reagent application - only run if there are extra reagents in the smoke
- if(chemholder.reagents.reagent_list.len)
+ if(length(chemholder.reagents.reagent_list))
for(var/datum/reagent/R in chemholder.reagents.reagent_list)
var/proba = 100
var/runs = 5
@@ -197,7 +197,7 @@
//------------------------------------------
/datum/effect_system/smoke_spread/chem/proc/spawnSmoke(turf/T, icon/I, dist = 1)
var/obj/effect/particle_effect/smoke/chem/smoke = new(location)
- if(chemholder.reagents.reagent_list.len)
+ if(length(chemholder.reagents.reagent_list))
chemholder.reagents.copy_to(smoke, chemholder.reagents.total_volume / dist, safety = 1) //copy reagents to the smoke so mob/breathe() can handle inhaling the reagents
smoke.icon = I
smoke.layer = FLY_LAYER
@@ -230,7 +230,7 @@
pending += location
- while(pending.len)
+ while(length(pending))
for(var/turf/current in pending)
for(var/D in GLOB.cardinals)
var/turf/target = get_step(current, D)
diff --git a/code/game/objects/effects/glowshroom.dm b/code/game/objects/effects/glowshroom.dm
index 58e3b868f7e0..fdb481e0f2bc 100644
--- a/code/game/objects/effects/glowshroom.dm
+++ b/code/game/objects/effects/glowshroom.dm
@@ -65,7 +65,7 @@
if(direction & i)
dirList += i
- if(dirList.len)
+ if(length(dirList))
var/newDir = pick(dirList)
if(newDir == 16)
floor = 1
diff --git a/code/game/objects/effects/spawners/gibspawner.dm b/code/game/objects/effects/spawners/gibspawner.dm
index 77b69f79e86f..a68afc1d42fa 100644
--- a/code/game/objects/effects/spawners/gibspawner.dm
+++ b/code/game/objects/effects/spawners/gibspawner.dm
@@ -43,7 +43,7 @@
qdel(src)
/obj/effect/spawner/gibspawner/proc/Gib(list/viruses = list(), mob/living/ml = null)
- if(gibtypes.len != gibamounts.len || gibamounts.len != gibdirections.len)
+ if(length(gibtypes) != length(gibamounts) || length(gibamounts) != length(gibdirections))
to_world(SPAN_DANGER("Gib list length mismatch!"))
return
@@ -58,7 +58,7 @@
s.set_up(2, 1, loc)
s.start()
- for(var/i = 1, i<= gibtypes.len, i++)
+ for(var/i = 1, i<= length(gibtypes), i++)
if(gibamounts[i])
for(var/j = 1, j<= gibamounts[i], j++)
var/gibType = gibtypes[i]
@@ -72,7 +72,7 @@
gib.update_icon()
- if(viruses.len > 0)
+ if(length(viruses) > 0)
for(var/datum/disease/D in viruses)
if(prob(virusProb))
var/datum/disease/viruus = D.Copy(1)
@@ -80,7 +80,7 @@
viruus.holder = gib
var/list/directions = gibdirections[i]
- if(directions.len)
+ if(length(directions))
INVOKE_ASYNC(gib, /obj/effect/decal/cleanable/blood/gibs/proc/streak, directions)
diff --git a/code/game/objects/effects/spawners/wo_spawners/supplies.dm b/code/game/objects/effects/spawners/wo_spawners/supplies.dm
index 28f9936b972f..f2a502344660 100644
--- a/code/game/objects/effects/spawners/wo_spawners/supplies.dm
+++ b/code/game/objects/effects/spawners/wo_spawners/supplies.dm
@@ -6,7 +6,7 @@
/obj/effect/landmark/wo_supplies/New()
..()
- if(stuff.len)
+ if(length(stuff))
for(var/s in stuff)
var/amt = rand(amount[1], amount[2])
for(var/i = 1, i <= amt, i++)
diff --git a/code/game/objects/effects/spiders.dm b/code/game/objects/effects/spiders.dm
index 6a5d31010ef1..e22ab2cd1009 100644
--- a/code/game/objects/effects/spiders.dm
+++ b/code/game/objects/effects/spiders.dm
@@ -144,7 +144,7 @@
//=================
if(prob(25))
var/list/nearby = oview(5, src)
- if(nearby.len)
+ if(length(nearby))
var/target_atom = pick(nearby)
walk_to(src, target_atom, 5)
if(prob(25))
@@ -170,7 +170,7 @@
//=================
if(prob(25))
var/list/nearby = oview(5, src)
- if(nearby.len)
+ if(length(nearby))
var/target_atom = pick(nearby)
walk_to(src, target_atom, 5)
if(prob(25))
diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm
index 1a632569eccb..03e1f126e9d8 100644
--- a/code/game/objects/items.dm
+++ b/code/game/objects/items.dm
@@ -244,9 +244,9 @@ cases. Override_icon_state should be a list.*/
var/new_icon_state
var/new_protection
var/new_item_state
- if(override_icon_state && override_icon_state.len)
+ if(LAZYLEN(override_icon_state))
new_icon_state = override_icon_state[SSmapping.configs[GROUND_MAP].map_name]
- if(override_protection && override_protection.len)
+ if(LAZYLEN(override_protection))
new_protection = override_protection[SSmapping.configs[GROUND_MAP].map_name]
switch(SSmapping.configs[GROUND_MAP].camouflage_type)
if("snow")
@@ -277,7 +277,7 @@ cases. Override_icon_state should be a list.*/
size = "huge"
if(SIZE_MASSIVE)
size = "massive"
- . += "This is a [blood_color ? blood_color != COLOR_OIL ? "bloody " : "oil-stained " : ""][icon2html(src, user)][src.name]. It is a [size] item."
+ . += "[p_are() == "are" ? "These are " : "This is a "][blood_color ? blood_color != COLOR_OIL ? "bloody " : "oil-stained " : ""][icon2html(src, user)][src.name]. [p_they(TRUE)] [p_are()] a [size] item."
if(desc)
. += desc
if(desc_lore)
diff --git a/code/game/objects/items/ashtray.dm b/code/game/objects/items/ashtray.dm
index 540f3ac44e21..7d2dc00a9983 100644
--- a/code/game/objects/items/ashtray.dm
+++ b/code/game/objects/items/ashtray.dm
@@ -12,7 +12,7 @@
if (health < 1)
return
if (istype(W,/obj/item/trash/cigbutt) || istype(W,/obj/item/clothing/mask/cigarette) || istype(W, /obj/item/tool/match))
- if (contents.len >= max_butts)
+ if (length(contents) >= max_butts)
to_chat(user, "This ashtray is full.")
return
var/drop = TRUE
@@ -42,10 +42,10 @@
user.update_inv_l_hand(0)
user.update_inv_r_hand()
add_fingerprint(user)
- if (contents.len == max_butts)
+ if (length(contents) == max_butts)
icon_state = icon_full
desc = empty_desc + " It's stuffed full."
- else if (contents.len > max_butts/2)
+ else if (length(contents) > max_butts/2)
icon_state = icon_half
desc = empty_desc + " It's half-filled."
else
@@ -61,7 +61,7 @@
if (health < 1)
die()
return
- if (contents.len)
+ if (length(contents))
src.visible_message(SPAN_DANGER("[src] slams into [hit_atom] spilling its contents!"))
for (var/obj/item/clothing/mask/cigarette/O in contents)
O.forceMove(src.loc)
diff --git a/code/game/objects/items/bodybag.dm b/code/game/objects/items/bodybag.dm
index 3b84d2433e88..9b0cf37299eb 100644
--- a/code/game/objects/items/bodybag.dm
+++ b/code/game/objects/items/bodybag.dm
@@ -137,7 +137,7 @@
continue
dead_mobs += mob
var/mob/living/mob_to_store
- if(dead_mobs.len)
+ if(length(dead_mobs))
mob_to_store = pick(dead_mobs)
mob_to_store.forceMove(src)
stored_units += mob_size
@@ -169,7 +169,7 @@
..()
if(over_object == usr && Adjacent(usr) && !roller_buckled)
if(!ishuman(usr)) return
- if(contents.len) return 0
+ if(length(contents)) return 0
visible_message(SPAN_NOTICE("[usr] folds up [name]."))
var/obj/item/I = new item_path(get_turf(src), src)
usr.put_in_hands(I)
@@ -271,7 +271,7 @@
continue
mobs_can_store += H
var/mob/living/carbon/human/mob_to_store
- if(mobs_can_store.len)
+ if(length(mobs_can_store))
mob_to_store = pick(mobs_can_store)
mob_to_store.forceMove(src)
stored_units += mob_size
diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm
index 31158d055327..80044e2fab3e 100644
--- a/code/game/objects/items/cards_ids.dm
+++ b/code/game/objects/items/cards_ids.dm
@@ -391,7 +391,7 @@
/obj/item/dogtag/attackby(obj/item/I, mob/user)
if(istype(I, /obj/item/dogtag))
var/obj/item/dogtag/D = I
- to_chat(user, SPAN_NOTICE("You join the [fallen_names.len>1 ? "tags":"two tags"] together."))
+ to_chat(user, SPAN_NOTICE("You join the [length(fallen_names)>1 ? "tags":"two tags"] together."))
name = "information dog tags"
if(D.fallen_names)
fallen_names += D.fallen_names
@@ -404,11 +404,11 @@
/obj/item/dogtag/get_examine_text(mob/user)
. = ..()
- if(ishuman(user) && fallen_names && fallen_names.len)
- var/msg = "There [fallen_names.len>1 ? \
- "are [fallen_names.len] tags.
They read":\
+ if(ishuman(user) && LAZYLEN(fallen_names))
+ var/msg = "There [length(fallen_names)>1 ? \
+ "are [length(fallen_names)] tags.
They read":\
"is one ID tag.
It reads"]:"
- for (var/i=1 to fallen_names.len)
+ for (var/i=1 to length(fallen_names))
msg += "
[i]. \"[fallen_names[i]] - [fallen_assgns[i]] - [fallen_blood_types[i]]\""
. += SPAN_NOTICE("[msg]")
diff --git a/code/game/objects/items/circuitboards/airlock.dm b/code/game/objects/items/circuitboards/airlock.dm
index cc6a8e95af0e..07add70280ca 100644
--- a/code/game/objects/items/circuitboards/airlock.dm
+++ b/code/game/objects/items/circuitboards/airlock.dm
@@ -48,7 +48,7 @@
for (var/acc in accesses)
var/aname = get_access_desc(acc)
- if (!conf_access || !conf_access.len || !(acc in conf_access))
+ if (!LAZYLEN(conf_access) || !(acc in conf_access))
t1 += "[aname]
"
else if(one_access)
t1 += "[aname]
"
@@ -107,7 +107,7 @@
conf_access += req
else
conf_access -= req
- if (!conf_access.len)
+ if (!length(conf_access))
conf_access = null
diff --git a/code/game/objects/items/circuitboards/computer.dm b/code/game/objects/items/circuitboards/computer.dm
index ecdfba00719d..43215faf0fbb 100644
--- a/code/game/objects/items/circuitboards/computer.dm
+++ b/code/game/objects/items/circuitboards/computer.dm
@@ -285,7 +285,7 @@
return
var/list/tempnetwork = splittext(input, ",")
tempnetwork = difflist(tempnetwork,GLOB.RESTRICTED_CAMERA_NETWORKS,1)
- if(tempnetwork.len < 1)
+ if(length(tempnetwork) < 1)
to_chat(usr, "No network found please hang up and try your call again.")
return
network = tempnetwork
diff --git a/code/game/objects/items/devices/autopsy_scanner.dm b/code/game/objects/items/devices/autopsy_scanner.dm
index 6703ead88147..581336f85337 100644
--- a/code/game/objects/items/devices/autopsy_scanner.dm
+++ b/code/game/objects/items/devices/autopsy_scanner.dm
@@ -46,7 +46,7 @@
return W
/obj/item/device/autopsy_scanner/proc/add_data(obj/limb/O)
- if(!O.autopsy_data.len && !O.trace_chemicals.len) return
+ if(!length(O.autopsy_data) && !length(O.trace_chemicals)) return
for(var/V in O.autopsy_data)
var/datum/autopsy_data/W = O.autopsy_data[V]
@@ -133,7 +133,7 @@
if(30 to 1000)
damage_desc = "severe"
- if(!total_score) total_score = D.organs_scanned.len
+ if(!total_score) total_score = length(D.organs_scanned)
scan_data += "Weapon #[n]
"
if(damaging_weapon)
@@ -149,7 +149,7 @@
n++
- if(chemtraces.len)
+ if(length(chemtraces))
scan_data += "Trace Chemicals:
"
for(var/chemID in chemtraces)
scan_data += chemID
diff --git a/code/game/objects/items/devices/binoculars.dm b/code/game/objects/items/devices/binoculars.dm
index 5da4704e0e78..3248115adfa8 100644
--- a/code/game/objects/items/devices/binoculars.dm
+++ b/code/game/objects/items/devices/binoculars.dm
@@ -403,6 +403,7 @@
COOLDOWN_START(designator, spotting_cooldown, 0)
/datum/action/item_action/specialist/spotter_target/action_activate()
+ . = ..()
if(!ishuman(owner))
return
var/mob/living/carbon/human/human = owner
diff --git a/code/game/objects/items/devices/clue_scanner.dm b/code/game/objects/items/devices/clue_scanner.dm
index d6b6d0d80a25..33cc2ab7d207 100644
--- a/code/game/objects/items/devices/clue_scanner.dm
+++ b/code/game/objects/items/devices/clue_scanner.dm
@@ -52,4 +52,4 @@
if(!newlyfound)
to_chat(user, SPAN_INFO("No new print sets found!"))
else
- to_chat(user, SPAN_INFO("New print sets found: [newlyfound], total stored amount: [print_list.len]"))
+ to_chat(user, SPAN_INFO("New print sets found: [newlyfound], total stored amount: [length(print_list)]"))
diff --git a/code/game/objects/items/devices/data_detector.dm b/code/game/objects/items/devices/data_detector.dm
index fe4b9cde0ab5..27476f7a3872 100644
--- a/code/game/objects/items/devices/data_detector.dm
+++ b/code/game/objects/items/devices/data_detector.dm
@@ -70,7 +70,7 @@
if(M == loc) continue //device user isn't detected
if((isxeno(M) || isyautja(M)) && M.stat == DEAD )
detected = TRUE
- else if(ishuman(M) && M.stat == DEAD && M.contents.len)
+ else if(ishuman(M) && M.stat == DEAD && length(M.contents))
for(var/obj/I in M.contents_twice())
for(var/DT in objects_to_detect)
if(istype(I, DT))
diff --git a/code/game/objects/items/devices/flash.dm b/code/game/objects/items/devices/flash.dm
index 0845b670c6fd..ee74a83613c3 100644
--- a/code/game/objects/items/devices/flash.dm
+++ b/code/game/objects/items/devices/flash.dm
@@ -94,7 +94,8 @@
if(iscarbon(M))
flashfail = !M.flash_eyes()
if(!flashfail)
- M.apply_effect(10, WEAKEN)
+ M.KnockDown(10)
+ M.Stun(10)
else if(isSilicon(M))
M.apply_effect(rand(5,10), WEAKEN)
diff --git a/code/game/objects/items/devices/helmet_visors.dm b/code/game/objects/items/devices/helmet_visors.dm
index 8f921a62f3f5..e2005a841bc3 100644
--- a/code/game/objects/items/devices/helmet_visors.dm
+++ b/code/game/objects/items/devices/helmet_visors.dm
@@ -146,6 +146,7 @@
return
/datum/action/item_action/view_publications/helmet_visor/action_activate()
+ . = ..()
var/obj/item/device/helmet_visor/medical/advanced/medical_visor = locate() in holder_item
if(!medical_visor)
diff --git a/code/game/objects/items/devices/motion_detector.dm b/code/game/objects/items/devices/motion_detector.dm
index 3551e3a02bef..dcbcc0dd8bc7 100644
--- a/code/game/objects/items/devices/motion_detector.dm
+++ b/code/game/objects/items/devices/motion_detector.dm
@@ -35,7 +35,7 @@
var/iff_signal = FACTION_MARINE
actions_types = list(/datum/action/item_action)
var/scanning = FALSE // controls if MD is in process of scan
- var/datum/shape/rectangle/range_bounds
+ var/datum/shape/rectangle/square/range_bounds
var/long_range_locked = FALSE //only long-range MD
var/ping_overlay
@@ -48,7 +48,7 @@
/obj/item/device/motiondetector/Initialize()
. = ..()
- range_bounds = new //Just creating a rectangle datum
+ range_bounds = new //Just creating a square datum
update_icon()
/obj/item/device/motiondetector/Destroy()
@@ -215,12 +215,7 @@
if(!istype(cur_turf))
return
- if(!range_bounds)
- range_bounds = new/datum/shape/rectangle
- range_bounds.center_x = cur_turf.x
- range_bounds.center_y = cur_turf.y
- range_bounds.width = detector_range * 2
- range_bounds.height = detector_range * 2
+ range_bounds.set_shape(cur_turf.x, cur_turf.y, detector_range * 2)
var/list/ping_candidates = SSquadtree.players_in_range(range_bounds, cur_turf.z, QTREE_EXCLUDE_OBSERVER | QTREE_SCAN_MOBS)
diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm
index b9b7e94d9ae5..e414ca3dafdd 100644
--- a/code/game/objects/items/devices/radio/headset.dm
+++ b/code/game/objects/items/devices/radio/headset.dm
@@ -565,6 +565,21 @@
initial_keys = list(/obj/item/device/encryptionkey/cmpcom/cdrcom)
volume = RADIO_VOLUME_CRITICAL
+/obj/item/device/radio/headset/almayer/mcom/sea
+ name = "marine senior enlisted advisor headset"
+ desc = "Issued only to senior enlisted advisors. Channels are as follows: :v - marine command, :p - military police, :a - alpha squad, :b - bravo squad, :c - charlie squad, :d - delta squad, :n - engineering, :m - medbay, :u - requisitions, :j - JTAC, :t - intel"
+ icon_state = "mco_headset"
+ initial_keys = list(/obj/item/device/encryptionkey/cmpcom/cdrcom)
+ volume = RADIO_VOLUME_CRITICAL
+ misc_tracking = TRUE
+ locate_setting = TRACKER_CO
+
+ inbuilt_tracking_options = list(
+ "Commanding Officer" = TRACKER_CO,
+ "Executive Officer" = TRACKER_XO,
+ "Chief MP" = TRACKER_CMP
+ )
+
/obj/item/device/radio/headset/almayer/mcom/synth
name = "marine synth headset"
desc = "Issued only to USCM synthetics. Channels are as follows: :v - marine command, :p - military police, :a - alpha squad, :b - bravo squad, :c - charlie squad, :d - delta squad, :n - engineering, :m - medbay, :u - requisitions, :j - JTAC, :t - intel"
@@ -882,6 +897,14 @@
ignore_z = TRUE
has_hud = TRUE
+/obj/item/device/radio/headset/distress/forecon
+ name = "\improper Force Recon headset"
+ desc = "A headset given to FORECON marines. Channels are as follows: :g - public, :v - marine command, :a - alpha squad, :b - bravo squad, :c - charlie squad, :d - delta squad, :n - engineering, :m - medbay, :u - requisitions, :j - JTAC, :t - intel"
+ frequency = FORECON_FREQ
+ initial_keys = list(/obj/item/device/encryptionkey/public, /obj/item/device/encryptionkey/mcom)
+ ignore_z = TRUE
+ has_hud = TRUE
+
/obj/item/device/radio/headset/distress/pmc/hvh
desc = "A special headset used by corporate personnel. Channels are as follows: :o - colony."
initial_keys = list(/obj/item/device/encryptionkey/colony, /obj/item/device/encryptionkey/WY)
diff --git a/code/game/objects/items/devices/radio/radio.dm b/code/game/objects/items/devices/radio/radio.dm
index 0c71ae847674..2e693987f99b 100644
--- a/code/game/objects/items/devices/radio/radio.dm
+++ b/code/game/objects/items/devices/radio/radio.dm
@@ -196,7 +196,7 @@
return radio_connection
// Otherwise, if a channel is specified, look for it.
- if(channels && channels.len)
+ if(LAZYLEN(channels))
if (message_mode == RADIO_CHANNEL_DEPARTMENT ) // Department radio shortcut
message_mode = channels[1]
diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm
index 778082fc46a4..8c507dad18e3 100644
--- a/code/game/objects/items/devices/scanners.dm
+++ b/code/game/objects/items/devices/scanners.dm
@@ -276,7 +276,7 @@ FORENSIC SCANNER
if(!QDELETED(O.reagents))
var/dat = ""
- if(O.reagents.reagent_list.len > 0)
+ if(length(O.reagents.reagent_list) > 0)
var/one_percent = O.reagents.total_volume / 100
for (var/datum/reagent/R in O.reagents.reagent_list)
if(prob(reliability))
@@ -340,6 +340,21 @@ FORENSIC SCANNER
ex_potential = 0
int_potential = 0
rad_potential = 0
+
+ if(istype(O, /obj/item/ammo_magazine/flamer_tank))
+ var/obj/item/ammo_magazine/flamer_tank/tank = O
+ if(!length(tank.reagents.reagent_list))
+ to_chat(user, SPAN_NOTICE("No fuel detected in [O]"))
+ return
+ var/result
+ var/datum/reagent/chem = tank.reagents.reagent_list[1]
+ result += SPAN_BLUE("Fuel Statistics:")
+ result += SPAN_BLUE("
Intensity: [min(chem.intensityfire, tank.max_intensity)]")
+ result += SPAN_BLUE("
Duration: [min(chem.durationfire, tank.max_duration)]")
+ result += SPAN_BLUE("
Range: [min(chem.rangefire, tank.max_range)]")
+ to_chat(user, SPAN_NOTICE("[result]"))
+ return
+
if(istype(O,/obj/item/explosive))
var/obj/item/explosive/E = O
if(!E.customizable)
@@ -381,7 +396,7 @@ FORENSIC SCANNER
/obj/item/device/demo_scanner/proc/scan(obj/O)
if(QDELETED(O.reagents))
return
- if(O.reagents.reagent_list.len > 0)
+ if(length(O.reagents.reagent_list) > 0)
for(var/datum/reagent/R in O.reagents.reagent_list)
dat += SPAN_BLUE("
[R.name]: [R.volume]u")
if(R.explosive)
diff --git a/code/game/objects/items/devices/taperecorder.dm b/code/game/objects/items/devices/taperecorder.dm
index 8410c72ee831..9521de9a039a 100644
--- a/code/game/objects/items/devices/taperecorder.dm
+++ b/code/game/objects/items/devices/taperecorder.dm
@@ -67,7 +67,7 @@
if(!playing && !recording)
icons_available += list("Record" = image(radial_icon_file,"record"))
icons_available += list("Play" = image(radial_icon_file,"play"))
- if(canprint && mytape?.storedinfo.len)
+ if(canprint && length(mytape?.storedinfo))
icons_available += list("Print Transcript" = image(radial_icon_file,"print"))
if(playing || recording)
@@ -241,7 +241,7 @@
if(playing)
return
- if(mytape.storedinfo.len < 1)
+ if(length(mytape.storedinfo) < 1)
audible_message(SPAN_MAROON("[icon2html(src, usr)] Tape has no data."))
return
@@ -257,7 +257,7 @@
break
if(playing == FALSE)
break
- if(mytape.storedinfo.len < i)
+ if(length(mytape.storedinfo) < i)
audible_message(SPAN_MAROON("[icon2html(src, usr)] End of recording."))
break
@@ -265,7 +265,7 @@
langchat_speech(mytape.storedinfo[i], heard, GLOB.all_languages, skip_language_check = TRUE, additional_styles = list("langchat_small"))
audible_message(SPAN_MAROON("[icon2html(src, usr)] [mytape.storedinfo[i]]"))//We want to display this properly, don't double encode
- if(mytape.storedinfo.len < i + 1)
+ if(length(mytape.storedinfo) < i + 1)
playsleepseconds = 1
sleep(1 SECONDS)
else
@@ -310,7 +310,7 @@
set name = "Print Transcript"
set category = "Object"
- if(!mytape.storedinfo.len)
+ if(!length(mytape.storedinfo))
return
if(!can_use(usr))
return
@@ -326,7 +326,7 @@
playsound(src, 'sound/items/taperecorder/taperecorder_print.ogg', 50, FALSE)
var/obj/item/paper/sheet_of_paper = new /obj/item/paper(get_turf(src))
var/t1 = "Transcript:
"
- for(var/i in 1 to mytape.storedinfo.len)
+ for(var/i in 1 to length(mytape.storedinfo))
t1 += "[mytape.storedinfo[i]]
"
sheet_of_paper.info = t1
var/tapename = mytape.name
diff --git a/code/game/objects/items/devices/teleportation.dm b/code/game/objects/items/devices/teleportation.dm
index 8dea3b872cd1..d64e717a3095 100644
--- a/code/game/objects/items/devices/teleportation.dm
+++ b/code/game/objects/items/devices/teleportation.dm
@@ -156,7 +156,7 @@
if(T.x>world.maxx-8 || T.x<8) continue //putting them at the edge is dumb
if(T.y>world.maxy-8 || T.y<8) continue
turfs += T
- if(turfs.len)
+ if(length(turfs))
L["None (Dangerous)"] = pick(turfs)
var/t1 = tgui_input_list(user, "Please select a teleporter to lock in on.", "Hand Teleporter", L)
if ((user.get_active_hand() != src || user.stat || user.is_mob_restrained()))
diff --git a/code/game/objects/items/devices/walkman.dm b/code/game/objects/items/devices/walkman.dm
index 2bbcb802d426..bef8e8f5ff79 100644
--- a/code/game/objects/items/devices/walkman.dm
+++ b/code/game/objects/items/devices/walkman.dm
@@ -95,17 +95,17 @@
/obj/item/device/walkman/proc/play()
if(!current_song)
- if(current_playlist.len > 0)
+ if(length(current_playlist) > 0)
current_song = sound(current_playlist[pl_index], 0, 0, SOUND_CHANNEL_WALKMAN, volume)
current_song.status = SOUND_STREAM
else
return
paused = FALSE
if(current_song.status & SOUND_PAUSED)
- to_chat(current_listener,SPAN_INFO("Resuming [pl_index] of [current_playlist.len]"))
+ to_chat(current_listener,SPAN_INFO("Resuming [pl_index] of [length(current_playlist)]"))
update_song(current_song,current_listener)
else
- to_chat(current_listener,SPAN_INFO("Now playing [pl_index] of [current_playlist.len]"))
+ to_chat(current_listener,SPAN_INFO("Now playing [pl_index] of [length(current_playlist)]"))
update_song(current_song,current_listener,0)
update_song(current_song,current_listener)
@@ -146,11 +146,11 @@
/obj/item/device/walkman/proc/next_song(mob/user)
- if(user.is_mob_incapacitated() || current_playlist.len == 0) return
+ if(user.is_mob_incapacitated() || length(current_playlist) == 0) return
break_sound()
- if(pl_index + 1 <= current_playlist.len)
+ if(pl_index + 1 <= length(current_playlist))
pl_index++
else
pl_index = 1
@@ -269,6 +269,7 @@
button.name = name
/datum/action/item_action/walkman/play_pause/action_activate()
+ . = ..()
if(target)
var/obj/item/device/walkman/WM = target
WM.attack_self(owner)
@@ -282,6 +283,7 @@
button.name = name
/datum/action/item_action/walkman/next_song/action_activate()
+ . = ..()
if(target)
var/obj/item/device/walkman/WM = target
WM.next_song(owner)
@@ -295,6 +297,7 @@
button.name = name
/datum/action/item_action/walkman/restart_song/action_activate()
+ . = ..()
if(target)
var/obj/item/device/walkman/WM = target
WM.restart_song(owner)
diff --git a/code/game/objects/items/explosives/explosive.dm b/code/game/objects/items/explosives/explosive.dm
index cac5bd3d0b61..1bd6985bc015 100644
--- a/code/game/objects/items/explosives/explosive.dm
+++ b/code/game/objects/items/explosives/explosive.dm
@@ -74,13 +74,13 @@
detonator=null
assembly_stage = ASSEMBLY_EMPTY
icon_state = base_icon_state
- else if(containers.len)
+ else if(length(containers))
for(var/obj/B in containers)
if(istype(B))
containers -= B
user.put_in_hands(B)
current_container_volume = 0
- desc = initial(desc) + "\n Contains [containers.len] containers[detonator?" and detonator":""]"
+ desc = initial(desc) + "\n Contains [length(containers)] containers[detonator?" and detonator":""]"
return
cause_data = create_cause_data(initial(name), user)
return TRUE
@@ -128,11 +128,11 @@
det.forceMove(src)
detonator = det
assembly_stage = ASSEMBLY_UNLOCKED
- desc = initial(desc) + "\n Contains [containers.len] containers[detonator?" and detonator":""]"
+ desc = initial(desc) + "\n Contains [length(containers)] containers[detonator?" and detonator":""]"
update_icon()
else if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER))
if(assembly_stage == ASSEMBLY_UNLOCKED)
- if(containers.len)
+ if(length(containers))
to_chat(user, SPAN_NOTICE("You lock the assembly."))
else
to_chat(user, SPAN_NOTICE("You lock the empty assembly."))
@@ -143,7 +143,7 @@
else if(assembly_stage == ASSEMBLY_LOCKED)
to_chat(user, SPAN_NOTICE("You unlock the assembly."))
playsound(loc, 'sound/items/Screwdriver.ogg', 25, 0, 6)
- desc = initial(desc) + "\n Contains [containers.len] containers[detonator?" and detonator":""]"
+ desc = initial(desc) + "\n Contains [length(containers)] containers[detonator?" and detonator":""]"
assembly_stage = ASSEMBLY_UNLOCKED
update_icon()
else if(is_type_in_list(W, allowed_containers) && (!assembly_stage || assembly_stage == ASSEMBLY_UNLOCKED))
@@ -161,7 +161,7 @@
containers += W
current_container_volume += W.reagents.maximum_volume
assembly_stage = ASSEMBLY_UNLOCKED
- desc = initial(desc) + "\n Contains [containers.len] containers[detonator?" and detonator":""]"
+ desc = initial(desc) + "\n Contains [length(containers)] containers[detonator?" and detonator":""]"
else
to_chat(user, SPAN_DANGER("\the [W] is empty."))
@@ -210,7 +210,7 @@
reagents.source_mob = WEAKREF(cause_mob)
msg_admin_niche("[key_name(cause_mob)] detonated custom explosive by [key_name(creator)]: [name] (REAGENTS: [reagent_list_text]) in [get_area(src)] [ADMIN_JMP(loc)]", loc.x, loc.y, loc.z)
- if(containers.len < 2)
+ if(length(containers) < 2)
reagents.trigger_volatiles = TRUE //Explode on the first transfer
for(var/obj/item/reagent_container/glass/G in containers)
diff --git a/code/game/objects/items/explosives/grenades/flashbang.dm b/code/game/objects/items/explosives/grenades/flashbang.dm
index 50cb34668ae3..de4af15667e9 100644
--- a/code/game/objects/items/explosives/grenades/flashbang.dm
+++ b/code/game/objects/items/explosives/grenades/flashbang.dm
@@ -135,8 +135,9 @@
deafen_amount = 0
to_chat(M, SPAN_HELPFUL("Your gear protects you from the worst of the 'bang'."))
- M.apply_effect(weaken_amount, WEAKEN)
- M.apply_effect(paralyze_amount, PARALYZE)
+ M.Stun(weaken_amount)
+ M.KnockDown(weaken_amount)
+ M.KnockOut(paralyze_amount)
if(deafen_amount)
M.SetEarDeafness(max(M.ear_deaf, deafen_amount))
diff --git a/code/game/objects/items/frames/camera.dm b/code/game/objects/items/frames/camera.dm
index 6b6061df8af0..5283540ea358 100644
--- a/code/game/objects/items/frames/camera.dm
+++ b/code/game/objects/items/frames/camera.dm
@@ -89,7 +89,7 @@
return
var/list/tempnetwork = splittext(input, ",")
- if(tempnetwork.len < 1)
+ if(length(tempnetwork) < 1)
to_chat(usr, "No network found please hang up and try your call again.")
return
@@ -133,7 +133,7 @@
return
// Taking out upgrades
- else if(HAS_TRAIT(W, TRAIT_TOOL_CROWBAR) && upgrades.len)
+ else if(HAS_TRAIT(W, TRAIT_TOOL_CROWBAR) && length(upgrades))
var/obj/U = locate(/obj) in upgrades
if(U)
to_chat(user, "You unattach an upgrade from the assembly.")
diff --git a/code/game/objects/items/frames/matrix.dm b/code/game/objects/items/frames/matrix.dm
index 3a8464f58568..46d121909068 100644
--- a/code/game/objects/items/frames/matrix.dm
+++ b/code/game/objects/items/frames/matrix.dm
@@ -18,7 +18,7 @@
/obj/item/frame/matrix_frame/attackby(obj/item/W, mob/user as mob)
switch(state)
if(ASSEMBLY_EMPTY)
- if(istype(W, /obj/item/reagent_container/glass/beaker/vial) && W.reagents.total_volume == 30 && W.reagents.reagent_list.len == 1)
+ if(istype(W, /obj/item/reagent_container/glass/beaker/vial) && W.reagents.total_volume == 30 && length(W.reagents.reagent_list) == 1)
user.drop_held_item(W)
W.forceMove(src)
state = ASSEMBLY_UNLOCKED
@@ -45,7 +45,7 @@
else if(W.reagents.total_volume < 30)
to_chat(user, SPAN_WARNING("The testing indicator lights up with red! The container requires to be fully filled!"))
return
- else if (W.reagents.reagent_list.len > 1)
+ else if (length(W.reagents.reagent_list) > 1)
to_chat(user, SPAN_WARNING("The testing indicator lights up with red! The container requires a pure sample!"))
if(ASSEMBLY_UNLOCKED)
diff --git a/code/game/objects/items/hoverpack.dm b/code/game/objects/items/hoverpack.dm
index 02a2d4be779a..65406eb15dc6 100644
--- a/code/game/objects/items/hoverpack.dm
+++ b/code/game/objects/items/hoverpack.dm
@@ -208,6 +208,7 @@
return TRUE
/datum/action/item_action/hover/action_activate()
+ . = ..()
var/mob/living/carbon/human/H = owner
if(H.selected_ability == src)
to_chat(H, "You will no longer use [name] with \
diff --git a/code/game/objects/items/implants/implantchair.dm b/code/game/objects/items/implants/implantchair.dm
index 0969b2609331..bcec5100aae4 100644
--- a/code/game/objects/items/implants/implantchair.dm
+++ b/code/game/objects/items/implants/implantchair.dm
@@ -38,7 +38,7 @@
var/dat ="Implanter Status
"
dat +="Current occupant: [src.occupant ? "
Name: [src.occupant]
Health: [health_text]
" : "None"]
"
- dat += "Implants: [src.implant_list.len ? "[implant_list.len]" : "Replenish"]
"
+ dat += "Implants: [length(src.implant_list) ? "[length(implant_list)]" : "Replenish"]
"
if(src.occupant)
dat += "[src.ready ? "Implant" : "Recharging"]
"
user.set_interaction(src)
@@ -113,7 +113,7 @@
/obj/structure/machinery/implantchair/proc/implant(mob/M)
if (!istype(M, /mob/living/carbon))
return
- if(!implant_list.len) return
+ if(!length(implant_list)) return
for(var/obj/item/implant/loyalty/imp in implant_list)
if(!imp) continue
if(istype(imp, /obj/item/implant/loyalty))
diff --git a/code/game/objects/items/misc.dm b/code/game/objects/items/misc.dm
index 8c0f88ddb7ca..d73893e2671c 100644
--- a/code/game/objects/items/misc.dm
+++ b/code/game/objects/items/misc.dm
@@ -224,7 +224,7 @@
to_chat(user, SPAN_NOTICE("[I] won't fit in [src]."))
return
- if(contents.len)
+ if(length(contents))
to_chat(user, SPAN_NOTICE("[src] already has something inside it."))
return
@@ -257,7 +257,7 @@
/obj/item/evidencebag/attack_self(mob/user)
..()
- if(contents.len)
+ if(length(contents))
var/obj/item/I = contents[1]
user.visible_message("[user] takes [I] out of [src]", "You take [I] out of [src].",\
"You hear someone rustle around in a plastic bag, and remove something.")
diff --git a/code/game/objects/items/reagent_containers/autoinjectors.dm b/code/game/objects/items/reagent_containers/autoinjectors.dm
index ff830318fda0..9c4726371f90 100644
--- a/code/game/objects/items/reagent_containers/autoinjectors.dm
+++ b/code/game/objects/items/reagent_containers/autoinjectors.dm
@@ -289,7 +289,7 @@
/obj/item/reagent_container/hypospray/autoinjector/skillless/get_examine_text(mob/user)
. = ..()
- if(reagents && reagents.reagent_list.len)
+ if(reagents && length(reagents.reagent_list))
. += SPAN_NOTICE("It is currently loaded.")
else if(!uses_left)
. += SPAN_NOTICE("It is spent.")
diff --git a/code/game/objects/items/reagent_containers/food/condiment.dm b/code/game/objects/items/reagent_containers/food/condiment.dm
index 35944e4422c4..45cfe9c2aa67 100644
--- a/code/game/objects/items/reagent_containers/food/condiment.dm
+++ b/code/game/objects/items/reagent_containers/food/condiment.dm
@@ -88,7 +88,7 @@
/obj/item/reagent_container/food/condiment/on_reagent_change()
if(icon_state == "saltshakersmall" || icon_state == "peppermillsmall" || icon_state == "hotsauce_cholula" || icon_state == "hotsauce_franks" || icon_state == "hotsauce_sriracha" || icon_state == "hotsauce_tabasco" || icon_state == "coldsauce_cole")
return
- if(reagents.reagent_list.len > 0)
+ if(length(reagents.reagent_list) > 0)
switch(reagents.get_master_reagent_id())
if("ketchup")
name = "Ketchup"
@@ -131,7 +131,7 @@
center_of_mass = "x=16;y=6"
else
name = "Misc Condiment Bottle"
- if (reagents.reagent_list.len==1)
+ if (length(reagents.reagent_list)==1)
desc = "Looks like it is [reagents.get_master_reagent_name()], but you are not sure."
else
desc = "A mixture of various condiments. [reagents.get_master_reagent_name()] is one of them."
diff --git a/code/game/objects/items/reagent_containers/food/drinks/bottle.dm b/code/game/objects/items/reagent_containers/food/drinks/bottle.dm
index b522d8d2ed81..75b5aadfc43b 100644
--- a/code/game/objects/items/reagent_containers/food/drinks/bottle.dm
+++ b/code/game/objects/items/reagent_containers/food/drinks/bottle.dm
@@ -93,7 +93,7 @@
/obj/item/reagent_container/food/drinks/bottle/attackby(obj/item/I, mob/living/user)
if(!isGlass || !istype(I, /obj/item/paper))
return ..()
- if(!reagents || !reagents.reagent_list.len)
+ if(!reagents || !length(reagents.reagent_list))
to_chat(user, SPAN_NOTICE("\The [src] is empty..."))
return
var/alcohol_potency = 0
diff --git a/code/game/objects/items/reagent_containers/food/drinks/drinkingglass.dm b/code/game/objects/items/reagent_containers/food/drinks/drinkingglass.dm
index eea71cd1a4bc..59f27ab91728 100644
--- a/code/game/objects/items/reagent_containers/food/drinks/drinkingglass.dm
+++ b/code/game/objects/items/reagent_containers/food/drinks/drinkingglass.dm
@@ -10,14 +10,14 @@
center_of_mass = "x=16;y=10"
/obj/item/reagent_container/food/drinks/drinkingglass/on_reagent_change()
- /*if(reagents.reagent_list.len > 1 )
+ /*if(length(reagents.reagent_list) > 1 )
icon_state = "glass_brown"
name = "Glass of Hooch"
desc = "Two or more drinks, mixed together."*/
- /*else if(reagents.reagent_list.len == 1)
+ /*else if(length(reagents.reagent_list) == 1)
for(var/datum/reagent/R in reagents.reagent_list)
switch(R.id)*/
- if (reagents.reagent_list.len > 0)
+ if (length(reagents.reagent_list) > 0)
//mrid = R.get_master_reagent_id()
var/datum/reagent/R = reagents.get_master_reagent()
switch(R.id)
diff --git a/code/game/objects/items/reagent_containers/food/drinks/jar.dm b/code/game/objects/items/reagent_containers/food/drinks/jar.dm
index 987cfcedca5d..45a5137d0db5 100644
--- a/code/game/objects/items/reagent_containers/food/drinks/jar.dm
+++ b/code/game/objects/items/reagent_containers/food/drinks/jar.dm
@@ -10,7 +10,7 @@
center_of_mass = "x=15;y=8"
/obj/item/reagent_container/food/drinks/jar/on_reagent_change()
- if(reagents.reagent_list.len > 0)
+ if(length(reagents.reagent_list) > 0)
icon_state ="jar_what"
name = "jar of something"
desc = "You can't really tell what this is."
diff --git a/code/game/objects/items/reagent_containers/food/sandwich.dm b/code/game/objects/items/reagent_containers/food/sandwich.dm
index 9370b643fc98..fd71c20e48ff 100644
--- a/code/game/objects/items/reagent_containers/food/sandwich.dm
+++ b/code/game/objects/items/reagent_containers/food/sandwich.dm
@@ -26,7 +26,7 @@
if(istype(O,/obj/item/reagent_container/food/snacks/breadslice))
sandwich_limit += 4
- if(src.contents.len > sandwich_limit)
+ if(length(src.contents) > sandwich_limit)
to_chat(user, SPAN_DANGER("If you put anything else on \the [src] it's going to collapse."))
return
else if(istype(W,/obj/item/shard))
@@ -56,7 +56,7 @@
i++
if(i == 1)
fullname += "[O.name]"
- else if(i == ingredients.len)
+ else if(i == length(ingredients))
fullname += " and [O.name]"
else
fullname += ", [O.name]"
@@ -69,12 +69,12 @@
var/image/T = new(src.icon, "sandwich_top")
T.pixel_x = pick(list(-1,0,1))
- T.pixel_y = (ingredients.len * 2)+1
+ T.pixel_y = (length(ingredients) * 2)+1
overlays += T
name = lowertext("[fullname] sandwich")
if(length(name) > 80) name = "[pick(list("absurd","colossal","enormous","ridiculous"))] sandwich"
- w_class = ceil(clamp((ingredients.len/2),1,3))
+ w_class = ceil(clamp((length(ingredients)/2),1,3))
/obj/item/reagent_container/food/snacks/csandwich/Destroy()
QDEL_NULL_LIST(ingredients)
@@ -82,7 +82,7 @@
/obj/item/reagent_container/food/snacks/csandwich/get_examine_text(mob/user)
. = ..()
- if(contents && contents.len)
+ if(LAZYLEN(contents))
var/obj/item/O = pick(contents)
. += SPAN_NOTICE("You think you can see [O.name] in there.")
diff --git a/code/game/objects/items/reagent_containers/food/snacks.dm b/code/game/objects/items/reagent_containers/food/snacks.dm
index 09b4379e7bb7..4e00f32a9b13 100644
--- a/code/game/objects/items/reagent_containers/food/snacks.dm
+++ b/code/game/objects/items/reagent_containers/food/snacks.dm
@@ -2755,10 +2755,10 @@
// Set appropriate description
if( open && pizza )
desc = "A box suited for pizzas. It appears to have a [pizza.name] inside."
- else if( boxes.len > 0 )
- desc = "A pile of boxes suited for pizzas. There appears to be [boxes.len + 1] boxes in the pile."
+ else if( length(boxes) > 0 )
+ desc = "A pile of boxes suited for pizzas. There appears to be [length(boxes) + 1] boxes in the pile."
- var/obj/item/pizzabox/topbox = boxes[boxes.len]
+ var/obj/item/pizzabox/topbox = boxes[length(boxes)]
var/toptag = topbox.boxtag
if( toptag != "" )
desc = "[desc] The box on top has a tag, it reads: '[toptag]'."
@@ -2784,8 +2784,8 @@
else
// Stupid code because byondcode sucks
var/doimgtag = 0
- if( boxes.len > 0 )
- var/obj/item/pizzabox/topbox = boxes[boxes.len]
+ if( length(boxes) > 0 )
+ var/obj/item/pizzabox/topbox = boxes[length(boxes)]
if( topbox.boxtag != "" )
doimgtag = 1
else
@@ -2794,10 +2794,10 @@
if( doimgtag )
var/image/tagimg = image("food.dmi", icon_state = "pizzabox_tag")
- tagimg.pixel_y = boxes.len * 3
+ tagimg.pixel_y = length(boxes) * 3
overlays += tagimg
- icon_state = "pizzabox[boxes.len+1]"
+ icon_state = "pizzabox[length(boxes)+1]"
/obj/item/pizzabox/attack_hand( mob/user as mob )
@@ -2809,12 +2809,12 @@
update_icon()
return
- if( boxes.len > 0 )
+ if( length(boxes) > 0 )
if( user.get_inactive_hand() != src )
..()
return
- var/obj/item/pizzabox/box = boxes[boxes.len]
+ var/obj/item/pizzabox/box = boxes[length(boxes)]
boxes -= box
user.put_in_hands( box )
@@ -2847,7 +2847,7 @@
for(var/obj/item/pizzabox/i in box.boxes)
boxestoadd += i
- if( (boxes.len+1) + boxestoadd.len <= 5 )
+ if( (length(boxes)+1) + length(boxestoadd) <= 5 )
user.drop_inv_item_to_loc(box, src)
box.boxes = list() // Clear the box boxes so we don't have boxes inside boxes. - Xzibit
src.boxes.Add( boxestoadd )
@@ -2884,8 +2884,8 @@
var/t = stripped_input(user,"Enter what you want to add to the tag:", "Write", "", 30)
var/obj/item/pizzabox/boxtotagto = src
- if( boxes.len > 0 )
- boxtotagto = boxes[boxes.len]
+ if( length(boxes) > 0 )
+ boxtotagto = boxes[length(boxes)]
boxtotagto.boxtag = "[boxtotagto.boxtag][t]"
playsound(src, "paper_writing", 15, TRUE)
diff --git a/code/game/objects/items/reagent_containers/food/snacks/grown.dm b/code/game/objects/items/reagent_containers/food/snacks/grown.dm
index 68b617d6a476..55ed8c8d34f0 100644
--- a/code/game/objects/items/reagent_containers/food/snacks/grown.dm
+++ b/code/game/objects/items/reagent_containers/food/snacks/grown.dm
@@ -591,7 +591,7 @@
if(T.x>world.maxx-outer_teleport_radius || T.xworld.maxy-outer_teleport_radius || T.y[user] plants [newflag] firmly in the ground.")
src.use(1)
+
+
+/// PLANTABLE FLAG
+
+/obj/structure/flag/plantable
+ name = "flag"
+ desc = "A flag of something. This one looks like you could dismantle it."
+ icon = 'icons/obj/structures/plantable_flag.dmi'
+ pixel_x = 9 // All flags need to be offset to the right by 9 to be centered.
+ layer = ABOVE_XENO_LAYER
+ health = 150
+ unacidable = TRUE
+
+ /// The typepath for the flag item that gets spawned when the flag is taken down.
+ var/flag_type = /obj/item/flag/plantable
+ /// Used to limit the spam of the warcry_extra_sound
+ COOLDOWN_DECLARE(warcry_cooldown_struc)
+
+/obj/structure/flag/plantable/attack_hand(mob/user)
+ ..()
+ disassemble(user, flag_type)
+
+/// Proc for dismantling the flag into an item that can be picked up.
+/obj/structure/flag/plantable/proc/disassemble(mob/user, flag_type)
+ if(user.action_busy)
+ return
+
+ user.visible_message(SPAN_NOTICE("[user] starts taking [src] down..."), SPAN_NOTICE("You start taking [src] down..."))
+
+ playsound(loc, 'sound/effects/flag_raising.ogg', 30)
+ if(!do_after(user, 6 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC))
+ return
+
+ playsound(loc, 'sound/effects/flag_raised.ogg', 30)
+ user.visible_message(SPAN_NOTICE("[user] starts takes [src] down!"), SPAN_NOTICE("You take [src] down!"))
+ var/obj/item/flag/plantable/flag_item = new flag_type(loc)
+ user.put_in_hands(flag_item)
+ COOLDOWN_START(flag_item, warcry_cooldown_item, COOLDOWN_TIMELEFT(src, warcry_cooldown_struc))
+ qdel(src)
+
+/// Proc for when the flag gets forcefully dismantled (due to general damage, explosions, etc.)
+/obj/structure/flag/plantable/proc/demolish(flag_type)
+ playsound(loc, 'sound/effects/flag_raised.ogg', 30)
+ visible_message(SPAN_WARNING("[src] crumples to the ground!"))
+ var/obj/item/flag/plantable/flag_item = new flag_type(loc)
+ COOLDOWN_START(flag_item, warcry_cooldown_item, COOLDOWN_TIMELEFT(src, warcry_cooldown_struc))
+ qdel(src)
+
+// Procs for handling damage.
+/obj/structure/flag/plantable/update_health(damage)
+ if(damage)
+ health -= damage
+ if(health <= 0)
+ demolish(flag_type)
+
+/obj/structure/flag/plantable/ex_act(severity)
+ if(health <= 0)
+ return
+ update_health(severity)
+
+/obj/structure/flag/plantable/attack_alien(mob/living/carbon/xenomorph/xeno)
+ if(xeno.a_intent == INTENT_HARM)
+ if(unslashable)
+ return
+ xeno.animation_attack_on(src)
+ playsound(loc, 'sound/effects/metalhit.ogg', 25, 1)
+ xeno.visible_message(SPAN_DANGER("[xeno] slashes [src]!"), SPAN_DANGER("We slash [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT)
+ update_health(rand(xeno.melee_damage_lower, xeno.melee_damage_upper))
+ return XENO_ATTACK_ACTION
+ else
+ to_chat(xeno, SPAN_WARNING("We stare at [src] cluelessly."))
+ return XENO_NONCOMBAT_ACTION
+
+/obj/structure/flag/plantable/bullet_act(obj/projectile/bullet)
+ bullet_ping(bullet)
+ visible_message(SPAN_DANGER("[src] is hit by [bullet]!"), null, 4, CHAT_TYPE_TAKING_HIT)
+ update_health(bullet.damage)
+ return TRUE
+
+/obj/structure/flag/plantable/attackby(obj/item/weapon, mob/living/user)
+ if(!indestructible)
+ visible_message(SPAN_DANGER("[src] has been hit by [user] with [weapon]!"), null, 5, CHAT_TYPE_MELEE_HIT)
+ user.animation_attack_on(src)
+ playsound(loc, 'sound/effects/metalhit.ogg', 25, 1)
+ update_health(weapon.force * weapon.demolition_mod)
+
+/obj/item/flag/plantable
+ name = "plantable flag"
+ desc = "A flag of something. This one looks ready to be planted into the ground."
+ w_class = SIZE_LARGE
+ throw_range = 2
+ icon = 'icons/obj/structures/plantable_flag.dmi'
+ inhand_x_dimension = 64
+ inhand_y_dimension = 64
+ unacidable = TRUE
+ item_icons = list(
+ WEAR_L_HAND = 'icons/mob/humans/onmob/items_lefthand_64.dmi',
+ WEAR_R_HAND = 'icons/mob/humans/onmob/items_righthand_64.dmi'
+ )
+
+ /// The typepath of the flag structure that gets spawned when the flag is planted.
+ var/flag_type = /obj/structure/flag/plantable
+ /// Used to check if nearby mobs belong to a faction when calculating for the stronger warcry.
+ var/faction
+ /// Does the flag play a unique warcry when planted? (Only while on harm intent.)
+ var/play_warcry = FALSE
+ /// The warcry's sound path.
+ var/warcry_sound
+ /// When there are more than 14 allies nearby, play this stronger warcry.
+ var/warcry_extra_sound
+ /// How many nearby allies do we need for the stronger warcry to be played?
+ var/allies_required = 14
+ /// Used to limit the spam of the warcry_extra_sound
+ COOLDOWN_DECLARE(warcry_cooldown_item)
+
+/obj/item/flag/plantable/get_examine_text(mob/user)
+ . = ..()
+ if(play_warcry && user.faction == faction)
+ . += SPAN_NOTICE("Planting the flag while in HARM intent will cause you to bellow out a rallying warcry!")
+
+/// Proc for turning the flag item into a structure.
+/obj/item/flag/plantable/proc/plant_flag(mob/living/user, play_warcry = FALSE, warcry_sound, warcry_extra_sound, faction)
+ if(user.action_busy)
+ return
+
+ if(SSinterior.in_interior(user))
+ to_chat(usr, SPAN_WARNING("There's no way to plant [src] in here!"))
+ return
+
+ var/turf/turf_to_plant = get_step(user, user.dir)
+ if(istype(turf_to_plant, /turf/open))
+ var/turf/open/floor = turf_to_plant
+ if(!floor.allow_construction || istype(floor, /turf/open/space))
+ to_chat(user, SPAN_WARNING("You cannot deploy [src] here, find a more secure surface!"))
+ return
+ else
+ to_chat(user, SPAN_WARNING("[turf_to_plant] is blocking you from deploying [src]!"))
+ return
+
+ for(var/obj/object in turf_to_plant)
+ if(object.density)
+ to_chat(usr, SPAN_WARNING("You need a clear, open area to plant [src], something is blocking the way in front of you!"))
+ return
+
+ user.visible_message(SPAN_NOTICE("[user] starts planting [src] into the ground..."), SPAN_NOTICE("You start planting [src] into the ground..."))
+ playsound(user, 'sound/effects/flag_raising.ogg', 30)
+ if(!do_after(user, 6 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC))
+ return
+
+ user.visible_message(SPAN_NOTICE("[user] plants [src] into the ground!"), SPAN_NOTICE("You plant [src] into the ground!"))
+ var/obj/structure/flag/plantable/planted_flag = new flag_type(turf_to_plant)
+
+ // If there are more than 14 allies nearby, play a stronger rallying cry.
+ // Otherwise, play the default warcry sound if there is one. If not, play a generic flag raising sfx.
+ if(play_warcry && user.faction == faction && user.a_intent == INTENT_HARM)
+ var/allies_nearby = 0
+ if(COOLDOWN_FINISHED(src, warcry_cooldown_item))
+ for (var/mob/living/carbon/human in orange(planted_flag, 7))
+ if (human.is_dead() || human.faction != faction)
+ continue
+ allies_nearby++
+ if (prob(40) && human != user)
+ human.emote("warcry")
+
+ user.show_speech_bubble("warcry")
+ if(allies_nearby >= allies_required)
+ playsound(user, warcry_extra_sound, 40)
+ // Start a cooldown on the flag structure. This way we can keep track of the cooldown when the flag is hoisted and taken down.
+ COOLDOWN_START(planted_flag, warcry_cooldown_struc, 90 SECONDS)
+ user.manual_emote("shouts an invigorating rallying cry!")
+ else
+ playsound(user, warcry_sound, 30)
+ user.manual_emote("shouts an inspiring cry!")
+ // Ditto. If the cooldown isn't finished we have to transfer the leftover time to the structure.
+ COOLDOWN_START(planted_flag, warcry_cooldown_struc, COOLDOWN_TIMELEFT(src, warcry_cooldown_item))
+ else
+ playsound(loc, 'sound/effects/flag_raised.ogg', 30)
+
+ qdel(src)
+
+/obj/item/flag/plantable/attack_self(mob/user)
+ ..()
+ plant_flag(user, play_warcry, warcry_sound, warcry_extra_sound, faction)
+
+// UNITED AMERICAS FLAG //
+//////////////////////////
+
+/obj/item/flag/plantable/ua
+ name = "\improper United Americas flag"
+ desc = "The flag of the United Americas. This one looks ready to be planted into the ground."
+ icon = 'icons/obj/structures/plantable_flag.dmi'
+ icon_state = "flag_ua"
+ flag_type = /obj/structure/flag/plantable/ua
+ faction = FACTION_MARINE
+ play_warcry = TRUE
+ warcry_sound = 'sound/effects/flag_warcry_ua.ogg'
+ warcry_extra_sound = 'sound/effects/flag_warcry_ua_extra.ogg'
+
+/obj/structure/flag/plantable/ua
+ name = "\improper United Americas flag"
+ desc = "The flag of the United Americas. Semper fi."
+ icon_state = "flag_ua_planted"
+ flag_type = /obj/item/flag/plantable/ua
diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm
index 5d38f238023f..5f72e4a75567 100644
--- a/code/game/objects/items/stacks/stack.dm
+++ b/code/game/objects/items/stacks/stack.dm
@@ -93,7 +93,7 @@ Also change the icon to reflect the amount of sheets, if possible.*/
var/datum/stack_recipe_list/srl = recipe_list[recipes_sublist]
recipe_list = srl.recipes
var/t1 = text("Constructions from []Amount Left: []
", src, src.amount)
- for(var/i = 1; i <= recipe_list.len, i++)
+ for(var/i = 1; i <= length(recipe_list), i++)
var/E = recipe_list[i]
if(isnull(E))
t1 += "
"
diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm
index baa91db19396..06636d2c3f76 100644
--- a/code/game/objects/items/storage/backpack.dm
+++ b/code/game/objects/items/storage/backpack.dm
@@ -268,6 +268,7 @@
return TRUE
/datum/action/item_action/specialist/santabag/action_activate()
+ . = ..()
var/obj/item/storage/backpack/santabag/santa_bag = holder_item
santa_bag.refill_santa_bag(owner)
update_button_icon()
@@ -537,6 +538,7 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r
button.overlays += IMG
/datum/action/item_action/rto_pack/use_phone/action_activate()
+ . = ..()
for(var/obj/item/storage/backpack/marine/satchel/rto/radio_backpack in owner)
radio_backpack.use_phone(owner)
return
@@ -870,6 +872,7 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r
return TRUE
/datum/action/item_action/specialist/toggle_cloak/action_activate()
+ . = ..()
var/obj/item/storage/backpack/marine/satchel/scout_cloak/SC = holder_item
SC.camouflage()
diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm
index 068da19c03be..cebdd18ddc7f 100644
--- a/code/game/objects/items/storage/belt.dm
+++ b/code/game/objects/items/storage/belt.dm
@@ -145,7 +145,7 @@
/obj/item/storage/belt/medical
name = "\improper M276 pattern medical storage rig"
- desc = "The M276 is the standard load-bearing equipment of the USCM. It consists of a modular belt with various clips. This version is a less common configuration, designed to transport medical supplies and pistol ammunition. \nRight click its sprite and click \"toggle belt mode\" to take pills out of bottles by simply clicking them."
+ desc = "The M276 is the standard load-bearing equipment of the USCM. It consists of a modular belt with various clips. This version is a less common configuration, designed to transport bulkier medical supplies. \nRight click its sprite and click \"toggle belt mode\" to take pills out of bottles by simply clicking them."
icon_state = "medicalbelt"
item_state = "medical"
storage_slots = 14
@@ -1084,11 +1084,11 @@
if(ammo_dumping.flags_magazine & AMMUNITION_HANDFUL_BOX)
var/handfuls = round(ammo_dumping.current_rounds / amount_to_dump, 1) //The number of handfuls, we round up because we still want the last one that isn't full
if(ammo_dumping.current_rounds != 0)
- if(contents.len < storage_slots - 1) //this is because it's a gunbelt and the final slot is reserved for the gun
+ if(length(contents) < storage_slots - 1) //this is because it's a gunbelt and the final slot is reserved for the gun
to_chat(user, SPAN_NOTICE("You start refilling [src] with [ammo_dumping]."))
if(!do_after(user, 1.5 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) return
for(var/i = 1 to handfuls)
- if(contents.len < storage_slots - 1)
+ if(length(contents) < storage_slots - 1)
var/obj/item/ammo_magazine/handful/new_handful = new /obj/item/ammo_magazine/handful
var/transferred_handfuls = min(ammo_dumping.current_rounds, amount_to_dump)
new_handful.generate_handful(ammo_dumping.default_ammo, ammo_dumping.caliber, amount_to_dump, transferred_handfuls, ammo_dumping.gun_type)
@@ -1408,7 +1408,7 @@
set name = "Detach revolver holster"
set src in usr
if(ishuman(usr))
- if(contents.len)
+ if(length(contents))
to_chat(usr, SPAN_WARNING("The belt needs to be fully empty to remove the holster!"))
return
to_chat(usr, SPAN_NOTICE("You detach the holster from the belt."))
diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm
index f9f5983c925d..52fd50e9b022 100644
--- a/code/game/objects/items/storage/firstaid.dm
+++ b/code/game/objects/items/storage/firstaid.dm
@@ -383,7 +383,7 @@
/obj/item/storage/pill_bottle/get_examine_text(mob/user)
. = ..()
- var/pills_amount = contents.len
+ var/pills_amount = length(contents)
if(pills_amount)
var/percentage_filled = floor(pills_amount/max_storage_space * 100)
switch(percentage_filled)
@@ -409,7 +409,7 @@
if(skilllock && !skillcheck(user, SKILL_MEDICAL, SKILL_MEDICAL_MEDIC))
error_idlock(user)
return
- if(contents.len)
+ if(length(contents))
var/obj/item/I = contents[1]
if(user.put_in_inactive_hand(I))
playsound(loc, use_sound, 10, TRUE, 3)
@@ -464,7 +464,7 @@
if(C.is_mob_restrained())
to_chat(user, SPAN_WARNING("You are restrained!"))
return FALSE
- if(!contents.len)
+ if(!length(contents))
to_chat(user, SPAN_WARNING("The [name] is empty."))
return FALSE
var/obj/item/I = contents[1]
diff --git a/code/game/objects/items/storage/large_holster.dm b/code/game/objects/items/storage/large_holster.dm
index 220bf4e86d1e..d8e1ee51d0d8 100644
--- a/code/game/objects/items/storage/large_holster.dm
+++ b/code/game/objects/items/storage/large_holster.dm
@@ -332,7 +332,7 @@
/obj/item/storage/large_holster/fuelpack/get_examine_text(mob/user)
. = ..()
- if(contents.len)
+ if(length(contents))
. += "It is storing a M240-T incinerator unit."
if (get_dist(user, src) <= 1)
if(fuel)
@@ -375,6 +375,7 @@
return TRUE
/datum/action/item_action/specialist/toggle_fuel/action_activate()
+ . = ..()
var/obj/item/storage/large_holster/fuelpack/FP = holder_item
if (!istype(FP))
return
diff --git a/code/game/objects/items/storage/misc.dm b/code/game/objects/items/storage/misc.dm
index e8da7936ddb6..c3fd647853d6 100644
--- a/code/game/objects/items/storage/misc.dm
+++ b/code/game/objects/items/storage/misc.dm
@@ -30,7 +30,7 @@
to_chat(user, message)
open = !open
update_icon()
- if(!contents.len)
+ if(!length(contents))
..()
return
@@ -100,7 +100,7 @@
new /obj/item/reagent_container/food/drinks/cans/aspen(src)
/obj/item/storage/beer_pack/update_icon()
- if(contents.len == 1)
+ if(length(contents) == 1)
var/turf/T = get_turf(src)
var/obj/item/reagent_container/food/drinks/cans/aspen/B = new(T)
if(ishuman(loc))
@@ -109,7 +109,7 @@
H.put_in_inactive_hand(B)
qdel(src)
else
- icon_state = "6_pack_[contents.len]"
+ icon_state = "6_pack_[length(contents)]"
/obj/item/storage/box/clf
name = "D18-storing box"
diff --git a/code/game/objects/items/storage/pouch.dm b/code/game/objects/items/storage/pouch.dm
index 7fa32cc21eaa..63516ac20aa0 100644
--- a/code/game/objects/items/storage/pouch.dm
+++ b/code/game/objects/items/storage/pouch.dm
@@ -871,13 +871,13 @@
inner = new /obj/item/reagent_container/glass/pressurized_canister()
//Only add an autoinjector if the canister is empty
//Important for the snowflake /obj/item/storage/pouch/pressurized_reagent_canister/oxycodone
- if(contents.len == 0)
+ if(length(contents) == 0)
new /obj/item/reagent_container/hypospray/autoinjector/empty/medic(src)
update_icon()
/obj/item/storage/pouch/pressurized_reagent_canister/proc/fill_with(ragent)
inner.reagents.add_reagent(ragent, inner.volume)
- if(contents.len > 0)
+ if(length(contents) > 0)
var/obj/item/reagent_container/hypospray/autoinjector/empty/A = contents[1]
A.reagents.add_reagent(ragent, A.volume)
A.update_uses_left()
@@ -903,7 +903,7 @@
inner.reagents.add_reagent("adrenaline", inner.volume/3)
inner.reagents.add_reagent("inaprovaline", inner.volume/3)
inner.reagents.add_reagent("tricordrazine", inner.volume/3)
- if(contents.len > 0)
+ if(length(contents) > 0)
var/obj/item/reagent_container/hypospray/autoinjector/empty/medic/A = contents[1]
A.reagents.add_reagent("adrenaline", A.volume/3)
A.reagents.add_reagent("inaprovaline", A.volume/3)
@@ -973,7 +973,7 @@
var/obj/O = target
- if(!O.reagents || O.reagents.reagent_list.len < 1)
+ if(!O.reagents || length(O.reagents.reagent_list) < 1)
to_chat(user, SPAN_WARNING("[O] is empty!"))
return
@@ -986,7 +986,7 @@
O.reagents.trans_to(inner, amt_to_remove)
//Refill our autoinjector
- if(contents.len > 0)
+ if(length(contents) > 0)
fill_autoinjector(contents[1])
//Top up our inner reagent canister after filling up the injector
@@ -1032,14 +1032,14 @@
//returns a text listing the reagents (and their volume) in the atom. Used by Attack logs for reagents in pills
/obj/item/storage/pouch/pressurized_reagent_canister/proc/get_reagent_list_text()
- if(inner && inner.reagents && inner.reagents.reagent_list && inner.reagents.reagent_list.len)
+ if(inner && inner.reagents && LAZYLEN(inner.reagents.reagent_list))
var/datum/reagent/R = inner.reagents.reagent_list[1]
. = "[R.name]([R.volume]u)"
- if(inner.reagents.reagent_list.len < 2)
+ if(length(inner.reagents.reagent_list) < 2)
return
- for(var/i in 2 to inner.reagents.reagent_list.len)
+ for(var/i in 2 to length(inner.reagents.reagent_list))
R = inner.reagents.reagent_list[i]
if(!R)
diff --git a/code/game/objects/items/storage/storage.dm b/code/game/objects/items/storage/storage.dm
index 7b616b275793..047163713e80 100644
--- a/code/game/objects/items/storage/storage.dm
+++ b/code/game/objects/items/storage/storage.dm
@@ -366,7 +366,7 @@ GLOBAL_LIST_EMPTY_TYPED(item_storage_box_cache, /datum/item_storage_box)
//This proc determins the size of the inventory to be displayed. Please touch it only if you know what you're doing.
/obj/item/storage/proc/orient2hud()
- var/adjusted_contents = contents.len
+ var/adjusted_contents = length(contents)
//Numbered contents display
var/list/datum/numbered_display/numbered_contents
@@ -396,7 +396,7 @@ GLOBAL_LIST_EMPTY_TYPED(item_storage_box_cache, /datum/item_storage_box)
///Returns TRUE if there is room for the given item. W_class_override allows checking for just a generic W_class, meant for checking shotgun handfuls without having to spawn and delete one just to check.
/obj/item/storage/proc/has_room(obj/item/new_item, W_class_override = null)
- if(storage_slots != null && contents.len < storage_slots)
+ if(storage_slots != null && length(contents) < storage_slots)
return TRUE //At least one open slot.
//calculate storage space only for containers that don't have slots
if (storage_slots == null)
@@ -458,7 +458,7 @@ GLOBAL_LIST_EMPTY_TYPED(item_storage_box_cache, /datum/item_storage_box)
return
var/w_limit_bypassed = 0
- if(bypass_w_limit.len)
+ if(length(bypass_w_limit))
for(var/A in bypass_w_limit)
if(istype(W, A))
w_limit_bypassed = 1
@@ -585,7 +585,7 @@ W is always an item. stop_warning prevents messaging. user may be null.**/
if(storage_flags & STORAGE_USING_FIFO_DRAWING)
I = contents[1]
else
- I = contents[contents.len]
+ I = contents[length(contents)]
I.attack_hand(user)
else
open(user)
@@ -707,7 +707,7 @@ W is always an item. stop_warning prevents messaging. user may be null.**/
if(storage_flags & STORAGE_USING_FIFO_DRAWING)
item_obj = contents[1]
else
- item_obj = contents[contents.len]
+ item_obj = contents[length(contents)]
if(!istype(item_obj))
return
remove_from_storage(item_obj, tile)
@@ -725,11 +725,11 @@ W is always an item. stop_warning prevents messaging. user may be null.**/
if(ammo_dumping.flags_magazine & AMMUNITION_HANDFUL_BOX)
var/handfuls = round(ammo_dumping.current_rounds / amount_to_dump, 1) //The number of handfuls, we round up because we still want the last one that isn't full
if(ammo_dumping.current_rounds != 0)
- if(contents.len < storage_slots)
+ if(length(contents) < storage_slots)
to_chat(user, SPAN_NOTICE("You start refilling [src] with [ammo_dumping]."))
if(!do_after(user, 1.5 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) return
for(var/i = 1 to handfuls)
- if(contents.len < storage_slots)
+ if(length(contents) < storage_slots)
//Hijacked from /obj/item/ammo_magazine/proc/create_handful because it had to be handled differently
//All this because shell types are instances and not their own objects :)
@@ -754,7 +754,7 @@ W is always an item. stop_warning prevents messaging. user may be null.**/
if(user.action_busy)
return
- if(!origin_storage.contents.len)
+ if(!length(origin_storage.contents))
to_chat(user, SPAN_WARNING("[origin_storage] is empty."))
return
if(!has_room(origin_storage.contents[1])) //Does it have room for the first item to be inserted?
@@ -857,7 +857,7 @@ W is always an item. stop_warning prevents messaging. user may be null.**/
..()
//Clicking on itself will empty it, if it has contents and the verb to do that. Contents but no verb means nothing happens.
- if(contents.len)
+ if(length(contents))
empty(user)
return
diff --git a/code/game/objects/items/storage/surgical_tray.dm b/code/game/objects/items/storage/surgical_tray.dm
index 16c0d1352961..61f56c35b555 100644
--- a/code/game/objects/items/storage/surgical_tray.dm
+++ b/code/game/objects/items/storage/surgical_tray.dm
@@ -34,7 +34,7 @@
new /obj/item/tool/surgery/synthgraft(src)
/obj/item/storage/surgical_tray/update_icon()
- if(!contents.len)
+ if(!length(contents))
icon_state = "surgical_tray_e"
else
icon_state = "surgical_tray"
diff --git a/code/game/objects/items/tools/experimental_tools.dm b/code/game/objects/items/tools/experimental_tools.dm
index fc58f95909c9..140a05a534b7 100644
--- a/code/game/objects/items/tools/experimental_tools.dm
+++ b/code/game/objects/items/tools/experimental_tools.dm
@@ -379,5 +379,5 @@
arms_to_damage -= l_arm
if(r_arm.status & LIMB_DESTROYED)
arms_to_damage -= r_arm
- if(arms_to_damage.len)
+ if(length(arms_to_damage))
human_to_damage.apply_damage(3, BRUTE, pick(arms_to_damage))
diff --git a/code/game/objects/items/tools/extinguisher.dm b/code/game/objects/items/tools/extinguisher.dm
index cdd7f31f19f0..723d34c64f7e 100644
--- a/code/game/objects/items/tools/extinguisher.dm
+++ b/code/game/objects/items/tools/extinguisher.dm
@@ -153,7 +153,7 @@
var/list/unpicked_targets = list()
for(var/a in 0 to (EXTINGUISHER_WATER_USE_AMT-1))
- if (!unpicked_targets.len)
+ if (!length(unpicked_targets))
unpicked_targets += targets
var/turf/TT = pick(unpicked_targets)
unpicked_targets -= TT
diff --git a/code/game/objects/items/weapons/weaponry.dm b/code/game/objects/items/weapons/weaponry.dm
index 89f5d2186271..6e94961de15e 100644
--- a/code/game/objects/items/weapons/weaponry.dm
+++ b/code/game/objects/items/weapons/weaponry.dm
@@ -248,7 +248,7 @@
showname = "."
var/used_verb = "attacked"
- if(attack_verb && attack_verb.len)
+ if(LAZYLEN(attack_verb))
used_verb = pick(attack_verb)
user.visible_message(SPAN_DANGER("[M] has been [used_verb] with [src][showname]."),\
SPAN_DANGER("You [used_verb] [M] with [src]."), null, 5)
diff --git a/code/game/objects/objs.dm b/code/game/objects/objs.dm
index f93f2dab0984..2dc064aa86d4 100644
--- a/code/game/objects/objs.dm
+++ b/code/game/objects/objs.dm
@@ -416,7 +416,7 @@
var/offset_x = worn_x_dimension
var/offset_y = worn_y_dimension
- if(inhands)
+ if(inhands == 1 || inhands == 0)
offset_x = inhand_x_dimension
offset_y = inhand_y_dimension
diff --git a/code/game/objects/structures/bedsheet_bin.dm b/code/game/objects/structures/bedsheet_bin.dm
index a4666c633aae..ed18c28de6f7 100644
--- a/code/game/objects/structures/bedsheet_bin.dm
+++ b/code/game/objects/structures/bedsheet_bin.dm
@@ -128,8 +128,8 @@ LINEN BINS
amount--
var/obj/item/bedsheet/B
- if(sheets.len > 0)
- B = sheets[sheets.len]
+ if(length(sheets) > 0)
+ B = sheets[length(sheets)]
sheets.Remove(B)
else
diff --git a/code/game/objects/structures/bookcase.dm b/code/game/objects/structures/bookcase.dm
index a6fc95fa0d73..56b69e4a32a4 100644
--- a/code/game/objects/structures/bookcase.dm
+++ b/code/game/objects/structures/bookcase.dm
@@ -54,7 +54,7 @@
..()
/obj/structure/bookcase/attack_hand(mob/user as mob)
- if(contents.len)
+ if(length(contents))
var/obj/item/book/choice = input("Which book would you like to remove from the shelf?") as null|obj in contents
if(choice)
if(user.is_mob_incapacitated() || !in_range(loc, user))
@@ -84,8 +84,8 @@
return
/obj/structure/bookcase/update_icon()
- if(contents.len < 5)
- icon_state = "book-[contents.len]"
+ if(length(contents) < 5)
+ icon_state = "book-[length(contents)]"
else
icon_state = "book-5"
diff --git a/code/game/objects/structures/crates_lockers/largecrate_supplies.dm b/code/game/objects/structures/crates_lockers/largecrate_supplies.dm
index 9ff84376a762..28f5f5cb3b81 100644
--- a/code/game/objects/structures/crates_lockers/largecrate_supplies.dm
+++ b/code/game/objects/structures/crates_lockers/largecrate_supplies.dm
@@ -10,7 +10,7 @@
var/list/T = list()
for(var/turf/open/O in range(1))
T += O
- if(supply.len)
+ if(length(supply))
for(var/s in supply)
var/amount = supply[s]
for(var/i = 1, i <= amount, i++)
@@ -92,7 +92,7 @@
/obj/structure/largecrate/supply/Initialize()
. = ..()
- if(supplies.len)
+ if(length(supplies))
for(var/s in supplies)
var/amount = supplies[s]
for(var/i = 1, i <= amount, i++)
diff --git a/code/game/objects/structures/morgue.dm b/code/game/objects/structures/morgue.dm
index f1717f5bf0f5..c69a570e4923 100644
--- a/code/game/objects/structures/morgue.dm
+++ b/code/game/objects/structures/morgue.dm
@@ -31,7 +31,7 @@
if(morgue_open)
icon_state = "[morgue_type]0"
else
- if(contents.len > 1) //not counting the morgue tray
+ if(length(contents) > 1) //not counting the morgue tray
icon_state = "[morgue_type]2"
else
icon_state = "[morgue_type]1"
@@ -217,7 +217,7 @@
if(cremating)
return
- if(contents.len <= 1) //1 because the tray is inside.
+ if(length(contents) <= 1) //1 because the tray is inside.
visible_message(SPAN_DANGER("You hear a hollow crackle."))
else
visible_message(SPAN_DANGER("You hear a roar as the crematorium activates."))
diff --git a/code/game/objects/structures/reagent_dispensers.dm b/code/game/objects/structures/reagent_dispensers.dm
index aeab625857d5..0dab5e55c004 100644
--- a/code/game/objects/structures/reagent_dispensers.dm
+++ b/code/game/objects/structures/reagent_dispensers.dm
@@ -34,7 +34,7 @@
. = ..()
if(get_dist(user, src) > 2 && user != loc) return
. += SPAN_NOTICE("It contains:")
- if(reagents && reagents.reagent_list.len)
+ if(reagents && length(reagents.reagent_list))
for(var/datum/reagent/R in reagents.reagent_list)
. += SPAN_NOTICE(" [R.volume] units of [R.name]")
else
diff --git a/code/game/objects/structures/roof.dm b/code/game/objects/structures/roof.dm
new file mode 100644
index 000000000000..e302133f0c9a
--- /dev/null
+++ b/code/game/objects/structures/roof.dm
@@ -0,0 +1,165 @@
+/obj/structure/roof
+ name = "roof"
+ desc = "A roof"
+ icon = 'icons/turf/almayer.dmi'
+ icon_state = "plating_catwalk"
+ density = FALSE
+ layer = ABOVE_XENO_LAYER
+ health = 6000
+ var/image/under_image //immage that is used when there is mob on connected node, displayed only to mobs under it not others
+ var/image/normal_image
+ var/datum/roof_master_node/linked_master
+ var/lazy_nodes = TRUE //if roof should create nodes that watch around it on spawn
+
+
+/obj/structure/roof/Initialize()
+ . = ..()
+ under_image = image(icon, src, icon_state, layer = layer)
+ under_image.alpha = 127
+
+ normal_image = image(icon, src, icon_state, layer = layer)
+
+ icon_state = null
+
+ RegisterSignal(SSdcs, COMSIG_GLOB_MOB_LOGGED_IN, PROC_REF(add_default_image))
+
+ for(var/icon in GLOB.player_list)
+ add_default_image(SSdcs, icon)
+ if(lazy_nodes) //creates new node on each surounding tile if there is not one already
+ var/obj/effect/roof_node/neighbor = locate() in loc
+ if(!neighbor)
+ neighbor = new(loc)
+ for(var/direction in CARDINAL_ALL_DIRS)
+ var/adjacent_loc = get_step(src, direction)
+ neighbor = locate() in adjacent_loc
+ if(!neighbor)
+ neighbor = new(adjacent_loc)
+ return INITIALIZE_HINT_LATELOAD
+
+/obj/structure/roof/LateInitialize() //we use late init to allow for lazy nodes to spawn first on mapload
+ . = ..()
+ if(linked_master)
+ return
+ for(var/direction in CARDINAL_ALL_DIRS) //this searches if there is lattice with master already, to work with runtime creation
+ for(var/obj/structure/roof/roof in get_step(src,direction))
+ if(roof.linked_master)
+ roof.linked_master.connect(loc)
+ return
+ var/datum/roof_master_node/roof_master_node = new(loc) //no master and no lattice to connect to, create new master
+ roof_master_node.connect(loc)
+
+/obj/structure/roof/Destroy(force, ...)
+ if(linked_master)
+ linked_master.remove_roof(src)
+ for(var/icon in GLOB.player_list)
+ var/mob/mob = icon
+ mob.client.images -= normal_image
+ return ..()
+
+/obj/structure/roof/proc/add_default_image(subsystem, mob/mob)
+ SIGNAL_HANDLER
+ mob.client.images += normal_image
+
+/obj/structure/roof/proc/link_master(datum/roof_master_node/master) //performs bfs and connects to master
+ if(linked_master != null)
+ return
+ master.connected_roof += src
+ linked_master = master
+ for(var/direction in CARDINAL_ALL_DIRS)
+ for(var/obj/structure/roof/roof in get_step(src,direction))
+ roof.link_master(master)
+
+
+/obj/effect/roof_node //used for observing if mob is near the roof
+ name = "roof_node"
+ anchored = TRUE
+ mouse_opacity = MOUSE_OPACITY_TRANSPARENT
+ invisibility = 101
+ unacidable = TRUE
+ var/datum/roof_master_node/linked_master
+
+/obj/effect/roof_node/Crossed(atom/movable/mover, target_dir)
+ if(!linked_master)
+ return
+ if(isliving(mover))
+ var/mob/living/mob = mover
+ linked_master.add_under_roof(mob)
+
+/obj/effect/roof_node/Destroy(force, ...)
+ if(linked_master)
+ if(linked_master.connected_nodes)
+ linked_master.connected_nodes -= src
+ return ..()
+
+/obj/effect/roof_node/proc/link_master(datum/roof_master_node/master) //performs bfs and connects to master
+ if(linked_master)
+ return
+ master.connected_nodes += src
+ linked_master = master
+ for(var/direction in CARDINAL_ALL_DIRS)
+ for(var/obj/effect/roof_node/node in get_step(src,direction))
+ node.link_master(master)
+
+
+/datum/roof_master_node //maintains one block of roof
+ var/list/connected_nodes = list()
+ var/list/connected_roof = list()
+ var/list/mobs_under = list()
+ var/location
+
+/datum/roof_master_node/Destroy(force, ...)
+ if(connected_nodes)
+ for(var/obj/effect/roof_node/roof_node in connected_nodes)
+ qdel(roof_node)
+ if(connected_nodes)
+ for(var/obj/structure/roof/roof in connected_roof)
+ qdel(roof)
+ return ..()
+
+/datum/roof_master_node/proc/add_under_roof(mob/living/living) //mob crossed connected node
+ if(living in mobs_under)
+ return
+ mobs_under += living
+ RegisterSignal(living, COMSIG_PARENT_QDELETING, PROC_REF(remove_under_roof))
+ RegisterSignal(living, COMSIG_MOB_LOGGED_IN, PROC_REF(add_client))
+ RegisterSignal(living, COMSIG_MOVABLE_MOVED, PROC_REF(check_under_roof))
+
+ if(living.client)
+ add_client(living)
+
+/datum/roof_master_node/proc/add_client(mob/living/mob)
+ SIGNAL_HANDLER
+ for(var/obj/structure/roof/roof in connected_roof)
+ mob.client.images -= roof.normal_image
+ mob.client.images += roof.under_image
+
+/datum/roof_master_node/proc/remove_under_roof(mob/living/living) //mob is no longer under roof
+ SIGNAL_HANDLER
+ if(living.client)
+ for(var/obj/structure/roof/roof in connected_roof)
+ living.client.images -= roof.under_image
+ roof.add_default_image(SSdcs, living)
+ mobs_under -= living
+ UnregisterSignal(living, list(
+ COMSIG_PARENT_QDELETING,
+ COMSIG_MOB_LOGGED_IN,
+ COMSIG_MOVABLE_MOVED,
+ ))
+
+/datum/roof_master_node/proc/check_under_roof(mob/living/living) //check if the mob is under connected roof
+ SIGNAL_HANDLER
+ for(var/obj/effect/roof_node/roof in connected_nodes)
+ if(living.loc == roof.loc)
+ return
+ remove_under_roof(living)
+
+/datum/roof_master_node/proc/connect(location)
+ for(var/obj/effect/roof_node/node in location)
+ node.link_master(src)
+ for(var/obj/structure/roof/roof in location)
+ roof.link_master(src)
+
+/datum/roof_master_node/proc/remove_roof(obj/structure/roof/roof) //roof tile got removed
+ connected_roof -= roof
+ if(!length(connected_roof))
+ qdel(src)
diff --git a/code/game/objects/structures/safe.dm b/code/game/objects/structures/safe.dm
index 011fa2a17f48..6cefadd88a12 100644
--- a/code/game/objects/structures/safe.dm
+++ b/code/game/objects/structures/safe.dm
@@ -124,7 +124,7 @@ FLOOR SAFES
dat += "Dial 2: - [tumbler_2_pos] +
"
if(open)
dat += ""
- for(var/i = contents.len, i>=1, i--)
+ for(var/i = length(contents), i>=1, i--)
var/obj/item/P = contents[i]
dat += "[P.name] |
"
dat += "
"
diff --git a/code/game/objects/structures/stool_bed_chair_nest/xeno_nest.dm b/code/game/objects/structures/stool_bed_chair_nest/xeno_nest.dm
index c3f0b97e509a..68b899f78f15 100644
--- a/code/game/objects/structures/stool_bed_chair_nest/xeno_nest.dm
+++ b/code/game/objects/structures/stool_bed_chair_nest/xeno_nest.dm
@@ -245,6 +245,7 @@
do_buckle(mob, user)
ADD_TRAIT(mob, TRAIT_NESTED, TRAIT_SOURCE_BUCKLE)
+ ADD_TRAIT(mob, TRAIT_NO_STRAY, TRAIT_SOURCE_BUCKLE)
SEND_SIGNAL(mob, COMSIG_MOB_NESTED, user)
if(!human)
@@ -275,6 +276,7 @@
buckled_mob.pixel_y = 0
buckled_mob.old_y = 0
REMOVE_TRAIT(buckled_mob, TRAIT_NESTED, TRAIT_SOURCE_BUCKLE)
+ REMOVE_TRAIT(buckled_mob, TRAIT_NO_STRAY, TRAIT_SOURCE_BUCKLE)
var/mob/living/carbon/human/buckled_human = buckled_mob
var/mob/dead/observer/G = ghost_of_buckled_mob
diff --git a/code/game/objects/structures/tank_dispenser.dm b/code/game/objects/structures/tank_dispenser.dm
index 8df4359aa5f8..129e03b7179c 100644
--- a/code/game/objects/structures/tank_dispenser.dm
+++ b/code/game/objects/structures/tank_dispenser.dm
@@ -95,7 +95,7 @@
if(href_list["oxygen"])
if(oxygentanks > 0)
var/obj/item/tank/oxygen/O
- if(oxytanks.len == oxygentanks)
+ if(length(oxytanks) == oxygentanks)
O = oxytanks[1]
oxytanks.Remove(O)
else
@@ -107,7 +107,7 @@
if(href_list["phoron"])
if(phorontanks > 0)
var/obj/item/tank/phoron/P
- if(platanks.len == phorontanks)
+ if(length(platanks) == phorontanks)
P = platanks[1]
platanks.Remove(P)
else
diff --git a/code/game/objects/structures/vulture_spotter.dm b/code/game/objects/structures/vulture_spotter.dm
index dc341edf0446..dcbfd88c9c08 100644
--- a/code/game/objects/structures/vulture_spotter.dm
+++ b/code/game/objects/structures/vulture_spotter.dm
@@ -313,6 +313,7 @@
tripod = WEAKREF(spotting_tripod)
/datum/action/vulture_tripod_unscope/action_activate()
+ . = ..()
if(!tripod)
return
diff --git a/code/game/sound.dm b/code/game/sound.dm
index 29c471f06e9d..1ab8fc42f41a 100644
--- a/code/game/sound.dm
+++ b/code/game/sound.dm
@@ -1,3 +1,5 @@
+/sound
+ echo = SOUND_ECHO_REVERB_OFF //disable enviroment reverb by default, soundOutput re-enables for positional sounds
/datum/sound_template //Basically a sound datum, but only serves as a way to carry info to soundOutput
var/file //The sound itself
@@ -11,7 +13,6 @@
var/falloff = 1
var/volume_cat = VOLUME_SFX
var/range = 0
- var/list/echo
var/x //Map coordinates, not sound coordinates
var/y
var/z
@@ -35,7 +36,7 @@
//status: the regular 4 sound flags
//falloff: max range till sound volume starts dropping as distance increases
-/proc/playsound(atom/source, soundin, vol = 100, vary = FALSE, sound_range, vol_cat = VOLUME_SFX, channel = 0, status , falloff = 1, echo, y_s_offset,x_s_offset)
+/proc/playsound(atom/source, soundin, vol = 100, vary = FALSE, sound_range, vol_cat = VOLUME_SFX, channel = 0, status , falloff = 1, y_s_offset,x_s_offset)
if(isarea(source))
error("[source] is an area and is trying to make the sound: [soundin]")
return FALSE
@@ -53,7 +54,6 @@
S.falloff = falloff
S.volume = vol
S.volume_cat = vol_cat
- S.echo = echo
S.y_s_offset = y_s_offset
S.x_s_offset = x_s_offset
if(vary != FALSE)
@@ -100,7 +100,7 @@
//This is the replacement for playsound_local. Use this for sending sounds directly to a client
-/proc/playsound_client(client/client, soundin, atom/origin, vol = 100, random_freq, vol_cat = VOLUME_SFX, channel = 0, status, list/echo, y_s_offset, x_s_offset)
+/proc/playsound_client(client/client, soundin, atom/origin, vol = 100, random_freq, vol_cat = VOLUME_SFX, channel = 0, status, y_s_offset, x_s_offset)
if(!istype(client) || !client.soundOutput) return FALSE
var/datum/sound_template/S = new()
if(origin)
@@ -123,7 +123,6 @@
S.volume_cat = vol_cat
S.channel = channel
S.status = status
- S.echo = echo
S.y_s_offset = y_s_offset
S.x_s_offset = x_s_offset
SSsound.queue(S, list(client))
@@ -154,13 +153,12 @@
/// Play sound for all on-map clients on a given Z-level. Good for ambient sounds.
-/proc/playsound_z(z, soundin, volume = 100, vol_cat = VOLUME_SFX, echo, y_s_offset, x_s_offset)
+/proc/playsound_z(z, soundin, volume = 100, vol_cat = VOLUME_SFX, y_s_offset, x_s_offset)
var/datum/sound_template/S = new()
S.file = soundin
S.volume = volume
S.channel = SOUND_CHANNEL_Z
S.volume_cat = vol_cat
- S.echo = echo
S.y_s_offset = y_s_offset
S.x_s_offset = x_s_offset
var/list/hearers = list()
@@ -324,6 +322,8 @@
S = pick('sound/effects/alien_resin_move1.ogg','sound/effects/alien_resin_move2.ogg')
if("alien_talk")
S = pick('sound/voice/alien_talk.ogg','sound/voice/alien_talk2.ogg','sound/voice/alien_talk3.ogg')
+ if("larva_talk")
+ S = pick('sound/voice/larva_talk1.ogg','sound/voice/larva_talk2.ogg','sound/voice/larva_talk3.ogg','sound/voice/larva_talk4.ogg')
if("hiss_talk")
S = pick('sound/voice/hiss2.ogg','sound/voice/hiss3.ogg','sound/voice/hiss4.ogg')
if("alien_growl")
@@ -405,4 +405,4 @@
set category = "Debug"
for(var/sound/S in SoundQuery())
- UNLINT(to_chat(src, "channel#[S.channel]: [S.status] - [S.file] - len=[S.len], wait=[S.wait], offset=[S.offset], repeat=[S.repeat]")) // unlint until spacemandmm suite-1.7
+ UNLINT(to_chat(src, "channel#[S.channel]: [S.status] - [S.file] - len=[length(S)], wait=[S.wait], offset=[S.offset], repeat=[S.repeat]")) // unlint until spacemandmm suite-1.7
diff --git a/code/game/supplyshuttle.dm b/code/game/supplyshuttle.dm
index c1d0352766a6..53b64cbedfad 100644
--- a/code/game/supplyshuttle.dm
+++ b/code/game/supplyshuttle.dm
@@ -472,7 +472,7 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new())
return
for(var/pool in base_random_crate_intervals)
var/interval = base_random_crate_intervals[pool]
- if(interval && iteration % interval == 0 && shoppinglist.len <= 20)
+ if(interval && iteration % interval == 0 && length(shoppinglist) <= 20)
add_random_crates(pool)
crate_iteration++
@@ -539,7 +539,7 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new())
if(istype(A,/mob/living) && !black_market_enabled)
return TRUE
- for(var/i=1, i<=A.contents.len, i++)
+ for(var/i=1, i<=length(A.contents), i++)
var/atom/B = A.contents[i]
if(.(B))
return 1
@@ -560,7 +560,7 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new())
for(var/atom/movable/movable_atom in area_shuttle)
if(istype(movable_atom, /obj/item/paper/manifest))
var/obj/item/paper/manifest/M = movable_atom
- if(M.stamped && M.stamped.len)
+ if(LAZYLEN(M.stamped))
points += points_per_slip
//black market points
@@ -601,19 +601,19 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new())
//Buyin
/datum/controller/supply/proc/buy()
var/area/area_shuttle = shuttle?.get_location_area()
- if(!area_shuttle || !shoppinglist.len)
+ if(!area_shuttle || !length(shoppinglist))
return
// Try to find an available turf to place our package
var/list/turf/clear_turfs = list()
for(var/turf/T in area_shuttle)
- if(T.density || T.contents?.len)
+ if(T.density || LAZYLEN(T.contents))
continue
clear_turfs += T
for(var/datum/supply_order/order in shoppinglist)
// No space! Forget buying, it's no use.
- if(!clear_turfs.len)
+ if(!length(clear_turfs))
shoppinglist.Cut()
return
@@ -716,7 +716,7 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new())
Approved by: | \
[approvedby] |
\
# packages: | \
- [packages.len] |
\
+ [length(packages)] | \
\
"
- if(bad_keys.len)
+ if(length(bad_keys))
html += "Bad keys:
"
for(var/key in bad_keys)
var/list/messages = bad_keys[key]
html += "- [key]"
- if(messages.len == 1)
+ if(length(messages) == 1)
html += ": [bad_keys[key][1]]"
else
html += ""
@@ -74,7 +74,7 @@
var/turfs = 0
var/areas = 0
- for(var/i in 1 to members.len)
+ for(var/i in 1 to length(members))
var/atom/path = members[i]
turfs += ispath(path, /turf)
@@ -91,7 +91,7 @@
LAZYADD(report.bad_keys[key], "[areas] areas instead of 1")
// return the report
- if(report.bad_paths.len || report.bad_keys.len || !report.loadable)
+ if(length(report.bad_paths) || length(report.bad_keys) || !report.loadable)
// keep the report around so it can be referenced later
report.tag = "mapreport_[++report.tag_number]"
report.crashed = FALSE
diff --git a/code/modules/mentor/looc_toggle.dm b/code/modules/mentor/looc_toggle.dm
index 7c5b95b1fcb0..b224e72e79d2 100644
--- a/code/modules/mentor/looc_toggle.dm
+++ b/code/modules/mentor/looc_toggle.dm
@@ -13,6 +13,7 @@
// Called when the action is clicked on.
/datum/action/looc_toggle/action_activate()
+ . = ..()
if(owner.looc_overhead)
button.icon_state = "template"
owner.looc_overhead = FALSE
diff --git a/code/modules/mob/camera/imaginary_friend.dm b/code/modules/mob/camera/imaginary_friend.dm
index 4e7be80056de..0a4d5ee65c5c 100644
--- a/code/modules/mob/camera/imaginary_friend.dm
+++ b/code/modules/mob/camera/imaginary_friend.dm
@@ -280,6 +280,7 @@
action_icon_state = "joinmob"
/datum/action/innate/imaginary_orbit/action_activate()
+ . = ..()
var/mob/camera/imaginary_friend/friend = owner
friend.recall()
@@ -288,6 +289,7 @@
action_icon_state = "hidemob"
/datum/action/innate/imaginary_hide/action_activate()
+ . = ..()
var/mob/camera/imaginary_friend/friend = owner
if(friend.hidden)
friend.hidden = FALSE
diff --git a/code/modules/mob/dead/observer/actions.dm b/code/modules/mob/dead/observer/actions.dm
index 7daae802dc7a..192c6cd1e3b8 100644
--- a/code/modules/mob/dead/observer/actions.dm
+++ b/code/modules/mob/dead/observer/actions.dm
@@ -3,6 +3,7 @@
action_icon_state = "ghost"
/datum/action/ghost/action_activate()
+ . = ..()
if(!owner.client)
return
@@ -38,6 +39,7 @@
qdel(src)
/datum/action/join_ert/action_activate()
+ . = ..()
if(!owner.client)
return
@@ -50,6 +52,7 @@
listen_signal = COMSIG_KB_OBSERVER_JOIN_PREDATOR
/datum/action/join_predator/action_activate()
+ . = ..()
var/mob/dead/observer/activator = owner
activator.join_as_yautja()
@@ -58,6 +61,7 @@
action_icon_state = "view_crew_manifest"
/datum/action/observer_action/view_crew_manifest/action_activate()
+ . = ..()
show_browser(owner, GLOB.data_core.get_manifest(), "Crew Manifest", "manifest", "size=450x750")
/datum/action/observer_action/view_hive_status
@@ -65,6 +69,7 @@
action_icon_state = "view_hive_status"
/datum/action/observer_action/view_hive_status/action_activate()
+ . = ..()
var/mob/dead/observer/activator = owner
activator.hive_status()
@@ -74,6 +79,7 @@
listen_signal = COMSIG_KB_OBSERVER_JOIN_XENO
/datum/action/observer_action/join_xeno/action_activate()
+ . = ..()
if(!owner.client)
return
@@ -90,6 +96,7 @@
listen_signal = COMSIG_KB_OBSERVER_JOIN_LESSER_DRONE
/datum/action/observer_action/join_lesser_drone/action_activate()
+ . = ..()
if(!owner.client)
return
diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm
index 0ea2b3856da1..d4db6bccde83 100644
--- a/code/modules/mob/dead/observer/observer.dm
+++ b/code/modules/mob/dead/observer/observer.dm
@@ -628,7 +628,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
var/value = SStechtree.trees[1]
- if(trees.len > 1)
+ if(length(trees) > 1)
value = tgui_input_list(src, "Choose which tree to enter", "Enter Tree", trees)
if(!value)
@@ -655,14 +655,14 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
for(var/turf/T in get_area_turfs(thearea.type))
L+=T
- if(!L || !L.len)
+ if(!LAZYLEN(L))
to_chat(src, "No area available.")
return
usr.forceMove(pick(L))
following = null
-/mob/dead/observer/proc/scan_health(mob/living/target in view(src.client))
+/mob/dead/observer/proc/scan_health(mob/living/target in GLOB.living_mob_list)
set name = "Scan Health"
if(!istype(target))
@@ -695,7 +695,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
last_health_display.target_mob = target
last_health_display.look_at(src, DETAIL_LEVEL_FULL, bypass_checks = TRUE)
-/mob/dead/observer/verb/follow_local(mob/target)
+/mob/dead/observer/verb/follow_local(mob/target in GLOB.mob_list)
set category = "Ghost.Follow"
set name = "Follow Local Mob"
set desc = "Follow on-screen mob"
@@ -879,7 +879,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
var/datum/hive_status/hive
for(var/hivenumber in GLOB.hive_datum)
hive = GLOB.hive_datum[hivenumber]
- if(hive.totalXenos.len > 0)
+ if(length(hive.totalXenos) > 0)
hives += list("[hive.name]" = hive.hivenumber)
last_hive_checked = hive
diff --git a/code/modules/mob/hear_say.dm b/code/modules/mob/hear_say.dm
index 0d8d1ff0dc48..ef9ac4b6cfcc 100644
--- a/code/modules/mob/hear_say.dm
+++ b/code/modules/mob/hear_say.dm
@@ -18,7 +18,7 @@
if(!say_understands(speaker,language))
if(istype(speaker,/mob/living/simple_animal))
var/mob/living/simple_animal/S = speaker
- if(S.speak.len)
+ if(length(S.speak))
message = pick(S.speak)
else
message = stars(message)
@@ -189,7 +189,7 @@
var/list/punctuation = list(",", "!", ".", ";", "?")
var/list/messages = splittext(message, " ")
- var/R = rand(1, messages.len)
+ var/R = rand(1, length(messages))
var/heardword = messages[R]
if(copytext(heardword,1, 1) in punctuation)
heardword = copytext(heardword,2)
diff --git a/code/modules/mob/holder.dm b/code/modules/mob/holder.dm
index bcee5b81a100..cb8bbc11303b 100644
--- a/code/modules/mob/holder.dm
+++ b/code/modules/mob/holder.dm
@@ -15,7 +15,7 @@
/obj/item/holder/process()
- if(istype(loc,/turf) || !(contents.len))
+ if(istype(loc,/turf) || !(length(contents)))
for(var/mob/M in contents)
diff --git a/code/modules/mob/inventory.dm b/code/modules/mob/inventory.dm
index c9837e144c1b..e1c3bf49af8a 100644
--- a/code/modules/mob/inventory.dm
+++ b/code/modules/mob/inventory.dm
@@ -340,7 +340,7 @@
if(WEAR_IN_BACK)
if (src.back && isstorage(src.back))
var/obj/item/storage/B = src.back
- if(B.contents.len < B.storage_slots && W.w_class <= B.max_w_class)
+ if(length(B.contents) < B.storage_slots && W.w_class <= B.max_w_class)
W.forceMove(B)
equipped = 1
if(WEAR_IN_SHOES)
@@ -353,7 +353,7 @@
if(WEAR_IN_SCABBARD)
if(src.back && istype(src.back, /obj/item/storage/large_holster))
var/obj/item/storage/large_holster/B = src.back
- if(B.contents.len < B.storage_slots && W.w_class <= B.max_w_class)
+ if(length(B.contents) < B.storage_slots && W.w_class <= B.max_w_class)
W.forceMove(B)
equipped = 1
if(WEAR_IN_ACCESSORY)
@@ -377,25 +377,25 @@
if(WEAR_IN_BELT)
if(src.belt && isstorage(src.belt))
var/obj/item/storage/B = src.belt
- if(B.contents.len < B.storage_slots && W.w_class <= B.max_w_class)
+ if(length(B.contents) < B.storage_slots && W.w_class <= B.max_w_class)
W.forceMove(B)
equipped = 1
if(WEAR_IN_J_STORE)
if(src.s_store && isstorage(src.s_store))
var/obj/item/storage/B = src.s_store
- if(B.contents.len < B.storage_slots && W.w_class <= B.max_w_class)
+ if(length(B.contents) < B.storage_slots && W.w_class <= B.max_w_class)
W.forceMove(B)
equipped = 1
if(WEAR_IN_L_STORE)
if(src.l_store && istype(src.l_store, /obj/item/storage/pouch))
var/obj/item/storage/pouch/P = src.l_store
- if(P.contents.len < P.storage_slots && W.w_class <= P.max_w_class)
+ if(length(P.contents) < P.storage_slots && W.w_class <= P.max_w_class)
W.forceMove(P)
equipped = 1
if(WEAR_IN_R_STORE)
if(src.r_store && istype(src.r_store, /obj/item/storage/pouch))
var/obj/item/storage/pouch/P = src.r_store
- if(P.contents.len < P.storage_slots && W.w_class <= P.max_w_class)
+ if(length(P.contents) < P.storage_slots && W.w_class <= P.max_w_class)
W.forceMove(P)
equipped = 1
diff --git a/code/modules/mob/language/language.dm b/code/modules/mob/language/language.dm
index 0a2fbca787d6..45086aaeba8b 100644
--- a/code/modules/mob/language/language.dm
+++ b/code/modules/mob/language/language.dm
@@ -60,12 +60,12 @@
/datum/language/proc/add_to_cache(input, scrambled_text)
// Add it to cache, cutting old entries if the list is too long
scramble_cache[input] = scrambled_text
- if(scramble_cache.len > SCRAMBLE_CACHE_LEN)
- scramble_cache.Cut(1, scramble_cache.len-SCRAMBLE_CACHE_LEN-1)
+ if(length(scramble_cache) > SCRAMBLE_CACHE_LEN)
+ scramble_cache.Cut(1, length(scramble_cache)-SCRAMBLE_CACHE_LEN-1)
/datum/language/proc/scramble(input)
- if(!syllables || !syllables.len)
+ if(!LAZYLEN(syllables))
return stars(input)
// If the input is cached already, move it to the end of the cache and return it
diff --git a/code/modules/mob/language/language_handling.dm b/code/modules/mob/language/language_handling.dm
index d9df36681261..c45ced8ad150 100644
--- a/code/modules/mob/language/language_handling.dm
+++ b/code/modules/mob/language/language_handling.dm
@@ -18,7 +18,7 @@
return 0
/mob/proc/get_default_language()
- if (languages.len > 0)
+ if (length(languages) > 0)
return languages[1]
return null
diff --git a/code/modules/mob/living/blood.dm b/code/modules/mob/living/blood.dm
index 27d6f5ee4ccf..c2d0c63e3307 100644
--- a/code/modules/mob/living/blood.dm
+++ b/code/modules/mob/living/blood.dm
@@ -110,9 +110,9 @@
//An even amount of each plasma and blood type
if(plasma == PLASMA_EGG)
//Preserve hive_number for the possible larva
- O.reagents.add_reagent(plasma, amount / plasmas.len, list("hive_number" = hivenumber))
+ O.reagents.add_reagent(plasma, amount / length(plasmas), list("hive_number" = hivenumber))
else
- O.reagents.add_reagent(plasma, amount / plasmas.len)
+ O.reagents.add_reagent(plasma, amount / length(plasmas))
blood_volume = max(0, blood_volume - amount)
return 1
@@ -142,7 +142,7 @@
for(var/datum/disease/D in viruses)
blood_data["viruses"] += D.Copy()
- if(resistances && resistances.len)
+ if(LAZYLEN(resistances))
blood_data["resistances"] = resistances.Copy()
return blood_data
diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm
index 974312fc42f7..36d2518d7e75 100644
--- a/code/modules/mob/living/carbon/carbon.dm
+++ b/code/modules/mob/living/carbon/carbon.dm
@@ -482,7 +482,7 @@
/mob/living/carbon/on_stored_atom_del(atom/movable/AM)
..()
- if(stomach_contents.len && ismob(AM))
+ if(length(stomach_contents) && ismob(AM))
for(var/X in stomach_contents)
if(AM == X)
stomach_contents -= AM
diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm
index dcbab12c7291..c8820ec3b97d 100644
--- a/code/modules/mob/living/carbon/human/examine.dm
+++ b/code/modules/mob/living/carbon/human/examine.dm
@@ -263,7 +263,7 @@
wound_flavor_text["[temp.display_name]"] += SPAN_WARNING(pick(" a lot of burns"," severe melting"))
if(wound_flavor_text["[temp.display_name]"])
wound_flavor_text["[temp.display_name]"] += SPAN_WARNING("!\n")
- else if(temp.wounds.len > 0)
+ else if(length(temp.wounds) > 0)
var/list/wound_descriptors = list()
for(var/datum/wound/W as anything in temp.wounds)
if(W.internal && incision_depths[temp.name] == SURGERY_DEPTH_SURFACE)
@@ -286,37 +286,37 @@
wound_descriptors[this_wound_desc] += W.amount
continue
wound_descriptors[this_wound_desc] = W.amount
- if(wound_descriptors.len)
+ if(length(wound_descriptors))
var/list/flavor_text = list()
var/list/no_exclude = list("gaping wound", "big gaping wound", "massive wound", "large bruise",\
"huge bruise", "massive bruise", "severe burn", "large burn", "deep burn", "carbonised area")
for(var/wound in wound_descriptors)
switch(wound_descriptors[wound])
if(1)
- if(!flavor_text.len)
+ if(!length(flavor_text))
flavor_text += SPAN_WARNING("[t_He] has[prob(10) && !(wound in no_exclude) ? " what might be" : ""] a [wound]")
else
flavor_text += "[prob(10) && !(wound in no_exclude) ? " what might be" : ""] a [wound]"
if(2)
- if(!flavor_text.len)
+ if(!length(flavor_text))
flavor_text += SPAN_WARNING("[t_He] has[prob(10) && !(wound in no_exclude) ? " what might be" : ""] a pair of [wound]s")
else
flavor_text += "[prob(10) && !(wound in no_exclude) ? " what might be" : ""] a pair of [wound]s"
if(3 to 5)
- if(!flavor_text.len)
+ if(!length(flavor_text))
flavor_text += SPAN_WARNING("[t_He] has several [wound]s")
else
flavor_text += " several [wound]s"
if(6 to INFINITY)
- if(!flavor_text.len)
+ if(!length(flavor_text))
flavor_text += SPAN_WARNING("[t_He] has a bunch of [wound]s")
else
flavor_text += " a ton of [wound]\s"
var/flavor_text_string = ""
- for(var/text = 1, text <= flavor_text.len, text++)
- if(text == flavor_text.len && flavor_text.len > 1)
+ for(var/text = 1, text <= length(flavor_text), text++)
+ if(text == length(flavor_text) && length(flavor_text) > 1)
flavor_text_string += ", and"
- else if(flavor_text.len > 1 && text > 1)
+ else if(length(flavor_text) > 1 && text > 1)
flavor_text_string += ","
flavor_text_string += flavor_text[text]
flavor_text_string += " on [t_his] [temp.display_name].
"
diff --git a/code/modules/mob/living/carbon/human/exercise.dm b/code/modules/mob/living/carbon/human/exercise.dm
index 3a2976da9130..9e01aa863244 100644
--- a/code/modules/mob/living/carbon/human/exercise.dm
+++ b/code/modules/mob/living/carbon/human/exercise.dm
@@ -83,7 +83,7 @@ Verbs related to getting fucking jacked, bro
if(!get_limb(zone))
extremities.Remove(zone)
- if(extremities.len < 8)
+ if(length(extremities) < 8)
to_chat(src, SPAN_WARNING("How do you think you'll be able to do a pushup without two hands and feet to stand on? See a doctor!"))
return FALSE
diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm
index 6db31ea6451a..213d037afe6e 100644
--- a/code/modules/mob/living/carbon/human/human.dm
+++ b/code/modules/mob/living/carbon/human/human.dm
@@ -1000,8 +1000,8 @@
if(self)
var/list/L = get_broken_limbs() - list("chest","head","groin")
- if(L.len > 0)
- msg += "Your [english_list(L)] [L.len > 1 ? "are" : "is"] broken\n"
+ if(length(L) > 0)
+ msg += "Your [english_list(L)] [length(L) > 1 ? "are" : "is"] broken\n"
to_chat(usr,SPAN_NOTICE("You [self ? "take a moment to analyze yourself":"start analyzing [src]"]"))
if(toxloss > 20)
msg += "[self ? "Your" : "Their"] skin is slightly green\n"
@@ -1259,6 +1259,11 @@
if(TRACKER_XO)
H = GLOB.marine_leaders[JOB_XO]
tracking_suffix = "_xo"
+ if(TRACKER_CMP)
+ var/datum/job/command/warrant/cmp_job = GLOB.RoleAuthority.roles_for_mode[JOB_CHIEF_POLICE]
+ if(cmp_job?.active_cmp)
+ H = cmp_job.active_cmp
+ tracking_suffix = "_cmp"
if(TRACKER_CL)
var/datum/job/civilian/liaison/liaison_job = GLOB.RoleAuthority.roles_for_mode[JOB_CORPORATE_LIAISON]
if(liaison_job?.active_liaison)
@@ -1404,13 +1409,13 @@
to_splint.Add(l)
var/msg = "" // Have to use this because there are issues with the to_chat macros and text macros and quotation marks
- if(to_splint.len)
+ if(length(to_splint))
if(do_after(user, HUMAN_STRIP_DELAY * user.get_skill_duration_multiplier(SKILL_MEDICAL), INTERRUPT_ALL, BUSY_ICON_GENERIC, target, INTERRUPT_MOVED, BUSY_ICON_GENERIC))
var/can_reach_splints = TRUE
var/amount_removed = 0
if(wear_suit && istype(wear_suit,/obj/item/clothing/suit/space))
var/obj/item/clothing/suit/space/suit = target.wear_suit
- if(suit.supporting_limbs && suit.supporting_limbs.len)
+ if(LAZYLEN(suit.supporting_limbs))
msg = "[user == target ? "your":"\proper [target]'s"]"
to_chat(user, SPAN_WARNING("You cannot remove the splints, [msg] [suit] is supporting some of the breaks."))
can_reach_splints = FALSE
diff --git a/code/modules/mob/living/carbon/human/human_abilities.dm b/code/modules/mob/living/carbon/human/human_abilities.dm
index 76ebbed06de6..9976fe37a4ff 100644
--- a/code/modules/mob/living/carbon/human/human_abilities.dm
+++ b/code/modules/mob/living/carbon/human/human_abilities.dm
@@ -20,6 +20,7 @@
cooldown = COMMAND_ORDER_COOLDOWN
/datum/action/human_action/issue_order/action_activate()
+ . = ..()
if(!ishuman(owner))
return
var/mob/living/carbon/human/H = owner
@@ -58,6 +59,7 @@
return FALSE
/datum/action/human_action/smartpack/action_activate()
+ . = ..()
if(!istype(owner, /mob/living/carbon/human))
return
var/mob/living/carbon/human/H = owner
@@ -129,6 +131,7 @@ CULT
// Called when the action is clicked on.
/datum/action/human_action/activable/action_activate()
+ . = ..()
if(!ishuman(owner))
return
var/mob/living/carbon/human/H = owner
@@ -286,6 +289,7 @@ CULT
action_icon_state = "cultist_channel_hivemind"
/datum/action/human_action/activable/cult/speak_hivemind/action_activate()
+ . = ..()
if(!can_use_action())
return
@@ -316,6 +320,7 @@ CULT
var/list/items_to_spawn = list(/obj/item/clothing/suit/cultist_hoodie/, /obj/item/clothing/head/cultist_hood/)
/datum/action/human_action/activable/cult/obtain_equipment/action_activate()
+ . = ..()
if(!can_use_action())
return
@@ -515,6 +520,7 @@ CULT
action_icon_state = "mutineer_begin"
/datum/action/human_action/activable/mutineer/mutineer_begin/action_activate()
+ . = ..()
if(!can_use_action())
return
@@ -549,6 +555,7 @@ CULT
UnregisterSignal(L, COMSIG_MOB_RESET_VIEW)
/datum/action/human_action/cancel_view/action_activate()
+ . = ..()
if(!can_use_action())
return
@@ -575,6 +582,7 @@ CULT
UnregisterSignal(L, COMSIG_MOB_RESET_VIEW)
/datum/action/human_action/vehicle_unbuckle/action_activate()
+ . = ..()
if(!can_use_action())
return
@@ -600,6 +608,7 @@ CULT
action_icon_state = "cancel_view"
/datum/action/human_action/mg_exit/action_activate()
+ . = ..()
if(!can_use_action())
return
@@ -619,6 +628,7 @@ CULT
UnregisterSignal(user, COMSIG_MOB_RESET_VIEW)
/datum/action/human_action/toggle_arc_antenna/action_activate()
+ . = ..()
if(!can_use_action())
return
diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm
index 49e490a33507..8a528df92de5 100644
--- a/code/modules/mob/living/carbon/human/human_damage.dm
+++ b/code/modules/mob/living/carbon/human/human_damage.dm
@@ -179,7 +179,7 @@
for(var/obj/limb/O in limbs)
if(O.status & (LIMB_ROBOT|LIMB_DESTROYED|LIMB_MUTATED|LIMB_SYNTHSKIN)) continue
candidates |= O
- if(candidates.len)
+ if(length(candidates))
var/obj/limb/O = pick(candidates)
O.mutate()
to_chat(src, SPAN_NOTICE("Something is not right with your [O.display_name]..."))
@@ -260,7 +260,7 @@
//It automatically updates health status
/mob/living/carbon/human/heal_limb_damage(brute, burn)
var/list/obj/limb/parts = get_damaged_limbs(brute,burn)
- if(!parts.len)
+ if(!length(parts))
return
var/obj/limb/picked = pick(parts)
if(brute != 0)
@@ -279,7 +279,7 @@ In most cases it makes more sense to use apply_damage() instead! And make sure t
//It automatically updates health status
/mob/living/carbon/human/take_limb_damage(brute, burn, sharp = 0, edge = 0)
var/list/obj/limb/parts = get_damageable_limbs()
- if(!parts.len) return
+ if(!length(parts)) return
var/obj/limb/picked = pick(parts)
if(brute != 0)
apply_damage(brute, BRUTE, picked, sharp, edge)
@@ -294,7 +294,7 @@ In most cases it makes more sense to use apply_damage() instead! And make sure t
var/list/obj/limb/parts = get_damaged_limbs(brute,burn)
var/update = 0
- while(parts.len && (brute>0 || burn>0) )
+ while(length(parts) && (brute>0 || burn>0) )
var/obj/limb/picked = pick(parts)
var/brute_was = picked.brute_dam
diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm
index 930e31a7770f..09ce5bb9c149 100644
--- a/code/modules/mob/living/carbon/human/human_defense.dm
+++ b/code/modules/mob/living/carbon/human/human_defense.dm
@@ -194,7 +194,7 @@ Contains most of the procs that are called when a mob is attacked by something
if((user != src) && check_shields(I.force, "the [I.name]"))
return FALSE
- if(I.attack_verb && I.attack_verb.len)
+ if(LAZYLEN(I.attack_verb))
visible_message(SPAN_DANGER("[src] has been [pick(I.attack_verb)] in the [hit_area] with [I.name] by [user]!"), null, null, 5)
else
visible_message(SPAN_DANGER("[src] has been attacked in the [hit_area] with [I.name] by [user]!"), null, null, 5)
diff --git a/code/modules/mob/living/carbon/human/human_helpers.dm b/code/modules/mob/living/carbon/human/human_helpers.dm
index 7b26b256e54b..cb6ba8137a00 100644
--- a/code/modules/mob/living/carbon/human/human_helpers.dm
+++ b/code/modules/mob/living/carbon/human/human_helpers.dm
@@ -369,7 +369,7 @@
/mob/living/carbon/human/proc/has_foreign_object()
for(var/obj/limb/L in limbs)
- if(L.implants && L.implants.len > 0)
+ if(LAZYLEN(L.implants) > 0)
return TRUE
for(var/obj/item/alien_embryo/A in contents)
return TRUE
diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm
index 7183d6c802b9..7cb2d04e67de 100644
--- a/code/modules/mob/living/carbon/human/human_movement.dm
+++ b/code/modules/mob/living/carbon/human/human_movement.dm
@@ -10,7 +10,7 @@
if(species.slowdown)
. += species.slowdown
- if(embedded_items.len > 0)
+ if(length(embedded_items) > 0)
handle_embedded_objects() //Moving with objects stuck in you can cause bad times.
var/reducible_tally = 0 //Tally elements that can be reduced are put here, then we apply MST effects
diff --git a/code/modules/mob/living/carbon/human/life/handle_regular_hud_updates.dm b/code/modules/mob/living/carbon/human/life/handle_regular_hud_updates.dm
index 0772d952d082..37750b5585ea 100644
--- a/code/modules/mob/living/carbon/human/life/handle_regular_hud_updates.dm
+++ b/code/modules/mob/living/carbon/human/life/handle_regular_hud_updates.dm
@@ -198,7 +198,7 @@
hud_used.slowed_icon.name = ""
hud_used.slowed_icon.icon_state = "status_0"
- var/is_embedded = embedded_items.len
+ var/is_embedded = length(embedded_items)
if(is_embedded)
hud_used.shrapnel_icon.name = "shrapnel"
hud_used.shrapnel_icon.icon_state = "status_shrapnel"
@@ -228,7 +228,7 @@
hud_used.tethered_icon.name = ""
hud_used.tethered_icon.icon_state = "status_0"
- if(active_transfusions.len)
+ if(length(active_transfusions))
hud_used.tethered_icon.name = "transfusion"
hud_used.tethered_icon.icon_state = "status_blood"
hud_used.tethered_icon.screen_loc = ui_datum.get_status_loc(status_effect_placement)
diff --git a/code/modules/mob/living/carbon/human/say.dm b/code/modules/mob/living/carbon/human/say.dm
index 230e178378ae..c95efd8a2995 100644
--- a/code/modules/mob/living/carbon/human/say.dm
+++ b/code/modules/mob/living/carbon/human/say.dm
@@ -158,7 +158,7 @@
for(var/mob/living/M in hearers(message_range, src))
if(M != src)
- M.show_message(SPAN_NOTICE("[src] talks into [used_radios.len ? used_radios[1] : "the radio."]"), SHOW_MESSAGE_VISIBLE)
+ M.show_message(SPAN_NOTICE("[src] talks into [length(used_radios) ? used_radios[1] : "the radio."]"), SHOW_MESSAGE_VISIBLE)
if(ishumansynth_strict(src))
playsound(src.loc, 'sound/effects/radiostatic.ogg', 15, 1)
diff --git a/code/modules/mob/living/carbon/human/species/monkey.dm b/code/modules/mob/living/carbon/human/species/monkey.dm
index 8e8d2443293d..2973e4b6a556 100644
--- a/code/modules/mob/living/carbon/human/species/monkey.dm
+++ b/code/modules/mob/living/carbon/human/species/monkey.dm
@@ -70,7 +70,7 @@
for(var/obj/O in range(1,get_turf(H)))
if(O.Adjacent(H))
touchables += O
- if(touchables.len)
+ if(length(touchables))
var/obj/touchy = pick(touchables)
touchy.attack_hand(H)
diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm
index 4e2a58190f98..42338c2c40a2 100644
--- a/code/modules/mob/living/carbon/human/species/species.dm
+++ b/code/modules/mob/living/carbon/human/species/species.dm
@@ -401,7 +401,7 @@
/datum/species/proc/get_offset_overlay_image(spritesheet, mob_icon, mob_state, color, slot)
// If we don't actually need to offset this, don't bother with any of the generation/caching.
- if(!spritesheet && equip_adjust.len && equip_adjust[slot] && LAZYLEN(equip_adjust[slot]))
+ if(!spritesheet && length(equip_adjust) && equip_adjust[slot] && LAZYLEN(equip_adjust[slot]))
// Check the cache for previously made icons.
var/image_key = "[mob_icon]-[mob_state]-[color]"
diff --git a/code/modules/mob/living/carbon/human/species/working_joe/_species.dm b/code/modules/mob/living/carbon/human/species/working_joe/_species.dm
index c032e25708eb..f2c0e8d4cf26 100644
--- a/code/modules/mob/living/carbon/human/species/working_joe/_species.dm
+++ b/code/modules/mob/living/carbon/human/species/working_joe/_species.dm
@@ -50,6 +50,7 @@
/datum/action/joe_emote_panel/action_activate()
+ . = ..()
if(!can_use_action())
return
diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm
index dfb903368503..6b2739780288 100644
--- a/code/modules/mob/living/carbon/human/update_icons.dm
+++ b/code/modules/mob/living/carbon/human/update_icons.dm
@@ -476,7 +476,7 @@ Applied by gun suicide and high impact bullet executions, removed by rejuvenate,
apply_overlay(HEAD_SQUAD_LAYER)
var/num_helmet_overlays = 0
- for(var/i in 1 to marine_helmet.helmet_overlays.len)
+ for(var/i in 1 to length(marine_helmet.helmet_overlays))
// Add small numbers to the head garb layer so we don't have a layer conflict
// the i-1 bit is to make it 0-based, not 1-based like BYOND wants
overlays_standing[HEAD_GARB_LAYER + (i-1)] = image('icons/mob/humans/onmob/helmet_garb.dmi', src, marine_helmet.helmet_overlays[i])
@@ -537,7 +537,7 @@ Applied by gun suicide and high impact bullet executions, removed by rejuvenate,
overlays_standing[SUIT_SQUAD_LAYER] = squad_overlay
apply_overlay(SUIT_SQUAD_LAYER)
- if(marine_armor.armor_overlays.len)
+ if(length(marine_armor.armor_overlays))
var/image/K
var/image/IMG
for(var/i in marine_armor.armor_overlays)
diff --git a/code/modules/mob/living/carbon/human/whisper.dm b/code/modules/mob/living/carbon/human/whisper.dm
index 1293da617f24..eb5ec949cece 100644
--- a/code/modules/mob/living/carbon/human/whisper.dm
+++ b/code/modules/mob/living/carbon/human/whisper.dm
@@ -104,7 +104,7 @@
M << speech_bubble
M.hear_say(message, verb, speaking, alt_name, italics, src)
- if (eavesdropping.len)
+ if (length(eavesdropping))
var/new_message = stars(message) //hopefully passing the message twice through stars() won't hurt... I guess if you already don't understand the language, when they speak it too quietly to hear normally you would be able to catch even less.
for(var/mob/M in eavesdropping)
if(not_dead_speaker)
@@ -120,7 +120,7 @@
for(var/mob/M in eavesdropping)
if(M.client) M.client.images -= speech_bubble
- if (watching.len)
+ if (length(watching))
var/rendered = "[src.name] whispers something."
for (var/mob/M in watching)
M.show_message(rendered, SHOW_MESSAGE_AUDIBLE)
diff --git a/code/modules/mob/living/carbon/xenomorph/Embryo.dm b/code/modules/mob/living/carbon/xenomorph/Embryo.dm
index d0890bd3cf37..61ba87cd001b 100644
--- a/code/modules/mob/living/carbon/xenomorph/Embryo.dm
+++ b/code/modules/mob/living/carbon/xenomorph/Embryo.dm
@@ -191,7 +191,7 @@
if(!picked)
// Get a candidate from observers
- var/list/candidates = get_alien_candidates(hive)
+ var/list/candidates = get_alien_candidates(hive, abomination = (isyautja(affected_mob) || (flags_embryo & FLAG_EMBRYO_PREDATOR)))
if(candidates && length(candidates))
// If they were facehugged by a player thats still in queue, they get second dibs on the new larva.
if(hugger_ckey)
diff --git a/code/modules/mob/living/carbon/xenomorph/XenoOverwatch.dm b/code/modules/mob/living/carbon/xenomorph/XenoOverwatch.dm
index 1fb48f699efa..3f37845380f0 100644
--- a/code/modules/mob/living/carbon/xenomorph/XenoOverwatch.dm
+++ b/code/modules/mob/living/carbon/xenomorph/XenoOverwatch.dm
@@ -18,6 +18,7 @@
return TRUE
/datum/action/xeno_action/watch_xeno/action_activate()
+ . = ..()
var/mob/living/carbon/xenomorph/X = owner
if (!X.check_state(TRUE))
return FALSE
diff --git a/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm b/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
index 45edbfe7d9e3..e7320b17c333 100644
--- a/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
+++ b/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
@@ -15,7 +15,7 @@
if(3)
fontsize_style = "large"
- if(SSticker.mode && SSticker.mode.xenomorphs.len) //Send to only xenos in our gamemode list. This is faster than scanning all mobs
+ if(SSticker.mode && length(SSticker.mode.xenomorphs)) //Send to only xenos in our gamemode list. This is faster than scanning all mobs
for(var/datum/mind/L in SSticker.mode.xenomorphs)
var/mob/living/carbon/M = L.current
if(M && istype(M) && !M.stat && M.client && (!hivenumber || M.hivenumber == hivenumber)) //Only living and connected xenos
@@ -26,7 +26,7 @@
if(text == "" || !hivenumber)
return //Logic
- if(SSticker.mode && SSticker.mode.xenomorphs.len) //Send to only xenos in our gamemode list. This is faster than scanning all mobs
+ if(SSticker.mode && length(SSticker.mode.xenomorphs)) //Send to only xenos in our gamemode list. This is faster than scanning all mobs
for(var/datum/mind/living in SSticker.mode.xenomorphs)
var/mob/living/carbon/xenomorph/xeno = living.current
if(istype(xeno) && !xeno.stat && xeno.client && xeno.hivenumber == hivenumber) //Only living and connected xenos
@@ -264,7 +264,7 @@
/mob/living/carbon/xenomorph/proc/pounced_mob(mob/living/L)
// This should only be called back by a mob that has pounce, so no need to check
- var/datum/action/xeno_action/activable/pounce/pounceAction = get_xeno_action_by_type(src, /datum/action/xeno_action/activable/pounce)
+ var/datum/action/xeno_action/activable/pounce/pounceAction = get_action(src, /datum/action/xeno_action/activable/pounce)
// Unconscious or dead, or not throwing but used pounce.
if(!check_state() || (!throwing && !pounceAction.action_cooldown_check()))
@@ -336,7 +336,7 @@
pounced_mob(L)
/mob/living/carbon/xenomorph/proc/pounced_obj(obj/O)
- var/datum/action/xeno_action/activable/pounce/pounceAction = get_xeno_action_by_type(src, /datum/action/xeno_action/activable/pounce)
+ var/datum/action/xeno_action/activable/pounce/pounceAction = get_action(src, /datum/action/xeno_action/activable/pounce)
// Unconscious or dead, or not throwing but used pounce
if(!check_state() || (!throwing && !pounceAction.action_cooldown_check()))
@@ -370,13 +370,13 @@
//Bleuugh
/mob/living/carbon/xenomorph/proc/empty_gut()
- if(stomach_contents.len)
+ if(length(stomach_contents))
for(var/atom/movable/S in stomach_contents)
stomach_contents.Remove(S)
S.acid_damage = 0 //Reset the acid damage
S.forceMove(get_true_turf(src))
- if(contents.len) //Get rid of anything that may be stuck inside us as well
+ if(length(contents)) //Get rid of anything that may be stuck inside us as well
for(var/atom/movable/A in contents)
A.forceMove(get_true_turf(src))
@@ -392,7 +392,7 @@
update_sight()
/mob/living/carbon/xenomorph/proc/regurgitate(mob/living/victim, stuns = FALSE)
- if(stomach_contents.len)
+ if(length(stomach_contents))
if(victim)
stomach_contents.Remove(victim)
victim.acid_damage = 0
diff --git a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
index b07f766b179d..eed2dce5f7a8 100644
--- a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
+++ b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
@@ -343,6 +343,8 @@
var/atom/movable/vis_obj/xeno_wounds/wound_icon_holder
var/atom/movable/vis_obj/xeno_pack/backpack_icon_holder
+ /// If TRUE, the xeno cannot slash anything
+ var/cannot_slash = FALSE
/mob/living/carbon/xenomorph/Initialize(mapload, mob/living/carbon/xenomorph/old_xeno, hivenumber)
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm b/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm
index 0472dd9901b2..87657af5ce7a 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm
@@ -289,7 +289,7 @@
for(var/turf/T in turflist)
distance++
- if(!prev_turf && turflist.len > 1)
+ if(!prev_turf && length(turflist) > 1)
prev_turf = get_turf(src)
continue //So we don't burn the tile we be standin on
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_powers.dm
index c749b0adb5ba..2431e4629876 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_powers.dm
@@ -108,7 +108,7 @@
var/mob/living/carbon/xenomorph/xeno = owner
if(!action_cooldown_check()) // activate c/d only if we already spit
for (var/action_type in action_types_to_cd)
- var/datum/action/xeno_action/xeno_action = get_xeno_action_by_type(xeno, action_type)
+ var/datum/action/xeno_action/xeno_action = get_action(xeno, action_type)
if (!istype(xeno_action))
continue
@@ -149,7 +149,7 @@
to_chat(xeno, SPAN_XENOHIGHDANGER("We dump our acid through our pores, creating a shroud of gas!"))
for (var/action_type in action_types_to_cd)
- var/datum/action/xeno_action/xeno_action = get_xeno_action_by_type(xeno, action_type)
+ var/datum/action/xeno_action/xeno_action = get_action(xeno, action_type)
if (!istype(xeno_action))
continue
@@ -218,7 +218,7 @@
empowered = FALSE
empowering_charge_counter = 0
button.overlays -= "+empowered"
- var/datum/action/xeno_action/activable/acid_mine/mine = get_xeno_action_by_type(xeno, /datum/action/xeno_action/activable/acid_mine)
+ var/datum/action/xeno_action/activable/acid_mine/mine = get_action(xeno, /datum/action/xeno_action/activable/acid_mine)
if(!mine.empowered)
mine.empowered = TRUE
mine.button.overlays += "+empowered"
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm
index ee084e77a5a0..8117eade469a 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm
@@ -36,6 +36,7 @@
// TODO Make immune to all damage here.
to_chat(src, SPAN_XENOWARNING("We burrow ourselves into the ground."))
invisibility = 101
+ alpha = 100
anchored = TRUE
if(caste.fire_immunity == FIRE_IMMUNITY_NONE)
RegisterSignal(src, COMSIG_LIVING_PREIGNITION, PROC_REF(fire_immune))
@@ -72,6 +73,7 @@
))
remove_traits(list(TRAIT_ABILITY_BURROWED, TRAIT_UNDENSE, TRAIT_IMMOBILIZED), TRAIT_SOURCE_ABILITY("Burrow"))
invisibility = FALSE
+ alpha = initial(alpha)
anchored = FALSE
playsound(loc, 'sound/effects/burrowoff.ogg', 25)
for(var/mob/living/carbon/mob in loc)
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_powers.dm
index e1af5e36a40f..1dd4dc5a1c87 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_powers.dm
@@ -82,7 +82,7 @@
// This ties the pounce/throwing backend into the old collision backend
/mob/living/carbon/xenomorph/crusher/pounced_obj(obj/O)
- var/datum/action/xeno_action/activable/pounce/crusher_charge/CCA = get_xeno_action_by_type(src, /datum/action/xeno_action/activable/pounce/crusher_charge)
+ var/datum/action/xeno_action/activable/pounce/crusher_charge/CCA = get_action(src, /datum/action/xeno_action/activable/pounce/crusher_charge)
if (istype(CCA) && !CCA.action_cooldown_check() && !(O.type in CCA.not_reducing_objects))
CCA.reduce_cooldown(50)
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_powers.dm
index d7a4f987623a..8736d612c822 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_powers.dm
@@ -183,6 +183,7 @@
return ..()
/datum/action/xeno_action/activable/fortify/action_activate()
+ . = ..()
..()
var/mob/living/carbon/xenomorph/xeno = owner
if(xeno.fortify && xeno.selected_ability != src)
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm
index 39b05b964648..b262624bfe01 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm
@@ -485,6 +485,7 @@
listen_signal = COMSIG_KB_XENO_EVOLVE
/datum/action/xeno_action/onclick/evolve/action_activate()
+ . = ..()
var/mob/living/carbon/xenomorph/xeno = owner
xeno.do_evolve()
@@ -566,3 +567,18 @@
var/mob/living/carbon/xenomorph/xeno = owner
xeno.xeno_tacmap()
return ..()
+
+/datum/action/xeno_action/active_toggle/toggle_meson_vision
+ name = "Toggle Meson Vision"
+ action_icon_state = "project_xeno"
+ plasma_cost = 0
+ action_type = XENO_ACTION_CLICK
+ ability_primacy = XENO_PRIMARY_ACTION_5
+
+/datum/action/xeno_action/active_toggle/toggle_meson_vision/enable_toggle()
+ . = ..()
+ owner.sight |= SEE_TURFS
+
+/datum/action/xeno_action/active_toggle/toggle_meson_vision/disable_toggle()
+ . = ..()
+ owner.sight &= ~SEE_TURFS
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm
index 4bd70a93684f..843cfeac540b 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm
@@ -111,9 +111,9 @@
var/mob/living/carbon/xenomorph/X = owner
if(!X.check_state())
return
- for(var/i in 1 to X.caste.spit_types.len)
+ for(var/i in 1 to length(X.caste.spit_types))
if(X.ammo == GLOB.ammo_list[X.caste.spit_types[i]])
- if(i == X.caste.spit_types.len)
+ if(i == length(X.caste.spit_types))
X.ammo = GLOB.ammo_list[X.caste.spit_types[1]]
else
X.ammo = GLOB.ammo_list[X.caste.spit_types[i+1]]
@@ -132,7 +132,7 @@
to_chat(X, SPAN_WARNING("We cannot regurgitate here."))
return
- if(X.stomach_contents.len)
+ if(length(X.stomach_contents))
for(var/mob/living/M in X.stomach_contents)
// Also has good reason to be a proc on all Xenos
X.regurgitate(M, TRUE)
@@ -367,7 +367,7 @@
SEND_SIGNAL(src, COMSIG_XENO_START_EMIT_PHEROMONES, pheromone)
playsound(loc, "alien_drool", 25)
- if(isqueen(src) && hive && hive.xeno_leader_list.len && anchored)
+ if(isqueen(src) && hive && length(hive.xeno_leader_list) && anchored)
for(var/mob/living/carbon/xenomorph/L in hive.xeno_leader_list)
L.handle_xeno_leader_pheromones()
@@ -398,7 +398,7 @@
return
if(X.layer == XENO_HIDING_LAYER) //Xeno is currently hiding, unhide him
- var/datum/action/xeno_action/onclick/xenohide/hide = get_xeno_action_by_type(X, /datum/action/xeno_action/onclick/xenohide)
+ var/datum/action/xeno_action/onclick/xenohide/hide = get_action(X, /datum/action/xeno_action/onclick/xenohide)
if(hide)
hide.post_attack()
@@ -911,7 +911,7 @@
to_chat(stabbing_xeno, SPAN_XENOWARNING("We must be above ground to do this."))
return
- if(!stabbing_xeno.check_state())
+ if(!stabbing_xeno.check_state() || stabbing_xeno.cannot_slash)
return FALSE
var/pre_result = pre_ability_act(stabbing_xeno, targetted_atom)
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm
index 094732300a1f..3c1d3a04543d 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm
@@ -13,7 +13,7 @@
break
if(found)
- var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis = get_xeno_action_by_type(xeno, /datum/action/xeno_action/onclick/lurker_invisibility)
+ var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis = get_action(xeno, /datum/action/xeno_action/onclick/lurker_invisibility)
if(lurker_invis)
lurker_invis.invisibility_off() // Full cooldown
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm
index 199df345fb62..4fe0e9107995 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm
@@ -87,7 +87,7 @@
if(!X.check_state(1))
return
- var/datum/action/xeno_action/activable/cleave/cAction = get_xeno_action_by_type(X, /datum/action/xeno_action/activable/cleave)
+ var/datum/action/xeno_action/activable/cleave/cAction = get_action(X, /datum/action/xeno_action/activable/cleave)
if (!istype(cAction))
return
@@ -328,7 +328,7 @@
if(!X.check_state(1))
return
- var/datum/action/xeno_action/activable/warden_heal/WH = get_xeno_action_by_type(X, /datum/action/xeno_action/activable/warden_heal)
+ var/datum/action/xeno_action/activable/warden_heal/WH = get_action(X, /datum/action/xeno_action/activable/warden_heal)
if (!istype(WH))
return
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm
index d9e342c1f7e6..3cbf0769514f 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm
@@ -69,7 +69,7 @@
current_mob.apply_armoured_damage(get_xeno_damage_slash(current_mob, damage), ARMOR_MELEE, BRUTE, null, 20)
playsound(current_mob, 'sound/weapons/alien_tail_attack.ogg', 30, TRUE)
- if (target_mobs.len >= shield_regen_threshold)
+ if (length(target_mobs) >= shield_regen_threshold)
var/datum/behavior_delegate/praetorian_vanguard/behavior = source_xeno.behavior_delegate
if (istype(behavior))
behavior.regen_shield()
@@ -133,7 +133,7 @@
H.apply_armoured_damage(get_xeno_damage_slash(H, damage), ARMOR_MELEE, BRUTE)
playsound(get_turf(H), "alien_claw_flesh", 30, 1)
- if (target_mobs.len >= shield_regen_threshold)
+ if (length(target_mobs) >= shield_regen_threshold)
var/datum/behavior_delegate/praetorian_vanguard/behavior = X.behavior_delegate
if (istype(behavior))
behavior.regen_shield()
@@ -418,8 +418,8 @@
shake_camera(target_carbon, 2, 1)
- var/datum/action/xeno_action/activable/prae_abduct/abduct_action = get_xeno_action_by_type(oppressor_user, /datum/action/xeno_action/activable/prae_abduct)
- var/datum/action/xeno_action/activable/tail_lash/tail_lash_action = get_xeno_action_by_type(oppressor_user, /datum/action/xeno_action/activable/tail_lash)
+ var/datum/action/xeno_action/activable/prae_abduct/abduct_action = get_action(oppressor_user, /datum/action/xeno_action/activable/prae_abduct)
+ var/datum/action/xeno_action/activable/tail_lash/tail_lash_action = get_action(oppressor_user, /datum/action/xeno_action/activable/tail_lash)
if(abduct_action && !abduct_action.action_cooldown_check())
abduct_action.reduce_cooldown(5 SECONDS)
if(tail_lash_action && !tail_lash_action.action_cooldown_check())
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm
index 3ec4855f9c3a..a240c3928a3c 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm
@@ -117,7 +117,7 @@
xeno.anchored = FALSE
unroot_human(carbon, TRAIT_SOURCE_ABILITY("Devastate"))
- return ..()
+ return ..()
/datum/action/xeno_action/onclick/feralrush/use_ability(atom/A)
@@ -149,6 +149,7 @@
predatoralien.recalculate_armor()
playsound(predatoralien, 'sound/voice/predalien_growl.ogg', 75, 0, status = 0)
apply_cooldown()
+ return ..()
/datum/action/xeno_action/onclick/feralrush/proc/remove_rush_effects()
@@ -180,7 +181,7 @@
if(!xeno.check_state())
return
- var/datum/action/xeno_action/activable/feralfrenzy/guttype = get_xeno_action_by_type(xeno, /datum/action/xeno_action/activable/feralfrenzy)
+ var/datum/action/xeno_action/activable/feralfrenzy/guttype = get_action(xeno, /datum/action/xeno_action/activable/feralfrenzy)
if(!guttype)
return
@@ -248,7 +249,7 @@
else
predalien_smash.visible_message(SPAN_XENOWARNING("[predalien_smash]'s claws twitch."), SPAN_XENOWARNING("We couldn't grab our target. Wait a moment to try again."))
- return TRUE
+ return ..()
/mob/living/carbon/xenomorph/predalien/stop_pulling()
if(isliving(pulling) && smashing)
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm
index 0ee1cf6b3c27..6ef111aed66f 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm
@@ -216,8 +216,8 @@
return
var/datum/hive_status/hive = X.hive
if(X.observed_xeno)
- if(!hive.open_xeno_leader_positions.len && X.observed_xeno.hive_pos == NORMAL_XENO)
- to_chat(X, SPAN_XENOWARNING("You currently have [hive.xeno_leader_list.len] promoted leaders. You may not maintain additional leaders until your power grows."))
+ if(!length(hive.open_xeno_leader_positions) && X.observed_xeno.hive_pos == NORMAL_XENO)
+ to_chat(X, SPAN_XENOWARNING("You currently have [length(hive.xeno_leader_list)] promoted leaders. You may not maintain additional leaders until your power grows."))
return
var/mob/living/carbon/xenomorph/T = X.observed_xeno
if(T == X)
@@ -239,12 +239,12 @@
for(var/mob/living/carbon/xenomorph/T in hive.xeno_leader_list)
possible_xenos += T
- if(possible_xenos.len > 1)
+ if(length(possible_xenos) > 1)
var/mob/living/carbon/xenomorph/selected_xeno = tgui_input_list(X, "Target", "Watch which leader?", possible_xenos, theme="hive_status")
if(!selected_xeno || selected_xeno.hive_pos == NORMAL_XENO || selected_xeno == X.observed_xeno || selected_xeno.stat == DEAD || selected_xeno.z != X.z || !X.check_state())
return
X.overwatch(selected_xeno)
- else if(possible_xenos.len)
+ else if(length(possible_xenos))
X.overwatch(possible_xenos[1])
else
to_chat(X, SPAN_XENOWARNING("There are no Xenomorph leaders. Overwatch a Xenomorph to make it a leader."))
@@ -401,6 +401,7 @@
remove_personal_ally()
if("Clear Personal Allies")
clear_personal_allies()
+ return ..()
/datum/action/xeno_action/onclick/manage_hive/proc/add_personal_ally()
var/mob/living/carbon/xenomorph/queen/user_xeno = owner
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm b/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm
index 80cf5c1e37ac..bff59186fd04 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm
@@ -51,6 +51,7 @@
// Any strain or caste-specific state should be stored on behavior_delegate objects
// which use_ability invocations can modify using typechecks and typecasts where appropriate.
/datum/action/xeno_action/proc/use_ability(atom/target)
+ SHOULD_CALL_PARENT(TRUE)
if(!owner)
return FALSE
track_xeno_ability_stats()
@@ -129,10 +130,17 @@
/// A wrapper for use_ability that sends a signal
/datum/action/xeno_action/proc/use_ability_wrapper(...)
// TODO: make hidden a part of can_use_action
- if(!hidden && can_use_action() && use_ability(arglist(args)))
+ if(!can_use_action())
+ SEND_SIGNAL(src, COMSIG_XENO_FAILED_ACTION_USED, owner)
+ return FALSE
+
+ SEND_SIGNAL(src, COMSIG_XENO_PRE_ACTION_USED, owner)
+
+ if(!hidden && use_ability(arglist(args)))
SEND_SIGNAL(src, COMSIG_XENO_ACTION_USED, owner)
return TRUE
+ SEND_SIGNAL(src, COMSIG_XENO_FAILED_ACTION_USED, owner)
return FALSE
// For actions that do something on each life tick
@@ -150,6 +158,7 @@
// For non-activable Xeno actions, this is used to
// actually DO the action.
/datum/action/xeno_action/activable/action_activate()
+ . = ..()
if(!owner)
return
if(hidden)
@@ -201,6 +210,7 @@
no_cooldown_msg = TRUE
/datum/action/xeno_action/onclick/action_activate()
+ . = ..()
use_ability_wrapper(null)
// Adds a cooldown to this
@@ -362,17 +372,6 @@
deltimer(charge_timer_id)
charge_timer_id = TIMER_ID_NULL
-// Helper proc to get an action on a target Xeno by type.
-// Used to interact with abilities from the outside
-/proc/get_xeno_action_by_type(mob/living/carbon/xenomorph/X, typepath)
- if (!istype(X))
- CRASH("xeno_action.dm: get_xeno_action_by_type invoked with non-xeno first argument.")
-
- for (var/datum/action/xeno_action/XA in X.actions)
- if (istype(XA, typepath))
- return XA
- return null
-
// Helper proc to check if there is anything blocking the way from mob M to the atom A
// Max distance can be supplied to check some of the way instead of the whole way.
/proc/check_clear_path_to_target(mob/M, atom/A, smash_windows = TRUE, max_distance = 1000)
@@ -420,6 +419,7 @@
return FALSE
/datum/action/xeno_action/active_toggle/action_activate()
+ . = ..()
toggle_toggle()
/datum/action/xeno_action/active_toggle/life_tick()
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Burrower.dm b/code/modules/mob/living/carbon/xenomorph/castes/Burrower.dm
index 294817f5e74e..106dcdcacb62 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Burrower.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Burrower.dm
@@ -66,6 +66,7 @@
/datum/action/xeno_action/onclick/place_trap, //second macro
/datum/action/xeno_action/activable/burrow, //third macro
/datum/action/xeno_action/onclick/tremor, //fourth macro
+ /datum/action/xeno_action/active_toggle/toggle_meson_vision,
/datum/action/xeno_action/onclick/tacmap,
)
@@ -82,10 +83,6 @@
weed_food_states = list("Burrower_1","Burrower_2","Burrower_3")
weed_food_states_flipped = list("Burrower_1","Burrower_2","Burrower_3")
-/mob/living/carbon/xenomorph/burrower/Initialize(mapload, mob/living/carbon/xenomorph/oldxeno, h_number)
- . = ..()
- sight |= SEE_TURFS
-
/mob/living/carbon/xenomorph/burrower/ex_act(severity)
if(HAS_TRAIT(src, TRAIT_ABILITY_BURROWED))
return
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm b/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm
index 7ccab754d6dd..a84b9965f9c3 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm
@@ -184,7 +184,7 @@
. = FALSE
else if (O.anchored)
visible_message(SPAN_DANGER("[src] crushes [O]!"), SPAN_XENODANGER("We crush [O]!"))
- if(O.contents.len) //Hopefully won't auto-delete things inside crushed stuff.
+ if(length(O.contents)) //Hopefully won't auto-delete things inside crushed stuff.
var/turf/T = get_turf(src)
for(var/atom/movable/S in T.contents) S.forceMove(T)
@@ -261,11 +261,11 @@
H.apply_armoured_damage(get_xeno_damage_slash(H, damage), ARMOR_MELEE, BRUTE, bound_xeno.zone_selected)
- var/datum/action/xeno_action/activable/pounce/crusher_charge/cAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pounce/crusher_charge)
+ var/datum/action/xeno_action/activable/pounce/crusher_charge/cAction = get_action(bound_xeno, /datum/action/xeno_action/activable/pounce/crusher_charge)
if (!cAction.action_cooldown_check())
cAction.reduce_cooldown(cdr_amount)
- var/datum/action/xeno_action/onclick/crusher_shield/sAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/crusher_shield)
+ var/datum/action/xeno_action/onclick/crusher_shield/sAction = get_action(bound_xeno, /datum/action/xeno_action/onclick/crusher_shield)
if (!sAction.action_cooldown_check())
sAction.reduce_cooldown(base_cdr_amount)
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm b/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm
index b5f8bdd17213..9d42eb982d2e 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm
@@ -1,8 +1,8 @@
/datum/caste_datum/facehugger
caste_type = XENO_CASTE_FACEHUGGER
tier = 0
- plasma_gain = 0.1
- plasma_max = 10
+ plasma_gain = XENO_PLASMA_GAIN_TIER_1
+ plasma_max = XENO_NO_PLASMA
melee_damage_lower = 5
melee_damage_upper = 5
max_health = XENO_HEALTH_LARVA
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Hellhound.dm b/code/modules/mob/living/carbon/xenomorph/castes/Hellhound.dm
index 93d40820bf7b..7df87f63cf3a 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Hellhound.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Hellhound.dm
@@ -136,6 +136,6 @@
/datum/behavior_delegate/hellhound_base/melee_attack_additional_effects_self()
..()
- var/datum/action/xeno_action/onclick/xenohide/hide = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/xenohide)
+ var/datum/action/xeno_action/onclick/xenohide/hide = get_action(bound_xeno, /datum/action/xeno_action/onclick/xenohide)
if(hide)
hide.post_attack()
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm b/code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm
index 43fb8b4976f2..8024ed366405 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm
@@ -71,6 +71,7 @@
/datum/action/xeno_action/activable/secrete_resin/hivelord, //third macro
/datum/action/xeno_action/activable/transfer_plasma/hivelord, // to be consistent with drone placement
/datum/action/xeno_action/active_toggle/toggle_speed, //fourth macro
+ /datum/action/xeno_action/active_toggle/toggle_meson_vision,
/datum/action/xeno_action/onclick/tacmap,
)
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm b/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm
index a3e856c7fc67..8dc427e2c55e 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm
@@ -37,6 +37,7 @@
crit_health = -25
gib_chance = 25
mob_size = MOB_SIZE_SMALL
+ speaking_noise = "larva_talk"
base_actions = list(
/datum/action/xeno_action/onclick/xeno_resting,
/datum/action/xeno_action/watch_xeno,
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm b/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm
index 0ab9e9862b16..1dca7eb23f70 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm
@@ -87,7 +87,7 @@
original_damage *= buffed_slash_damage_ratio
target_carbon.set_effect(get_xeno_stun_duration(target_carbon, 3), SUPERSLOW)
next_slash_buffed = FALSE
- var/datum/action/xeno_action/onclick/lurker_assassinate/ability = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_assassinate)
+ var/datum/action/xeno_action/onclick/lurker_assassinate/ability = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_assassinate)
if (ability)
ability.button.icon_state = "template"
@@ -114,19 +114,19 @@
/datum/behavior_delegate/lurker_base/melee_attack_additional_effects_self()
..()
- var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility)
+ var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility)
if (lurker_invis_action)
lurker_invis_action.invisibility_off() // Full cooldown
/datum/behavior_delegate/lurker_base/proc/decloak_handler(mob/source)
SIGNAL_HANDLER
- var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility)
+ var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility)
if(istype(lurker_invis_action))
lurker_invis_action.invisibility_off(0.5) // Partial refund of remaining time
/// Implementation for enabling invisibility.
/datum/behavior_delegate/lurker_base/proc/on_invisibility()
- var/datum/action/xeno_action/activable/pounce/lurker/lurker_pounce_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pounce/lurker)
+ var/datum/action/xeno_action/activable/pounce/lurker/lurker_pounce_action = get_action(bound_xeno, /datum/action/xeno_action/activable/pounce/lurker)
if(lurker_pounce_action)
lurker_pounce_action.knockdown = TRUE // pounce knocks down
lurker_pounce_action.freeze_self = TRUE
@@ -137,7 +137,7 @@
/// Implementation for disabling invisibility.
/datum/behavior_delegate/lurker_base/proc/on_invisibility_off()
- var/datum/action/xeno_action/activable/pounce/lurker/lurker_pounce_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pounce/lurker)
+ var/datum/action/xeno_action/activable/pounce/lurker/lurker_pounce_action = get_action(bound_xeno, /datum/action/xeno_action/activable/pounce/lurker)
if(lurker_pounce_action)
lurker_pounce_action.knockdown = FALSE // pounce no longer knocks down
lurker_pounce_action.freeze_self = FALSE
@@ -155,7 +155,7 @@
. += "Invisibility Remaining: [time_left] second\s."
return
- var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invisibility_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility)
+ var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invisibility_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility)
if(!lurker_invisibility_action)
return
@@ -177,7 +177,7 @@
if(!bound_xeno || !bound_xeno.stealth)
return
- var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invisibility_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility)
+ var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invisibility_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility)
if(!lurker_invisibility_action)
return
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm b/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm
index 830f4fc5a9cf..b60f150c442d 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm
@@ -69,16 +69,19 @@
weed_food_states = list("Predalien_1","Predalien_2","Predalien_3")
weed_food_states_flipped = list("Predalien_1","Predalien_2","Predalien_3")
var/smashing = FALSE
+ /// If the pred alert/player notif should happen when the predalien spawns
+ var/should_announce_spawn = TRUE
/mob/living/carbon/xenomorph/predalien/Initialize(mapload, mob/living/carbon/xenomorph/oldxeno, h_number)
. = ..()
- addtimer(CALLBACK(src, PROC_REF(announce_spawn)), 3 SECONDS)
- hunter_data.dishonored = TRUE
- hunter_data.dishonored_reason = "An abomination upon the honor of us all!"
- hunter_data.dishonored_set = src
- hud_set_hunter()
+ if(should_announce_spawn)
+ addtimer(CALLBACK(src, PROC_REF(announce_spawn)), 3 SECONDS)
+ hunter_data.dishonored = TRUE
+ hunter_data.dishonored_reason = "An abomination upon the honor of us all!"
+ hunter_data.dishonored_set = src
+ hud_set_hunter()
AddComponent(/datum/component/footstep, 4, 25, 11, 2, "alien_footstep_medium")
@@ -102,8 +105,20 @@ You must still listen to the queen.
/mob/living/carbon/xenomorph/predalien/resist_fire()
- ..()
- SetKnockDown(0.1 SECONDS)
+ ..()
+ SetKnockDown(0.1 SECONDS)
+
+/mob/living/carbon/xenomorph/predalien/get_examine_text(mob/user)
+ . = ..()
+ var/datum/behavior_delegate/predalien_base/predalienkills = behavior_delegate
+ . += "It has [predalienkills.kills] kills to its name!"
+
+/mob/living/carbon/xenomorph/predalien/tutorial
+ should_announce_spawn = FALSE
+
+/mob/living/carbon/xenomorph/predalien/tutorial/gib(datum/cause_data/cause = create_cause_data("gibbing", src))
+ death(cause, gibbed = TRUE)
+
/datum/behavior_delegate/predalien_base
name = "Base Predalien Behavior Delegate"
@@ -127,12 +142,3 @@ You must still listen to the queen.
original_damage *= 1.5
return original_damage + kills * 2.5
-
-/mob/living/carbon/xenomorph/predalien/get_examine_text(mob/user)
- . = ..()
- var/datum/behavior_delegate/predalien_base/predalienkills = behavior_delegate
- var/kills = predalienkills.kills
- . += "It has [kills] kills to its name!"
-
-
-
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm b/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm
index 532f77d1bec2..a66903a938c5 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm
@@ -534,14 +534,14 @@
if(egg_amount >= 1)
if(isturf(loc))
var/turf/T = loc
- if(T.contents.len <= 25) //so we don't end up with a million object on that turf.
+ if(length(T.contents) <= 25) //so we don't end up with a million object on that turf.
egg_amount--
new /obj/item/xeno_egg(loc, hivenumber)
/mob/living/carbon/xenomorph/queen/get_status_tab_items()
. = ..()
var/stored_larvae = GLOB.hive_datum[hivenumber].stored_larva
- var/xeno_leader_num = hive?.queen_leader_limit - hive?.open_xeno_leader_positions.len
+ var/xeno_leader_num = hive?.queen_leader_limit - length(hive?.open_xeno_leader_positions)
. += "Pooled Larvae: [stored_larvae]"
. += "Leaders: [xeno_leader_num] / [hive?.queen_leader_limit]"
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Ravager.dm b/code/modules/mob/living/carbon/xenomorph/castes/Ravager.dm
index 6e5da79fbed1..90614e338071 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Ravager.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Ravager.dm
@@ -90,7 +90,7 @@
/datum/behavior_delegate/ravager_base/melee_attack_additional_effects_self()
..()
- var/datum/action/xeno_action/activable/pounce/charge/cAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pounce/charge)
+ var/datum/action/xeno_action/activable/pounce/charge/cAction = get_action(bound_xeno, /datum/action/xeno_action/activable/pounce/charge)
if (!cAction.action_cooldown_check())
cAction.reduce_cooldown(slash_charge_cdr)
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm b/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm
index 8721294173e9..12fdb8d02843 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm
@@ -91,6 +91,6 @@
/datum/behavior_delegate/runner_base/melee_attack_additional_effects_self()
..()
- var/datum/action/xeno_action/onclick/xenohide/hide = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/xenohide)
+ var/datum/action/xeno_action/onclick/xenohide/hide = get_action(bound_xeno, /datum/action/xeno_action/onclick/xenohide)
if(hide)
hide.post_attack()
diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm b/code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm
index 01963496f967..3e7416f39fc5 100644
--- a/code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm
+++ b/code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm
@@ -95,7 +95,7 @@
addtimer(CALLBACK(src, PROC_REF(paralyzing_slash), carbon_target), NEURO_TOUCH_DELAY)
next_slash_buffed = FALSE
if(!next_slash_buffed)
- var/datum/action/xeno_action/onclick/paralyzing_slash/ability = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/paralyzing_slash)
+ var/datum/action/xeno_action/onclick/paralyzing_slash/ability = get_action(bound_xeno, /datum/action/xeno_action/onclick/paralyzing_slash)
if (ability && istype(ability))
ability.button.icon_state = "template"
return original_damage
diff --git a/code/modules/mob/living/carbon/xenomorph/damage_procs.dm b/code/modules/mob/living/carbon/xenomorph/damage_procs.dm
index 2b1ef0aca867..4c97ce20b4eb 100644
--- a/code/modules/mob/living/carbon/xenomorph/damage_procs.dm
+++ b/code/modules/mob/living/carbon/xenomorph/damage_procs.dm
@@ -54,7 +54,7 @@
last_damage_data = istype(cause_data) ? cause_data : create_cause_data(cause_data)
- if(severity > EXPLOSION_THRESHOLD_LOW && stomach_contents.len)
+ if(severity > EXPLOSION_THRESHOLD_LOW && length(stomach_contents))
for(var/mob/M in stomach_contents)
M.ex_act(severity - EXPLOSION_THRESHOLD_LOW, last_damage_data, pierce)
@@ -170,7 +170,7 @@
return
var/shielded = FALSE
- if(xeno_shields.len != 0 && damage > 0)
+ if(length(xeno_shields) != 0 && damage > 0)
shielded = TRUE
for(var/datum/xeno_shield/XS in xeno_shields)
damage = XS.on_hit(damage)
diff --git a/code/modules/mob/living/carbon/xenomorph/hive_status.dm b/code/modules/mob/living/carbon/xenomorph/hive_status.dm
index 4782bcd8b288..9c8b54dad483 100644
--- a/code/modules/mob/living/carbon/xenomorph/hive_status.dm
+++ b/code/modules/mob/living/carbon/xenomorph/hive_status.dm
@@ -292,15 +292,15 @@
//No leaders for a Hive without a Queen!
queen_leader_limit = living_xeno_queen ? 4 : 0
- if (xeno_leader_list.len > queen_leader_limit)
+ if (length(xeno_leader_list) > queen_leader_limit)
var/diff = 0
- for (var/i in queen_leader_limit + 1 to xeno_leader_list.len)
+ for (var/i in queen_leader_limit + 1 to length(xeno_leader_list))
if(!open_xeno_leader_positions.Remove(i))
remove_hive_leader(xeno_leader_list[i])
diff++
xeno_leader_list.len -= diff // Changing the size of xeno_leader_list needs to go at the end or else it won't iterate through the list properly
- else if (xeno_leader_list.len < queen_leader_limit)
- for (var/i in xeno_leader_list.len + 1 to queen_leader_limit)
+ else if (length(xeno_leader_list) < queen_leader_limit)
+ for (var/i in length(xeno_leader_list) + 1 to queen_leader_limit)
open_xeno_leader_positions += i
xeno_leader_list.len++
@@ -309,7 +309,7 @@
/datum/hive_status/proc/add_hive_leader(mob/living/carbon/xenomorph/xeno)
if(!xeno)
return FALSE //How did this even happen?
- if(!open_xeno_leader_positions.len)
+ if(!length(open_xeno_leader_positions))
return FALSE //Too many leaders already (no available xeno leader positions)
if(xeno.hive_pos != NORMAL_XENO)
return FALSE //Already on the list
@@ -342,7 +342,7 @@
// Need to maintain ascending order of open_xeno_leader_positions
for (var/i in 1 to queen_leader_limit)
- if (i > open_xeno_leader_positions.len || open_xeno_leader_positions[i] > leader_num)
+ if (i > length(open_xeno_leader_positions) || open_xeno_leader_positions[i] > leader_num)
open_xeno_leader_positions.Insert(i, leader_num)
break
@@ -626,7 +626,7 @@
/datum/hive_status/proc/has_structure(structure_name)
if(!structure_name)
return FALSE
- if(hive_structures[structure_name] && hive_structures[structure_name].len)
+ if(LAZYLEN(hive_structures[structure_name]))
return TRUE
return FALSE
@@ -636,7 +636,7 @@
var/name_ref = initial(S.template.name)
if(!hive_constructions[name_ref])
hive_constructions[name_ref] = list()
- if(hive_constructions[name_ref].len >= hive_structures_limit[name_ref])
+ if(length(hive_constructions[name_ref]) >= hive_structures_limit[name_ref])
return FALSE
hive_constructions[name_ref] += src
return TRUE
@@ -654,7 +654,7 @@
var/name_ref = initial(S.name)
if(!hive_structures[name_ref])
hive_structures[name_ref] = list()
- if(hive_structures[name_ref].len >= hive_structures_limit[name_ref])
+ if(length(hive_structures[name_ref]) >= hive_structures_limit[name_ref])
return FALSE
hive_structures[name_ref] += S
return TRUE
@@ -667,9 +667,9 @@
return TRUE
/datum/hive_status/proc/has_special_structure(name_ref)
- if(!name_ref || !hive_structures[name_ref] || !hive_structures[name_ref].len)
+ if(!name_ref || !LAZYLEN(hive_structures[name_ref]))
return 0
- return hive_structures[name_ref].len
+ return length(hive_structures[name_ref])
/datum/hive_status/proc/abandon_on_hijack()
var/area/hijacked_dropship = get_area(living_xeno_queen)
@@ -686,7 +686,7 @@
if(get_area(xeno) != hijacked_dropship && xeno.loc && is_ground_level(xeno.loc.z))
if(isfacehugger(xeno) || islesserdrone(xeno))
to_chat(xeno, SPAN_XENOANNOUNCE("The Queen has left without you, you quickly find a hiding place to enter hibernation as you lose touch with the hive mind."))
- if(xeno.stomach_contents.len)
+ if(length(xeno.stomach_contents))
xeno.devour_timer = 0
xeno.handle_stomach_contents()
qdel(xeno)
@@ -696,7 +696,7 @@
xeno.set_hive_and_update(XENO_HIVE_FORSAKEN)
else
to_chat(xeno, SPAN_XENOANNOUNCE("The Queen has left without you, you quickly find a hiding place to enter hibernation as you lose touch with the hive mind."))
- if(xeno.stomach_contents.len)
+ if(length(xeno.stomach_contents))
xeno.devour_timer = 0
xeno.handle_stomach_contents()
qdel(xeno)
@@ -847,7 +847,7 @@
var/time_left = floor((user.timeofdeath + JOIN_AS_FACEHUGGER_DELAY - world.time) / 10)
to_chat(user, SPAN_WARNING("You ghosted too recently. You cannot become a facehugger until 3 minutes have passed ([time_left] seconds remaining)."))
return FALSE
- if(totalXenos.len <= 0)
+ if(length(totalXenos) <= 0)
//This is to prevent people from joining as Forsaken Huggers on the pred ship
to_chat(user, SPAN_WARNING("The hive has fallen, you can't join it!"))
return FALSE
@@ -910,7 +910,7 @@
to_chat(user, SPAN_WARNING("You ghosted too recently. You cannot become a lesser drone until 30 seconds have passed ([time_left] seconds remaining)."))
return FALSE
- if(totalXenos.len <= 0)
+ if(length(totalXenos) <= 0)
to_chat(user, SPAN_WARNING("The hive has fallen, you can't join it!"))
return FALSE
diff --git a/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm b/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm
index 360b4e8bbdde..eca88761ad9b 100644
--- a/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm
+++ b/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm
@@ -201,7 +201,7 @@
if(xenoSrc.stat == DEAD)
return
- var/datum/action/xeno_action/A = get_xeno_action_by_type(xenoSrc, /datum/action/xeno_action/activable/queen_give_plasma)
+ var/datum/action/xeno_action/A = get_action(xenoSrc, /datum/action/xeno_action/activable/queen_give_plasma)
A?.use_ability_wrapper(xenoTarget)
if("heal")
@@ -214,7 +214,7 @@
if(xenoSrc.stat == DEAD)
return
- var/datum/action/xeno_action/A = get_xeno_action_by_type(xenoSrc, /datum/action/xeno_action/activable/queen_heal)
+ var/datum/action/xeno_action/A = get_action(xenoSrc, /datum/action/xeno_action/activable/queen_heal)
A?.use_ability_wrapper(xenoTarget, TRUE)
if("overwatch")
diff --git a/code/modules/mob/living/carbon/xenomorph/life.dm b/code/modules/mob/living/carbon/xenomorph/life.dm
index a6fd0d15877d..1657d078ffda 100644
--- a/code/modules/mob/living/carbon/xenomorph/life.dm
+++ b/code/modules/mob/living/carbon/xenomorph/life.dm
@@ -220,7 +220,7 @@
/mob/living/carbon/xenomorph/proc/handle_stomach_contents()
//Deal with dissolving/damaging stuff in stomach.
- if(stomach_contents.len)
+ if(length(stomach_contents))
for(var/atom/movable/M in stomach_contents)
if(ishuman(M))
if(world.time > devour_timer - 50 && world.time < devour_timer - 30)
@@ -481,7 +481,7 @@ Make sure their actual health updates immediately.*/
if(status_flags & GODMODE)
health = maxHealth
set_stat(CONSCIOUS)
- else if(xeno_shields.len != 0)
+ else if(length(xeno_shields) != 0)
overlay_shields()
health = maxHealth - getFireLoss() - getBruteLoss()
else
diff --git a/code/modules/mob/living/carbon/xenomorph/say.dm b/code/modules/mob/living/carbon/xenomorph/say.dm
index 2c9404b745ef..9f99cdb45455 100644
--- a/code/modules/mob/living/carbon/xenomorph/say.dm
+++ b/code/modules/mob/living/carbon/xenomorph/say.dm
@@ -22,14 +22,14 @@
var/datum/language/speaking = null
if(length(message) >= 2)
- if(can_hivemind_speak && copytext(message,1,2) == ";" && languages.len)
+ if(can_hivemind_speak && copytext(message,1,2) == ";" && length(languages))
for(var/datum/language/L in languages)
if(L.flags & HIVEMIND)
verb = L.speech_verb
speaking = L
break
var/channel_prefix = copytext(message, 1, 3)
- if(languages.len)
+ if(length(languages))
for(var/datum/language/L in languages)
if(lowertext(channel_prefix) == ":[L.key]" || lowertext(channel_prefix) == ".[L.key]")
verb = L.speech_verb
diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/boiler/trapper.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/boiler/trapper.dm
index f64bfd6b500f..857a76969354 100644
--- a/code/modules/mob/living/carbon/xenomorph/strains/castes/boiler/trapper.dm
+++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/boiler/trapper.dm
@@ -73,7 +73,7 @@
found = trap
break
- var/datum/action/xeno_action/activable/boiler_trap/trap_ability = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/boiler_trap)
+ var/datum/action/xeno_action/activable/boiler_trap/trap_ability = get_action(bound_xeno, /datum/action/xeno_action/activable/boiler_trap)
if (found)
target_human.apply_armoured_damage(bonus_damage_shotgun_trapped, ARMOR_BIO, BURN)
trap_ability.empowering_charge_counter = trap_ability.empower_charge_max
diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm
index 5ebafc88eaef..7ceaf2fed75e 100644
--- a/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm
+++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm
@@ -276,9 +276,10 @@
addtimer(CALLBACK(xeno.hive, TYPE_PROC_REF(/datum/hive_status, free_respawn), xeno.client), 5 SECONDS)
xeno.gib(create_cause_data("sacrificing itself", src))
+ return ..()
/datum/action/xeno_action/activable/healer_sacrifice/action_activate()
- ..()
+ . = ..()
var/mob/living/carbon/xenomorph/xeno = owner
if(xeno.selected_ability != src)
return
diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm
index 538aacc63722..89737f9ff595 100644
--- a/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm
+++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm
@@ -43,19 +43,20 @@
name = "Coerce Resin (100)"
action_icon_state = "secrete_resin"
ability_name = "coerce resin"
- var/last_use = 0
xeno_cooldown = 1 SECONDS
thick = FALSE
make_message = FALSE
no_cooldown_msg = TRUE
- var/care_about_adjacency = TRUE
build_speed_mod = 2 // the actual building part takes twice as long
macro_path = /datum/action/xeno_action/verb/verb_coerce_resin
action_type = XENO_ACTION_CLICK
+ var/last_use = 0
+ var/care_about_adjacency = TRUE
+
/datum/action/xeno_action/activable/secrete_resin/remote/use_ability(atom/target_atom, mods)
if(!can_remote_build())
to_chat(owner, SPAN_XENONOTICE("We must be standing on weeds to establish a connection to the resin."))
@@ -71,6 +72,10 @@
if(!target_turf)
return
+ if(care_about_adjacency && !(target_turf in view(10, owner)))
+ to_chat(owner, SPAN_XENONOTICE("We must have a direct line of sight!"))
+ return
+
/// Check if the target is a resin door and open or close it
if(istype(target_atom, /obj/structure/mineral_door/resin))
var/obj/structure/mineral_door/resin/resin_door = target_atom
diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/vanguard.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/vanguard.dm
index 310db35ab370..01f567398c44 100644
--- a/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/vanguard.dm
+++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/vanguard.dm
@@ -54,7 +54,7 @@
last_combat_time = world.time
/datum/behavior_delegate/praetorian_vanguard/proc/next_pierce_spin()
- var/datum/action/xeno_action/activable/pierce/pAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pierce)
+ var/datum/action/xeno_action/activable/pierce/pAction = get_action(bound_xeno, /datum/action/xeno_action/activable/pierce)
if (istype(pAction))
pAction.should_spin_instead = TRUE
@@ -62,7 +62,7 @@
return
/datum/behavior_delegate/praetorian_vanguard/proc/next_pierce_normal()
- var/datum/action/xeno_action/activable/pierce/pAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pierce)
+ var/datum/action/xeno_action/activable/pierce/pAction = get_action(bound_xeno, /datum/action/xeno_action/activable/pierce)
if (istype(pAction))
pAction.should_spin_instead = FALSE
return
@@ -88,6 +88,6 @@
new_shield.explosive_armor_amount = 1.5*XENO_EXPOSIVEARMOR_MOD_VERY_LARGE
to_chat(praetorian, SPAN_XENOHIGHDANGER("We feel our defensive shell regenerate! It will block one hit!"))
- var/datum/action/xeno_action/activable/cleave/caction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/cleave)
+ var/datum/action/xeno_action/activable/cleave/caction = get_action(bound_xeno, /datum/action/xeno_action/activable/cleave)
if (istype(caction))
caction.buffed = TRUE
diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/runner/acid.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/runner/acid.dm
index 6983942fb562..0fdaa264bd99 100644
--- a/code/modules/mob/living/carbon/xenomorph/strains/castes/runner/acid.dm
+++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/runner/acid.dm
@@ -96,7 +96,7 @@
var/amplitude = 50 + 50 * (caboom_timer - caboom_left) / caboom_timer
playsound(bound_xeno, caboom_sound[caboom_loop], amplitude, FALSE, 10)
caboom_loop++
- if(caboom_loop > caboom_sound.len)
+ if(caboom_loop > length(caboom_sound))
caboom_loop = 1
if(caboom_left <= 0)
caboom_trigger = FALSE
diff --git a/code/modules/mob/living/carbon/xenomorph/xeno_helpers.dm b/code/modules/mob/living/carbon/xenomorph/xeno_helpers.dm
index 8b3487b7a878..2414d077b1c0 100644
--- a/code/modules/mob/living/carbon/xenomorph/xeno_helpers.dm
+++ b/code/modules/mob/living/carbon/xenomorph/xeno_helpers.dm
@@ -2,7 +2,7 @@
return (mob_size < MOB_SIZE_BIG && caste.can_vent_crawl)
/mob/living/carbon/xenomorph/ventcrawl_carry()
- if(stomach_contents.len)
+ if(length(stomach_contents))
for(var/mob/living/carbon/human/H in stomach_contents)
if(!isspeciesmonkey(H))
to_chat(src, SPAN_XENOWARNING("You cannot ventcrawl with [H] inside you!"))
diff --git a/code/modules/mob/living/init_signals.dm b/code/modules/mob/living/init_signals.dm
index a2b92007d97e..825fa4dcc941 100644
--- a/code/modules/mob/living/init_signals.dm
+++ b/code/modules/mob/living/init_signals.dm
@@ -26,6 +26,7 @@
if(stat < UNCONSCIOUS)
set_stat(UNCONSCIOUS)
sound_environment_override = SOUND_ENVIRONMENT_PSYCHOTIC
+ client?.soundOutput?.update_mob_environment_override()
/// Called when [TRAIT_KNOCKEDOUT] is removed from the mob.
/mob/living/proc/on_knockedout_trait_loss(datum/source)
@@ -33,6 +34,7 @@
if(stat <= UNCONSCIOUS)
update_stat()
sound_environment_override = SOUND_ENVIRONMENT_NONE
+ client?.soundOutput?.update_mob_environment_override()
/// Called when [TRAIT_IMMOBILIZED] is added to the mob.
/mob/living/proc/on_immobilized_trait_gain(datum/source)
diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm
index 9500d0a30e37..27697a8938a7 100644
--- a/code/modules/mob/living/living.dm
+++ b/code/modules/mob/living/living.dm
@@ -66,7 +66,7 @@
/mob/living/proc/burn_skin(burn_amount)
if(ishuman(src))
var/mob/living/carbon/human/H = src //make this damage method divide the damage to be done among all the body parts, then burn each body part for that much damage. will have better effect then just randomly picking a body part
- var/divided_damage = (burn_amount)/(H.limbs.len)
+ var/divided_damage = (burn_amount)/(length(H.limbs))
var/extradam = 0 //added to when organ is at max dam
for(var/obj/limb/affecting in H.limbs)
if(!affecting) continue
@@ -472,7 +472,7 @@
/mob/living/create_clone_movable(shift_x, shift_y)
..()
- src.clone.hud_list = new /list(src.hud_list.len)
+ src.clone.hud_list = new /list(length(src.hud_list))
for(var/h in src.hud_possible) //Clone HUD
src.clone.hud_list[h] = new /image("loc" = src.clone, "icon" = src.hud_list[h].icon)
@@ -503,12 +503,10 @@
if(CONSCIOUS)
if(stat >= UNCONSCIOUS)
ADD_TRAIT(src, TRAIT_IMMOBILIZED, TRAIT_KNOCKEDOUT)
- sound_environment_override = SOUND_ENVIRONMENT_PSYCHOTIC
add_traits(list(/*TRAIT_HANDS_BLOCKED, */ TRAIT_INCAPACITATED, TRAIT_FLOORED), STAT_TRAIT)
if(UNCONSCIOUS)
if(stat >= UNCONSCIOUS)
ADD_TRAIT(src, TRAIT_IMMOBILIZED, TRAIT_KNOCKEDOUT) //adding trait sources should come before removing to avoid unnecessary updates
- sound_environment_override = SOUND_ENVIRONMENT_PSYCHOTIC
if(DEAD)
SEND_SIGNAL(src, COMSIG_MOB_STAT_SET_ALIVE)
// remove_from_dead_mob_list()
@@ -518,12 +516,10 @@
if(CONSCIOUS)
if(. >= UNCONSCIOUS)
REMOVE_TRAIT(src, TRAIT_IMMOBILIZED, TRAIT_KNOCKEDOUT)
- sound_environment_override = SOUND_ENVIRONMENT_NONE
remove_traits(list(/*TRAIT_HANDS_BLOCKED, */ TRAIT_INCAPACITATED, TRAIT_FLOORED, /*TRAIT_CRITICAL_CONDITION*/), STAT_TRAIT)
if(UNCONSCIOUS)
if(. >= UNCONSCIOUS)
REMOVE_TRAIT(src, TRAIT_IMMOBILIZED, TRAIT_KNOCKEDOUT)
- sound_environment_override = SOUND_ENVIRONMENT_NONE
if(DEAD)
SEND_SIGNAL(src, COMSIG_MOB_STAT_SET_DEAD)
// REMOVE_TRAIT(src, TRAIT_CRITICAL_CONDITION, STAT_TRAIT)
diff --git a/code/modules/mob/living/living_healthscan.dm b/code/modules/mob/living/living_healthscan.dm
index b26be6c0d585..6739e7046761 100644
--- a/code/modules/mob/living/living_healthscan.dm
+++ b/code/modules/mob/living/living_healthscan.dm
@@ -439,7 +439,7 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant))
"icon" = "window-close",
"color" = "red"
))
- if(advice.len)
+ if(length(advice))
data["advice"] = advice
else
data["advice"] = null // interstingly even if we don't set data at all, re-using UI that had this data still has it
@@ -457,7 +457,7 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant))
"cure" = disease.cure
)
diseases += list(current_disease)
- if(diseases.len)
+ if(length(diseases))
data["diseases"] = diseases
else
data["diseases"] = null // interstingly even if we don't set data at all, re-using UI that had this data still has it
@@ -633,7 +633,7 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant))
if(ishuman(src))
var/mob/living/carbon/human/H = src
- if(H.embedded_items.len > 0)
+ if(length(H.embedded_items) > 0)
embedded_item_detected = TRUE
var/core_fracture = 0
@@ -665,7 +665,7 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant))
reagentdata["[R.id]"] = "[R.overdose != 0 && R.volume > R.overdose && !(R.flags & REAGENT_CANNOT_OVERDOSE) ? SPAN_WARNING("OD: ") : ""] [round(R.volume, 1)]u [R.name]"
else
unknown++
- if(reagentdata.len)
+ if(length(reagentdata))
dat += "\n\tBeneficial reagents:\n"
for(var/d in reagentdata)
dat += "\t\t [reagentdata[d]]\n"
diff --git a/code/modules/mob/living/login.dm b/code/modules/mob/living/login.dm
index 50ea9e7a62e3..2bae197050dc 100644
--- a/code/modules/mob/living/login.dm
+++ b/code/modules/mob/living/login.dm
@@ -6,7 +6,7 @@
..()
- if(pipes_shown && pipes_shown.len) //ventcrawling, need to reapply pipe vision
+ if(LAZYLEN(pipes_shown)) //ventcrawling, need to reapply pipe vision
var/obj/structure/pipes/A = loc
if(istype(A)) //a sanity check just to be safe
remove_ventcrawl()
diff --git a/code/modules/mob/living/simple_animal/friendly/farm_animals.dm b/code/modules/mob/living/simple_animal/friendly/farm_animals.dm
index b85f188558b1..47b54196301d 100644
--- a/code/modules/mob/living/simple_animal/friendly/farm_animals.dm
+++ b/code/modules/mob/living/simple_animal/friendly/farm_animals.dm
@@ -39,10 +39,10 @@
. = ..()
if(.)
//chance to go crazy and start wacking stuff
- if(!enemies.len && prob(1))
+ if(!length(enemies) && prob(1))
Retaliate()
- if(enemies.len && prob(10))
+ if(length(enemies) && prob(10))
enemies = list()
LoseTarget()
src.visible_message(SPAN_NOTICE("[src] calms down."))
diff --git a/code/modules/mob/living/simple_animal/friendly/mouse.dm b/code/modules/mob/living/simple_animal/friendly/mouse.dm
index b76935c4c158..182bc2525c17 100644
--- a/code/modules/mob/living/simple_animal/friendly/mouse.dm
+++ b/code/modules/mob/living/simple_animal/friendly/mouse.dm
@@ -77,6 +77,7 @@
src.icon_dead = "mouse_[body_color]_splat"
src.icon_state = "mouse_[body_color]_splat"
layer = ABOVE_LYING_MOB_LAYER
+ set_body_position(LYING_DOWN)
if(client)
client.time_died_as_mouse = world.time
diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm
index 79abd5cc7e0d..4c16c60d4835 100644
--- a/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm
+++ b/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm
@@ -13,7 +13,7 @@
enemies -= L
/mob/living/simple_animal/hostile/retaliate/ListTargets()
- if(!enemies.len)
+ if(!length(enemies))
return list()
var/list/see = ..()
see &= enemies // Remove all entries that aren't in enemies
diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm
index 14f220b3a77f..feb70f6f1b79 100644
--- a/code/modules/mob/living/simple_animal/parrot.dm
+++ b/code/modules/mob/living/simple_animal/parrot.dm
@@ -122,7 +122,7 @@
switch(remove_from)
if("ears")
if(ears)
- if(available_channels.len)
+ if(length(available_channels))
src.say("[pick(available_channels)] BAWWWWWK LEAVE THE HEADSET BAWKKKKK!")
else
src.say("BAWWWWWK LEAVE THE HEADSET BAWKKKKK!")
@@ -276,8 +276,8 @@
Phrases that the parrot hears in mob/living/say() get added to speach_buffer.
Every once in a while, the parrot picks one of the lines from the buffer and replaces an element of the 'speech' list.
Then it clears the buffer to make sure they dont magically remember something from hours ago. */
- if(speech_buffer.len && prob(10))
- if(speak.len)
+ if(length(speech_buffer) && prob(10))
+ if(length(speak))
speak.Remove(pick(speak))
speak.Add(pick(speech_buffer))
@@ -304,10 +304,10 @@
parrot_sleep_dur = parrot_sleep_max
//Cycle through message modes for the headset
- if(speak.len)
+ if(length(speak))
var/list/newspeak = list()
- if(available_channels.len && src.ears)
+ if(length(available_channels) && src.ears)
for(var/possible_phrase in speak)
//50/50 chance to not use the radio at all
@@ -685,7 +685,7 @@
return
var/verb = "says"
- if(speak_emote.len)
+ if(length(speak_emote))
verb = pick(speak_emote)
diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm
index caf47b2824bb..f3b8da1a2d76 100644
--- a/code/modules/mob/living/simple_animal/simple_animal.dm
+++ b/code/modules/mob/living/simple_animal/simple_animal.dm
@@ -56,6 +56,8 @@
black_market_value = 25
dead_black_market_value = 0
+ mobility_flags = MOBILITY_FLAGS_LYING_CAPABLE_DEFAULT
+
/mob/living/simple_animal/Initialize()
. = ..()
SSmob.living_misc_mobs += src
@@ -107,33 +109,33 @@
//Speaking
if(!client && speak_chance)
if(rand(0,200) < speak_chance)
- if(speak && speak.len)
- if((emote_hear && emote_hear.len) || (emote_see && emote_see.len))
- var/length = speak.len
- if(emote_hear && emote_hear.len)
- length += emote_hear.len
- if(emote_see && emote_see.len)
- length += emote_see.len
+ if(LAZYLEN(speak))
+ if(LAZYLEN(emote_hear) || LAZYLEN(emote_see))
+ var/length = length(speak)
+ if(LAZYLEN(emote_hear))
+ length += length(emote_hear)
+ if(LAZYLEN(emote_see))
+ length += length(emote_see)
var/randomValue = rand(1,length)
- if(randomValue <= speak.len)
+ if(randomValue <= length(speak))
INVOKE_ASYNC(src, PROC_REF(say), pick(speak))
else
- randomValue -= speak.len
- if(emote_see && randomValue <= emote_see.len)
+ randomValue -= length(speak)
+ if(emote_see && randomValue <= length(emote_see))
INVOKE_ASYNC(src, PROC_REF(manual_emote), pick(emote_see),1)
else
INVOKE_ASYNC(src, PROC_REF(manual_emote), pick(emote_hear),2)
else
INVOKE_ASYNC(src, PROC_REF(say), pick(speak))
else
- if(!(emote_hear && emote_hear.len) && (emote_see && emote_see.len))
+ if(!LAZYLEN(emote_hear) && LAZYLEN(emote_see))
INVOKE_ASYNC(src, PROC_REF(manual_emote), pick(emote_see),1)
- if((emote_hear && emote_hear.len) && !(emote_see && emote_see.len))
+ if(LAZYLEN(emote_hear) && !LAZYLEN(emote_see))
INVOKE_ASYNC(src, PROC_REF(manual_emote), pick(emote_hear),2)
- if((emote_hear && emote_hear.len) && (emote_see && emote_see.len))
- var/length = emote_hear.len + emote_see.len
+ if(LAZYLEN(emote_hear) && LAZYLEN(emote_see))
+ var/length = length(emote_hear) + length(emote_see)
var/pick = rand(1,length)
- if(pick <= emote_see.len)
+ if(pick <= length(emote_see))
INVOKE_ASYNC(src, PROC_REF(manual_emote), pick(emote_see),1)
else
INVOKE_ASYNC(src, PROC_REF(manual_emote), pick(emote_hear),2)
@@ -210,6 +212,7 @@
SSmob.living_misc_mobs -= src
icon_state = icon_dead
black_market_value = dead_black_market_value
+ set_body_position(LYING_DOWN)
/mob/living/simple_animal/gib(datum/cause_data/cause = create_cause_data("gibbing", src))
@@ -349,7 +352,7 @@
var/verb = "says"
- if(speak_emote.len)
+ if(length(speak_emote))
verb = pick(speak_emote)
message = capitalize(trim_left(message))
diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm
index 8a792943e345..0a24468cc176 100644
--- a/code/modules/mob/mob.dm
+++ b/code/modules/mob/mob.dm
@@ -771,7 +771,7 @@ note dizziness decrements automatically in the mob's Life() proc.
else
visible_message(SPAN_WARNING("[usr] rips [selection] out of [src]'s body."),SPAN_WARNING("[usr] rips [selection] out of your body."), null, 5)
- if(valid_objects.len == 1) //Yanking out last object - removing verb.
+ if(length(valid_objects) == 1) //Yanking out last object - removing verb.
remove_verb(src, /mob/proc/yank_out_object)
if(ishuman(src))
diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm
index 4b3d2257eb9e..9806e5ce949c 100644
--- a/code/modules/mob/mob_defines.dm
+++ b/code/modules/mob/mob_defines.dm
@@ -397,7 +397,7 @@
if(!check_rights(R_SPAWN))
return
- if(!languages.len)
+ if(!length(languages))
to_chat(usr, "This mob knows no languages.")
return
diff --git a/code/modules/mob/mob_grab.dm b/code/modules/mob/mob_grab.dm
index b6f2871e0370..9dcdae3635cb 100644
--- a/code/modules/mob/mob_grab.dm
+++ b/code/modules/mob/mob_grab.dm
@@ -119,7 +119,7 @@
if(pulled.stat == DEAD && !pulled.chestburst)
to_chat(xeno, SPAN_WARNING("Ew, [pulled] is already starting to rot."))
return 0
- if(xeno.stomach_contents.len) //Only one thing in the stomach at a time, please
+ if(length(xeno.stomach_contents)) //Only one thing in the stomach at a time, please
to_chat(xeno, SPAN_WARNING("You already have something in your belly, there's no way that will fit."))
return 0
/* Saving this in case we want to allow devouring of dead bodies UNLESS their client is still online somewhere
@@ -138,10 +138,10 @@
if(HAS_TRAIT(xeno, TRAIT_CLOAKED)) //cloaked don't show the visible message, so we gotta work around
to_chat(pulled, FONT_SIZE_HUGE(SPAN_DANGER("[xeno] is trying to devour you!")))
if(do_after(xeno, 50, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE))
- if(isxeno(pulled.loc) && !xeno.stomach_contents.len)
+ if(isxeno(pulled.loc) && !length(xeno.stomach_contents))
to_chat(xeno, SPAN_WARNING("Someone already ate \the [pulled]."))
return 0
- if(xeno.pulling == pulled && !pulled.buckled && (pulled.stat != DEAD || pulled.chestburst) && !xeno.stomach_contents.len) //make sure you've still got them in your claws, and alive
+ if(xeno.pulling == pulled && !pulled.buckled && (pulled.stat != DEAD || pulled.chestburst) && !length(xeno.stomach_contents)) //make sure you've still got them in your claws, and alive
if(SEND_SIGNAL(pulled, COMSIG_MOB_DEVOURED, xeno) & COMPONENT_CANCEL_DEVOUR)
return FALSE
diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm
index 8c41e1149f35..37a6c46c23cc 100644
--- a/code/modules/mob/mob_helpers.dm
+++ b/code/modules/mob/mob_helpers.dm
@@ -229,11 +229,11 @@ GLOBAL_LIST_INIT(limb_types_by_name, list(
var/list/split_phrase = text2list(phrase," ") //Split it up into words.
var/list/unstuttered_words = split_phrase.Copy()
- var/max_stutter = min(strength, split_phrase.len)
+ var/max_stutter = min(strength, length(split_phrase))
var/stutters = rand(max(max_stutter - 3, 1), max_stutter)
for(var/i = 0, i < stutters, i++)
- if (!unstuttered_words.len)
+ if (!length(unstuttered_words))
break
var/word = pick(unstuttered_words)
@@ -268,7 +268,7 @@ GLOBAL_LIST_INIT(limb_types_by_name, list(
else // normal stutter
word = R.Replace(word, "$1$2-$2$3$4")
- if(prob(3 * strength) && index != unstuttered_words.len - 1) // stammer / pause - don't pause at the end of sentences!
+ if(prob(3 * strength) && index != length(unstuttered_words) - 1) // stammer / pause - don't pause at the end of sentences!
word = R.Replace(word, "$0 ...")
split_phrase[index] = word
@@ -315,7 +315,7 @@ GLOBAL_LIST_INIT(limb_types_by_name, list(
message = replace_X.Replace(message, "CKTH")
return message
-#define PIXELS_PER_STRENGTH_VAL 24
+#define PIXELS_PER_STRENGTH_VAL 28
/proc/shake_camera(mob/M, steps = 1, strength = 1, time_per_step = 1)
if(!M?.client || (M.shakecamera > world.time))
@@ -326,10 +326,10 @@ GLOBAL_LIST_INIT(limb_types_by_name, list(
var/old_X = M.client.pixel_x
var/old_y = M.client.pixel_y
- animate(M.client, pixel_x = old_X + rand(-(strength), strength), pixel_y = old_y + rand(-(strength), strength), easing = JUMP_EASING, time = time_per_step, flags = ANIMATION_PARALLEL)
+ animate(M.client, pixel_x = old_X + rand(-(strength), strength), pixel_y = old_y + rand(-(strength), strength), easing = CUBIC_EASING | EASE_IN, time = time_per_step, flags = ANIMATION_PARALLEL)
var/i = 1
while(i < steps)
- animate(pixel_x = old_X + rand(-(strength), strength), pixel_y = old_y + rand(-(strength), strength), easing = JUMP_EASING, time = time_per_step)
+ animate(pixel_x = old_X + rand(-(strength), strength), pixel_y = old_y + rand(-(strength), strength), easing = CUBIC_EASING | EASE_IN, time = time_per_step)
i++
animate(pixel_x = old_X, pixel_y = old_y,time = clamp(floor(strength/PIXELS_PER_STRENGTH_VAL),2,4))//ease it back
@@ -484,7 +484,7 @@ GLOBAL_LIST_INIT(limb_types_by_name, list(
* [this byond forum post](https://secure.byond.com/forum/?post=1326139&page=2#comment8198716)
* for why this isn't atom/verb/examine()
*/
-/mob/verb/examinate(atom/examinify as mob|obj|turf in view())
+/mob/verb/examinate(atom/examinify as mob|obj|turf in view(28, usr))
set name = "Examine"
set category = "IC"
diff --git a/code/modules/mob/mob_movement.dm b/code/modules/mob/mob_movement.dm
index ab5aa898a848..e326ce9e45b3 100644
--- a/code/modules/mob/mob_movement.dm
+++ b/code/modules/mob/mob_movement.dm
@@ -191,7 +191,7 @@
for(var/zone in extremities)
if(!(human.get_limb(zone)))
extremities.Remove(zone)
- if(extremities.len < 4)
+ if(length(extremities) < 4)
return
//now crawl
mob.crawling = TRUE
diff --git a/code/modules/mob/new_player/login.dm b/code/modules/mob/new_player/login.dm
index 4b25d7a2ae39..7ec4a7f2781c 100644
--- a/code/modules/mob/new_player/login.dm
+++ b/code/modules/mob/new_player/login.dm
@@ -32,7 +32,7 @@
var/author = lobby_authors[GLOB.displayed_lobby_art]
if(author != "Unknown")
to_chat(src, SPAN_ROUNDBODY("
This round's lobby art is brought to you by [author]
"))
- if(GLOB.join_motd)
- to_chat(src, "[GLOB.join_motd]
")
if(GLOB.current_tms)
to_chat(src, SPAN_BOLDANNOUNCE(GLOB.current_tms))
+ if(GLOB.join_motd)
+ to_chat(src, "[GLOB.join_motd]
")
diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm
index 1bdf075c938e..829379eb28b6 100644
--- a/code/modules/mob/new_player/new_player.dm
+++ b/code/modules/mob/new_player/new_player.dm
@@ -264,8 +264,8 @@
for(var/datum/squad/sq in GLOB.RoleAuthority.squads)
if(sq)
- sq.max_engineers = engi_slot_formula(GLOB.clients.len)
- sq.max_medics = medic_slot_formula(GLOB.clients.len)
+ sq.max_engineers = engi_slot_formula(length(GLOB.clients))
+ sq.max_medics = medic_slot_formula(length(GLOB.clients))
var/latejoin_larva_drop = SSticker.mode.latejoin_larva_drop
diff --git a/code/modules/movement/movement.dm b/code/modules/movement/movement.dm
index e12a5b439296..8151d2df6707 100644
--- a/code/modules/movement/movement.dm
+++ b/code/modules/movement/movement.dm
@@ -140,11 +140,11 @@
destination.Entered(src, oldloc)
if(destarea && (old_area != destarea || !isturf(oldloc)))
destarea.Entered(src, oldloc)
-
- for(var/atom/movable/AM in destination)
- if(AM == src)
- continue
- AM.Crossed(src, oldloc)
+ if(!(SEND_SIGNAL(src, COMSIG_MOVABLE_FORCEMOVE_PRE_CROSSED) & COMPONENT_IGNORE_CROSS))
+ for(var/atom/movable/AM in destination)
+ if(AM == src)
+ continue
+ AM.Crossed(src, oldloc)
Moved(oldloc, NONE, TRUE)
. = TRUE
diff --git a/code/modules/nano/nanomanager.dm b/code/modules/nano/nanomanager.dm
index b2ac69b002b0..6cf1ecb78a0d 100644
--- a/code/modules/nano/nanomanager.dm
+++ b/code/modules/nano/nanomanager.dm
@@ -97,7 +97,7 @@
* @return int The number of uis updated
*/
/datum/nanomanager/proc/update_user_uis(mob/user, src_object = null, ui_key = null)
- if (isnull(user.open_uis) || !istype(user.open_uis, /list) || open_uis.len == 0)
+ if (isnull(user.open_uis) || !istype(user.open_uis, /list) || length(open_uis) == 0)
return 0 // has no open uis
var/update_count = 0
@@ -118,7 +118,7 @@
* @return int The number of uis closed
*/
/datum/nanomanager/proc/close_user_uis(mob/user, src_object = null, ui_key = null)
- if (isnull(user.open_uis) || !istype(user.open_uis, /list) || open_uis.len == 0)
+ if (isnull(user.open_uis) || !istype(user.open_uis, /list) || length(open_uis) == 0)
//testing("nanomanager/close_user_uis mob [user.name] has no open uis")
return 0 // has no open uis
@@ -128,7 +128,7 @@
ui.close()
close_count++
- //testing("nanomanager/close_user_uis mob [user.name] closed [open_uis.len] of [close_count] uis")
+ //testing("nanomanager/close_user_uis mob [user.name] closed [length(open_uis_] of [close_count] uis")
return close_count
@@ -151,7 +151,7 @@
var/list/uis = open_uis[src_object_key][ui.ui_key]
uis.Add(ui)
processing_uis.Add(ui)
- //testing("nanomanager/ui_opened mob [ui.user.name] [ui.src_object:name] [ui.ui_key] - user.open_uis [ui.user.open_uis.len]|uis [uis.len]|processing_uis [processing_uis.len]")
+ //testing("nanomanager/ui_opened mob [ui.user.name] [ui.src_object:name] [ui.ui_key] - user.open_uis [length(ui.user.open_uis)]|uis [length(uis)]|processing_uis [length(processing_uis)]")
/**
* Remove a /nanoui ui from the list of open uis
@@ -173,7 +173,7 @@
var/list/uis = open_uis[src_object_key][ui.ui_key]
uis.Remove(ui)
- //testing("nanomanager/ui_closed mob [ui.user.name] [ui.src_object:name] [ui.ui_key] - user.open_uis [ui.user.open_uis.len]|uis [uis.len]|processing_uis [processing_uis.len]")
+ //testing("nanomanager/ui_closed mob [ui.user.name] [ui.src_object:name] [ui.ui_key] - user.open_uis [length(ui.user.open_uis)]|uis [length(uis)]|processing_uis [length(processing_uis)]")
return 1
@@ -204,7 +204,7 @@
//testing("nanomanager/user_transferred from mob [oldMob.name] to mob [newMob.name]")
if(QDELETED(oldMob) || QDELETED(newMob))
return FALSE //ERROR
- if (isnull(oldMob.open_uis) || !istype(oldMob.open_uis, /list) || open_uis.len == 0)
+ if (isnull(oldMob.open_uis) || !istype(oldMob.open_uis, /list) || length(open_uis) == 0)
//testing("nanomanager/user_transferred mob [oldMob.name] has no open uis")
return 0 // has no open uis
diff --git a/code/modules/nano/nanoui.dm b/code/modules/nano/nanoui.dm
index 3e26b2b8a1da..7e259711a20e 100644
--- a/code/modules/nano/nanoui.dm
+++ b/code/modules/nano/nanoui.dm
@@ -386,7 +386,7 @@ nanoui is used to open and update nano browser uis
head_content += " "
var/template_data_json = "{}" // An empty JSON object
- if (templates.len > 0)
+ if (length(templates) > 0)
template_data_json = strip_improper(json_encode(templates))
var/url_parameters_json = json_encode(list("src" = "\ref[src]"))
diff --git a/code/modules/nightmare/nmtasks/mapscheduler.dm b/code/modules/nightmare/nmtasks/mapscheduler.dm
index b97193eadb21..1d7f7385d4d3 100644
--- a/code/modules/nightmare/nmtasks/mapscheduler.dm
+++ b/code/modules/nightmare/nmtasks/mapscheduler.dm
@@ -16,7 +16,7 @@
/datum/nmtask/scheduler/mapload/proc/register_tainted_bounds(datum/nmtask/task, list/bounds)
tainted_bounds.len++
- tainted_bounds[tainted_bounds.len] = bounds
+ tainted_bounds[length(tainted_bounds)] = bounds
/datum/nmtask/scheduler/mapload/proc/patch_lighting()
var/list/tainted = list()
diff --git a/code/modules/organs/limbs.dm b/code/modules/organs/limbs.dm
index b84df6bf688b..b4086ee898e2 100644
--- a/code/modules/organs/limbs.dm
+++ b/code/modules/organs/limbs.dm
@@ -20,7 +20,7 @@
var/display_name
var/list/datum/wound/wounds = list()
- var/number_wounds = 0 // cache the number of wounds, which is NOT wounds.len!
+ var/number_wounds = 0 // cache the number of wounds, which is NOT length(wounds)!
var/tmp/perma_injury = 0
@@ -349,9 +349,9 @@
possible_points += parent
if(children)
possible_points += children
- if(forbidden_limbs.len)
+ if(length(forbidden_limbs))
possible_points -= forbidden_limbs
- if(possible_points.len)
+ if(length(possible_points))
//And pass the damage around, but not the chance to cut the limb off.
var/obj/limb/target = pick(possible_points)
if(brute_reduced_by == -1)
@@ -477,20 +477,20 @@ This function completely restores a damaged organ to perfect condition.
if(!(status & LIMB_SPLINTED_INDESTRUCTIBLE) && (status & LIMB_SPLINTED) && damage > 5 && prob(50 + damage * 2.5)) //If they have it splinted, the splint won't hold.
status &= ~LIMB_SPLINTED
playsound(get_turf(loc), 'sound/items/splintbreaks.ogg', 20)
- to_chat(owner, SPAN_DANGER("The splint on your [display_name] comes apart!"))
+ to_chat(owner, SPAN_HIGHDANGER("The splint on your [display_name] comes apart!"))
owner.pain.apply_pain(PAIN_BONE_BREAK_SPLINTED)
owner.update_med_icon()
// first check whether we can widen an existing wound
var/datum/wound/W
- if(wounds.len > 0 && prob(max(50+(number_wounds-1)*10,90)))
+ if(length(wounds) > 0 && prob(max(50+(number_wounds-1)*10,90)))
if((type == CUT || type == BRUISE) && damage >= 5)
//we need to make sure that the wound we are going to worsen is compatible with the type of damage...
var/compatible_wounds[] = new
for(W in wounds)
if(W.can_worsen(type, damage)) compatible_wounds += W
- if(compatible_wounds.len)
+ if(length(compatible_wounds))
W = pick(compatible_wounds)
W.open_wound(damage)
if(type != BURN)
@@ -654,7 +654,7 @@ This function completely restores a damaged organ to perfect condition.
//configurable regen speed woo, no-regen hardcore or instaheal hugbox, choose your destiny
heal_amt = heal_amt * CONFIG_GET(number/organ_regeneration_multiplier)
// amount of healing is spread over all the wounds
- heal_amt = heal_amt / (wounds.len + 1)
+ heal_amt = heal_amt / (length(wounds) + 1)
// making it look prettier on scanners
heal_amt = round(heal_amt,0.1)
@@ -801,7 +801,7 @@ This function completely restores a damaged organ to perfect condition.
if(istype(E, /obj/limb/chest) || istype(E, /obj/limb/groin) || istype(E, /obj/limb/head))
continue
limbs_to_remove += E
- if(limbs_to_remove.len)
+ if(length(limbs_to_remove))
var/obj/limb/L = pick(limbs_to_remove)
var/limb_name = L.display_name
L.droplimb(0, delete_limb)
diff --git a/code/modules/organs/wound.dm b/code/modules/organs/wound.dm
index 86f4199a2e5b..d9fee4195ad5 100644
--- a/code/modules/organs/wound.dm
+++ b/code/modules/organs/wound.dm
@@ -56,7 +56,7 @@
// returns 1 if there's a next stage, 0 otherwise
/datum/wound/proc/init_stage(initial_damage)
- current_stage = stages.len
+ current_stage = length(stages)
while(src.current_stage > 1 && src.damage_list[current_stage-1] <= initial_damage / src.amount)
src.current_stage--
@@ -108,7 +108,7 @@
amount -= healed_damage
src.damage -= healed_damage
- while(src.wound_damage() < damage_list[current_stage] && current_stage < src.desc_list.len)
+ while(src.wound_damage() < damage_list[current_stage] && current_stage < length(src.desc_list))
current_stage++
desc = desc_list[current_stage]
src.min_damage = damage_list[current_stage]
diff --git a/code/modules/paperwork/filingcabinet.dm b/code/modules/paperwork/filingcabinet.dm
index 119c846a93a2..42d42413958f 100644
--- a/code/modules/paperwork/filingcabinet.dm
+++ b/code/modules/paperwork/filingcabinet.dm
@@ -64,7 +64,7 @@
to_chat(user, SPAN_NOTICE("You can't put [P] in [src]!"))
/obj/structure/filingcabinet/attack_hand(mob/user as mob)
- if(contents.len <= 0)
+ if(length(contents) <= 0)
to_chat(user, SPAN_NOTICE("\The [src] is empty."))
return
diff --git a/code/modules/paperwork/folders.dm b/code/modules/paperwork/folders.dm
index ad9da68a591d..0250b9c7d41e 100644
--- a/code/modules/paperwork/folders.dm
+++ b/code/modules/paperwork/folders.dm
@@ -41,7 +41,7 @@
/obj/item/folder/update_icon()
overlays.Cut()
- if(contents.len)
+ if(length(contents))
overlays += "folder_paper"
return
diff --git a/code/modules/paperwork/notepad.dm b/code/modules/paperwork/notepad.dm
index 3eb83b6a67b0..bbfec5428830 100644
--- a/code/modules/paperwork/notepad.dm
+++ b/code/modules/paperwork/notepad.dm
@@ -31,7 +31,7 @@
if(HAS_TRAIT(attack_item, TRAIT_TOOL_PEN) || istype(attack_item, /obj/item/toy/crayon))
close_browser(usr, name) //Closes the dialog
- if(page < contents.len)
+ if(page < length(contents))
page = 1
var/obj/item/paper/paper = contents[page]
paper.attackby(attack_item, user)
@@ -93,8 +93,8 @@
page--
playsound(loc, "pageturn", 15, 1)
if(href_list["remove"])
- if(contents.len < page)
- page = contents.len
+ if(length(contents) < page)
+ page = length(contents)
var/obj/item/ripped_out_page = contents[page]
usr.put_in_hands(ripped_out_page)
to_chat(usr, SPAN_NOTICE("You rip out [ripped_out_page] from [src]."))
@@ -118,6 +118,9 @@
else
to_chat(usr, SPAN_NOTICE("You need to hold it in your hands!"))
+/obj/item/notepad/proc/operator[](index_num)
+ return contents[index_num]
+
/obj/item/notepad/verb/rename()
set name = "Rename notepad"
set category = "Object"
diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm
index 27b1fa885133..e1610fb3401a 100644
--- a/code/modules/paperwork/paper.dm
+++ b/code/modules/paperwork/paper.dm
@@ -687,7 +687,7 @@
var/datum/reagent/R = GLOB.chemical_reagents_list["[I]"]
var/U = G.required_reagents[I]
txt += " - [U] [R.name]
\n"
- if(G.required_catalysts && G.required_catalysts.len)
+ if(LAZYLEN(G.required_catalysts))
txt += "
\nWhile using the following catalysts:
\n
\n"
for(var/I in G.required_catalysts)
var/datum/reagent/R = GLOB.chemical_reagents_list["[I]"]
@@ -835,17 +835,16 @@
else
var/U = C.required_reagents[I]
info += " - [U] [R.name]
\n"
- if(C.required_catalysts)
- if(C.required_catalysts.len)
- info += "
Reaction would require the following catalysts:
\n"
- for(var/I in C.required_catalysts)
- var/datum/reagent/R = GLOB.chemical_reagents_list["[I]"]
- if(R.chemclass >= CHEM_CLASS_SPECIAL && !GLOB.chemical_data.chemical_identified_list[R.id] && !info_only)
- info += " - Unknown emission spectrum
\n"
- completed = FALSE
- else
- var/U = C.required_catalysts[I]
- info += " - [U] [R.name]
\n"
+ if(LAZYLEN(C.required_catalysts))
+ info += "
Reaction would require the following catalysts:
\n"
+ for(var/I in C.required_catalysts)
+ var/datum/reagent/R = GLOB.chemical_reagents_list["[I]"]
+ if(R.chemclass >= CHEM_CLASS_SPECIAL && !GLOB.chemical_data.chemical_identified_list[R.id] && !info_only)
+ info += " - Unknown emission spectrum
\n"
+ completed = FALSE
+ else
+ var/U = C.required_catalysts[I]
+ info += " - [U] [R.name]
\n"
else if(GLOB.chemical_gen_classes_list["C1"].Find(S.id))
info += " - [S.name]
\n"
else
diff --git a/code/modules/paperwork/paper_bundle.dm b/code/modules/paperwork/paper_bundle.dm
index 8cbb7a266ffe..c0d9bee3aa85 100644
--- a/code/modules/paperwork/paper_bundle.dm
+++ b/code/modules/paperwork/paper_bundle.dm
@@ -44,8 +44,8 @@
else
if(HAS_TRAIT(W, TRAIT_TOOL_PEN) || istype(W, /obj/item/toy/crayon))
close_browser(usr, name) //Closes the dialog
- if(page < contents.len)
- page = contents.len
+ if(page < length(contents))
+ page = length(contents)
P = contents[page]
P.attackby(W, user)
@@ -148,8 +148,8 @@
page--
playsound(src.loc, "pageturn", 15, 1)
if(href_list["remove"])
- if(contents.len < page)
- page = contents.len
+ if(length(contents) < page)
+ page = length(contents)
var/obj/item/W = contents[page]
usr.put_in_hands(W)
to_chat(usr, SPAN_NOTICE("You remove the [W.name] from the bundle."))
@@ -175,6 +175,9 @@
else
to_chat(usr, SPAN_NOTICE("You need to hold it in your hands!"))
+/obj/item/paper_bundle/proc/operator[](index_num)
+ return contents[index_num]
+
/obj/item/paper_bundle/verb/rename()
set name = "Rename bundle"
set category = "Object"
@@ -198,7 +201,7 @@
qdel(src)
/obj/item/paper_bundle/update_icon()
- if(contents.len)
+ if(length(contents))
var/obj/item/I = contents[1]
icon_state = I.icon_state
overlays = I.overlays
diff --git a/code/modules/paperwork/paperbin.dm b/code/modules/paperwork/paperbin.dm
index 6ee3a12faffd..4c74cad468e6 100644
--- a/code/modules/paperwork/paperbin.dm
+++ b/code/modules/paperwork/paperbin.dm
@@ -28,7 +28,7 @@
/obj/item/paper_bin/attack_hand(mob/user)
var/response = ""
- if(!papers.len > 0)
+ if(!length(papers) > 0)
response = alert(user, "What kind of paper?", "Paper type request", "Regular", sec_paper_type, "Cancel")
if (response != "Regular" && response != "Carbon-Copy" && response != "Company Document" && response != "USCM Document")
add_fingerprint(user)
@@ -39,8 +39,8 @@
update_icon()
var/obj/item/paper/P
- if(papers.len > 0) //If there's any custom paper on the stack, use that instead of creating a new paper.
- P = papers[papers.len]
+ if(length(papers) > 0) //If there's any custom paper on the stack, use that instead of creating a new paper.
+ P = papers[length(papers)]
papers.Remove(P)
else
if (response == "Regular")
diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm
index 0d5eca1dd9a1..df421e8424cb 100644
--- a/code/modules/paperwork/photocopier.dm
+++ b/code/modules/paperwork/photocopier.dm
@@ -199,7 +199,7 @@
//Iterates through stamps and puts a matching gray overlay onto the copy
var/image/img //
- for (var/j = 1, j <= original.ico.len, j++)
+ for (var/j = 1, j <= length(original.ico), j++)
if (findtext(original.ico[j], "cap") || findtext(original.ico[j], "cent"))
img = image('icons/obj/items/paper.dmi', "paper_stamp-circle")
else if (findtext(original.ico[j], "deny"))
diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm
index 068344b905f2..6c1c234eaadd 100644
--- a/code/modules/power/apc.dm
+++ b/code/modules/power/apc.dm
@@ -457,13 +457,13 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list(
icon_state = "apcewires"
if(!(update_state & UPSTATE_ALLGOOD))
- if(overlays.len)
+ if(length(overlays))
overlays = 0
return
if(update & 2)
- if(overlays.len)
+ if(length(overlays))
overlays = 0
if(!(stat & (BROKEN|MAINT)) && update_state & UPSTATE_ALLGOOD)
diff --git a/code/modules/power/power_monitor.dm b/code/modules/power/power_monitor.dm
index 9a95047db6cc..74633cf368a5 100644
--- a/code/modules/power/power_monitor.dm
+++ b/code/modules/power/power_monitor.dm
@@ -57,7 +57,7 @@
t += ""
- if(L.len > 0)
+ if(length(L) > 0)
var/total_demand = 0
t += "Area Eqp./Lgt./Env. Load Cell
"
diff --git a/code/modules/power/powernet.dm b/code/modules/power/powernet.dm
index 0fe62154966b..5d09a06fc633 100644
--- a/code/modules/power/powernet.dm
+++ b/code/modules/power/powernet.dm
@@ -26,7 +26,7 @@
var/numapc = 0
- if(nodes && nodes.len) // Added to fix a bad list bug -- TLE
+ if(LAZYLEN(nodes)) // Added to fix a bad list bug -- TLE
for(var/obj/structure/machinery/power/terminal/term in nodes)
if( istype( term.master, /obj/structure/machinery/power/apc ) )
numapc++
@@ -45,7 +45,7 @@
perapc = avail/numapc + perapc_excess
if( netexcess > 100) // if there was excess power last cycle
- if(nodes && nodes.len)
+ if(LAZYLEN(nodes))
for(var/obj/structure/machinery/power/smes/S in nodes) // find the SMESes in the network
if(S.powernet == src)
S.restore() // and restore some of the power that was used
diff --git a/code/modules/projectiles/ammo_boxes/ammo_boxes.dm b/code/modules/projectiles/ammo_boxes/ammo_boxes.dm
index 7f6919b94f3a..c0139c97f66f 100644
--- a/code/modules/projectiles/ammo_boxes/ammo_boxes.dm
+++ b/code/modules/projectiles/ammo_boxes/ammo_boxes.dm
@@ -78,7 +78,7 @@
var/overlay_ammo_type = "_reg" //used for ammo type color overlay
var/overlay_gun_type = "_m41" //used for text overlay
var/overlay_content = "_reg"
- var/magazine_type = /obj/item/ammo_magazine/rifle
+ var/obj/item/ammo_magazine/magazine_type = /obj/item/ammo_magazine/rifle
var/num_of_magazines = 10
var/handfuls = FALSE
var/icon_state_deployed = null
@@ -126,10 +126,10 @@
if(src.loc != user) //feeling box weight in a distance is unnatural and bad
return
if(!handfuls)
- if(contents.len < (num_of_magazines/3))
+ if(length(contents) < (num_of_magazines/3))
. += SPAN_INFO("It feels almost empty.")
return
- if(contents.len < ((num_of_magazines*2)/3))
+ if(length(contents) < ((num_of_magazines*2)/3))
. += SPAN_INFO("It feels about half full.")
return
. += SPAN_INFO("It feels almost full.")
diff --git a/code/modules/projectiles/ammo_boxes/box_structures.dm b/code/modules/projectiles/ammo_boxes/box_structures.dm
index 8ae178edf586..da0b700068b9 100644
--- a/code/modules/projectiles/ammo_boxes/box_structures.dm
+++ b/code/modules/projectiles/ammo_boxes/box_structures.dm
@@ -32,13 +32,13 @@
if(!item_box.handfuls)
if(item_box.overlay_ammo_type)
overlays += image(text_markings_icon, icon_state = "base_type[item_box.overlay_ammo_type]") //adding base color stripes
- if(item_box.contents.len == item_box.num_of_magazines)
+ if(length(item_box.contents) == item_box.num_of_magazines)
overlays += image(magazines_icon, icon_state = "magaz[item_box.overlay_content]")
- else if(item_box.contents.len > (item_box.num_of_magazines/2))
+ else if(length(item_box.contents) > (item_box.num_of_magazines/2))
overlays += image(magazines_icon, icon_state = "magaz[item_box.overlay_content]_3")
- else if(item_box.contents.len > (item_box.num_of_magazines/4))
+ else if(length(item_box.contents) > (item_box.num_of_magazines/4))
overlays += image(magazines_icon, icon_state = "magaz[item_box.overlay_content]_2")
- else if(item_box.contents.len > 0)
+ else if(length(item_box.contents) > 0)
overlays += image(magazines_icon, icon_state = "magaz[item_box.overlay_content]_1")
else
var/obj/item/ammo_magazine/AM = locate(/obj/item/ammo_magazine) in item_box.contents
@@ -103,7 +103,7 @@
if(AM)
. += SPAN_INFO("It has roughly [floor(AM.current_rounds/5)] handfuls remaining.")
else
- . += SPAN_INFO("It has [item_box.contents.len] magazines out of [item_box.num_of_magazines].")
+ . += SPAN_INFO("It has [length(item_box.contents)] magazines out of [item_box.num_of_magazines].")
if(burning)
. += SPAN_DANGER("It's on fire and might explode!")
@@ -111,7 +111,7 @@
if(burning)
to_chat(user, SPAN_DANGER("It's on fire and might explode!"))
return
- if(item_box.contents.len)
+ if(length(item_box.contents))
if(!item_box.handfuls)
var/obj/item/ammo_magazine/AM = pick(item_box.contents)
item_box.contents -= AM
@@ -133,7 +133,7 @@
if(istypestrict(W,item_box.magazine_type))
if(istype(W, /obj/item/storage/box/m94))
var/obj/item/storage/box/m94/flare_pack = W
- if(flare_pack.contents.len < flare_pack.max_storage_space)
+ if(length(flare_pack.contents) < flare_pack.max_storage_space)
to_chat(user, SPAN_WARNING("[W] is not full."))
return
var/flare_type
@@ -158,7 +158,7 @@
if(cell.charge != cell.maxcharge)
to_chat(user, SPAN_WARNING("[W] needs to be fully charged before it can be stored in [src]."))
return
- if(item_box.contents.len < item_box.num_of_magazines)
+ if(length(item_box.contents) < item_box.num_of_magazines)
user.drop_inv_item_to_loc(W, src)
item_box.contents += W
to_chat(user, SPAN_NOTICE("You put \a [W] into [src]"))
diff --git a/code/modules/projectiles/ammo_boxes/misc_boxes.dm b/code/modules/projectiles/ammo_boxes/misc_boxes.dm
index 434239fe25cd..0634c76270da 100644
--- a/code/modules/projectiles/ammo_boxes/misc_boxes.dm
+++ b/code/modules/projectiles/ammo_boxes/misc_boxes.dm
@@ -96,7 +96,7 @@
/obj/item/ammo_box/magazine/misc/flares/get_severity()
var/flare_amount = 0
for(var/obj/item/storage/box/m94/flare_box in contents)
- flare_amount += flare_box.contents.len
+ flare_amount += length(flare_box.contents)
flare_amount = floor(flare_amount / 8) //10 packs, 8 flares each, maximum total of 10 flares we can throw out
return flare_amount
diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm
index 305241e8ae1e..4c30cbc736c6 100644
--- a/code/modules/projectiles/gun.dm
+++ b/code/modules/projectiles/gun.dm
@@ -428,6 +428,10 @@
SEND_SIGNAL(src, COMSIG_GUN_RECALCULATE_ATTACHMENT_BONUSES)
/obj/item/weapon/gun/proc/handle_random_attachments()
+ #ifdef AUTOWIKI // no randomness for my gun pictures, please
+ return
+ #endif
+
var/attachmentchoice
var/randchance = random_spawn_chance
@@ -472,7 +476,7 @@
/obj/item/weapon/gun/proc/handle_starting_attachment()
- if(starting_attachment_types && starting_attachment_types.len)
+ if(LAZYLEN(starting_attachment_types))
for(var/path in starting_attachment_types)
var/obj/item/attachable/A = new path(src)
A.Attach(src)
diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm
index d1aff8a33969..e2108364e9ac 100644
--- a/code/modules/projectiles/gun_attachables.dm
+++ b/code/modules/projectiles/gun_attachables.dm
@@ -1054,6 +1054,7 @@ Defined in conflicts.dm of the #defines folder.
button.name = name
/datum/action/item_action/toggle_zoom_level/action_activate()
+ . = ..()
var/obj/item/weapon/gun/G = holder_item
var/obj/item/attachable/scope/variable_zoom/S = G.attachments["rail"]
S.toggle_zoom_level()
@@ -1674,6 +1675,7 @@ Defined in conflicts.dm of the #defines folder.
/datum/action/item_action/vulture
/datum/action/item_action/vulture/action_activate()
+ . = ..()
var/obj/item/weapon/gun/gun_holder = holder_item
var/obj/item/attachable/vulture_scope/scope = gun_holder.attachments["rail"]
if(!istype(scope))
@@ -2973,7 +2975,7 @@ Defined in conflicts.dm of the #defines folder.
current_rounds += transfered_rounds
FT.current_rounds -= transfered_rounds
- var/amount_of_reagents = FT.reagents.reagent_list.len
+ var/amount_of_reagents = length(FT.reagents.reagent_list)
var/amount_removed_per_reagent = transfered_rounds / amount_of_reagents
for(var/datum/reagent/R in FT.reagents.reagent_list)
R.volume -= amount_removed_per_reagent
@@ -3235,7 +3237,7 @@ Defined in conflicts.dm of the #defines folder.
ammo_datum.flamer_reagent_id = flamer_reagent.id
P.generate_bullet(ammo_datum)
P.icon_state = "naptha_ball"
- P.color = flamer_reagent.color
+ P.color = flamer_reagent.burncolor
P.hit_effect_color = flamer_reagent.burncolor
P.fire_at(target, user, user, max_range, AMMO_SPEED_TIER_2, null)
var/turf/user_turf = get_turf(user)
@@ -3515,6 +3517,7 @@ Defined in conflicts.dm of the #defines folder.
button.overlays += image('icons/mob/hud/actions.dmi', button, action_icon_state)
/datum/action/item_action/bipod/toggle_full_auto_switch/action_activate()
+ . = ..()
var/obj/item/weapon/gun/holder_gun = holder_item
var/obj/item/attachable/bipod/attached_bipod = holder_gun.attachments["under"]
diff --git a/code/modules/projectiles/gun_helpers.dm b/code/modules/projectiles/gun_helpers.dm
index c4cce7c5f996..efc7abf3aa20 100644
--- a/code/modules/projectiles/gun_helpers.dm
+++ b/code/modules/projectiles/gun_helpers.dm
@@ -530,7 +530,7 @@ DEFINES in setup.dm, referenced here.
/mob/living/carbon/human/verb/holster_verb(unholster_number_offset = 1 as num)
set name = "holster"
set hidden = TRUE
- if(usr.is_mob_incapacitated(TRUE) || usr.is_mob_restrained())
+ if(usr.is_mob_incapacitated(TRUE) || usr.is_mob_restrained() || IsKnockDown() || HAS_TRAIT_FROM(src, TRAIT_UNDENSE, LYING_DOWN_TRAIT))
to_chat(src, SPAN_WARNING("You can't draw a weapon in your current state."))
return
@@ -815,11 +815,11 @@ DEFINES in setup.dm, referenced here.
if(attachment && (attachment.flags_attach_features & ATTACH_ACTIVATION) )
usable_attachments += attachment
- if(!usable_attachments.len) //No usable attachments.
+ if(!length(usable_attachments)) //No usable attachments.
to_chat(usr, SPAN_WARNING("[src] does not have any usable attachments!"))
return
- if(usable_attachments.len == 1) //Activates the only attachment if there is only one.
+ if(length(usable_attachments) == 1) //Activates the only attachment if there is only one.
chosen_attachment = usable_attachments[1]
else
chosen_attachment = tgui_input_list(usr, "Which attachment to activate?", "Activate attachment", usable_attachments)
diff --git a/code/modules/projectiles/guns/energy.dm b/code/modules/projectiles/guns/energy.dm
index b2ec3dea63ce..717914e38eba 100644
--- a/code/modules/projectiles/guns/energy.dm
+++ b/code/modules/projectiles/guns/energy.dm
@@ -268,6 +268,7 @@
/datum/action/item_action/taser/action_activate()
+ . = ..()
var/obj/item/weapon/gun/energy/taser/taser = holder_item
if(!ishuman(owner))
return
diff --git a/code/modules/projectiles/guns/flamer/flamer.dm b/code/modules/projectiles/guns/flamer/flamer.dm
index 28bcc76c42df..c54d62e148b7 100644
--- a/code/modules/projectiles/guns/flamer/flamer.dm
+++ b/code/modules/projectiles/guns/flamer/flamer.dm
@@ -203,7 +203,7 @@
/obj/item/weapon/gun/flamer/proc/unleash_flame(atom/target, mob/living/user)
set waitfor = 0
last_fired = world.time
- if(!current_mag || !current_mag.reagents || !current_mag.reagents.reagent_list.len)
+ if(!current_mag || !current_mag.reagents || !length(current_mag.reagents.reagent_list))
return
var/datum/reagent/R = current_mag.reagents.reagent_list[1]
@@ -234,7 +234,7 @@
/obj/item/weapon/gun/flamer/proc/unleash_smoke(atom/target, mob/living/user)
last_fired = world.time
- if(!current_mag || !current_mag.reagents || !current_mag.reagents.reagent_list.len)
+ if(!current_mag || !current_mag.reagents || !length(current_mag.reagents.reagent_list))
return
var/source_turf = get_turf(user)
@@ -251,7 +251,7 @@
var/turf/turfs[] = get_line(user, target, FALSE)
var/turf/first_turf = turfs[1]
var/turf/second_turf = turfs[2]
- var/ammount_required = (min(turfs.len, smoke_range) * use_multiplier) // the ammount of units that this click requires
+ var/ammount_required = (min(length(turfs), smoke_range) * use_multiplier) // the ammount of units that this click requires
for(var/turf/turf in turfs)
if(chemical.volume < ammount_required)
@@ -294,7 +294,7 @@
/obj/item/weapon/gun/flamer/proc/unleash_foam(atom/target, mob/living/user)
last_fired = world.time
- if(!current_mag || !current_mag.reagents || !current_mag.reagents.reagent_list.len)
+ if(!current_mag || !current_mag.reagents || !length(current_mag.reagents.reagent_list))
return
var/source_turf = get_turf(user)
@@ -305,7 +305,7 @@
var/turf/turfs[] = get_line(user, target, FALSE)
var/turf/first_turf = turfs[1]
- var/ammount_required = (min(turfs.len, foam_range) * use_multiplier) // the ammount of units that this click requires
+ var/ammount_required = (min(length(turfs), foam_range) * use_multiplier) // the ammount of units that this click requires
for(var/turf/turf in turfs)
if(chemical.volume < ammount_required)
diff --git a/code/modules/projectiles/guns/lever_action.dm b/code/modules/projectiles/guns/lever_action.dm
index a8fb78f72a9c..179ce8d787d0 100644
--- a/code/modules/projectiles/guns/lever_action.dm
+++ b/code/modules/projectiles/guns/lever_action.dm
@@ -378,7 +378,6 @@ their unique feature is that a direct hit will buff your damage and firerate
/obj/item/attachable/bayonet/upp, // Barrel
/obj/item/attachable/bayonet,
/obj/item/attachable/extended_barrel,
- /obj/item/attachable/heavy_barrel,
/obj/item/attachable/suppressor,
/obj/item/attachable/compensator,
/obj/item/attachable/reddot, // Rail
@@ -393,9 +392,9 @@ their unique feature is that a direct hit will buff your damage and firerate
/obj/item/weapon/gun/lever_action/xm88/set_gun_config_values()
..()
- set_fire_delay(FIRE_DELAY_TIER_2)
+ set_fire_delay(FIRE_DELAY_TIER_2 + FIRE_DELAY_TIER_11)
lever_delay = FIRE_DELAY_TIER_3
- accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_5
+ accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_2
accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10
scatter = SCATTER_AMOUNT_TIER_8
burst_scatter_mult = 0
diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm
index b631f093bafe..fbe24434d542 100644
--- a/code/modules/projectiles/guns/rifles.dm
+++ b/code/modules/projectiles/guns/rifles.dm
@@ -557,6 +557,7 @@
//---ability actions--\\
/datum/action/item_action/m46c/action_activate()
+ . = ..()
var/obj/item/weapon/gun/rifle/m46c/protag_gun = holder_item
if(!ishuman(owner))
return
@@ -1587,6 +1588,11 @@
/obj/item/weapon/gun/rifle/m4ra/training
current_mag = /obj/item/ammo_magazine/rifle/m4ra/rubber
+/obj/item/weapon/gun/rifle/m4ra/tactical
+ current_mag = /obj/item/ammo_magazine/rifle/m4ra/ext
+ starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/suppressor, /obj/item/attachable/angledgrip)
+
+
//-------------------------------------------------------
//L42A Battle Rifle
diff --git a/code/modules/projectiles/guns/shotguns.dm b/code/modules/projectiles/guns/shotguns.dm
index 5acad2255356..a0bb3f8f852c 100644
--- a/code/modules/projectiles/guns/shotguns.dm
+++ b/code/modules/projectiles/guns/shotguns.dm
@@ -838,6 +838,7 @@ can cause issues with ammo types getting mixed up during the burst.
return TRUE
/datum/action/item_action/specialist/twobore_brace/action_activate()
+ . = ..()
var/obj/item/weapon/gun/shotgun/double/twobore/G = holder_item
if(G.braced)
return
@@ -1020,7 +1021,7 @@ can cause issues with ammo types getting mixed up during the burst.
throw_turfs.Remove(T)
continue
var/list/turf/path = get_line(get_step_towards(src, T), T) //Same path throw code will calculate from.
- if(!path.len)
+ if(!length(path))
throw_turfs.Remove(T)
continue
var/prev_turf = start_turf
diff --git a/code/modules/projectiles/guns/smartgun.dm b/code/modules/projectiles/guns/smartgun.dm
index a2f2a8a003a2..7c628463b1ef 100644
--- a/code/modules/projectiles/guns/smartgun.dm
+++ b/code/modules/projectiles/guns/smartgun.dm
@@ -178,6 +178,7 @@
//---ability actions--\\
/datum/action/item_action/smartgun/action_activate()
+ . = ..()
var/obj/item/weapon/gun/smartgun/G = holder_item
if(!ishuman(owner))
return
@@ -501,7 +502,7 @@
path = get_line(user, M)
- if(path.len)
+ if(length(path))
var/blocked = FALSE
for(T in path)
if(T.density || T.opacity)
@@ -524,9 +525,9 @@
else
conscious_targets += M
- if(conscious_targets.len)
+ if(length(conscious_targets))
. = pick(conscious_targets)
- else if(unconscious_targets.len)
+ else if(length(unconscious_targets))
. = pick(unconscious_targets)
/obj/item/weapon/gun/smartgun/proc/process_shot(mob/living/user, warned)
@@ -595,6 +596,7 @@
// ID lock action \\
/datum/action/item_action/co_sg/action_activate()
+ . = ..()
var/obj/item/weapon/gun/smartgun/co/protag_gun = holder_item
if(!ishuman(owner))
return
diff --git a/code/modules/projectiles/guns/smgs.dm b/code/modules/projectiles/guns/smgs.dm
index 69fd5d968750..466a09612c54 100644
--- a/code/modules/projectiles/guns/smgs.dm
+++ b/code/modules/projectiles/guns/smgs.dm
@@ -168,7 +168,8 @@
/obj/item/attachable/lasersight, // Under
/obj/item/attachable/gyro,
/obj/item/attachable/bipod,
- /obj/item/attachable/burstfire_assembly
+ /obj/item/attachable/burstfire_assembly,
+ /obj/item/attachable/attached_gun/grenade/m203,
)
flags_gun_features = GUN_CAN_POINTBLANK|GUN_ANTIQUE
@@ -192,6 +193,13 @@
damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_4
recoil_unwielded = RECOIL_AMOUNT_TIER_5
+/obj/item/weapon/gun/smg/mp5/Initialize(mapload, spawn_empty)
+ . = ..()
+ if(prob(10))
+ var/obj/item/attachable/attached_gun/grenade/m203/UGL = new(src)
+ UGL.Attach(src)
+ update_attachable(UGL.slot)
+
//-------------------------------------------------------
//MP27, based on the MP27, based on the M7.
diff --git a/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm b/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm
index e2643c580a16..06ac5428bfc6 100644
--- a/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm
+++ b/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm
@@ -222,6 +222,7 @@
update_icon()
/datum/action/item_action/toggle_firing_level/action_activate()
+ . = ..()
var/obj/item/weapon/gun/launcher/grenade/G = holder_item
if(!ishuman(owner))
return
diff --git a/code/modules/projectiles/guns/specialist/scout.dm b/code/modules/projectiles/guns/specialist/scout.dm
index c2c5abd54add..8443e59580cc 100644
--- a/code/modules/projectiles/guns/specialist/scout.dm
+++ b/code/modules/projectiles/guns/specialist/scout.dm
@@ -81,3 +81,6 @@
if(!skillcheck(user, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL) && user.skills.get_skill_level(SKILL_SPEC_WEAPONS) != SKILL_SPEC_SCOUT)
to_chat(user, SPAN_WARNING("You don't seem to know how to use \the [src]..."))
return FALSE
+
+/obj/item/weapon/gun/rifle/m4ra_custom/tactical
+ starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/bayonet, /obj/item/attachable/angledgrip)
diff --git a/code/modules/projectiles/guns/specialist/sniper.dm b/code/modules/projectiles/guns/specialist/sniper.dm
index a6bb400ba5c9..b400350e415b 100644
--- a/code/modules/projectiles/guns/specialist/sniper.dm
+++ b/code/modules/projectiles/guns/specialist/sniper.dm
@@ -62,6 +62,7 @@
ACTIONS SPECIALSIT SNIPER CAN TAKE
*/
/datum/action/item_action/specialist/aimed_shot/action_activate()
+ . = ..()
if(!ishuman(owner))
return
var/mob/living/carbon/human/H = owner
@@ -222,7 +223,7 @@
/datum/action/item_action/specialist/aimed_shot/proc/check_shot_is_blocked(mob/firer, mob/target, obj/projectile/P)
var/list/turf/path = get_line(firer, target, include_start_atom = FALSE)
- if(!path.len || get_dist(firer, target) > P.ammo.max_range)
+ if(!length(path) || get_dist(firer, target) > P.ammo.max_range)
return TRUE
var/blocked = FALSE
@@ -276,6 +277,7 @@
return TRUE
/datum/action/item_action/specialist/toggle_laser/action_activate()
+ . = ..()
var/obj/item/weapon/gun/rifle/sniper/sniper_rifle = holder_item
if(owner.get_held_item() != sniper_rifle)
diff --git a/code/modules/projectiles/item_to_box_mapping.dm b/code/modules/projectiles/item_to_box_mapping.dm
index 45277d194b38..5111ffc0033b 100644
--- a/code/modules/projectiles/item_to_box_mapping.dm
+++ b/code/modules/projectiles/item_to_box_mapping.dm
@@ -29,20 +29,21 @@
/datum/item_to_box_mapping/New()
//Ammo magazine boxes, minus loose ammo boxes
- for(var/obj/item/ammo_box/magazine/ammo_box as anything in typesof(/obj/item/ammo_box/magazine) - /obj/item/ammo_box/magazine/misc)
+ for(var/obj/item/ammo_box/magazine/ammo_box as anything in typesof(/obj/item/ammo_box/magazine) - /obj/item/ammo_box/magazine/misc - /obj/item/ammo_box/magazine/shotgun/light)
if(initial(ammo_box.empty))
//Ignore all the empty boxes
continue
- if(initial(ammo_box.handfuls))
- //Ignore all the loose ammo boxes because they map with really bad numbers
- continue
var/datum/item_box_pairing/item_box_pairing = new()
item_box_pairing.box = ammo_box
item_box_pairing.item = initial(ammo_box.magazine_type)
if(!item_box_pairing.item)
//if the item is null somehow
continue
- item_box_pairing.items_in_box = initial(ammo_box.num_of_magazines)
+ if(initial(ammo_box.handfuls))
+ //If we are using handfuls we need to do some wonky conversion
+ item_box_pairing.items_in_box = initial(ammo_box.num_of_magazines) / initial(ammo_box.magazine_type.max_rounds)
+ else
+ item_box_pairing.items_in_box = initial(ammo_box.num_of_magazines)
add_pairing(item_box_pairing)
//Grenade packets
diff --git a/code/modules/projectiles/magazines/flamer.dm b/code/modules/projectiles/magazines/flamer.dm
index 8a453beb90b4..2bdc0546c2c9 100644
--- a/code/modules/projectiles/magazines/flamer.dm
+++ b/code/modules/projectiles/magazines/flamer.dm
@@ -78,7 +78,7 @@
if(!istype(target, /obj/structure/reagent_dispensers/fueltank) && !istype(target, /obj/item/tool/weldpack) && !istype(target, /obj/item/storage/backpack/marine/engineerpack))
return ..()
- if(!target.reagents || target.reagents.reagent_list.len < 1)
+ if(!target.reagents || length(target.reagents.reagent_list) < 1)
to_chat(user, SPAN_WARNING("[target] is empty!"))
return
@@ -133,7 +133,7 @@
/obj/item/ammo_magazine/flamer_tank/get_examine_text(mob/user)
. = ..()
. += SPAN_NOTICE("It contains:")
- if(reagents && reagents.reagent_list.len)
+ if(reagents && length(reagents.reagent_list))
for(var/datum/reagent/R in reagents.reagent_list)
. += SPAN_NOTICE(" [R.volume] units of [R.name].")
else
@@ -244,7 +244,7 @@
max_duration = 50
/obj/item/ammo_magazine/flamer_tank/smoke
- name = "Custom incinerator smoke tank"
+ name = "custom incinerator smoke tank"
desc = "A tank holding powdered smoke that expands when exposed to an open flame and carries any chemicals along with it."
matter = list("metal" = 3750)
flamer_chem = null
@@ -252,7 +252,7 @@
//tanks printable by the research biomass machine
/obj/item/ammo_magazine/flamer_tank/custom/upgraded
- name = "Upgraded custom incinerator tank"
+ name = "upgraded custom incinerator tank"
desc = "A fuel tank used to store fuel for use in the M240 incinerator unit. This one has been modified with a larger and more sophisticated internal propellant tank, allowing for bigger capacity and stronger fuels."
matter = list("metal" = 50) // no free metal
flamer_chem = null
@@ -264,7 +264,7 @@
custom = TRUE
/obj/item/ammo_magazine/flamer_tank/smoke/upgraded
- name = "Large custom incinerator smoke tank"
+ name = "large custom incinerator smoke tank"
desc = "A tank holding powdered smoke that expands when exposed to an open flame and carries any chemicals along with it. This one has been outfitted with an upgraded internal compressor, allowing for bigger capacity."
matter = list("metal" = 50) //no free metal
flamer_chem = null
diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm
index c1a43bda0ae8..d91e2ca47c1a 100644
--- a/code/modules/projectiles/projectile.dm
+++ b/code/modules/projectiles/projectile.dm
@@ -298,7 +298,7 @@
var/pixel_x_source = vis_source.x * world.icon_size + vis_source_pixel_x
var/pixel_y_source = vis_source.y * world.icon_size + vis_source_pixel_y
- var/turf/vis_target = path[path.len]
+ var/turf/vis_target = path[length(path)]
var/pixel_x_target = vis_target.x * world.icon_size + p_x
var/pixel_y_target = vis_target.y * world.icon_size + p_y
@@ -311,7 +311,7 @@
//Determine apparent position along visual path, then lerp between start and end positions
- var/vis_length = vis_travelled + path.len
+ var/vis_length = vis_travelled + length(path)
var/vis_current = vis_travelled + speed * (time_carry * 0.1) //speed * (time_carry * 0.1) for remainder time movement, visually "catching up" to where it should be
var/vis_interpolant = vis_current / vis_length
@@ -841,8 +841,8 @@
//mobs use get_projectile_hit_chance instead of get_projectile_hit_boolean
/mob/living/proc/get_projectile_hit_chance(obj/projectile/P)
- if((body_position == LYING_DOWN || HAS_TRAIT(src, TRAIT_NESTED)) && src != P.original)
- return FALSE // Snowflake check for xeno nests, because we want bullets to fly through even though they're standing in it
+ if((body_position == LYING_DOWN || HAS_TRAIT(src, TRAIT_NO_STRAY)) && src != P.original)
+ return FALSE
var/ammo_flags = P.ammo.flags_ammo_behavior | P.projectile_override_flags
if(ammo_flags & AMMO_XENO)
if((status_flags & XENO_HOST) && HAS_TRAIT(src, TRAIT_NESTED))
@@ -1130,7 +1130,7 @@
handle_blood_splatter(get_dir(P.starting, loc))
apply_damage(damage_result,P.ammo.damage_type, P.def_zone) //Deal the damage.
- if(xeno_shields.len)
+ if(length(xeno_shields))
P.play_shielded_hit_effect(src)
else
P.play_hit_effect(src)
diff --git a/code/modules/reagents/Chemistry-Generator.dm b/code/modules/reagents/Chemistry-Generator.dm
index f4cc32be3670..813e0d9686bd 100644
--- a/code/modules/reagents/Chemistry-Generator.dm
+++ b/code/modules/reagents/Chemistry-Generator.dm
@@ -319,32 +319,6 @@
//*****************************************************************************************************/
/datum/reagent/proc/insert_property(property, level)
- //The list below defines what properties should override each other.
- var/list/conflicting_properties = list( PROPERTY_NUTRITIOUS = PROPERTY_HEMORRAGING, PROPERTY_NUTRITIOUS = PROPERTY_HEMOLYTIC, PROPERTY_TOXIC = PROPERTY_ANTITOXIC,\
- PROPERTY_CORROSIVE = PROPERTY_ANTICORROSIVE, PROPERTY_BIOCIDIC = PROPERTY_NEOGENETIC, PROPERTY_HYPERTHERMIC = PROPERTY_HYPOTHERMIC,\
- PROPERTY_NUTRITIOUS = PROPERTY_KETOGENIC, PROPERTY_PAINING = PROPERTY_PAINKILLING, PROPERTY_HALLUCINOGENIC = PROPERTY_ANTIHALLUCINOGENIC,\
- PROPERTY_HEPATOTOXIC = PROPERTY_HEPATOPEUTIC, PROPERTY_NEPHROTOXIC = PROPERTY_NEPHROPEUTIC, PROPERTY_PNEUMOTOXIC = PROPERTY_PNEUMOPEUTIC,\
- PROPERTY_OCULOTOXIC = PROPERTY_OCULOPEUTIC, PROPERTY_CARDIOTOXIC = PROPERTY_CARDIOPEUTIC, PROPERTY_NEUROTOXIC = PROPERTY_NEUROPEUTIC,\
- PROPERTY_FLUXING = PROPERTY_REPAIRING, PROPERTY_RELAXING = PROPERTY_MUSCLESTIMULATING, PROPERTY_HEMOGENIC = PROPERTY_HEMOLYTIC,\
- PROPERTY_HEMOGENIC = PROPERTY_HEMORRAGING, PROPERTY_NUTRITIOUS = PROPERTY_EMETIC,\
- PROPERTY_HYPERGENETIC = PROPERTY_NEOGENETIC, PROPERTY_HYPERGENETIC = PROPERTY_HEPATOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_NEPHROPEUTIC,\
- PROPERTY_HYPERGENETIC = PROPERTY_PNEUMOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_OCULOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_CARDIOPEUTIC,\
- PROPERTY_HYPERGENETIC = PROPERTY_NEUROPEUTIC, PROPERTY_ADDICTIVE = PROPERTY_ANTIADDICTIVE, PROPERTY_NEUROSHIELDING = PROPERTY_NEUROTOXIC,\
- PROPERTY_HYPOMETABOLIC = PROPERTY_HYPERMETABOLIC, PROPERTY_HYPERTHROTTLING = PROPERTY_NEUROINHIBITING,
- PROPERTY_FOCUSING = PROPERTY_NERVESTIMULATING, PROPERTY_THERMOSTABILIZING = PROPERTY_HYPERTHERMIC, PROPERTY_THERMOSTABILIZING = PROPERTY_HYPOTHERMIC,
- PROPERTY_AIDING = PROPERTY_NEUROINHIBITING, PROPERTY_OXYGENATING = PROPERTY_HYPOXEMIC, PROPERTY_ANTICARCINOGENIC = PROPERTY_CARCINOGENIC, \
- PROPERTY_CIPHERING = PROPERTY_CIPHERING_PREDATOR, PROPERTY_TRANSFORMATIVE = PROPERTY_ANTITOXIC, PROPERTY_MUSCLESTIMULATING = PROPERTY_NERVESTIMULATING)
- //The list below defines which properties should be combined into a combo property
- var/list/combining_properties = list( PROPERTY_DEFIBRILLATING = list(PROPERTY_MUSCLESTIMULATING, PROPERTY_CARDIOPEUTIC),\
- PROPERTY_THANATOMETABOL = list(PROPERTY_HYPOXEMIC, PROPERTY_CRYOMETABOLIZING, PROPERTY_NEUROCRYOGENIC),\
- PROPERTY_HYPERDENSIFICATING = list(PROPERTY_MUSCLESTIMULATING, PROPERTY_BONEMENDING, PROPERTY_CARCINOGENIC),\
- PROPERTY_HYPERTHROTTLING = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_HALLUCINOGENIC),\
- PROPERTY_NEUROSHIELDING = list(PROPERTY_ALCOHOLIC, PROPERTY_BALDING),\
- PROPERTY_ANTIADDICTIVE = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_ANTIHALLUCINOGENIC),\
- PROPERTY_ADDICTIVE = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_NEUROTOXIC),\
- PROPERTY_CIPHERING_PREDATOR = list(PROPERTY_CIPHERING, PROPERTY_CROSSMETABOLIZING),\
- PROPERTY_FIRE_PENETRATING = list(PROPERTY_OXYGENATING, PROPERTY_VISCOUS),\
- PROPERTY_BONEMENDING = list(PROPERTY_HYPERDENSIFICATING, PROPERTY_NUTRITIOUS))
var/datum/chem_property/match
var/datum/chem_property/initial_property
for(var/datum/chem_property/P in properties)
@@ -352,8 +326,8 @@
match = P
else
//Handle properties that combine
- for(var/C in combining_properties)
- var/list/combo = combining_properties[C]
+ for(var/C in GLOB.combining_properties)
+ var/list/combo = GLOB.combining_properties[C]
if(!combo.Find(property) || !combo.Find(P.name))
continue
var/pieces = 0
@@ -371,11 +345,11 @@
LAZYREMOVE(properties, R)
break
//Handle properties that conflict
- for(var/C in conflicting_properties)
- if(property == C && P.name == conflicting_properties[C])
+ for(var/C in GLOB.conflicting_properties)
+ if(property == C && P.name == GLOB.conflicting_properties[C])
match = P
break
- else if (property == conflicting_properties[C] && C == P.name)
+ else if (property == GLOB.conflicting_properties[C] && C == P.name)
match = P
break
if(match)
diff --git a/code/modules/reagents/Chemistry-Holder.dm b/code/modules/reagents/Chemistry-Holder.dm
index 710cca821385..de365de8e2a6 100644
--- a/code/modules/reagents/Chemistry-Holder.dm
+++ b/code/modules/reagents/Chemistry-Holder.dm
@@ -39,13 +39,13 @@
var/total_transfered = 0
var/current_list_element = 1
- current_list_element = rand(1,reagent_list.len)
+ current_list_element = rand(1,length(reagent_list))
while(total_transfered != amount)
if(total_transfered >= amount) break
- if(total_volume <= 0 || !reagent_list.len) break
+ if(total_volume <= 0 || !length(reagent_list)) break
- if(current_list_element > reagent_list.len) current_list_element = 1
+ if(current_list_element > length(reagent_list)) current_list_element = 1
var/datum/reagent/current_reagent = reagent_list[current_list_element]
remove_reagent(current_reagent.id, 1)
@@ -62,17 +62,17 @@
var/total_transfered = 0
var/current_list_element = 1
- current_list_element = rand(1, reagent_list.len)
+ current_list_element = rand(1, length(reagent_list))
while(total_transfered != amount)
if(total_transfered >= amount) break
- if(total_volume <= 0 || !reagent_list.len) break
+ if(total_volume <= 0 || !length(reagent_list)) break
- if(current_list_element > reagent_list.len) current_list_element = 1
+ if(current_list_element > length(reagent_list)) current_list_element = 1
var/datum/reagent/current_reagent = reagent_list[current_list_element]
if(current_reagent.id == reagent_to_ignore)
- if(reagent_list.len == 1) break //if the reagent to be avoided is the only one in the list, we're done here.
+ if(length(reagent_list) == 1) break //if the reagent to be avoided is the only one in the list, we're done here.
if(current_list_element == 1)
current_reagent = reagent_list[current_list_element + 1] //if the selected reagent was number 1, we don't want it trying to draw id.0, so we add 1
else
@@ -252,11 +252,11 @@
var/datum/chemical_reaction/C = reaction
- var/total_required_reagents = C.required_reagents.len
+ var/total_required_reagents = length(C.required_reagents)
var/total_matching_reagents = 0
var/total_required_catalysts = 0
if(C.required_catalysts)
- total_required_catalysts = C.required_catalysts.len
+ total_required_catalysts = length(C.required_catalysts)
var/total_matching_catalysts= 0
var/matching_container = 0
var/matching_other = 0
diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm
index 3e4fb8f300a3..7faf2f85a7f7 100644
--- a/code/modules/reagents/Chemistry-Reagents.dm
+++ b/code/modules/reagents/Chemistry-Reagents.dm
@@ -346,7 +346,7 @@ GLOBAL_LIST_INIT(name2reagent, build_name2reagent())
R = new P.type()
break
i++
- if(i > properties.len)
+ if(i > length(properties))
return FALSE
R.level = new_level
R.holder = src
diff --git a/code/modules/reagents/chemical_research/Chemical-Research.dm b/code/modules/reagents/chemical_research/Chemical-Research.dm
index 2050e7e8e607..a05bc132734d 100644
--- a/code/modules/reagents/chemical_research/Chemical-Research.dm
+++ b/code/modules/reagents/chemical_research/Chemical-Research.dm
@@ -87,8 +87,8 @@ GLOBAL_DATUM_INIT(chemical_data, /datum/chemical_data, new)
if(P.category & PROPERTY_TYPE_UNADJUSTABLE || P.category & PROPERTY_TYPE_ANOMALOUS)
continue
property_names += P.name
- for(var/name in research_property_data)
- property_names -= name
+ for(var/datum/chem_property/property in research_property_data)
+ property_names -= property.name
if(LAZYLEN(property_names))
has_new_properties = TRUE
for(var/name in property_names)
diff --git a/code/modules/reagents/chemistry_machinery/autodispenser.dm b/code/modules/reagents/chemistry_machinery/autodispenser.dm
index eed96564da71..05d7988b9bf3 100644
--- a/code/modules/reagents/chemistry_machinery/autodispenser.dm
+++ b/code/modules/reagents/chemistry_machinery/autodispenser.dm
@@ -164,7 +164,7 @@
data["output_container"] = output_container.name
data["output_totalvol"] = output_container.reagents.total_volume
data["output_maxvol"] = output_container.reagents.maximum_volume
- if(output_container.reagents.reagent_list.len)
+ if(length(output_container.reagents.reagent_list))
data["output_color"] = mix_color_from_reagents(output_container.reagents.reagent_list)
else
data["output_color"] = null
@@ -182,12 +182,12 @@
var/list/memorylist = program_amount[PROGRAM_MEMORY]
var/list/boxlist = program_amount[PROGRAM_BOX]
- if(memorylist.len)
+ if(length(memorylist))
data["memory"] = tgui_friendly_program_list[PROGRAM_MEMORY]
else
data["memory"] = "Empty"
- if(boxlist.len)
+ if(length(boxlist))
data["box"] = tgui_friendly_program_list[PROGRAM_BOX]
else
data["box"] = "Empty"
@@ -308,7 +308,7 @@
update_icon()
return
- for(var/i=stage,i<=programs[1].len + programs[2].len && i != 0,i++)
+ for(var/i=stage,i<=length(programs[1]) + length(programs[2]) && i != 0,i++)
if(status < AUTODISPENSER_IDLE) //We're waiting for new chems to be stored
status++
if(status == AUTODISPENSER_IDLE)
@@ -376,7 +376,7 @@
for(var/obj/item/reagent_container/glass/beaker/vial/V in input_container.contents)
if(!V.reagents.get_reagents()) //Ignore empty vials
continue
- if(V.reagents.reagent_list.len > 1) //We don't work with impure vials
+ if(length(V.reagents.reagent_list) > 1) //We don't work with impure vials
continue
var/datum/reagent/R = V.reagents.reagent_list[1]
if(program_amount[save_to]["[R.name]"])
@@ -395,11 +395,11 @@
use_power(1500)
/obj/structure/machinery/autodispenser/proc/run_program()
- if(programs[PROGRAM_MEMORY].len)
+ if(length(programs[PROGRAM_MEMORY]))
program = PROGRAM_MEMORY
else
program = PROGRAM_BOX
- if(programs[program].len && (outputmode == OUTPUT_TO_CONTAINER && output_container) || outputmode != OUTPUT_TO_CONTAINER)
+ if(length(programs[program]) && (outputmode == OUTPUT_TO_CONTAINER && output_container) || outputmode != OUTPUT_TO_CONTAINER)
status = AUTODISPENSER_RUNNING
update_icon()
else
@@ -407,8 +407,8 @@
/obj/structure/machinery/autodispenser/proc/next_stage()
stage++
- if(stage > programs[program].len) //End of program
- if(programs[PROGRAM_MEMORY].len && programs[PROGRAM_BOX].len)
+ if(stage > length(programs[program])) //End of program
+ if(length(programs[PROGRAM_MEMORY]) && length(programs[PROGRAM_BOX]))
if(program == PROGRAM_BOX)
cycle++
program--
diff --git a/code/modules/reagents/chemistry_machinery/centrifuge.dm b/code/modules/reagents/chemistry_machinery/centrifuge.dm
index 706f33e38096..c679aa1c32b9 100644
--- a/code/modules/reagents/chemistry_machinery/centrifuge.dm
+++ b/code/modules/reagents/chemistry_machinery/centrifuge.dm
@@ -176,17 +176,17 @@
cleanup()
return FALSE
- if(status == 0 && input_source == INPUT_TURING && connected_turing && connected_turing.outputmode == 2 && (connected_turing.programs[1].len || connected_turing.programs[2].len))
+ if(status == 0 && input_source == INPUT_TURING && connected_turing && connected_turing.outputmode == 2 && (length(connected_turing.programs[1]) || length(connected_turing.programs[2])))
return TRUE
return FALSE
/obj/structure/machinery/centrifuge/proc/centrifuge()
- if(!output_container.contents.len) return //Is output empty?
+ if(!length(output_container.contents)) return //Is output empty?
var/obj/item/reagent_container/source_container = input_container
if(input_source == INPUT_TURING)
source_container = connected_turing
- var/initial_reagents = source_container.reagents.reagent_list.len
+ var/initial_reagents = length(source_container.reagents.reagent_list)
var/list/vials = list()
for(var/obj/item/reagent_container/V in output_container.contents)
vials += V
@@ -203,7 +203,7 @@
var/obj/item/reagent_container/hypospray/autoinjector/A = V
if(autolabel)
A.name = "autoinjector ([autolabel])"
- else if(!(A.reagents.reagent_list.len))
+ else if(!length(A.reagents.reagent_list))
A.name = "autoinjector"
else
A.name = "autoinjector (" + A.reagents.reagent_list[1].name + ")"
@@ -213,7 +213,7 @@
else
if(autolabel)
V.name = "vial ([autolabel])"
- else if(!(V.reagents.reagent_list.len) || (V.reagents.reagent_list.len > 1))
+ else if(!length(V.reagents.reagent_list) || (length(V.reagents.reagent_list) > 1))
V.name = "vial"
else
V.name = "vial (" + V.reagents.reagent_list[1].name + ")"
diff --git a/code/modules/reagents/chemistry_machinery/chem_dispenser.dm b/code/modules/reagents/chemistry_machinery/chem_dispenser.dm
index e897d106528e..f0a3faeb75ce 100644
--- a/code/modules/reagents/chemistry_machinery/chem_dispenser.dm
+++ b/code/modules/reagents/chemistry_machinery/chem_dispenser.dm
@@ -140,7 +140,7 @@
var/list/beakerContents = list()
var/beakerCurrentVolume = 0
- if(beaker && beaker.reagents && beaker.reagents.reagent_list.len)
+ if(beaker && beaker.reagents && length(beaker.reagents.reagent_list))
for(var/datum/reagent/current_reagent in beaker.reagents.reagent_list)
beakerContents += list(list("name" = current_reagent.name, "volume" = current_reagent.volume)) // list in a list because Byond merges the first list...
beakerCurrentVolume += current_reagent.volume
diff --git a/code/modules/reagents/chemistry_machinery/chem_master.dm b/code/modules/reagents/chemistry_machinery/chem_master.dm
index 5b145f75940f..6f6d45b6712e 100644
--- a/code/modules/reagents/chemistry_machinery/chem_master.dm
+++ b/code/modules/reagents/chemistry_machinery/chem_master.dm
@@ -248,7 +248,7 @@
P.icon_state = "pill"+pillsprite
reagents.trans_to(P,amount_per_pill)
if(loaded_pill_bottle)
- if(loaded_pill_bottle.contents.len < loaded_pill_bottle.max_storage_space)
+ if(length(loaded_pill_bottle.contents) < loaded_pill_bottle.max_storage_space)
loaded_pill_bottle.handle_item_insertion(P, TRUE)
updateUsrDialog()
@@ -354,7 +354,7 @@
dat = "Please insert beaker.
"
if(pill_maker)
if(loaded_pill_bottle)
- dat += "Eject Pill Bottle \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.max_storage_space]\]
"
+ dat += "Eject Pill Bottle \[[length(loaded_pill_bottle.contents)]/[loaded_pill_bottle.max_storage_space]\]
"
else
dat += "No pill bottle inserted.
"
dat += "Close"
@@ -362,10 +362,10 @@
dat += "Eject beaker and Clear Buffer
"
if(pill_maker)
if(loaded_pill_bottle)
- dat += "Eject [loaded_pill_bottle] \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.max_storage_space]\]
"
- dat += "Add label to [loaded_pill_bottle] \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.max_storage_space]\]
"
- dat += "Set color to [loaded_pill_bottle] \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.max_storage_space]\]
"
- dat += "Transfer [loaded_pill_bottle] \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.max_storage_space]\] to the smartfridge
"
+ dat += "Eject [loaded_pill_bottle] \[[length(loaded_pill_bottle.contents)]/[loaded_pill_bottle.max_storage_space]\]
"
+ dat += "Add label to [loaded_pill_bottle] \[[length(loaded_pill_bottle.contents)]/[loaded_pill_bottle.max_storage_space]\]
"
+ dat += "Set color to [loaded_pill_bottle] \[[length(loaded_pill_bottle.contents)]/[loaded_pill_bottle.max_storage_space]\]
"
+ dat += "Transfer [loaded_pill_bottle] \[[length(loaded_pill_bottle.contents)]/[loaded_pill_bottle.max_storage_space]\] to the smartfridge
"
else
dat += "No pill bottle inserted.
"
if(!connected && pill_maker)
diff --git a/code/modules/reagents/chemistry_machinery/chem_simulator.dm b/code/modules/reagents/chemistry_machinery/chem_simulator.dm
index fd14698619ad..13e051f5dc20 100644
--- a/code/modules/reagents/chemistry_machinery/chem_simulator.dm
+++ b/code/modules/reagents/chemistry_machinery/chem_simulator.dm
@@ -1,3 +1,4 @@
+//mode datums at the bottom.
#define MODE_AMPLIFY 1
#define MODE_SUPPRESS 2
#define MODE_RELATE 3
@@ -40,7 +41,6 @@
var/ready = FALSE
var/template_filter = PROPERTY_TYPE_ALL
- var/complexity_editor = FALSE
var/creation_template
var/creation_complexity = list(CHEM_CLASS_COMMON, CHEM_CLASS_UNCOMMON, CHEM_CLASS_RARE)
var/creation_name = ""
@@ -62,29 +62,29 @@
..()
if(inoperable())
icon_state = "modifier_off"
- SSnano.nanomanager.update_uis(src) // update all UIs attached to src
/obj/structure/machinery/chem_simulator/attackby(obj/item/B, mob/living/user)
if(!skillcheck(user, SKILL_RESEARCH, SKILL_RESEARCH_TRAINED))
to_chat(user, SPAN_WARNING("You have no idea how to use this."))
return
if(istype(B, /obj/item/paper/research_notes))
- var/obj/item/paper/research_notes/N = B
+ var/obj/item/paper/research_notes/note = B
if(!target || (mode == MODE_RELATE && !reference))
- B = N.convert_to_chem_report()
+ B = note.convert_to_chem_report()
else
to_chat(user, SPAN_WARNING("Chemical data already inserted."))
return
if(istype(B, /obj/item/paper/research_report))
- if(!target)
+ var/obj/item/paper/research_report/note = B
+ if(!target && note.data)
target = B
ready = check_ready()
- else if(mode == MODE_RELATE && !reference)
- target_property = ""
+ else if(mode == MODE_RELATE && !reference && note.data)
+ target_property = null
reference = B
ready = check_ready()
else
- to_chat(user, SPAN_WARNING("Chemical data already inserted."))
+ to_chat(user, SPAN_WARNING("Chemical data [note.data ? "is already inserted" : "is refused"]"))
return
else
to_chat(user, SPAN_WARNING("[src] refuses [B]."))
@@ -93,7 +93,6 @@
to_chat(user, SPAN_NOTICE("You insert [B] into [src]."))
flick("[icon_state]_reading",src)
update_costs()
- SSnano.nanomanager.update_uis(src) // update all UIs attached to src
/obj/structure/machinery/chem_simulator/attack_hand(mob/user as mob)
if(inoperable())
@@ -101,256 +100,279 @@
if(!skillcheck(user, SKILL_RESEARCH, SKILL_RESEARCH_TRAINED))
to_chat(user, SPAN_WARNING("You have no idea how to use this."))
return
- ui_interact(user)
-
-/obj/structure/machinery/chem_simulator/ui_interact(mob/user, ui_key = "main", datum/nanoui/ui = null, force_open = 0)
- var/list/data = list(
- "rsc_credits" = GLOB.chemical_data.rsc_credits,
- "target" = target,
- "reference" = reference,
- "mode" = mode,
- "complexity_editor" = complexity_editor,
- "property_costs" = property_costs,
- "simulating" = simulating,
- "status_bar" = status_bar,
- "ready" = ready,
- "od_lvl" = new_od_level,
- "recipe_target" = recipe_target,
- "recipe_targets" = list(),
- "property_codings" = list()
- )
-
- if(simulating == SIMULATION_STAGE_FINAL)
- for(var/reagent_id in recipe_targets)
- var/datum/reagent/R = GLOB.chemical_reagents_list[reagent_id]
- var/list/id_name[0]
- id_name["[R.id]"] = R.name
- data["recipe_targets"] += id_name
+ tgui_interact(user)
- if(mode == MODE_CREATE)
- data["creation_name"] = creation_name
- data["creation_cost"] = creation_cost
- data["complexity"] = complexity_to_string_list()
-
- //List of all available properties
- data["property_data_list"] = list()
- for(var/datum/chem_property/P in GLOB.chemical_data.research_property_data)
- data["property_codings"][P.name] = P.code
- if(template_filter && !HAS_FLAG(P.category, template_filter))
- continue
- data["property_data_list"][P.name] = P.level
- data["property_data_list"] = sortAssoc(data["property_data_list"])
- //List of enabled properties
- data["target_property_list"] = list()
- for(var/datum/chem_property/P in creation_template)
- data["target_property_list"][P.name] = P.level
- if(template_filter && !HAS_FLAG(P.category, template_filter))
- continue
- //Override the editor level with the enabled property level
- data["property_data_list"][P.name] = P.level
-
- data["template_filter"] = list(
- "MED" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_MEDICINE), PROPERTY_TYPE_MEDICINE),
- "TOX" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_TOXICANT), PROPERTY_TYPE_TOXICANT),
- "STI" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_STIMULANT), PROPERTY_TYPE_STIMULANT),
- "REA" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_REACTANT), PROPERTY_TYPE_REACTANT),
- "IRR" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_IRRITANT), PROPERTY_TYPE_IRRITANT),
- "MET" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_METABOLITE), PROPERTY_TYPE_METABOLITE)
- )
-
- else if(target && target.data && target.completed)
- data["target_property_list"] = target.data.properties_to_assoc()
- for(var/datum/chem_property/P in target.data.properties)
- data["property_codings"][P.name] = P.code
-
- if(reference && reference.data && reference.completed)
- data["reference_property_list"] = reference.data.properties_to_assoc()
- for(var/datum/chem_property/P in reference.data.properties)
- data["property_codings"][P.name] = P.code
-
- if(target_property)
- data["target_property"] = target_property.name
- data["target_info"] = target_property.description
- data["target_categories"] = target_property.categories_to_string()
- else
- data["target_info"] = ""
-
- if(reference_property)
- data["reference_property"] = reference_property.name
- data["reference_info"] = reference_property.description
- data["reference_categories"] = reference_property.categories_to_string()
- else
- data["reference_info"] = ""
-
- ui = SSnano.nanomanager.try_update_ui(user, src, ui_key, ui, data, force_open)
+/obj/structure/machinery/chem_simulator/tgui_interact(mob/user, datum/tgui/ui) //death to the chem simulator! All Hail the new chem simulator!
+ ui = SStgui.try_update_ui(user, src, ui)
if(!ui)
- ui = new(user, src, ui_key, "chem_simulator.tmpl", "Synthesis Simulator", 800, 550)
- ui.set_initial_data(data)
+ ui = new(user, src, "ChemSimulator", "Chemical Simulator")
ui.open()
-/obj/structure/machinery/chem_simulator/Topic(href, href_list)
+/obj/structure/machinery/chem_simulator/ui_data(mob/user)
. = ..()
- if(.)
- return
- if(inoperable() || !ishuman(usr))
- return
- var/mob/living/carbon/human/user = usr
- if(user.stat || user.is_mob_restrained() || !in_range(src, user))
- return
+ var/list/data = list()
+ data["status"] = status_bar
+ ready = check_ready()
+ data["is_ready"] = ready
+ data["can_simulate"] = (ready && simulating == SIMULATION_STAGE_OFF)
+ data["can_eject_target"] = ((target ? TRUE : FALSE) && simulating == SIMULATION_STAGE_OFF)
+ data["can_eject_reference"] = ((reference ? TRUE : FALSE) && simulating == SIMULATION_STAGE_OFF)
+ data["is_picking_recipe"] = (simulating == SIMULATION_STAGE_FINAL && mode != MODE_CREATE)
+ data["lock_control"] = (simulating != SIMULATION_STAGE_OFF)
+ data["can_cancel_simulation"] = (simulating <= SIMULATION_STAGE_WAIT)
+ data["estimated_cost"] = (mode == MODE_CREATE ? creation_cost : (!target_property ? "NULL" : property_costs[target_property.name]))
+ calculate_new_od_level()
+ data["od_level"] = new_od_level
+ data["chemical_name"] = (mode == MODE_CREATE ? (creation_name == "" ? "NAME NOT SET" : creation_name) : (isnull(target) ? "CHEMICAL DATA NOT INSERTED" : target.data.name))
+ data["reference_name"] = (isnull(reference) ? "CHEMICAL DATA NOT INSERTED" : reference.data.name)
if(mode == MODE_CREATE && GLOB.chemical_data.has_new_properties)
update_costs()
- if(href_list["simulate"] && ready)
- simulating = SIMULATION_STAGE_BEGIN
- status_bar = "COMMENCING SIMULATION"
- icon_state = "modifier_running"
- recipe_targets = list() //reset
- start_processing()
- if(mode == MODE_CREATE)
- msg_admin_niche("[key_name(user)] has created the chemical: [creation_name]")
- else if(href_list["ejectT"])
- if(target)
- if(!user.put_in_active_hand(target))
- target.forceMove(loc)
- target = null
- target_property = null
- stop_processing()
- simulating = SIMULATION_STAGE_OFF
- flick("[icon_state]_printing",src)
- else if(href_list["ejectR"])
- if(reference)
- if(!user.put_in_active_hand(reference))
- reference.forceMove(loc)
- reference = null
- reference_property = null
- stop_processing()
- simulating = SIMULATION_STAGE_OFF
- flick("[icon_state]_printing",src)
- else if(href_list["set_mode"])
- if(mode == MODE_CREATE) //for when you set the mode away from MODE_CREATE
- target_property = null
- reference_property = null
- complexity_editor = FALSE
- switch(href_list["set_mode"])
- if("amp")
- mode = MODE_AMPLIFY
- if("sup")
- mode = MODE_SUPPRESS
- if("rel")
- mode = MODE_RELATE
- if("cre")
- mode = MODE_CREATE
- target_property = null
- reference_property = null
- calculate_new_od_level()
- if(mode == MODE_CREATE)
- calculate_creation_cost()
- update_costs()
- else if(href_list["set_target"])
- if(simulating)
- return
- if(mode == MODE_CREATE)
- var/target_name = href_list["set_target"]
- for(var/datum/chem_property/P in GLOB.chemical_data.research_property_data)
- if(P.name == target_name)
- if(target_property && target_property.name == target_name)
- //Toggle the property
- if(LAZYISIN(creation_template, target_property))
- target_property.level = 0
- LAZYREMOVE(creation_template, target_property)
- else
- target_property.level = 1
- LAZYADD(creation_template, target_property)
- calculate_creation_cost()
- else
- target_property = P
+ if(simulating == SIMULATION_STAGE_FINAL)
+ for(var/reagent_id in recipe_targets)
+ var/datum/reagent/recipe_option = GLOB.chemical_reagents_list[reagent_id]
+ data["reagent_option_data"] += list(list(
+ "id" = recipe_option.id,
+ "name" = recipe_option.name,
+ ))
+ if(target && length(target?.data?.properties))
+ for(var/datum/chem_property/target_property_data in target.data.properties)
+ var/is_locked = FALSE
+ var/conflicting_tooltip = null
+ if(!isnull(reference_property))
+ if(LAZYACCESS(GLOB.conflicting_properties, reference_property.name) == target_property_data.name || LAZYACCESS(GLOB.conflicting_properties, target_property_data.name) == reference_property.name )
+ is_locked = TRUE
+ conflicting_tooltip = "This property conflicts with the selected reference property!"
+ data["target_data"] += list(list(
+ "code" = target_property_data.code,
+ "level" = target_property_data.level,
+ "name" = target_property_data.name,
+ "desc" = target_property_data.description,
+ "cost" = property_costs[target_property_data.name],
+ "is_locked" = is_locked,
+ "tooltip" = conflicting_tooltip,
+ ))
+ else
+ data["target_data"] = null
+
+ if(reference && length(reference?.data?.properties))
+ for(var/datum/chem_property/reference_property_data in reference.data.properties)
+ var/is_locked = FALSE
+ var/conflicting_tooltip = null
+ if(!isnull(target_property))
+ if(LAZYACCESS(GLOB.conflicting_properties, target_property.name) == reference_property_data.name || LAZYACCESS(GLOB.conflicting_properties, reference_property_data.name) == target_property.name )
+ is_locked = TRUE
+ conflicting_tooltip = "This property conflicts with the selected target property!"
+ data["reference_data"] += list(list(
+ "code" = reference_property_data.code,
+ "level" = reference_property_data.level,
+ "name" = capitalize_first_letters(reference_property_data.name),
+ "desc" = reference_property_data.description,
+ "cost" = property_costs[reference_property_data.name],
+ "is_locked" = is_locked,
+ "tooltip" = conflicting_tooltip,
+ ))
+ else
+ data["reference_data"] = null
+ data["template_filters"] = list(
+ "MED" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_MEDICINE), PROPERTY_TYPE_MEDICINE),
+ "TOX" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_TOXICANT), PROPERTY_TYPE_TOXICANT),
+ "STI" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_STIMULANT), PROPERTY_TYPE_STIMULANT),
+ "REA" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_REACTANT), PROPERTY_TYPE_REACTANT),
+ "IRR" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_IRRITANT), PROPERTY_TYPE_IRRITANT),
+ "MET" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_METABOLITE), PROPERTY_TYPE_METABOLITE)
+ )
+ if(mode == MODE_CREATE)
+ for(var/datum/chem_property/known_properties in GLOB.chemical_data.research_property_data)
+ var/datum/chem_property/template_property
+ var/is_locked = FALSE
+ var/conflicting_tooltip = null
+ if(template_filter && !HAS_FLAG(known_properties.category, template_filter))
+ continue
+ for(var/template in creation_template)
+ template_property = template
+ if(LAZYACCESS(GLOB.conflicting_properties, template_property.name) == known_properties.name || LAZYACCESS(GLOB.conflicting_properties, known_properties.name) == template_property.name)
+ is_locked = TRUE
+ conflicting_tooltip = "This property conflicts with [template_property.code]!"
+ if(template_property.code == known_properties.code)
break
- else
- target_property = target.data.get_property(href_list["set_target"])
- calculate_new_od_level()
- if(simulating)
+ template_property = null
+
+ data["known_properties"] += list(list(
+ "code" = known_properties.code,
+ "level" = (isnull(template_property) ? 0 : template_property.level) ,
+ "name" = capitalize_first_letters(known_properties.name),
+ "desc" = known_properties.description,
+ "is_enabled" = LAZYISIN(creation_template, known_properties),
+ "is_locked" = is_locked,
+ "conflicting_tooltip" = conflicting_tooltip,
+ ))
+ if(!length(data["known_properties"]))
+ data["known_properties"] = null
+ data["complexity_list"] += complexity_to_string_list()
+
+ return data
+
+/obj/structure/machinery/chem_simulator/ui_static_data(mob/user)
+ . = ..()
+ var/list/static_data = list()
+ for(var/modes in subtypesof(/datum/chemical_simulator_modes))
+ var/datum/chemical_simulator_modes/modes_datum = modes
+ static_data["mode_data"] += list(list(
+ "name" = modes_datum.name,
+ "desc" = modes_datum.desc,
+ "mode_id" = modes_datum.mode_id,
+ "icon_type" = modes_datum.icon_type
+ ))
+ static_data["credits"] = GLOB.chemical_data.rsc_credits
+ return static_data
+
+/obj/structure/machinery/chem_simulator/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+ . = ..()
+ if(.)
+ return
+ switch(action)
+ if("change_mode")
+ mode = params["mode_id"]
+ update_costs()
+ if("eject_target")
+ if(target)
+ if(!usr.put_in_active_hand(target))
+ target.forceMove(loc)
+ target = null
+ target_property = null
stop_processing()
- icon_state = "modifier"
simulating = SIMULATION_STAGE_OFF
- else if(href_list["set_reference"])
- reference_property = reference.data.get_property(href_list["set_reference"])
- if(simulating)
+ flick("[icon_state]_printing",src)
+ if("eject_reference")
+ if(reference)
+ if(!usr.put_in_active_hand(reference))
+ reference.forceMove(loc)
+ reference = null
+ reference_property = null
+ stop_processing()
+ flick("[icon_state]_printing",src)
+ if("select_target_property")
+ if(mode != MODE_CREATE)
+ if(!target)
+ return
+ for(var/datum/chem_property/target_prop in target.data.properties)
+ if(target_prop.code != params["property_code"])
+ continue
+ target_property = target_prop
+ if(!target_property)
+ to_chat(usr, SPAN_WARNING("The [src] makes a suspicious wail."))
+ return
+ if("select_reference_property")
+ if(!reference)
+ return
+ for(var/datum/chem_property/reference_prop in reference.data.properties)
+ if(reference_prop.code != params["property_code"])
+ continue
+ reference_property = reference_prop
+ if(!reference_property)
+ to_chat(usr, SPAN_WARNING("The [src] makes a suspicious wail."))
+ return
+ if("simulate")
+ if(!ready)
+ return
+ simulating = SIMULATION_STAGE_BEGIN
+ status_bar = "COMMENCING SIMULATION"
+ icon_state = "modifier_running"
+ recipe_targets = list() //reset
+ start_processing()
+ if(mode == MODE_CREATE)
+ msg_admin_niche("[key_name(usr)] has created the chemical: [creation_name]")
+ if("submit_recipe_pick")
+ if(recipe_target)
+ return
+ if(params["reagent_picked"] in recipe_targets)
+ recipe_target = params["reagent_picked"]
+ finalize_simulation(chem_cache)
+ recipe_target = null
+ if("cancel_simulation")
stop_processing()
icon_state = "modifier"
simulating = SIMULATION_STAGE_OFF
- update_costs()
- else if(href_list["set_recipe_target"])
- recipe_target = href_list["set_recipe_target"]
- else if(href_list["stop_simulation"])
- stop_processing()
- icon_state = "modifier"
- simulating = SIMULATION_STAGE_OFF
- else if(href_list["finalize_simulation"] && recipe_target)
- finalize_simulation(chem_cache)
- //Template creation editor
- else if(href_list["set_name"])
- var/newname = input("Set name for template (2-20 characters)","[src]") as text
- newname = reject_bad_name(newname, TRUE, 20, FALSE)
- if(isnull(newname))
- to_chat(user, "Bad name.")
- else if(GLOB.chemical_reagents_list[newname])
- to_chat(user, "Name already taken.")
- else
- creation_name = newname
- else if(href_list["set_level"] && target_property)
- var/level_to_set = 1
- if(GLOB.chemical_data.clearance_level <= 2)
- level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4))
- else if(GLOB.chemical_data.clearance_level <= 4)
- level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4,5,6,7,8))
- else
- level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4,5,6,7,8,9,10))
- if(!level_to_set)
- return
-
- target_property.level = level_to_set
- if(target_property.max_level && target_property.level > target_property.max_level)
- target_property.level = target_property.max_level
- to_chat(user, "Max level for [target_property.name] is [target_property.max_level].")
- calculate_creation_cost()
- else if(href_list["set_od"])
- var/od_to_set = tgui_input_list(usr, "Set new OD:", "[src]", list(5,10,15,20,25,30,35,40,45,50,55,60))
- if(!od_to_set)
- return
- new_od_level = od_to_set
- creation_od_level = od_to_set
- calculate_creation_cost()
- else if(href_list["set_filter"])
- if(href_list["set_filter"] == "ALL")
- template_filter = 0
- else
- var/flag_value = text2num(href_list["config_value"])
+ if("toggle_flag")
+ var/flag_value = params["flag_id"]
if(template_filter & flag_value)
template_filter &= ~flag_value
else
template_filter |= flag_value
- else if(href_list["toggle_complexity_editor"])
- complexity_editor = !complexity_editor
- else if(href_list["set_complexity"])
- var/slot = text2num(href_list["set_complexity"])
- var/new_rarity = tgui_input_list(usr, "Set chemical rarity for complexity slot [slot]:","[src]", list("BASIC (+7)","COMMON (+4)","UNCOMMON (1)","RARE (-5)"))
- if(!new_rarity)
+ if("select_create_property")
+ if(mode == MODE_CREATE)
+ if(target_property?.code == params["property_code"])
+ if(LAZYISIN(creation_template, target_property))
+ target_property.level = 0
+ LAZYREMOVE(creation_template, target_property)
+ else
+ target_property.level = 1
+ LAZYADD(creation_template, target_property)
+ else
+ for(var/datum/chem_property/known_prop in GLOB.chemical_data.research_property_data)
+ if(known_prop.code != params["property_code"])
+ continue
+ target_property = known_prop
+ if(!target_property)
+ to_chat(usr, SPAN_WARNING("The [src] makes a suspicious wail."))
+ return
+ calculate_creation_cost()
+ if("select_overdose")
+ if(simulating == SIMULATION_STAGE_OFF && mode == MODE_CREATE)
+ var/od_to_set = tgui_input_list(usr, "Set new OD:", "[src]", list(5,10,15,20,25,30,35,40,45,50,55,60))
+ if(!od_to_set || simulating != SIMULATION_STAGE_OFF)
+ return
+ creation_od_level = od_to_set
+ calculate_new_od_level()
+ calculate_creation_cost()
+ if("change_name")
+ if(simulating == SIMULATION_STAGE_OFF && mode == MODE_CREATE)
+ var/newname = input("Set name for template (2-20 characters)","[src]") as text
+ newname = reject_bad_name(newname, TRUE, 20, FALSE)
+ if(isnull(newname))
+ to_chat(usr, SPAN_WARNING("This name is not permited."))
+ else if(GLOB.chemical_reagents_list[newname])
+ to_chat(usr, SPAN_WARNING("This name is already occupied"))
+ else
+ creation_name = newname
+ if("change_create_target_level")
+ var/level_to_set = 1
+ if(GLOB.chemical_data.clearance_level <= 2)
+ level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4))
+ else if(GLOB.chemical_data.clearance_level <= 4)
+ level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4,5,6,7,8))
+ else
+ level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4,5,6,7,8,9,10))
+ if(!level_to_set)
+ return
+ if(!LAZYISIN(creation_template, target_property))
+ LAZYADD(creation_template, target_property)
+ target_property.level = level_to_set
+ if(target_property.max_level && target_property.level > target_property.max_level)
+ target_property.level = target_property.max_level
+ to_chat(usr, "Max level for [target_property.name] is [target_property.max_level].")
+ calculate_creation_cost()
+ if("change_complexity")
+ var/slot = params["complexity_slot"]
+ var/new_rarity = tgui_input_list(usr, "Set chemical rarity for complexity slot [slot]:", "[src]", list("BASIC (+7)", "COMMON (+4)", "UNCOMMON (1)", "RARE (-5)"))
+ if(!new_rarity || simulating != SIMULATION_STAGE_OFF)
+ return
+ switch(new_rarity)
+ if("BASIC (+7)")
+ creation_complexity[slot] = CHEM_CLASS_BASIC
+ if("COMMON (+4)")
+ creation_complexity[slot] = CHEM_CLASS_COMMON
+ if("UNCOMMON (1)")
+ creation_complexity[slot] = CHEM_CLASS_UNCOMMON
+ if("RARE (-5)")
+ creation_complexity[slot] = CHEM_CLASS_RARE
+ calculate_creation_cost()
+ if("keyboard_sound")//only exists to give sound
+ playsound(loc, pick('sound/machines/computer_typing1.ogg','sound/machines/computer_typing2.ogg','sound/machines/computer_typing3.ogg'), 5, 1)
return
-
- switch(new_rarity)
- if("BASIC (+7)")
- creation_complexity[slot] = CHEM_CLASS_BASIC
- if("COMMON (+4)")
- creation_complexity[slot] = CHEM_CLASS_COMMON
- if("UNCOMMON (1)")
- creation_complexity[slot] = CHEM_CLASS_UNCOMMON
- if("RARE (-5)")
- creation_complexity[slot] = CHEM_CLASS_RARE
- calculate_creation_cost()
- ready = check_ready()
playsound(loc, pick('sound/machines/computer_typing1.ogg','sound/machines/computer_typing2.ogg','sound/machines/computer_typing3.ogg'), 5, 1)
- SSnano.nanomanager.update_uis(src)
/obj/structure/machinery/chem_simulator/process()
if(inoperable())
@@ -534,24 +556,34 @@
if(target_property.level >= GLOB.chemical_data.clearance_level*TECHTREE_LEVEL_MULTIPLIER + 2 && GLOB.chemical_data.clearance_level < 5)
status_bar = "CLEARANCE INSUFFICIENT FOR AMPLIFICATION"
return FALSE
+ else
+ status_bar = "TARGET NOT SELECTED"
+ return FALSE
if(target && length(target.data.properties) < 2)
status_bar = "TARGET COMPLEXITY IMPROPER FOR RELATION"
return FALSE
- if(reference && target)
- if(!reference.completed)
- status_bar = "INCOMPLETE DATA DETECTED IN REFERENCE"
- return FALSE
- if(reference_property)
- if(target.data.get_property(reference_property.name))
- status_bar = "REFERENCE PROPERTY ALREADY IN TARGET"
+ if(mode == MODE_RELATE && isnull(reference))
+ status_bar = "NO REFERENCE DATA DETECTED"
+ return FALSE
+ if(mode == MODE_RELATE)
+ if(reference && target)
+ if(!reference.completed)
+ status_bar = "INCOMPLETE DATA DETECTED IN REFERENCE"
return FALSE
- if(target_property)
- if(target_property.level != reference_property.level)
- status_bar = "REFERENCE AND TARGET PROPERTY MUST BE OF EQUAL LEVELS"
- return FALSE
- if(reference_property.category & PROPERTY_TYPE_UNADJUSTABLE)
- status_bar = "REFERENCE PROPERTY CAN NOT BE SIMULATED"
+ if(reference_property)
+ if(target.data.get_property(reference_property.name))
+ status_bar = "REFERENCE PROPERTY ALREADY IN TARGET"
return FALSE
+ if(target_property)
+ if(target_property.level != reference_property.level)
+ status_bar = "REFERENCE AND TARGET PROPERTY MUST BE OF EQUAL LEVELS"
+ return FALSE
+ if(reference_property.category & PROPERTY_TYPE_UNADJUSTABLE)
+ status_bar = "REFERENCE PROPERTY CAN NOT BE SIMULATED"
+ return FALSE
+ else
+ status_bar = "REFERENCE PROPERTY NOT SELECTED"
+ return FALSE
if(mode == MODE_CREATE)
if(!LAZYLEN(creation_template))
status_bar = "TEMPLATE IS EMPTY"
@@ -565,7 +597,8 @@
else if(!target)
status_bar = "NO TARGET INSERTED"
return FALSE
- status_bar = "READY"
+ if(simulating == SIMULATION_STAGE_OFF)
+ status_bar = "READY"
return TRUE
/obj/structure/machinery/chem_simulator/proc/print(id, is_new)
@@ -679,7 +712,7 @@
R.make_alike(assoc_R)
if(mode != MODE_CREATE)
- if(R.required_reagents.len > 2 && !recipe_targets[recipe_target]) //we only replace if the recipe isn't small and the target is not set TRUE to being elevated
+ if(length(R.required_reagents) > 2 && !recipe_targets[recipe_target]) //we only replace if the recipe isn't small and the target is not set TRUE to being elevated
LAZYREMOVE(R.required_reagents, pick(R.required_reagents))
R.add_component(recipe_target)
@@ -714,6 +747,36 @@
status_bar = "SIMULATION COMPLETE"
print(C.id, TRUE)
+/datum/chemical_simulator_modes
+ var/name
+ var/desc
+ var/mode_id
+ var/icon_type
+
+/datum/chemical_simulator_modes/create
+ name = "CREATE"
+ desc = "Create a new custom chemical from the known properties discovered earlier."
+ mode_id = MODE_CREATE
+ icon_type = "bolt"
+
+/datum/chemical_simulator_modes/supress
+ name = "SUPRESS"
+ desc = "Supress one level in the choosen property. This operation lowers the OD level."
+ mode_id = MODE_SUPPRESS
+ icon_type = "square-minus"
+
+/datum/chemical_simulator_modes/amplify
+ name = "AMPLIFY"
+ desc = "Amplify one level in the choosen property. This operation lowers the OD level."
+ mode_id = MODE_AMPLIFY
+ icon_type = "square-plus"
+
+/datum/chemical_simulator_modes/relate
+ name = "RELATE"
+ desc = "Use the reference chemical to replace one choosen property in the target chemical. The target and reference target property level must be equal, This operation lowers the OD level."
+ mode_id = MODE_RELATE
+ icon_type = "repeat"
+
#undef SIMULATION_FAILURE
#undef SIMULATION_STAGE_OFF
#undef SIMULATION_STAGE_FINAL
diff --git a/code/modules/reagents/chemistry_machinery/pandemic.dm b/code/modules/reagents/chemistry_machinery/pandemic.dm
index f44da3af9613..645f1bba807a 100644
--- a/code/modules/reagents/chemistry_machinery/pandemic.dm
+++ b/code/modules/reagents/chemistry_machinery/pandemic.dm
@@ -75,7 +75,7 @@
Blood = L
break
var/list/res = Blood.data_properties["resistances"]
- spawn(res.len*200)
+ spawn(length(res)*200)
wait = null
else
temphtml = "The replicator is not ready yet."
@@ -160,7 +160,7 @@
if(B)
Blood = B
break
- if(!beaker.reagents.total_volume||!beaker.reagents.reagent_list.len)
+ if(!beaker.reagents.total_volume||!length(beaker.reagents.reagent_list))
dat += "The beaker is empty
"
else if(!Blood)
dat += "No blood sample found in beaker"
@@ -172,7 +172,7 @@
if(Blood.data_properties["viruses"])
var/list/vir = Blood.data_properties["viruses"]
- if(vir.len)
+ if(length(vir))
for(var/datum/disease/D in Blood.data_properties["viruses"])
if(!D.hidden[PANDEMIC])
@@ -209,7 +209,7 @@
dat += "
Contains antibodies to: "
if(Blood.data_properties["resistances"])
var/list/res = Blood.data_properties["resistances"]
- if(res.len)
+ if(length(res))
dat += ""
for(var/type in Blood.data_properties["resistances"])
var/disease_name = "Unknown"
@@ -230,7 +230,7 @@
dat += "nothing
"
else
dat += "nothing
"
- dat += "
Eject beaker[((beaker.reagents.total_volume && beaker.reagents.reagent_list.len) ? "-- Empty beaker":"")]
"
+ dat += "
Eject beaker[((beaker.reagents.total_volume && length(beaker.reagents.reagent_list)) ? "-- Empty beaker":"")]
"
dat += "Close"
show_browser(user, "[name]
[dat]", name, "pandemic")
diff --git a/code/modules/reagents/chemistry_machinery/reagent_analyzer.dm b/code/modules/reagents/chemistry_machinery/reagent_analyzer.dm
index 51db188826b8..967177bda978 100644
--- a/code/modules/reagents/chemistry_machinery/reagent_analyzer.dm
+++ b/code/modules/reagents/chemistry_machinery/reagent_analyzer.dm
@@ -33,7 +33,7 @@
to_chat(user, SPAN_WARNING("Someone else removed the sample. Make up your mind!"))
return
processing = TRUE
- if(sample.reagents.total_volume < 30 || sample.reagents.reagent_list.len > 1)
+ if(sample.reagents.total_volume < 30 || length(sample.reagents.reagent_list) > 1)
icon_state = "reagent_analyzer_error"
reagent_process()
else
@@ -54,12 +54,12 @@
addtimer(CALLBACK(src, TYPE_PROC_REF(/obj/structure/machinery/reagent_analyzer, finish_reagent_process)), 4 SECONDS)
/obj/structure/machinery/reagent_analyzer/proc/finish_reagent_process()
- if(!sample || !sample.reagents || sample.reagents.total_volume < 30 || sample.reagents.reagent_list.len > 1)
+ if(!sample || !sample.reagents || sample.reagents.total_volume < 30 || length(sample.reagents.reagent_list) > 1)
if(!sample || !sample.reagents)
print_report(0, "SAMPLE EMPTY.")
else if(sample.reagents.total_volume < 30)
print_report(0, "SAMPLE SIZE INSUFFICIENT;
\nA sample size of 30 units is required for analysis.")
- else if(sample.reagents.reagent_list.len > 1)
+ else if(length(sample.reagents.reagent_list) > 1)
print_report(0, "SAMPLE CONTAMINATED;
\nA pure sample is required for analysis.")
else
print_report(0, "UNKNOWN.")
diff --git a/code/modules/reagents/chemistry_machinery/reagent_grinder.dm b/code/modules/reagents/chemistry_machinery/reagent_grinder.dm
index 69e6567393b9..99b19a75f527 100644
--- a/code/modules/reagents/chemistry_machinery/reagent_grinder.dm
+++ b/code/modules/reagents/chemistry_machinery/reagent_grinder.dm
@@ -90,17 +90,17 @@
updateUsrDialog()
return 0
- if(holdingitems && holdingitems.len >= limit)
+ if(LAZYLEN(holdingitems) >= limit)
to_chat(user, SPAN_WARNING("The machine cannot hold anymore items."))
return 1
if(istype(O,/obj/item/storage))
var/obj/item/storage/B = O
- if(B.contents.len > 0)
+ if(length(B.contents) > 0)
to_chat(user, SPAN_NOTICE("You start dumping the contents of [B] into [src]."))
if(!do_after(user, 15, INTERRUPT_ALL, BUSY_ICON_GENERIC)) return
for(var/obj/item/I in B)
- if(holdingitems && holdingitems.len >= limit)
+ if(LAZYLEN(holdingitems) >= limit)
to_chat(user, SPAN_WARNING("The machine cannot hold anymore items."))
break
else
@@ -165,7 +165,7 @@
if(is_beaker_ready && !is_chamber_empty && !(inoperable()))
dat += "Grind the reagents
"
dat += "Juice the reagents
"
- if(holdingitems && holdingitems.len > 0)
+ if(LAZYLEN(holdingitems) > 0)
dat += "Eject the reagents
"
if(beaker)
dat += "Detach the beaker
"
@@ -357,7 +357,7 @@
if(beaker.reagents.total_volume >= beaker.reagents.maximum_volume)
break
- if(O.reagents.reagent_list.len == 0)
+ if(length(O.reagents.reagent_list) == 0)
remove_object(O)
//Sheets
diff --git a/code/modules/reagents/chemistry_machinery/xenomorph_analyzer.dm b/code/modules/reagents/chemistry_machinery/xenomorph_analyzer.dm
index 5bf6561b28f4..62ceb37386ff 100644
--- a/code/modules/reagents/chemistry_machinery/xenomorph_analyzer.dm
+++ b/code/modules/reagents/chemistry_machinery/xenomorph_analyzer.dm
@@ -96,7 +96,7 @@
data["upgrades"] += list(list(
"name" = capitalize_first_letters(upgrade.name),
"desc" = upgrade.desc,
- "vari" = upgrade.behavior,
+ "vari" = upgrade.on_init_argument,
"cost" = price_adjustment,
"ref" = upgrade.item_reference,
"category" = upgrade.upgrade_type,
@@ -158,7 +158,7 @@
upgrade = datum_upgrades
if(upgrade.behavior == RESEARCH_UPGRADE_CATEGORY || upgrade.behavior == RESEARCH_UPGRADE_EXCLUDE_BUY)
continue
- if(produce_path == upgrade.item_reference && upgrade.behavior == variation)
+ if(produce_path == upgrade.item_reference && upgrade.on_init_argument == variation)
path_exists = TRUE
break
if(!path_exists)
@@ -178,5 +178,8 @@
/obj/structure/machinery/xenoanalyzer/proc/print_upgrade(produce_path, variation)
busy = FALSE
- new produce_path(get_turf(src), variation)
+ if(variation != RESEARCH_UPGRADE_NOTHING_TO_PASS)
+ new produce_path(get_turf(src), variation)
+ return
+ new produce_path(get_turf(src))
diff --git a/code/modules/reagents/chemistry_properties/prop_neutral.dm b/code/modules/reagents/chemistry_properties/prop_neutral.dm
index da0cc0c6054f..7bebb786aa34 100644
--- a/code/modules/reagents/chemistry_properties/prop_neutral.dm
+++ b/code/modules/reagents/chemistry_properties/prop_neutral.dm
@@ -519,6 +519,34 @@
/datum/chem_property/neutral/hyperthrottling/process_critical(mob/living/M, potency = 1, delta_time)
M.apply_effect(potency * delta_time, PARALYZE)
+/datum/chem_property/neutral/encephalophrasive
+ name = PROPERTY_ENCEPHALOPHRASIVE
+ code = "ESP"
+ description = "Drastically increases the amplitude of Gamma and Beta brain waves, allowing the host to broadcast their mind."
+ rarity = PROPERTY_LEGENDARY
+ category = PROPERTY_TYPE_STIMULANT
+ value = 8
+
+/datum/chem_property/neutral/encephalophrasive/on_delete(mob/living/chem_host)
+ ..()
+
+ chem_host.pain.recalculate_pain()
+ remove_verb(chem_host, /mob/living/carbon/human/proc/psychic_whisper)
+ to_chat(chem_host, SPAN_NOTICE("The pain in your head subsides, and you are left feeling strangely alone."))
+
+/datum/chem_property/neutral/encephalophrasive/reaction_mob(mob/chem_host, method=INGEST, volume, potency)
+ add_verb(chem_host, /mob/living/carbon/human/proc/psychic_whisper)
+ to_chat(chem_host, SPAN_NOTICE("A terrible headache manifests, and suddenly it feels as though your mind is outside of your skull."))
+
+/datum/chem_property/neutral/encephalophrasive/process(mob/living/chem_host, potency = 1, delta_time)
+ chem_host.pain.apply_pain(1 * potency)
+
+/datum/chem_property/neutral/encephalophrasive/process_overdose(mob/living/chem_host, potency = 1, delta_time)
+ chem_host.apply_damage(0.5 * potency * POTENCY_MULTIPLIER_VHIGH * delta_time, BRAIN)
+
+/datum/chem_property/neutral/encephalophrasive/process_critical(mob/living/chem_host, potency = 1, delta_time)
+ chem_host.apply_effect(20, PARALYZE)
+
/datum/chem_property/neutral/viscous
name = PROPERTY_VISCOUS
code = "VIS"
diff --git a/code/modules/reagents/chemistry_properties/prop_positive.dm b/code/modules/reagents/chemistry_properties/prop_positive.dm
index bbbb7f27639f..9243c71ae7df 100644
--- a/code/modules/reagents/chemistry_properties/prop_positive.dm
+++ b/code/modules/reagents/chemistry_properties/prop_positive.dm
@@ -71,7 +71,7 @@
/datum/chem_property/positive/repairing
name = PROPERTY_REPAIRING
code = "REP"
- description = "Repairs cybernetic organs by REDACTED."
+ description = "Repairs cybernetic organs by the use of REDACTED property of REDACTED element."
rarity = PROPERTY_UNCOMMON
category = PROPERTY_TYPE_MEDICINE
value = 2
@@ -435,7 +435,7 @@
if(L.status & (LIMB_ROBOT|LIMB_SYNTHSKIN))
L.take_damage(0, potency)
return
- if(L.implants && L.implants.len > 0)
+ if(LAZYLEN(L.implants) > 0)
var/obj/implanted_object = pick(L.implants)
if(implanted_object)
L.implants -= implanted_object
@@ -728,6 +728,11 @@
holder.durationfire = max(holder.durationfire, 1)
holder.intensityfire = max(holder.intensityfire, 1)
+ if(holder.intensityfire >= 50 && istype(holder, /datum/reagent/generated))
+ holder.burncolor = "#ffffff"
+ else
+ holder.burncolor = holder.color
+
/datum/chem_property/positive/fire/fueling
name = PROPERTY_FUELING
code = "FUL"
diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm
index c82109156a6c..1b8448991c6e 100644
--- a/code/modules/recycling/disposal.dm
+++ b/code/modules/recycling/disposal.dm
@@ -65,7 +65,7 @@
start_processing()
/obj/structure/machinery/disposal/Destroy()
- if(contents.len)
+ if(length(contents))
eject()
trunk = null
return ..()
@@ -86,7 +86,7 @@
add_fingerprint(user)
if(mode <= 0) //It's off
if(HAS_TRAIT(I, TRAIT_TOOL_SCREWDRIVER))
- if(contents.len > 0)
+ if(length(contents) > 0)
to_chat(user, SPAN_WARNING("Eject the contents first!"))
return
if(mode == DISPOSALS_OFF) //It's off but still not unscrewed
@@ -103,7 +103,7 @@
if(!HAS_TRAIT(I, TRAIT_TOOL_BLOWTORCH))
to_chat(user, SPAN_WARNING("You need a stronger blowtorch!"))
return
- if(contents.len > 0)
+ if(length(contents) > 0)
to_chat(user, SPAN_WARNING("Eject the contents first!"))
return
var/obj/item/tool/weldingtool/W = I
@@ -339,7 +339,7 @@
return
//Check for items in disposal - occupied light
- if(contents.len > 0)
+ if(length(contents) > 0)
overlays += image('icons/obj/pipes/disposal.dmi', "dispover-full")
//Charging and ready light
@@ -356,7 +356,7 @@
flush_count++
if(flush_count >= flush_after_ticks)
- if(contents.len)
+ if(length(contents))
if(mode == DISPOSALS_CHARGED)
spawn(0)
flush()
@@ -372,7 +372,7 @@
else if(disposal_pressure >= SEND_PRESSURE)
mode = DISPOSALS_CHARGED //If full enough, switch to ready mode
update()
- if(!contents.len)
+ if(!length(contents))
//Full and nothing to flush - stop processing!
stop_processing()
else
diff --git a/code/modules/recycling/sortingmachinery.dm b/code/modules/recycling/sortingmachinery.dm
index fb43d85e079d..dfb0ed8288b0 100644
--- a/code/modules/recycling/sortingmachinery.dm
+++ b/code/modules/recycling/sortingmachinery.dm
@@ -337,7 +337,7 @@
var/dat = "TagMaster 2.3
"
dat += ""
- for(var/i = 1, i <= GLOB.tagger_locations.len, i++)
+ for(var/i = 1, i <= length(GLOB.tagger_locations), i++)
dat += "[GLOB.tagger_locations[i]] | "
if (i%4==0)
diff --git a/code/modules/shuttle/computers/dropship_computer.dm b/code/modules/shuttle/computers/dropship_computer.dm
index 08a35b83071d..a28f65ce475d 100644
--- a/code/modules/shuttle/computers/dropship_computer.dm
+++ b/code/modules/shuttle/computers/dropship_computer.dm
@@ -314,7 +314,7 @@
var/original_evilution = hive.evolution_bonus
hive.override_evilution(XENO_HIJACK_EVILUTION_BUFF, TRUE)
if(hive.living_xeno_queen)
- var/datum/action/xeno_action/onclick/grow_ovipositor/ovi_ability = get_xeno_action_by_type(hive.living_xeno_queen, /datum/action/xeno_action/onclick/grow_ovipositor)
+ var/datum/action/xeno_action/onclick/grow_ovipositor/ovi_ability = get_action(hive.living_xeno_queen, /datum/action/xeno_action/onclick/grow_ovipositor)
ovi_ability.reduce_cooldown(ovi_ability.xeno_cooldown)
addtimer(CALLBACK(hive, TYPE_PROC_REF(/datum/hive_status, override_evilution), original_evilution, FALSE), XENO_HIJACK_EVILUTION_TIME)
diff --git a/code/modules/shuttle/docking.dm b/code/modules/shuttle/docking.dm
index aa9f4d6ad470..df89ee5bdf42 100644
--- a/code/modules/shuttle/docking.dm
+++ b/code/modules/shuttle/docking.dm
@@ -64,7 +64,7 @@
var/list/new_hidden_turfs
if(hidden)
new_hidden_turfs = list()
- for(var/i in 1 to old_turfs.len)
+ for(var/i in 1 to length(old_turfs))
CHECK_TICK
var/turf/oldT = old_turfs[i]
if(old_turfs[oldT] & MOVE_TURF)
@@ -135,7 +135,7 @@
old_turfs[oldT] = move_mode
/obj/docking_port/mobile/proc/takeoff(list/old_turfs, list/new_turfs, list/moved_atoms, rotation, movement_direction, old_dock, area/underlying_old_area)
- for(var/i in 1 to old_turfs.len)
+ for(var/i in 1 to length(old_turfs))
var/turf/oldT = old_turfs[i]
var/turf/newT = new_turfs[i]
var/move_mode = old_turfs[oldT]
@@ -162,12 +162,12 @@
var/new_parallax_dir = FALSE
if(istype(new_dock, /obj/docking_port/stationary/transit))
new_parallax_dir = preferred_direction
- for(var/i in 1 to areas_to_move.len)
+ for(var/i in 1 to length(areas_to_move))
CHECK_TICK
var/area/internal_area = areas_to_move[i]
internal_area.afterShuttleMove(new_parallax_dir) //areas
- for(var/i in 1 to old_turfs.len)
+ for(var/i in 1 to length(old_turfs))
CHECK_TICK
if(!(old_turfs[old_turfs[i]] & MOVE_TURF))
continue
@@ -175,7 +175,7 @@
var/turf/newT = new_turfs[i]
newT.afterShuttleMove(oldT, rotation) //turfs
- for(var/i in 1 to moved_atoms.len)
+ for(var/i in 1 to length(moved_atoms))
CHECK_TICK
var/atom/movable/moved_object = moved_atoms[i]
if(QDELETED(moved_object))
@@ -187,12 +187,12 @@
underlying_old_area.lateShuttleMove()
- for(var/i in 1 to areas_to_move.len)
+ for(var/i in 1 to length(areas_to_move))
CHECK_TICK
var/area/internal_area = areas_to_move[i]
internal_area.lateShuttleMove()
- for(var/i in 1 to old_turfs.len)
+ for(var/i in 1 to length(old_turfs))
CHECK_TICK
if(!(old_turfs[old_turfs[i]] & MOVE_CONTENTS | MOVE_TURF))
continue
@@ -200,7 +200,7 @@
var/turf/newT = new_turfs[i]
newT.lateShuttleMove(oldT)
- for(var/i in 1 to moved_atoms.len)
+ for(var/i in 1 to length(moved_atoms))
CHECK_TICK
var/atom/movable/moved_object = moved_atoms[i]
if(QDELETED(moved_object))
diff --git a/code/modules/shuttle/on_move.dm b/code/modules/shuttle/on_move.dm
index 7a9f032be444..934e3c353618 100644
--- a/code/modules/shuttle/on_move.dm
+++ b/code/modules/shuttle/on_move.dm
@@ -64,7 +64,7 @@ All ShuttleMove procs go here
var/shuttle_boundary = baseturfs.Find(/turf/baseturf_skipover/shuttle)
if(!shuttle_boundary)
CRASH("A turf queued to move via shuttle somehow had no skipover in baseturfs. [src]([type]):[loc]")
- var/depth = baseturfs.len - shuttle_boundary + 1
+ var/depth = length(baseturfs) - shuttle_boundary + 1
newT.CopyOnTop(src, 1, depth, TRUE)
return TRUE
@@ -76,7 +76,7 @@ All ShuttleMove procs go here
var/shuttle_boundary = baseturfs.Find(/turf/baseturf_skipover/shuttle)
if(shuttle_boundary)
- oldT.ScrapeAway(baseturfs.len - shuttle_boundary + 1)
+ oldT.ScrapeAway(length(baseturfs) - shuttle_boundary + 1)
if(rotation)
shuttleRotate(rotation) //see shuttle_rotate.dm
diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm
index fc4b0ccd2ee9..4a990ea7d1ae 100644
--- a/code/modules/shuttle/shuttle.dm
+++ b/code/modules/shuttle/shuttle.dm
@@ -469,13 +469,13 @@
. = ..()
if(!id)
- id = "[SSshuttle.mobile.len]"
+ id = "[length(SSshuttle.mobile)]"
if(name == "shuttle")
- name = "shuttle[SSshuttle.mobile.len]"
+ name = "shuttle[length(SSshuttle.mobile)]"
shuttle_areas = list()
var/list/all_turfs = return_ordered_turfs(x, y, z, dir)
- for(var/i in 1 to all_turfs.len)
+ for(var/i in 1 to length(all_turfs))
var/turf/curT = all_turfs[i]
var/area/cur_area = get_area(curT)
if(istype(cur_area, area_type))
@@ -693,7 +693,7 @@
if(!underlying_area)
underlying_area = new underlying_area_type(null)
- for(var/i in 1 to old_turfs.len)
+ for(var/i in 1 to length(old_turfs))
var/turf/oldT = old_turfs[i]
if(!oldT || !istype(oldT.loc, area_type))
continue
@@ -706,7 +706,7 @@
var/list/baseturf_cache = oldT.baseturfs
for(var/k in 1 to length(baseturf_cache))
if(ispath(baseturf_cache[k], /turf/baseturf_skipover/shuttle))
- oldT.ScrapeAway(baseturf_cache.len - k + 1)
+ oldT.ScrapeAway(length(baseturf_cache) - k + 1)
break
qdel(src, force=TRUE)
@@ -745,7 +745,7 @@
var/list/ripple_turfs = list()
- for(var/i in 1 to L0.len)
+ for(var/i in 1 to length(L0))
var/turf/T0 = L0[i]
var/turf/T1 = L1[i]
if(!T0 || !T1)
@@ -819,7 +819,7 @@
set_idle()
/obj/docking_port/mobile/proc/check_effects()
- if(!ripples.len)
+ if(!length(ripples))
if((mode == SHUTTLE_PREARRIVAL))
var/tl = timeLeft(1)
if(tl <= SHUTTLE_RIPPLE_TIME)
diff --git a/code/modules/shuttles/marine_ferry.dm b/code/modules/shuttles/marine_ferry.dm
index 14787fccb388..bd4a08716954 100644
--- a/code/modules/shuttles/marine_ferry.dm
+++ b/code/modules/shuttles/marine_ferry.dm
@@ -44,7 +44,7 @@
if(!LAZYLEN(locs_land))
return TRUE
- if(!main_doors.len && !controls.len)
+ if(!length(main_doors) && !length(controls))
var/turf/T_src = pick(locs_dock)
var/list/turfs = get_shuttle_turfs(T_src, info_datums)
for(var/turf/T in turfs)
@@ -164,7 +164,7 @@
var/int_rot = locs_move[T_int]
var/turf/T_trg
var/trg_rot
- if(!locs_land.len) // We check here as well to make sure that the order of operations/lag/changing it after launch. Wont mess this up.
+ if(!length(locs_land)) // We check here as well to make sure that the order of operations/lag/changing it after launch. Wont mess this up.
transit_gun_mission = 1
if(transit_gun_mission)//gun mission makes you land back where you started.
@@ -349,7 +349,7 @@
for(var/turf/TU in SSoldshuttle.shuttle_controller.locs_crash[target_section])
if(istype(get_area(TU), /area/almayer/hallways/hangar))
crash_turfs += TU
- if(crash_turfs.len) T_trg = pick(crash_turfs)
+ if(length(crash_turfs)) T_trg = pick(crash_turfs)
else message_admins("no crash turf found in Almayer Hangar, contact coders.")
break
diff --git a/code/modules/shuttles/shuttle_console.dm b/code/modules/shuttles/shuttle_console.dm
index 0e9303d13583..502d7c1ffde4 100644
--- a/code/modules/shuttles/shuttle_console.dm
+++ b/code/modules/shuttles/shuttle_console.dm
@@ -238,7 +238,7 @@ GLOBAL_LIST_EMPTY(shuttle_controls)
return
if(istype(shuttle, /datum/shuttle/ferry/marine))
var/datum/shuttle/ferry/marine/s = shuttle
- if(!s.locs_land.len && !s.transit_gun_mission)
+ if(!length(s.locs_land) && !s.transit_gun_mission)
to_chat(usr, SPAN_WARNING("There is no suitable LZ for this shuttle. Flight configuration changed to fire-mission."))
s.transit_gun_mission = 1
if(shuttle.moving_status == SHUTTLE_IDLE) //Multi consoles, hopefully this will work
diff --git a/code/modules/surgery/surgery_toggle.dm b/code/modules/surgery/surgery_toggle.dm
index b9ca3ca93311..973d1c5b682f 100644
--- a/code/modules/surgery/surgery_toggle.dm
+++ b/code/modules/surgery/surgery_toggle.dm
@@ -18,6 +18,7 @@
// Called when the action is clicked on.
/datum/action/surgery_toggle/action_activate()
+ . = ..()
if(owner.mob_flags & SURGERY_MODE_ON)
button.icon_state = "template"
owner.mob_flags &= ~SURGERY_MODE_ON
diff --git a/code/modules/teleporters/teleporter.dm b/code/modules/teleporters/teleporter.dm
index d3596cf3e9ea..21b362d85822 100644
--- a/code/modules/teleporters/teleporter.dm
+++ b/code/modules/teleporters/teleporter.dm
@@ -29,12 +29,12 @@
var/list/turf/source_turfs = locations[location_source]
var/list/turf/dest_turfs = locations[location_dest]
- if(!source_turfs || source_turfs.len == 0)
+ if(!LAZYLEN(source_turfs))
log_debug("Invalid source location ID [location_source] handed to teleporter [id]. Error code: TELEPORTER_3")
log_admin("Invalid source location ID [location_source] handed to teleporter [id]. Tell the devs. Error code: TELEPORTER_3")
return FALSE
- if(!dest_turfs || dest_turfs.len == 0)
+ if(!LAZYLEN(dest_turfs))
log_debug("Invalid destination location ID [location_dest] handed to teleporter [id]. Error code: TELEPORTER_3")
log_admin("Invalid destination location ID [location_dest] handed to teleporter [id]. Tell the devs. Error code: TELEPORTER_3")
return FALSE
diff --git a/code/modules/teleporters/teleporter_console.dm b/code/modules/teleporters/teleporter_console.dm
index 88384578a939..f1d3a74b902e 100644
--- a/code/modules/teleporters/teleporter_console.dm
+++ b/code/modules/teleporters/teleporter_console.dm
@@ -175,7 +175,7 @@
if(SSmapping.configs[GROUND_MAP].map_name != MAP_CORSAT) // Bad style, but I'm leaving it here for now until someone wants to add a teleporter to another map
return
- if(GLOB.teleporters.len) // already made the damn thing
+ if(length(GLOB.teleporters)) // already made the damn thing
return
var/datum/teleporter/corsat/teleporter = new
diff --git a/code/modules/tgchat/to_chat.dm b/code/modules/tgchat/to_chat.dm
index d9f96912f8c8..00996e341d34 100644
--- a/code/modules/tgchat/to_chat.dm
+++ b/code/modules/tgchat/to_chat.dm
@@ -29,6 +29,14 @@
if(target == world)
target = GLOB.clients
+ var/list/true_targets = list()
+ if(target == GLOB.admins)
+ for(var/admin in target)
+ var/client/admin_client = CLIENT_FROM_VAR(admin)
+ if(CLIENT_IS_STAFF(admin_client))
+ true_targets += admin_client
+ target = true_targets
+
// Build a message
var/message = list()
if(type) message["type"] = type
diff --git a/code/modules/tgui_panel/telemetry.dm b/code/modules/tgui_panel/telemetry.dm
index 4ef1f06bfac0..bd49596aa19a 100644
--- a/code/modules/tgui_panel/telemetry.dm
+++ b/code/modules/tgui_panel/telemetry.dm
@@ -85,7 +85,7 @@
var/list/row = telemetry_connections[i]
// Check for a malformed history object
- if (!row || row.len < 3 || (!row["ckey"] || !row["address"] || !row["computer_id"]))
+ if (LAZYLEN(row) < 3 || (!row["ckey"] || !row["address"] || !row["computer_id"]))
continue
/* TODO - Reintroduce this when we get a proper round ID tracking,
diff --git a/code/modules/unit_tests/unit_test.dm b/code/modules/unit_tests/unit_test.dm
index 8d04a51bcc19..cf02cdf62155 100644
--- a/code/modules/unit_tests/unit_test.dm
+++ b/code/modules/unit_tests/unit_test.dm
@@ -87,7 +87,7 @@ GLOBAL_VAR_INIT(focused_test, focused_test())
/datum/unit_test/proc/allocate(type, ...)
var/list/arguments = args.Copy(2)
if(ispath(type, /atom))
- if (!arguments.len)
+ if (!length(arguments))
arguments = list(run_loc_floor_bottom_left)
else if (arguments[1] == null)
arguments[1] = run_loc_floor_bottom_left
diff --git a/code/modules/vehicles/hardpoints/armor/ballistic.dm b/code/modules/vehicles/hardpoints/armor/ballistic.dm
index 7fa19abf5b37..55f0f6bc4e6b 100644
--- a/code/modules/vehicles/hardpoints/armor/ballistic.dm
+++ b/code/modules/vehicles/hardpoints/armor/ballistic.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/armor/ballistic
- name = "Ballistic Armor"
+ name = "\improper Ballistic Armor"
desc = "Protects the vehicle from high-penetration weapons"
icon_state = "ballistic_armor"
diff --git a/code/modules/vehicles/hardpoints/armor/caustic.dm b/code/modules/vehicles/hardpoints/armor/caustic.dm
index 34bcf4c3b224..ac97d3da25f9 100644
--- a/code/modules/vehicles/hardpoints/armor/caustic.dm
+++ b/code/modules/vehicles/hardpoints/armor/caustic.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/armor/caustic
- name = "Caustic Armor"
+ name = "\improper Caustic Armor"
desc = "Protects vehicles from most types of acid"
icon_state = "caustic_armor"
diff --git a/code/modules/vehicles/hardpoints/armor/concussive.dm b/code/modules/vehicles/hardpoints/armor/concussive.dm
index a2e674255f2d..6da39b9c4173 100644
--- a/code/modules/vehicles/hardpoints/armor/concussive.dm
+++ b/code/modules/vehicles/hardpoints/armor/concussive.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/armor/concussive
- name = "Concussive Armor"
+ name = "\improper Concussive Armor"
desc = "Protects the vehicle from high-impact weapons"
icon_state = "concussive_armor"
diff --git a/code/modules/vehicles/hardpoints/armor/paladin.dm b/code/modules/vehicles/hardpoints/armor/paladin.dm
index 7635ffca74b3..fb131d47151e 100644
--- a/code/modules/vehicles/hardpoints/armor/paladin.dm
+++ b/code/modules/vehicles/hardpoints/armor/paladin.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/armor/paladin
- name = "Paladin Armor"
+ name = "\improper Paladin Armor"
desc = "Protects the vehicle from large incoming explosive projectiles"
icon_state = "paladin_armor"
diff --git a/code/modules/vehicles/hardpoints/armor/snowplow.dm b/code/modules/vehicles/hardpoints/armor/snowplow.dm
index a1b1a9dc800c..e7823854cff3 100644
--- a/code/modules/vehicles/hardpoints/armor/snowplow.dm
+++ b/code/modules/vehicles/hardpoints/armor/snowplow.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/armor/snowplow
- name = "Snowplow"
+ name = "\improper Snowplow"
desc = "Clears a path in the snow for friendlies"
icon_state = "snowplow"
diff --git a/code/modules/vehicles/hardpoints/hardpoint.dm b/code/modules/vehicles/hardpoints/hardpoint.dm
index 3aaa81daf19f..f94d0dc6b373 100644
--- a/code/modules/vehicles/hardpoints/hardpoint.dm
+++ b/code/modules/vehicles/hardpoints/hardpoint.dm
@@ -132,6 +132,12 @@
//------GENERAL PROCS----------
//-----------------------------
+/obj/item/hardpoint/p_s(temp_gender)
+ if(!temp_gender)
+ temp_gender = gender
+ if(temp_gender == PLURAL)
+ . = "s"
+
/obj/item/hardpoint/Initialize()
. = ..()
set_bullet_traits()
diff --git a/code/modules/vehicles/hardpoints/holder/tank_turret.dm b/code/modules/vehicles/hardpoints/holder/tank_turret.dm
index 2a01098de523..5be6a03863f2 100644
--- a/code/modules/vehicles/hardpoints/holder/tank_turret.dm
+++ b/code/modules/vehicles/hardpoints/holder/tank_turret.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/holder/tank_turret
- name = "M34A2-A Multipurpose Turret"
+ name = "\improper M34A2-A Multipurpose Turret"
desc = "The centerpiece of the tank. Designed to support quick installation and deinstallation of various tank weapon modules. Has inbuilt smoke screen deployment system."
icon = 'icons/obj/vehicles/tank.dmi'
diff --git a/code/modules/vehicles/hardpoints/primary/autocannon.dm b/code/modules/vehicles/hardpoints/primary/autocannon.dm
index fa865f40daa1..3e12f52be097 100644
--- a/code/modules/vehicles/hardpoints/primary/autocannon.dm
+++ b/code/modules/vehicles/hardpoints/primary/autocannon.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/primary/autocannon
- name = "AC3-E Autocannon"
+ name = "\improper AC3-E Autocannon"
desc = "A primary autocannon for tanks that shoots explosive flak rounds"
icon_state = "ace_autocannon"
diff --git a/code/modules/vehicles/hardpoints/primary/dual_cannon.dm b/code/modules/vehicles/hardpoints/primary/dual_cannon.dm
index 7cb4b9a621bb..b896640a4ff7 100644
--- a/code/modules/vehicles/hardpoints/primary/dual_cannon.dm
+++ b/code/modules/vehicles/hardpoints/primary/dual_cannon.dm
@@ -1,6 +1,6 @@
// APC cannons
/obj/item/hardpoint/primary/dualcannon
- name = "PARS-159 Boyars Dualcannon"
+ name = "\improper PARS-159 Boyars Dualcannon"
desc = "A primary two-barrel cannon for the APC that shoots 20mm IFF-compatible rounds."
icon = 'icons/obj/vehicles/hardpoints/apc.dmi'
diff --git a/code/modules/vehicles/hardpoints/primary/flamer.dm b/code/modules/vehicles/hardpoints/primary/flamer.dm
index d0e0596c141d..fce6e7f6a410 100644
--- a/code/modules/vehicles/hardpoints/primary/flamer.dm
+++ b/code/modules/vehicles/hardpoints/primary/flamer.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/primary/flamer
- name = "DRG-N Offensive Flamer Unit"
+ name = "\improper DRG-N Offensive Flamer Unit"
desc = "A primary weapon for the tank that spews fire everywhere."
icon_state = "drgn_flamer"
diff --git a/code/modules/vehicles/hardpoints/primary/ltb.dm b/code/modules/vehicles/hardpoints/primary/ltb.dm
index 6cb84cf453da..7ccbc18a2853 100644
--- a/code/modules/vehicles/hardpoints/primary/ltb.dm
+++ b/code/modules/vehicles/hardpoints/primary/ltb.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/primary/cannon
- name = "LTB Cannon"
+ name = "\improper LTB Cannon"
desc = "A primary cannon for tanks that shoots explosive rounds"
icon_state = "ltb_cannon"
diff --git a/code/modules/vehicles/hardpoints/primary/minigun.dm b/code/modules/vehicles/hardpoints/primary/minigun.dm
index 7ae7c20c9870..8bc7c55bbb8a 100644
--- a/code/modules/vehicles/hardpoints/primary/minigun.dm
+++ b/code/modules/vehicles/hardpoints/primary/minigun.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/primary/minigun
- name = "LTAA-AP Minigun"
+ name = "\improper LTAA-AP Minigun"
desc = "A primary weapon for tanks that spews bullets"
icon_state = "ltaaap_minigun"
@@ -61,7 +61,7 @@
COOLDOWN_START(src, fire_cooldown, fire_delay * stage_delay_mult)
/obj/item/hardpoint/primary/minigun/proc/calculate_stage_delay_mult()
- var/stage_rate_len = stage_rate.len
+ var/stage_rate_len = length(stage_rate)
var/delta_time = world.time - last_fired
var/old_spin_stage = spin_stage
diff --git a/code/modules/vehicles/hardpoints/secondary/cupola.dm b/code/modules/vehicles/hardpoints/secondary/cupola.dm
index c1336eb05739..a4b40c7dd3a1 100644
--- a/code/modules/vehicles/hardpoints/secondary/cupola.dm
+++ b/code/modules/vehicles/hardpoints/secondary/cupola.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/secondary/m56cupola
- name = "M56 Cupola"
+ name = "\improper M56 Cupola"
desc = "A secondary weapon for tanks that shoots bullets"
icon_state = "m56_cupola"
diff --git a/code/modules/vehicles/hardpoints/secondary/flamer.dm b/code/modules/vehicles/hardpoints/secondary/flamer.dm
index 4bdc9e602974..56a9995b60c5 100644
--- a/code/modules/vehicles/hardpoints/secondary/flamer.dm
+++ b/code/modules/vehicles/hardpoints/secondary/flamer.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/secondary/small_flamer
- name = "LZR-N Flamer Unit"
+ name = "\improper LZR-N Flamer Unit"
desc = "A secondary weapon for tanks that spews hot fire."
icon_state = "flamer"
diff --git a/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm b/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm
index d0df1d295ffc..f9e4982bb736 100644
--- a/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm
+++ b/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/secondary/frontalcannon
- name = "Bleihagel RE-RE700 Frontal Cannon"
+ name = "\improper Bleihagel RE-RE700 Frontal Cannon"
desc = "The marketing department over at Bleihagel would have you believe that the RE-RE700 is an original design. However, experts who pried the cover off the cannon have discovered an object with a striking similarity to the popular M56 Cupola. It is still unknown why the cannon has two barrels."
icon = 'icons/obj/vehicles/hardpoints/apc.dmi'
diff --git a/code/modules/vehicles/hardpoints/secondary/grenade_launcher.dm b/code/modules/vehicles/hardpoints/secondary/grenade_launcher.dm
index ecaf36213d34..060f1f7ae9ef 100644
--- a/code/modules/vehicles/hardpoints/secondary/grenade_launcher.dm
+++ b/code/modules/vehicles/hardpoints/secondary/grenade_launcher.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/secondary/grenade_launcher
- name = "M92T Grenade Launcher"
+ name = "\improper M92T Grenade Launcher"
desc = "A secondary weapon for tanks that shoots grenades."
icon_state = "glauncher"
diff --git a/code/modules/vehicles/hardpoints/secondary/tow.dm b/code/modules/vehicles/hardpoints/secondary/tow.dm
index 30eadf224bda..7b0e0ea90a27 100644
--- a/code/modules/vehicles/hardpoints/secondary/tow.dm
+++ b/code/modules/vehicles/hardpoints/secondary/tow.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/secondary/towlauncher
- name = "TOW Launcher"
+ name = "\improper TOW Launcher"
desc = "A secondary weapon for tanks that shoots rockets"
icon_state = "tow_launcher"
diff --git a/code/modules/vehicles/hardpoints/special/firing_port_weapon.dm b/code/modules/vehicles/hardpoints/special/firing_port_weapon.dm
index f051d9a21bb5..5561ee48357d 100644
--- a/code/modules/vehicles/hardpoints/special/firing_port_weapon.dm
+++ b/code/modules/vehicles/hardpoints/special/firing_port_weapon.dm
@@ -1,6 +1,6 @@
//this is Cupola guns that are fired from the sides of APC by support gunners
/obj/item/hardpoint/special/firing_port_weapon
- name = "M56 FPW"
+ name = "\improper M56 FPW"
desc = "A modified M56B Smartgun installed on the sides of M577 Armored Personnel Carrier as a Firing Port Weapon. Used by support gunners to cover friendly infantry at APC sides."
icon = 'icons/obj/vehicles/hardpoints/apc.dmi'
diff --git a/code/modules/vehicles/hardpoints/support/artillery.dm b/code/modules/vehicles/hardpoints/support/artillery.dm
index dfcdcaf73f74..dc3db8a3db0d 100644
--- a/code/modules/vehicles/hardpoints/support/artillery.dm
+++ b/code/modules/vehicles/hardpoints/support/artillery.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/support/artillery_module
- name = "Artillery Module"
+ name = "\improper Artillery Module"
desc = "Allows the user to look far into the distance."
icon_state = "artillery"
diff --git a/code/modules/vehicles/hardpoints/support/flare.dm b/code/modules/vehicles/hardpoints/support/flare.dm
index da1390b861d4..0fa37de34d2f 100644
--- a/code/modules/vehicles/hardpoints/support/flare.dm
+++ b/code/modules/vehicles/hardpoints/support/flare.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/support/flare_launcher
- name = "M-87F Flare Launcher"
+ name = "\improper M-87F Flare Launcher"
desc = "A support module for APCs that shoots flares."
icon = 'icons/obj/vehicles/hardpoints/apc.dmi'
diff --git a/code/modules/vehicles/hardpoints/support/iwsa.dm b/code/modules/vehicles/hardpoints/support/iwsa.dm
index c3de90c871b6..97fee4e0551a 100644
--- a/code/modules/vehicles/hardpoints/support/iwsa.dm
+++ b/code/modules/vehicles/hardpoints/support/iwsa.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/support/weapons_sensor
- name = "Integrated Weapons Sensor Array"
+ name = "\improper Integrated Weapons Sensor Array"
desc = "Improves the accuracy and fire rate of all onboard weapons"
icon_state = "warray"
diff --git a/code/modules/vehicles/hardpoints/support/overdrive.dm b/code/modules/vehicles/hardpoints/support/overdrive.dm
index 1b61d6c63dfb..4daa2fddad0a 100644
--- a/code/modules/vehicles/hardpoints/support/overdrive.dm
+++ b/code/modules/vehicles/hardpoints/support/overdrive.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/support/overdrive_enhancer
- name = "Overdrive Enhancer"
+ name = "\improper Overdrive Enhancer"
desc = "Increases the movement speed of the vehicle it's attached to"
icon_state = "odrive_enhancer"
diff --git a/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm b/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm
index 62c5e430c747..4bf8ca59e2ca 100644
--- a/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm
+++ b/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/locomotion/apc_wheels
- name = "APC Wheels"
+ name = "\improper APC Wheels"
desc = "Integral to the movement of the APC."
icon = 'icons/obj/vehicles/hardpoints/apc.dmi'
diff --git a/code/modules/vehicles/hardpoints/wheels/arc_wheels.dm b/code/modules/vehicles/hardpoints/wheels/arc_wheels.dm
index 9bb6c31746e0..17726e75c024 100644
--- a/code/modules/vehicles/hardpoints/wheels/arc_wheels.dm
+++ b/code/modules/vehicles/hardpoints/wheels/arc_wheels.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/locomotion/arc_wheels
- name = "ARC Wheels"
+ name = "\improper ARC Wheels"
desc = "Integral to the movement of the ARC."
icon = 'icons/obj/vehicles/hardpoints/arc.dmi'
diff --git a/code/modules/vehicles/hardpoints/wheels/locomotion.dm b/code/modules/vehicles/hardpoints/wheels/locomotion.dm
index c05ada322a8d..a0e57c3e97d4 100644
--- a/code/modules/vehicles/hardpoints/wheels/locomotion.dm
+++ b/code/modules/vehicles/hardpoints/wheels/locomotion.dm
@@ -12,6 +12,22 @@
var/move_momentum_build_factor = 0
var/move_turn_momentum_loss_factor = 0
+/obj/item/hardpoint/locomotion/p_are(temp_gender)
+ if(!temp_gender)
+ temp_gender = gender
+ . = "is"
+ if(temp_gender == PLURAL)
+ . = "are"
+
+/obj/item/hardpoint/locomotion/p_they(capitalized, temp_gender)
+ if(!temp_gender)
+ temp_gender = gender
+ . = "it"
+ if(temp_gender == PLURAL)
+ . = "they"
+ if(capitalized)
+ . = capitalize(.)
+
/obj/item/hardpoint/locomotion/deactivate()
owner.move_delay = initial(owner.move_delay)
owner.move_max_momentum = initial(owner.move_max_momentum)
diff --git a/code/modules/vehicles/hardpoints/wheels/treads.dm b/code/modules/vehicles/hardpoints/wheels/treads.dm
index dd819ea2af03..561795b8531e 100644
--- a/code/modules/vehicles/hardpoints/wheels/treads.dm
+++ b/code/modules/vehicles/hardpoints/wheels/treads.dm
@@ -1,5 +1,5 @@
/obj/item/hardpoint/locomotion/treads
- name = "Treads"
+ name = "\improper Treads"
desc = "Integral to the movement of the vehicle."
icon_state = "treads"
@@ -17,7 +17,7 @@
move_turn_momentum_loss_factor = 0.6
/obj/item/hardpoint/locomotion/treads/robust
- name = "Reinforced Treads"
+ name = "\improper Reinforced Treads"
desc = "These treads are made of a tougher material and are more durable. However, the extra weight slows the tank down slightly."
health = 500
diff --git a/code/modules/vehicles/multitile/multitile.dm b/code/modules/vehicles/multitile/multitile.dm
index ce118fd14c56..bcd48c3633be 100644
--- a/code/modules/vehicles/multitile/multitile.dm
+++ b/code/modules/vehicles/multitile/multitile.dm
@@ -258,7 +258,7 @@
/obj/vehicle/multitile/get_examine_text(mob/user)
. = ..()
for(var/obj/item/hardpoint/H in hardpoints)
- . += "There is \a [H] module installed."
+ . += "There [H.p_are()] \a [H] module[H.p_s()] installed."
H.examine(user, TRUE)
if(clamped)
. += "There is a vehicle clamp attached."
@@ -267,7 +267,7 @@
for(var/datum/role_reserved_slots/RRS in interior.role_reserved_slots)
passengers_amount += RRS.taken
if(passengers_amount > 0)
- . += "You can sense approximately [passengers_amount] hosts inside."
+ . += "You can sense approximately [passengers_amount] host\s inside."
/obj/vehicle/multitile/proc/load_hardpoints()
return
diff --git a/code/modules/vehicles/multitile/multitile_verbs.dm b/code/modules/vehicles/multitile/multitile_verbs.dm
index 52d8602c9852..5d73351321e2 100644
--- a/code/modules/vehicles/multitile/multitile_verbs.dm
+++ b/code/modules/vehicles/multitile/multitile_verbs.dm
@@ -65,7 +65,7 @@
if(!new_hp)
new_hp = 0
- new_hp = (new_hp % usable_hps.len) + 1
+ new_hp = (new_hp % length(usable_hps)) + 1
var/obj/item/hardpoint/HP = usable_hps[new_hp]
if(!HP)
return
diff --git a/colonialmarines.dme b/colonialmarines.dme
index 5193cd3571cb..254cbb0112ca 100644
--- a/colonialmarines.dme
+++ b/colonialmarines.dme
@@ -522,6 +522,7 @@
#include "code\datums\emergency_calls\emergency_call.dm"
#include "code\datums\emergency_calls\ert_stations.dm"
#include "code\datums\emergency_calls\feral_xenos.dm"
+#include "code\datums\emergency_calls\forecon.dm"
#include "code\datums\emergency_calls\forsaken_xenos.dm"
#include "code\datums\emergency_calls\goons.dm"
#include "code\datums\emergency_calls\hefa_knight.dm"
@@ -697,6 +698,7 @@
#include "code\datums\tutorial\ss13\basic_ss13.dm"
#include "code\datums\tutorial\ss13\intents.dm"
#include "code\datums\tutorial\xenomorph\_xenomorph.dm"
+#include "code\datums\tutorial\xenomorph\abomination.dm"
#include "code\datums\tutorial\xenomorph\xenomorph_basic.dm"
#include "code\datums\weather\weather_event.dm"
#include "code\datums\weather\weather_map_holder.dm"
@@ -1313,6 +1315,7 @@
#include "code\game\objects\structures\prop_mech.dm"
#include "code\game\objects\structures\props.dm"
#include "code\game\objects\structures\reagent_dispensers.dm"
+#include "code\game\objects\structures\roof.dm"
#include "code\game\objects\structures\safe.dm"
#include "code\game\objects\structures\shower.dm"
#include "code\game\objects\structures\signs.dm"
@@ -1784,6 +1787,7 @@
#include "code\modules\gear_presets\uscm.dm"
#include "code\modules\gear_presets\uscm_dress.dm"
#include "code\modules\gear_presets\uscm_event.dm"
+#include "code\modules\gear_presets\uscm_forecon.dm"
#include "code\modules\gear_presets\uscm_medical.dm"
#include "code\modules\gear_presets\uscm_police.dm"
#include "code\modules\gear_presets\uscm_ship.dm"
diff --git a/dependencies.sh b/dependencies.sh
index 1fd24f763c6c..e0da4aa75f66 100644
--- a/dependencies.sh
+++ b/dependencies.sh
@@ -18,4 +18,4 @@ export NODE_VERSION_LTS=20.12.0
export SPACEMAN_DMM_VERSION=suite-1.8
# Python version for mapmerge and other tools
-export PYTHON_VERSION=3.7.9
+export PYTHON_VERSION=3.9.0
diff --git a/html/changelogs/archive/2024-06.yml b/html/changelogs/archive/2024-06.yml
index fee8c5d01853..4075db8b6a2c 100644
--- a/html/changelogs/archive/2024-06.yml
+++ b/html/changelogs/archive/2024-06.yml
@@ -232,3 +232,27 @@
- balance: Vampire tail jab now only stuns if you knockback an enemy into an obstacle.
- spellcheck: Vampire lurkers no longer "throw it back" after hitting somebody with
their Tail Jab
+2024-06-23:
+ Drathek:
+ - bugfix: Fixed LZ gas not penetrating destructible walls
+ ihatethisengine2:
+ - bugfix: simple animals don't block projectiles after death anymore
+ iloveloopers:
+ - balance: Custom research chemicals with an intensityfire above or equal to 50
+ will now burn white.
+2024-06-28:
+ Drathek:
+ - bugfix: Fixed a crash in the Hotkey menu when searching by key when filtered
+ - bugfix: Fixed/Added support for various keys (e.g. keypad and media keys)
+ Git-Nivrak:
+ - bugfix: Fixes being able to draw weapons when knocked down
+ HeresKozmos:
+ - maptweak: Filled in a hole in the map.
+ - maptweak: Fixed an area in the easter egg section of Sorokyne
+ coldironwarrior:
+ - spellcheck: fixed a few typos in the xeno bioscan announcement
+ kiVts:
+ - code_imp: Prevented potential unintended behavior with research upgrade items
+ on initialize
+ private-tristan:
+ - qol: Facehuggers no longer show as having any plasma
diff --git a/html/changelogs/archive/2024-07.yml b/html/changelogs/archive/2024-07.yml
new file mode 100644
index 000000000000..98c6fd5dbb20
--- /dev/null
+++ b/html/changelogs/archive/2024-07.yml
@@ -0,0 +1,159 @@
+2024-07-03:
+ Blundir:
+ - soundadd: larva talking sounds
+ - imageadd: larva moving sprites, tweak of standing ones
+2024-07-04:
+ Doubleumc:
+ - qol: ghost health scan & follow right-click actions work at any range
+ - admin: '"InView" procs use your current view range (e.g. ghost zoom)'
+ Nomoresolvalou:
+ - balance: The headset in the synthetic equipment vendor has been replaced with
+ a synthetic headset as opposed to a senior command headset
+ zzzmike:
+ - spellcheck: more clarity for facehugger/lesser drone text
+2024-07-05:
+ AndroBetel:
+ - rscadd: Adds "Iron teeth" trait.
+ GrrrKitten:
+ - qol: Makes screenshake look less low FPS/jumpy
+ Venuska1117:
+ - bugfix: Make non-toxic water stop glowing.
+ coldironwarrior:
+ - spellcheck: fixed the medical rig belt's description
+2024-07-06:
+ Drathek:
+ - spellcheck: Fix grammar and plurality for vehicles and their hardpoints
+2024-07-07:
+ Blundir:
+ - rscadd: white corpsman helmet
+ Contrabang:
+ - rscadd: Re-added a fax machine to the WY ERT station
+ Doubleumc:
+ - code_imp: environmental reverb applies more reliably and only to positional sounds
+ - imageadd: adds CMP tracker sprites
+ - rscadd: adds a SEA headset, can track CO, XO, CMP
+ - rscadd: adds handheld crew monitor in SEATech vendor
+ - bugfix: right-click Examine no longer appears for interface buttons
+ GrrrKitten:
+ - ui: Swaps TM and MOTD order so that people actually see the MOTD
+ - admin: Removes the message for when no event info is input
+ realforest2001:
+ - code_imp: Changes OOC color settings for donators/non mentor/staff.
+ - admin: Mentors no longer receive debug logs as a result of being in GLOB.admins
+2024-07-08:
+ ThePiachu:
+ - qol: Shotgun ammo boxes now behave like other ammo boxes in the Requisitions'
+ vendors.
+ - code_imp: Ammo box maping code now handles pre-populated boxes in vendors, letting
+ devs order them more neatly than before.
+ Zonespace27:
+ - bugfix: Fixed a rare case of people on shuttles being inexplicably deleted.
+ blackdragonTOW:
+ - code_imp: log the map name at round start
+ coldironwarrior:
+ - rscadd: adds olive green and grey scrubs
+ - spellcheck: cleaned up scrub descriptions
+ wshuwshuwshi:
+ - rscadd: Adds the Encephalophrasive property for chemicals
+ - rscdel: Removed bit of description that falsely said that higher potency affected
+ clarity of messages
+ - bugfix: Removes focusing from the combination to prevent conflict between focusing
+ and nerve-stimulating, thus preventing encephalophrasive from forming
+ - bugfix: Revises the second overdose to be for critical overdoses, as it was intended
+ to be
+ - code_imp: Swaps 'M' variables for 'chem_host'
+ - code_imp: rehauled how ability 'giving' is handled, and is now only processed
+ upon initial ingestion of the chemical instead of every tick
+ - rscadd: Adds a brief piece of flavor text upon initial ingestion.
+ zzzmike:
+ - bugfix: converts flash, flashbang to TG effect system, fixing issue(s)
+2024-07-09:
+ AndroBetel:
+ - qol: Made splint breaking message bigger
+ Steelpoint:
+ - mapadd: The USS Kurtz has been added as a USCM affiliated ERT station. The design
+ off the USS Kurtz is based off of the USS Sulaco, from older versions of CM-SS13.
+ The USS Kurtz features the entire lower-deck and a snapshot of the upper deck.
+ - mapadd: The USCM CBRN ERT will use the USS Kurtz as their homebase.
+ kirieee:
+ - rscadd: Covert contractors added to the ERT pool
+2024-07-10:
+ Steelpoint:
+ - rscadd: Marine force reconnaissance gear presets have been added for admin use.
+ - rscadd: ERT force reconnaissance have functional squad settings, including a squad
+ colour (green) and a radio channel. These settings do not apply for survivor
+ force reconnaissance marines.
+ - rscadd: A marine force reconnaissance distress signal has been added. Spawning
+ either a 6-man squad, or a 30-man platoon. These are currently for admin use
+ only.
+ - rscadd: A set of customized M3-R armour has been added for force reconnaissance
+ marines. It has comparable defensive values to M3 armour but has the speed slowdown
+ of M3-L armour. Only ERT force reconnaissance marines will spawn with this.
+ hislittlecuzingames:
+ - rscadd: Multiple tools, and welding visor to SO Locker
+ - qol: Adds free bayonet to Staff Officer Locker
+2024-07-11:
+ Blundir:
+ - rscadd: jtac and Intel kits to ASRS store
+ - rscadd: Intel kit to IO points vendor
+ - balance: intel kit now has large doc pouch instead of small
+ - balance: jtac kit now has radiopack
+ Diegoflores31:
+ - imageadd: changes xeno intent icon for a cooler one.
+ Doubleumc:
+ - imageadd: adds CMP tracker sprites for all HUD options
+ Drathek:
+ - maptweak: Removed var edits from open turfs to fix ScrapeAway resetting the turf
+ (e.g. xenos building resin walls) on basically all maps
+ - maptweak: Fixed bad dir var edits on various map
+ - maptweak: Fixed stacked structures on various maps
+ Git-Nivrak:
+ - balance: Hivelords now have meson vision
+ - rscadd: Added a toggle for meson vision for hivelord and burrower
+ Steelpoint:
+ - rscadd: VAISO Covert Operatives will now spawn with a Night Vision Optic in their
+ helmet.
+ Unknownity:
+ - bugfix: Burrowers now see themselves as partly transparent when burrowed.
+ blackdragonTOW:
+ - soundadd: Power Loader sounds have been normalized to -6db
+ iloveloopers:
+ - bugfix: Demolitions scanner now properly works for incinerator tanks.
+ - spellcheck: Fixed some capitalization with custom incinerator tanks.
+2024-07-12:
+ Kivts:
+ - ui: The Company spent some money to upgrade the chemical simulator to work on
+ the TGUI, Including a few prepaid features.
+2024-07-14:
+ kiVts:
+ - bugfix: Denied request on req is working again
+2024-07-15:
+ cuberound:
+ - rscadd: roof structures added, can be also used for lattices and billboards, go
+ transparent when you are near them
+2024-07-16:
+ Git-Nivrak:
+ - rscdel: Mortar shells no longer blow up their payload, instead they will create
+ a small fixed explosion.
+ Nomoresolvalou:
+ - rscadd: Added neckties and stethoscope to the synthetic snowflake vendor
+ Steelpoint:
+ - balance: The XM88 now deals higher damage per-bullet at the cost of a slightly
+ lower rate of fire and accuracy. This is identical to as if it had a barrel
+ charger attached to it.
+ - balance: Per the above, the barrel charger is no longer compatible with the XM88.
+2024-07-17:
+ AndroBetel:
+ - rscadd: MP5 has 10% chance to spawn with M203 attached.
+ VileBeggar:
+ - rscadd: The CIC armoury now contains a plantable flag of the United Americas.
+ Zonespace27:
+ - rscadd: Added a tutorial for xenomorph Abominations. You must complete the tutorial
+ before being able to roll for Abomination.
+ harryob:
+ - bugfix: queens can remote build again
+ ihatethisengine:
+ - balance: being mid-paradrop won't trigger traps, fire and stray bullets before
+ you land.
+ realforest2001:
+ - bugfix: Fixes riflemen spec_kits not being usable by riflemen.
diff --git a/icons/mob/hud/alien_standard.dmi b/icons/mob/hud/alien_standard.dmi
index 8bad0b44acc9..0f3902ebf27d 100644
Binary files a/icons/mob/hud/alien_standard.dmi and b/icons/mob/hud/alien_standard.dmi differ
diff --git a/icons/mob/hud/human_bronze.dmi b/icons/mob/hud/human_bronze.dmi
index 11a724057245..7548f66b05b6 100644
Binary files a/icons/mob/hud/human_bronze.dmi and b/icons/mob/hud/human_bronze.dmi differ
diff --git a/icons/mob/hud/human_dark.dmi b/icons/mob/hud/human_dark.dmi
index e572dcb8353b..5b75acf1b360 100644
Binary files a/icons/mob/hud/human_dark.dmi and b/icons/mob/hud/human_dark.dmi differ
diff --git a/icons/mob/hud/human_glass.dmi b/icons/mob/hud/human_glass.dmi
index 19fb430d8492..b3d8f56ce4e6 100644
Binary files a/icons/mob/hud/human_glass.dmi and b/icons/mob/hud/human_glass.dmi differ
diff --git a/icons/mob/hud/human_green.dmi b/icons/mob/hud/human_green.dmi
index 9b235a75d870..a07e7a327154 100644
Binary files a/icons/mob/hud/human_green.dmi and b/icons/mob/hud/human_green.dmi differ
diff --git a/icons/mob/hud/human_grey.dmi b/icons/mob/hud/human_grey.dmi
index 5a522dc30564..6c5c2f326500 100644
Binary files a/icons/mob/hud/human_grey.dmi and b/icons/mob/hud/human_grey.dmi differ
diff --git a/icons/mob/hud/human_holo.dmi b/icons/mob/hud/human_holo.dmi
index 1554480bd37d..568e364314e9 100644
Binary files a/icons/mob/hud/human_holo.dmi and b/icons/mob/hud/human_holo.dmi differ
diff --git a/icons/mob/hud/human_midnight.dmi b/icons/mob/hud/human_midnight.dmi
index c6fc989fec2d..78a0b105610e 100644
Binary files a/icons/mob/hud/human_midnight.dmi and b/icons/mob/hud/human_midnight.dmi differ
diff --git a/icons/mob/hud/human_old.dmi b/icons/mob/hud/human_old.dmi
index e8b682c7c831..66e3f846615b 100644
Binary files a/icons/mob/hud/human_old.dmi and b/icons/mob/hud/human_old.dmi differ
diff --git a/icons/mob/hud/human_orange.dmi b/icons/mob/hud/human_orange.dmi
index 8a46dad89ed5..4ab6f7558cbd 100644
Binary files a/icons/mob/hud/human_orange.dmi and b/icons/mob/hud/human_orange.dmi differ
diff --git a/icons/mob/hud/human_red.dmi b/icons/mob/hud/human_red.dmi
index 06725e04a683..17de42f5a17c 100644
Binary files a/icons/mob/hud/human_red.dmi and b/icons/mob/hud/human_red.dmi differ
diff --git a/icons/mob/hud/human_white.dmi b/icons/mob/hud/human_white.dmi
index be8ad63426ac..7b6429e0ed04 100644
Binary files a/icons/mob/hud/human_white.dmi and b/icons/mob/hud/human_white.dmi differ
diff --git a/icons/mob/humans/onmob/head_1.dmi b/icons/mob/humans/onmob/head_1.dmi
index ab93b68640fc..951c7e89f985 100644
Binary files a/icons/mob/humans/onmob/head_1.dmi and b/icons/mob/humans/onmob/head_1.dmi differ
diff --git a/icons/mob/humans/onmob/items_lefthand_64.dmi b/icons/mob/humans/onmob/items_lefthand_64.dmi
index 057d7f1cad66..d005d8c5f049 100644
Binary files a/icons/mob/humans/onmob/items_lefthand_64.dmi and b/icons/mob/humans/onmob/items_lefthand_64.dmi differ
diff --git a/icons/mob/humans/onmob/items_righthand_64.dmi b/icons/mob/humans/onmob/items_righthand_64.dmi
index 599ef5935f2e..72335e39bfff 100644
Binary files a/icons/mob/humans/onmob/items_righthand_64.dmi and b/icons/mob/humans/onmob/items_righthand_64.dmi differ
diff --git a/icons/mob/humans/onmob/uniform_0.dmi b/icons/mob/humans/onmob/uniform_0.dmi
index d24c05123cd4..2dd645697684 100644
Binary files a/icons/mob/humans/onmob/uniform_0.dmi and b/icons/mob/humans/onmob/uniform_0.dmi differ
diff --git a/icons/mob/xenos/larva.dmi b/icons/mob/xenos/larva.dmi
index d07dad82ed29..72cfb7b4e318 100644
Binary files a/icons/mob/xenos/larva.dmi and b/icons/mob/xenos/larva.dmi differ
diff --git a/icons/obj/items/clothing/cm_hats.dmi b/icons/obj/items/clothing/cm_hats.dmi
index ff0aa3d08ec8..469d7cb7616a 100644
Binary files a/icons/obj/items/clothing/cm_hats.dmi and b/icons/obj/items/clothing/cm_hats.dmi differ
diff --git a/icons/obj/items/clothing/uniforms.dmi b/icons/obj/items/clothing/uniforms.dmi
index 788e24bf46e6..e444d7a5a40a 100644
Binary files a/icons/obj/items/clothing/uniforms.dmi and b/icons/obj/items/clothing/uniforms.dmi differ
diff --git a/icons/obj/structures/plantable_flag.dmi b/icons/obj/structures/plantable_flag.dmi
new file mode 100644
index 000000000000..c92311529be3
Binary files /dev/null and b/icons/obj/structures/plantable_flag.dmi differ
diff --git a/icons/obj/structures/props/almayer_props64.dmi b/icons/obj/structures/props/almayer_props64.dmi
index f47f19be9081..4b69179f5541 100644
Binary files a/icons/obj/structures/props/almayer_props64.dmi and b/icons/obj/structures/props/almayer_props64.dmi differ
diff --git a/maps/interiors/apc.dmm b/maps/interiors/apc.dmm
index 2684ad8f0f75..f03d673d99b0 100644
--- a/maps/interiors/apc.dmm
+++ b/maps/interiors/apc.dmm
@@ -14,9 +14,7 @@
dir = 1;
pixel_x = -8
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/apc)
"c" = (
/obj/structure/bed/chair/vehicle{
@@ -32,9 +30,7 @@
pixel_x = 8;
pixel_y = -11
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_5"
- },
+/turf/open/shuttle/vehicle/floor_3_5,
/area/interior/vehicle/apc)
"d" = (
/obj/structure/bed/chair/vehicle{
@@ -45,9 +41,7 @@
dir = 1;
pixel_x = -8
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_8_1"
- },
+/turf/open/shuttle/vehicle/floor_3_8_1,
/area/interior/vehicle/apc)
"e" = (
/obj/structure/interior_wall/apc{
@@ -62,9 +56,7 @@
name = "Right M56 FPW handle";
pixel_y = 2
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_12"
- },
+/turf/open/shuttle/vehicle/floor_3_12,
/area/interior/vehicle/apc)
"g" = (
/obj/structure/interior_wall/apc{
@@ -83,9 +75,7 @@
/turf/open/void/vehicle,
/area/space)
"i" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_0_1_15"
- },
+/turf/open/shuttle/vehicle/floor_0_1_15,
/area/interior/vehicle/apc)
"j" = (
/turf/open/void/vehicle,
@@ -109,9 +99,7 @@
/obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{
dir = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_9_1"
- },
+/turf/open/shuttle/vehicle/floor_3_9_1,
/area/interior/vehicle/apc)
"n" = (
/obj/structure/interior_wall/apc{
@@ -152,9 +140,7 @@
pixel_x = -32;
tag = "rear center"
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_13"
- },
+/turf/open/shuttle/vehicle/floor_1_13,
/area/interior/vehicle/apc)
"t" = (
/obj/structure/interior_wall/apc{
@@ -164,9 +150,7 @@
/area/space)
"u" = (
/obj/effect/landmark/interior/spawn/weapons_loader,
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_6"
- },
+/turf/open/shuttle/vehicle/floor_3_6,
/area/interior/vehicle/apc)
"v" = (
/obj/structure/bed/chair/vehicle{
@@ -180,9 +164,7 @@
pixel_x = -14;
pixel_y = 38
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_9_1"
- },
+/turf/open/shuttle/vehicle/floor_3_9_1,
/area/interior/vehicle/apc)
"w" = (
/obj/effect/landmark/interior/spawn/entrance{
@@ -198,9 +180,7 @@
pixel_x = 5;
pixel_y = 8
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_11"
- },
+/turf/open/shuttle/vehicle/floor_1_11,
/area/interior/vehicle/apc)
"y" = (
/obj/structure/interior_wall/apc{
@@ -209,14 +189,10 @@
/turf/open/void/vehicle,
/area/space)
"z" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_5"
- },
+/turf/open/shuttle/vehicle/floor_1_5,
/area/interior/vehicle/apc)
"A" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_6"
- },
+/turf/open/shuttle/vehicle/floor_1_6,
/area/interior/vehicle/apc)
"B" = (
/obj/structure/interior_wall/apc{
@@ -233,9 +209,7 @@
pixel_x = -24;
pixel_y = 28
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_11"
- },
+/turf/open/shuttle/vehicle/floor_1_11,
/area/interior/vehicle/apc)
"D" = (
/obj/structure/interior_wall/apc{
@@ -271,9 +245,7 @@
dir = 1;
pixel_x = 8
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/apc)
"H" = (
/obj/structure/bed/chair/vehicle{
@@ -291,9 +263,7 @@
pixel_x = -8;
pixel_y = 28
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/apc)
"I" = (
/obj/effect/landmark/interior/spawn/vehicle_support_gunner_seat{
@@ -304,9 +274,7 @@
name = "Left M56 FPW handle";
pixel_y = 17
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_11"
- },
+/turf/open/shuttle/vehicle/floor_3_11,
/area/interior/vehicle/apc)
"J" = (
/obj/structure/interior_wall/apc{
@@ -321,9 +289,7 @@
/turf/open/void/vehicle,
/area/space)
"K" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_14"
- },
+/turf/open/shuttle/vehicle/floor_1_14,
/area/interior/vehicle/apc)
"L" = (
/obj/structure/interior_wall/apc{
@@ -361,9 +327,7 @@
/turf/open/void/vehicle,
/area/space)
"R" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_1_3"
- },
+/turf/open/shuttle/vehicle/floor_1_1_3,
/area/interior/vehicle/apc)
"S" = (
/obj/structure/interior_wall/apc{
@@ -399,9 +363,7 @@
pixel_x = -7;
pixel_y = 23
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/apc)
"V" = (
/obj/structure/interior_wall/apc{
@@ -417,9 +379,7 @@
layer = 5.21;
pixel_y = 28
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_8_1"
- },
+/turf/open/shuttle/vehicle/floor_3_8_1,
/area/interior/vehicle/apc)
"X" = (
/obj/structure/interior_wall/apc{
@@ -439,9 +399,7 @@
pixel_x = 5;
pixel_y = 1
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_12"
- },
+/turf/open/shuttle/vehicle/floor_1_12,
/area/interior/vehicle/apc)
"Z" = (
/obj/structure/interior_wall/apc{
diff --git a/maps/interiors/apc_command.dmm b/maps/interiors/apc_command.dmm
index d6f7485339fc..4af7a56650d1 100644
--- a/maps/interiors/apc_command.dmm
+++ b/maps/interiors/apc_command.dmm
@@ -7,9 +7,7 @@
/area/space)
"b" = (
/obj/structure/prop/vehicle/sensor_equipment,
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_10_1"
- },
+/turf/open/shuttle/vehicle/floor_3_10_1,
/area/interior/vehicle/apc/command)
"c" = (
/obj/structure/bed/chair/vehicle{
@@ -20,9 +18,7 @@
dir = 1;
pixel_x = 8
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_5"
- },
+/turf/open/shuttle/vehicle/floor_3_5,
/area/interior/vehicle/apc/command)
"d" = (
/obj/structure/bed/chair/vehicle{
@@ -33,9 +29,7 @@
dir = 1;
pixel_x = -8
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_8_1"
- },
+/turf/open/shuttle/vehicle/floor_3_8_1,
/area/interior/vehicle/apc/command)
"e" = (
/obj/structure/interior_wall/apc{
@@ -53,9 +47,7 @@
/obj/structure/bed/chair/vehicle{
dir = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_12"
- },
+/turf/open/shuttle/vehicle/floor_3_12,
/area/interior/vehicle/apc/command)
"h" = (
/obj/structure/interior_wall/apc{
@@ -76,9 +68,7 @@
icon = 'icons/obj/vehicles/interiors/general.dmi';
pixel_y = 28
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/apc/command)
"k" = (
/turf/open/void/vehicle,
@@ -120,9 +110,7 @@
layer = 2.81;
pixel_y = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_7_1"
- },
+/turf/open/shuttle/vehicle/floor_3_7_1,
/area/interior/vehicle/apc/command)
"p" = (
/obj/structure/interior_wall/apc{
@@ -137,14 +125,10 @@
/obj/effect/landmark/interior/spawn/vehicle_gunner_seat/armor{
dir = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_8_1"
- },
+/turf/open/shuttle/vehicle/floor_3_8_1,
/area/interior/vehicle/apc/command)
"r" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_6"
- },
+/turf/open/shuttle/vehicle/floor_1_6,
/area/interior/vehicle/apc/command)
"s" = (
/obj/structure/machinery/prop/almayer/CICmap{
@@ -152,9 +136,7 @@
unslashable = 1
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_6"
- },
+/turf/open/shuttle/vehicle/floor_3_6,
/area/interior/vehicle/apc/command)
"t" = (
/obj/structure/interior_wall/apc{
@@ -165,9 +147,7 @@
/turf/open/void/vehicle,
/area/space)
"u" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_5"
- },
+/turf/open/shuttle/vehicle/floor_1_5,
/area/interior/vehicle/apc/command)
"v" = (
/obj/structure/interior_wall/apc{
@@ -191,22 +171,16 @@
pixel_x = -21;
pixel_y = 24
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_5"
- },
+/turf/open/shuttle/vehicle/floor_3_5,
/area/interior/vehicle/apc/command)
"x" = (
/obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{
dir = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_9_1"
- },
+/turf/open/shuttle/vehicle/floor_3_9_1,
/area/interior/vehicle/apc/command)
"y" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_14"
- },
+/turf/open/shuttle/vehicle/floor_1_14,
/area/interior/vehicle/apc/command)
"z" = (
/obj/structure/interior_wall/apc{
@@ -231,9 +205,7 @@
pixel_y = 32;
tag = "left"
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_11"
- },
+/turf/open/shuttle/vehicle/floor_1_11,
/area/interior/vehicle/apc/command)
"C" = (
/obj/structure/interior_wall/apc{
@@ -249,17 +221,13 @@
/turf/open/void/vehicle,
/area/space)
"E" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_0_1_15"
- },
+/turf/open/shuttle/vehicle/floor_0_1_15,
/area/interior/vehicle/apc/command)
"F" = (
/obj/structure/bed/chair/vehicle{
dir = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_11"
- },
+/turf/open/shuttle/vehicle/floor_3_11,
/area/interior/vehicle/apc/command)
"G" = (
/obj/effect/landmark/interior/spawn/entrance{
@@ -273,19 +241,13 @@
pixel_x = 5;
pixel_y = 1
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_12"
- },
+/turf/open/shuttle/vehicle/floor_1_12,
/area/interior/vehicle/apc/command)
"H" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_13"
- },
+/turf/open/shuttle/vehicle/floor_1_13,
/area/interior/vehicle/apc/command)
"I" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/apc/command)
"J" = (
/obj/structure/interior_wall/apc{
@@ -311,9 +273,7 @@
pixel_x = -14;
pixel_y = 38
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_9_1"
- },
+/turf/open/shuttle/vehicle/floor_3_9_1,
/area/interior/vehicle/apc/command)
"M" = (
/obj/structure/interior_wall/apc{
@@ -412,9 +372,7 @@
/area/space)
"Y" = (
/obj/effect/landmark/interior/spawn/weapons_loader,
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_6"
- },
+/turf/open/shuttle/vehicle/floor_3_6,
/area/interior/vehicle/apc/command)
(1,1,1) = {"
diff --git a/maps/interiors/apc_med.dmm b/maps/interiors/apc_med.dmm
index 0f47b029c20f..9ca29500eafa 100644
--- a/maps/interiors/apc_med.dmm
+++ b/maps/interiors/apc_med.dmm
@@ -11,9 +11,7 @@
pixel_x = -5
},
/obj/item/device/defibrillator,
-/turf/open/shuttle/vehicle{
- icon_state = "dark_sterile_green_11"
- },
+/turf/open/shuttle/vehicle/dark_sterile_green_11,
/area/interior/vehicle/apc/med)
"c" = (
/obj/effect/decal/medical_decals/permanent{
@@ -24,9 +22,7 @@
/obj/effect/decal/medical_decals/permanent{
icon_state = "triagedecalbottom"
},
-/turf/open/shuttle/vehicle{
- icon_state = "dark_sterile_green_5"
- },
+/turf/open/shuttle/vehicle/dark_sterile_green_5,
/area/interior/vehicle/apc/med)
"d" = (
/obj/effect/decal/medical_decals/permanent{
@@ -35,9 +31,7 @@
/obj/effect/decal/medical_decals/permanent{
icon_state = "triagedecaltopright"
},
-/turf/open/shuttle/vehicle{
- icon_state = "dark_sterile_green_14"
- },
+/turf/open/shuttle/vehicle/dark_sterile_green_14,
/area/interior/vehicle/apc/med)
"e" = (
/obj/structure/interior_wall/apc{
@@ -67,9 +61,7 @@
dir = 1;
pixel_x = -8
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3"
- },
+/turf/open/shuttle/vehicle/floor_3,
/area/interior/vehicle/apc/med)
"j" = (
/obj/structure/interior_wall/apc{
@@ -102,9 +94,7 @@
icon_state = "triagedecaltop";
pixel_y = -2
},
-/turf/open/shuttle/vehicle{
- icon_state = "dark_sterile_green_7"
- },
+/turf/open/shuttle/vehicle/dark_sterile_green_7,
/area/interior/vehicle/apc/med)
"n" = (
/obj/structure/interior_wall/apc{
@@ -176,9 +166,7 @@
dir = 4;
icon_state = "triagedecaldir"
},
-/turf/open/shuttle/vehicle{
- icon_state = "dark_sterile_green_8"
- },
+/turf/open/shuttle/vehicle/dark_sterile_green_8,
/area/interior/vehicle/apc/med)
"x" = (
/obj/structure/interior_wall/apc{
@@ -201,9 +189,7 @@
pixel_y = 32;
tag = "left"
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_11"
- },
+/turf/open/shuttle/vehicle/floor_1_11,
/area/interior/vehicle/apc/med)
"z" = (
/obj/structure/interior_wall/apc{
@@ -220,9 +206,7 @@
/obj/structure/bed/chair/vehicle{
pixel_x = -8
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3"
- },
+/turf/open/shuttle/vehicle/floor_3,
/area/interior/vehicle/apc/med)
"B" = (
/obj/structure/machinery/iv_drip{
@@ -233,9 +217,7 @@
pixel_x = -6;
pixel_y = 23
},
-/turf/open/shuttle/vehicle{
- icon_state = "dark_sterile_green_12"
- },
+/turf/open/shuttle/vehicle/dark_sterile_green_12,
/area/interior/vehicle/apc/med)
"C" = (
/obj/structure/interior_wall/apc{
@@ -250,9 +232,7 @@
pixel_x = -5;
pixel_y = 16
},
-/turf/open/shuttle/vehicle{
- icon_state = "dark_sterile"
- },
+/turf/open/shuttle/vehicle/dark_sterile,
/area/interior/vehicle/apc/med)
"E" = (
/obj/structure/vehicle_locker{
@@ -261,9 +241,7 @@
/obj/effect/landmark/interior/spawn/vehicle_gunner_seat/armor{
dir = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_8_1"
- },
+/turf/open/shuttle/vehicle/floor_3_8_1,
/area/interior/vehicle/apc/med)
"F" = (
/obj/structure/interior_wall/apc{
@@ -290,17 +268,13 @@
/obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{
dir = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_9_1"
- },
+/turf/open/shuttle/vehicle/floor_3_9_1,
/area/interior/vehicle/apc/med)
"J" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "dark_sterile_green_6"
- },
+/turf/open/shuttle/vehicle/dark_sterile_green_6,
/area/interior/vehicle/apc/med)
"K" = (
/obj/effect/landmark/interior/spawn/entrance{
@@ -314,14 +288,10 @@
pixel_x = 5;
pixel_y = 1
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_12"
- },
+/turf/open/shuttle/vehicle/floor_1_12,
/area/interior/vehicle/apc/med)
"L" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_14"
- },
+/turf/open/shuttle/vehicle/floor_1_14,
/area/interior/vehicle/apc/med)
"M" = (
/obj/structure/interior_wall/apc{
@@ -352,9 +322,7 @@
pixel_x = -14;
pixel_y = 38
},
-/turf/open/shuttle/vehicle{
- icon_state = "dark_sterile_green_13"
- },
+/turf/open/shuttle/vehicle/dark_sterile_green_13,
/area/interior/vehicle/apc/med)
"P" = (
/obj/structure/interior_wall/apc{
@@ -363,15 +331,11 @@
/turf/open/void/vehicle,
/area/space)
"Q" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_6"
- },
+/turf/open/shuttle/vehicle/floor_1_6,
/area/interior/vehicle/apc/med)
"R" = (
/obj/effect/landmark/interior/spawn/weapons_loader,
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_6"
- },
+/turf/open/shuttle/vehicle/floor_3_6,
/area/interior/vehicle/apc/med)
"S" = (
/obj/structure/interior_wall/apc{
@@ -380,9 +344,7 @@
/turf/open/void/vehicle,
/area/space)
"T" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_3_3"
- },
+/turf/open/shuttle/vehicle/floor_1_3_3,
/area/interior/vehicle/apc/med)
"U" = (
/obj/structure/interior_wall/apc{
@@ -399,9 +361,7 @@
dir = 1;
pixel_x = -7
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/apc/med)
"W" = (
/obj/structure/bed/chair/vehicle{
@@ -419,9 +379,7 @@
pixel_x = -8;
pixel_y = 28
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/apc/med)
"Y" = (
/obj/structure/interior_wall/apc{
diff --git a/maps/interiors/apc_no_fpw.dmm b/maps/interiors/apc_no_fpw.dmm
index e463b7a5ff1e..a387a19e79e8 100644
--- a/maps/interiors/apc_no_fpw.dmm
+++ b/maps/interiors/apc_no_fpw.dmm
@@ -3,17 +3,13 @@
/turf/open/void/vehicle,
/area/space)
"b" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_6"
- },
+/turf/open/shuttle/vehicle/floor_1_6,
/area/interior/vehicle/apc)
"c" = (
/obj/structure/bed/chair/vehicle{
dir = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_12"
- },
+/turf/open/shuttle/vehicle/floor_3_12,
/area/interior/vehicle/apc)
"d" = (
/obj/effect/landmark/interior/spawn/entrance{
@@ -26,9 +22,7 @@
pixel_x = 5;
pixel_y = 1
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_12"
- },
+/turf/open/shuttle/vehicle/floor_1_12,
/area/interior/vehicle/apc)
"e" = (
/obj/structure/bed/chair/vehicle{
@@ -44,9 +38,7 @@
pixel_x = 8;
pixel_y = -11
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_5"
- },
+/turf/open/shuttle/vehicle/floor_3_5,
/area/interior/vehicle/apc)
"f" = (
/obj/structure/interior_wall/apc{
@@ -67,9 +59,7 @@
/turf/open/void/vehicle,
/area/space)
"i" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_1_3"
- },
+/turf/open/shuttle/vehicle/floor_1_1_3,
/area/interior/vehicle/apc)
"j" = (
/obj/effect/landmark/interior/spawn/entrance{
@@ -86,9 +76,7 @@
dir = 1;
pixel_x = 8
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/apc)
"k" = (
/obj/structure/interior_wall/apc{
@@ -105,9 +93,7 @@
layer = 5.21;
pixel_y = 28
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_8_1"
- },
+/turf/open/shuttle/vehicle/floor_3_8_1,
/area/interior/vehicle/apc)
"m" = (
/obj/structure/interior_wall/apc{
@@ -136,9 +122,7 @@
dir = 1;
pixel_x = -8
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_8_1"
- },
+/turf/open/shuttle/vehicle/floor_3_8_1,
/area/interior/vehicle/apc)
"r" = (
/obj/effect/landmark/interior/spawn/interior_viewport{
@@ -154,9 +138,7 @@
pixel_y = 32;
tag = "left"
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_11"
- },
+/turf/open/shuttle/vehicle/floor_1_11,
/area/interior/vehicle/apc)
"s" = (
/obj/structure/interior_wall/apc{
@@ -176,9 +158,7 @@
pixel_x = -14;
pixel_y = 38
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_9_1"
- },
+/turf/open/shuttle/vehicle/floor_3_9_1,
/area/interior/vehicle/apc)
"u" = (
/obj/structure/interior_wall/apc{
@@ -205,9 +185,7 @@
/area/space)
"y" = (
/obj/effect/landmark/interior/spawn/weapons_loader,
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_6"
- },
+/turf/open/shuttle/vehicle/floor_3_6,
/area/interior/vehicle/apc)
"z" = (
/obj/effect/landmark/interior/spawn/entrance{
@@ -216,9 +194,7 @@
pixel_x = -32;
tag = "rear center"
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_13"
- },
+/turf/open/shuttle/vehicle/floor_1_13,
/area/interior/vehicle/apc)
"A" = (
/obj/structure/interior_wall/apc{
@@ -237,17 +213,13 @@
dir = 1;
pixel_x = -8
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/apc)
"C" = (
/obj/structure/bed/chair/vehicle{
dir = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_11"
- },
+/turf/open/shuttle/vehicle/floor_3_11,
/area/interior/vehicle/apc)
"D" = (
/obj/structure/interior_wall/apc{
@@ -256,9 +228,7 @@
/turf/open/void/vehicle,
/area/space)
"E" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_5"
- },
+/turf/open/shuttle/vehicle/floor_1_5,
/area/interior/vehicle/apc)
"F" = (
/obj/structure/interior_wall/apc{
@@ -295,9 +265,7 @@
pixel_x = -24;
pixel_y = 28
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_11"
- },
+/turf/open/shuttle/vehicle/floor_1_11,
/area/interior/vehicle/apc)
"J" = (
/obj/structure/interior_wall/apc{
@@ -319,9 +287,7 @@
/turf/open/void/vehicle,
/area/space)
"L" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_0_1_15"
- },
+/turf/open/shuttle/vehicle/floor_0_1_15,
/area/interior/vehicle/apc)
"M" = (
/obj/structure/interior_wall/apc{
@@ -340,9 +306,7 @@
/obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{
dir = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_9_1"
- },
+/turf/open/shuttle/vehicle/floor_3_9_1,
/area/interior/vehicle/apc)
"P" = (
/obj/structure/interior_wall/apc{
@@ -382,9 +346,7 @@
/turf/open/void/vehicle,
/area/space)
"U" = (
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_14"
- },
+/turf/open/shuttle/vehicle/floor_1_14,
/area/interior/vehicle/apc)
"V" = (
/obj/structure/interior_wall/apc{
@@ -408,9 +370,7 @@
pixel_x = -8;
pixel_y = 28
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/apc)
"X" = (
/obj/structure/interior_wall/apc{
@@ -443,9 +403,7 @@
pixel_x = -7;
pixel_y = 23
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/apc)
(1,1,1) = {"
diff --git a/maps/interiors/fancylocker.dmm b/maps/interiors/fancylocker.dmm
index 1b97bc73be62..2629f6210056 100644
--- a/maps/interiors/fancylocker.dmm
+++ b/maps/interiors/fancylocker.dmm
@@ -14,24 +14,16 @@
/turf/open/floor/wood,
/area/interior/fancylocker)
"d" = (
-/turf/open/floor/carpet/edge{
- dir = 9
- },
+/turf/open/floor/carpet/edge/northwest,
/area/interior/fancylocker)
"e" = (
-/turf/open/floor/carpet/edge{
- dir = 1
- },
+/turf/open/floor/carpet/edge/north,
/area/interior/fancylocker)
"f" = (
-/turf/open/floor/carpet/edge{
- dir = 5
- },
+/turf/open/floor/carpet/edge/northeast,
/area/interior/fancylocker)
"g" = (
-/turf/open/floor/carpet/edge{
- dir = 8
- },
+/turf/open/floor/carpet/edge/west,
/area/interior/fancylocker)
"h" = (
/obj/structure/bed/sofa/south/white/left,
@@ -46,9 +38,7 @@
/turf/open/floor/carpet,
/area/interior/fancylocker)
"k" = (
-/turf/open/floor/carpet/edge{
- dir = 4
- },
+/turf/open/floor/carpet/edge/east,
/area/interior/fancylocker)
"l" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -56,17 +46,13 @@
/turf/open/floor/wood,
/area/interior/fancylocker)
"m" = (
-/turf/open/floor/carpet/edge{
- dir = 10
- },
+/turf/open/floor/carpet/edge/southwest,
/area/interior/fancylocker)
"n" = (
/turf/open/floor/carpet/edge,
/area/interior/fancylocker)
"o" = (
-/turf/open/floor/carpet/edge{
- dir = 6
- },
+/turf/open/floor/carpet/edge/southeast,
/area/interior/fancylocker)
"p" = (
/obj/structure/surface/table/woodentable/fancy,
diff --git a/maps/interiors/tank.dmm b/maps/interiors/tank.dmm
index f2714401a03d..e5c019e01993 100644
--- a/maps/interiors/tank.dmm
+++ b/maps/interiors/tank.dmm
@@ -15,15 +15,11 @@
pixel_x = 22;
pixel_y = -14
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_12"
- },
+/turf/open/shuttle/vehicle/floor_1_12,
/area/interior/vehicle/tank)
"c" = (
/obj/structure/prop/tank{
- icon_state = "prop2";
- layer = 3;
- pixel_x = 0
+ icon_state = "prop2"
},
/obj/effect/landmark/interior/spawn/weapons_loader{
layer = 2;
@@ -36,25 +32,17 @@
pixel_x = 12;
pixel_y = 58
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_3"
- },
+/turf/open/shuttle/vehicle/floor_3_3,
/area/interior/vehicle/tank)
"e" = (
/obj/effect/landmark/interior/spawn/vehicle_gunner_seat/armor{
dir = 4
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_13"
- },
+/turf/open/shuttle/vehicle/floor_3_13,
/area/interior/vehicle/tank)
"f" = (
-/obj/structure/prop/tank{
- pixel_x = 0
- },
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_1_1"
- },
+/obj/structure/prop/tank,
+/turf/open/shuttle/vehicle/floor_3_1_1,
/area/interior/vehicle/tank)
"g" = (
/obj/structure/interior_wall/tank{
@@ -91,17 +79,13 @@
/area/space)
"u" = (
/obj/structure/prop/tank{
- icon_state = "prop5";
- pixel_x = 0
+ icon_state = "prop5"
},
/obj/structure/prop/tank{
icon_state = "prop7";
- pixel_x = 0;
pixel_y = 32
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_8"
- },
+/turf/open/shuttle/vehicle/floor_3_8,
/area/interior/vehicle/tank)
"v" = (
/obj/structure/interior_wall/tank{
@@ -140,24 +124,18 @@
/obj/structure/prop/tank{
density = 0;
icon_state = "prop6";
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/prop/tank{
density = 0;
icon_state = "prop8_extra";
- layer = 4.12;
- pixel_x = 0
+ layer = 4.12
},
/obj/structure/prop/tank{
density = 0;
- icon_state = "prop4";
- layer = 3;
- pixel_x = 0
- },
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_7"
+ icon_state = "prop4"
},
+/turf/open/shuttle/vehicle/floor_3_7,
/area/interior/vehicle/tank)
"H" = (
/obj/structure/interior_wall/tank{
@@ -169,21 +147,15 @@
/area/space)
"J" = (
/obj/structure/prop/tank{
- icon_state = "prop3";
- pixel_x = 0
- },
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_4"
+ icon_state = "prop3"
},
+/turf/open/shuttle/vehicle/floor_3_4,
/area/interior/vehicle/tank)
"T" = (
/obj/structure/prop/tank{
- icon_state = "prop1";
- pixel_x = 0
- },
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_9"
+ icon_state = "prop1"
},
+/turf/open/shuttle/vehicle/floor_3_9,
/area/interior/vehicle/tank)
"Z" = (
/obj/structure/vehicle_locker/tank{
@@ -198,9 +170,7 @@
pixel_x = 9;
pixel_y = 31
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_11"
- },
+/turf/open/shuttle/vehicle/floor_1_11,
/area/interior/vehicle/tank)
(1,1,1) = {"
diff --git a/maps/interiors/van.dmm b/maps/interiors/van.dmm
index 309160f38c1d..673f1ef07d2a 100644
--- a/maps/interiors/van.dmm
+++ b/maps/interiors/van.dmm
@@ -10,9 +10,7 @@
pixel_x = -32;
tag = "back_right"
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_10"
- },
+/turf/open/shuttle/vehicle/floor_1_10,
/area/interior/vehicle/van)
"e" = (
/obj/structure/interior_wall/van{
@@ -35,9 +33,7 @@
alpha = 100;
pixel_y = -2
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_1"
- },
+/turf/open/shuttle/vehicle/floor_1_1,
/area/interior/vehicle/van)
"i" = (
/obj/structure/interior_wall/van{
@@ -68,9 +64,7 @@
/obj/effect/vehicle_roof/van{
icon_state = "roof_3"
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_8"
- },
+/turf/open/shuttle/vehicle/floor_1_8,
/area/interior/vehicle/van)
"r" = (
/obj/structure/interior_wall/van{
@@ -91,9 +85,7 @@
pixel_x = -32;
tag = "back_left"
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_7"
- },
+/turf/open/shuttle/vehicle/floor_1_7,
/area/interior/vehicle/van)
"t" = (
/obj/effect/landmark/interior/spawn/entrance{
@@ -112,9 +104,7 @@
/obj/effect/landmark/interior/spawn/interior_viewport/simple/windshield{
icon_state = "windshield_viewport_bottom"
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_11"
- },
+/turf/open/shuttle/vehicle/floor_3_11,
/area/interior/vehicle/van)
"v" = (
/obj/structure/interior_wall/van{
@@ -146,12 +136,9 @@
tag = "right"
},
/obj/structure/bed/chair/comfy{
- dir = 4;
- icon_state = "comfychair"
- },
-/turf/open/shuttle/vehicle{
- icon_state = "floor_3_12"
+ dir = 4
},
+/turf/open/shuttle/vehicle/floor_3_12,
/area/interior/vehicle/van)
"z" = (
/obj/structure/interior_wall/van{
@@ -178,9 +165,7 @@
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_9"
- },
+/turf/open/shuttle/vehicle/floor_1_9,
/area/interior/vehicle/van)
"J" = (
/obj/structure/interior_wall/van{
@@ -199,9 +184,7 @@
/obj/effect/vehicle_roof/van{
icon_state = "roof_2"
},
-/turf/open/shuttle/vehicle{
- icon_state = "floor_1_2"
- },
+/turf/open/shuttle/vehicle/floor_1_2,
/area/interior/vehicle/van)
"O" = (
/turf/open/void/vehicle,
diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm
index 82871ec53f85..b71c76ab1cb9 100644
--- a/maps/map_files/BigRed/BigRed.dmm
+++ b/maps/map_files/BigRed/BigRed.dmm
@@ -9,67 +9,46 @@
},
/area/space)
"aad" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_north)
"aae" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/space_port)
"aaf" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"aag" = (
/obj/structure/machinery/floodlight/landing/floor,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/bigredv2/outside/space_port)
"aah" = (
/turf/open/floor/plating,
/area/bigredv2/outside/space_port)
"aai" = (
/obj/structure/machinery/landinglight/ds1/delaytwo,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port)
"aaj" = (
/obj/structure/machinery/landinglight/ds1/delayone,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port)
"aak" = (
/obj/structure/machinery/landinglight/ds1,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port)
"aal" = (
/obj/structure/machinery/landinglight/ds1/delaythree,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port)
"aam" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"aan" = (
/obj/effect/landmark/crap_item,
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"aao" = (
/turf/closed/wall/solaris/rock,
@@ -78,10 +57,7 @@
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port)
"aaq" = (
/obj/structure/sign/safety/hazard,
@@ -89,25 +65,16 @@
/area/bigredv2/outside/space_port)
"aar" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"aas" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm)
"aat" = (
/obj/structure/machinery/landinglight/ds1{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"aau" = (
/obj/docking_port/stationary/marine_dropship/lz1{
@@ -119,10 +86,7 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port)
"aaw" = (
/turf/closed/wall/solaris,
@@ -133,60 +97,42 @@
pixel_x = -32
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aay" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aaz" = (
/obj/structure/machinery/status_display{
pixel_y = 32
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aaA" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
/obj/structure/machinery/recharge_station,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aaB" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/telecomm/n_cave)
"aaC" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aaD" = (
/obj/structure/prop/tower,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/bigredv2/outside/space_port)
"aaE" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"aaF" = (
/obj/structure/machinery/camera/autoname/lz_camera,
@@ -196,10 +142,7 @@
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port)
"aaH" = (
/obj/structure/cargo_container/grant/left,
@@ -217,77 +160,54 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"aaL" = (
/obj/structure/closet/firecloset,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aaM" = (
/obj/structure/machinery/vending/snack,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aaN" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aaO" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aaP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aaQ" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aaR" = (
/obj/structure/machinery/computer/telecomms/traffic,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"aaS" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"aaT" = (
/obj/structure/machinery/landinglight/ds1{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port)
"aaU" = (
/obj/effect/decal/cleanable/blood/gibs/core,
@@ -296,18 +216,14 @@
"aaV" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"aaW" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper Spaceport"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/space_port)
"aaX" = (
/obj/structure/closet/secure_closet/injection,
@@ -321,25 +237,17 @@
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aaZ" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm)
"aba" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"abc" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -351,23 +259,17 @@
pixel_x = -32;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"abf" = (
/obj/effect/decal/cleanable/blood/gibs/up,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"abg" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"abh" = (
/obj/structure/surface/table,
@@ -378,26 +280,18 @@
pixel_x = 32
},
/obj/item/tool/pen,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"abi" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"abj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port)
"abk" = (
/obj/structure/cargo_container/arious/leftmid,
@@ -416,49 +310,34 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"abo" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"abp" = (
/obj/structure/machinery/blackbox_recorder,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"abq" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_north)
"abr" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_north)
"abs" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_north)
"abt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port)
"abu" = (
/obj/structure/cargo_container/watatsumi/leftmid,
@@ -486,31 +365,22 @@
/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/landing/console)
"abA" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/decal/cleanable/blood/gibs/core,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"abB" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"abC" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"abD" = (
/obj/effect/decal/cleanable/blood{
@@ -521,61 +391,43 @@
"abE" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/bigredv2/outside/space_port)
"abF" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/bomb_supply,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"abG" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"abH" = (
/obj/structure/machinery/computer/cameras{
dir = 1
},
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"abI" = (
/obj/item/shard,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"abJ" = (
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"abK" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/bigredv2/outside/space_port)
"abM" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_north)
"abO" = (
/turf/open/mars_cave,
@@ -584,19 +436,13 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"abQ" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"abR" = (
/obj/structure/window/framed/solaris,
@@ -619,9 +465,7 @@
/turf/open/floor/plating,
/area/bigredv2/outside/space_port)
"abV" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_north)
"abY" = (
/obj/structure/barricade/wooden{
@@ -629,18 +473,13 @@
dir = 4;
health = 25000
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_north)
"abZ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"aca" = (
/obj/structure/machinery/light{
@@ -654,9 +493,7 @@
dir = 4;
health = 25000
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_north)
"acd" = (
/obj/effect/landmark/good_item,
@@ -664,48 +501,33 @@
/area/bigredv2/outside/space_port)
"ace" = (
/obj/structure/cargo_container/arious/leftmid,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/outside/space_port)
"acf" = (
/obj/structure/cargo_container/arious/rightmid,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/outside/space_port)
"acg" = (
/obj/structure/cargo_container/arious/right,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/outside/space_port)
"ach" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/outside/space_port)
"acj" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/outside/space_port)
"acl" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"acm" = (
/obj/item/tool/pickaxe,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_plant)
"acn" = (
/obj/effect/decal/cleanable/blood,
@@ -741,24 +563,16 @@
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigred/ground/garage_workshop)
"acv" = (
/obj/structure/filingcabinet/security,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"acw" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"acx" = (
/obj/effect/landmark/crap_item,
@@ -766,16 +580,10 @@
/area/bigredv2/outside/space_port)
"acy" = (
/obj/structure/machinery/botany,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/marshal_office)
"acz" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/marshal_office)
"acA" = (
/turf/closed/wall/solaris/reinforced,
@@ -785,49 +593,34 @@
/turf/open/floor/plating,
/area/bigredv2/outside/space_port)
"acC" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"acD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"acF" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"acH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm)
"acI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm)
"acJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"acK" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
@@ -836,31 +629,22 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"acL" = (
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"acM" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"acO" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"acP" = (
/turf/open/mars,
@@ -874,55 +658,40 @@
name = "\improper Telecommunications"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/telecomm)
"acS" = (
/obj/structure/machinery/landinglight/ds1{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"acT" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"acU" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"acV" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"acX" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"acY" = (
/obj/structure/surface/table,
/obj/item/folder/black,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"acZ" = (
/turf/open/floor/greengrid,
@@ -941,62 +710,43 @@
/obj/structure/platform_decoration/kutjevo/rock{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/space)
"adb" = (
/obj/structure/surface/table,
/obj/item/tool/hand_labeler,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"adc" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/clothing/head/det_hat,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"add" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"ade" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"adf" = (
/obj/structure/surface/table,
/obj/item/folder/black_random,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"adg" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"adh" = (
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/marshal_office)
"adi" = (
/obj/item/shard,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"adj" = (
/obj/item/shard,
@@ -1011,72 +761,52 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2/west,
/area/bigredv2/outside/space_port)
"adm" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"adn" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"ado" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"adp" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/marshal_office)
"adr" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"ads" = (
/obj/structure/surface/table,
/obj/item/folder/yellow,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"adt" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"adu" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"adv" = (
/obj/structure/surface/table,
@@ -1084,25 +814,18 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"adw" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"ady" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/marshal_office)
"adz" = (
/obj/structure/window/framed/solaris/reinforced/tinted,
@@ -1124,24 +847,17 @@
"adC" = (
/obj/structure/pipes/vents/pump,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"adD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/marshal_office)
"adE" = (
/obj/structure/sink{
pixel_y = 32
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"adF" = (
/obj/structure/mirror{
@@ -1149,9 +865,7 @@
pixel_x = 30
},
/obj/item/tool/soap/deluxe,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"adG" = (
/obj/item/shard,
@@ -1166,26 +880,19 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"adI" = (
/obj/structure/surface/table,
/obj/item/tool/extinguisher,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"adJ" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"adL" = (
/obj/structure/machinery/light{
@@ -1196,28 +903,20 @@
"adM" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"adN" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"adO" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"adP" = (
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"adQ" = (
/obj/structure/reagent_dispensers/peppertank{
@@ -1237,9 +936,7 @@
"adT" = (
/obj/structure/closet/secure_closet/marshal,
/obj/item/clothing/suit/storage/CMB,
-/turf/open/floor{
- icon_state = "floor4"
- },
+/turf/open/floor/floor4,
/area/bigredv2/outside/marshal_office)
"adU" = (
/obj/structure/surface/table,
@@ -1251,9 +948,7 @@
/turf/open/floor,
/area/bigredv2/outside/marshal_office)
"adW" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"adZ" = (
/turf/closed/wall/solaris/reinforced,
@@ -1269,31 +964,23 @@
phone_id = "Communications";
pixel_x = -18
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"aeb" = (
/obj/item/device/radio/headset,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"aec" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Telecommunications"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/telecomm)
"aed" = (
/obj/effect/decal/warning_stripes{
icon_state = "W-corner"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"aee" = (
/obj/effect/decal/cleanable/dirt,
@@ -1301,59 +988,40 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"aef" = (
/obj/structure/surface/table,
/obj/item/device/radio/headset,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"aeg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"aeh" = (
/obj/structure/machinery/landinglight/ds1{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/space_port)
"aei" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/space_port)
"aej" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/space_port)
"aek" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/space_port)
"ael" = (
/obj/structure/machinery/camera/autoname{
@@ -1366,9 +1034,7 @@
dir = 1;
name = "\improper Marshal Office Prison"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"aen" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -1376,18 +1042,14 @@
dir = 1;
name = "\improper Marshal Office Prison"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"aeo" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Marshal Office Prison Toilet"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"aep" = (
/obj/structure/reagent_dispensers/peppertank{
@@ -1408,22 +1070,16 @@
"aes" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/structure/machinery/computer/cameras/wooden_tv,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"aet" = (
/obj/structure/bed/chair/comfy,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"aeu" = (
/obj/item/clothing/accessory/storage/holster/armpit,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"aev" = (
/turf/open/floor/plating,
@@ -1439,56 +1095,38 @@
/area/bigredv2/caves/lambda/xenobiology)
"aey" = (
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northwest,
/area/bigredv2/caves/lambda/xenobiology)
"aez" = (
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/bigredv2/caves/lambda/xenobiology)
"aeA" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northeast,
/area/bigredv2/caves/lambda/xenobiology)
"aeB" = (
/obj/structure/machinery/computer/telecomms/server{
req_one_access_txt = "19;200"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"aeC" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"aeD" = (
/obj/structure/machinery/alarm{
dir = 4;
pixel_x = -30
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"aeE" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/north,
/area/bigredv2/caves/lambda/xenobiology)
"aeF" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1512,32 +1150,24 @@
/turf/open/mars,
/area/bigredv2/outside/nw)
"aeJ" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"aeK" = (
/obj/structure/surface/table,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"aeL" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"aeM" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"aeN" = (
/obj/structure/bed/stool,
@@ -1547,38 +1177,27 @@
"aeO" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/structure/machinery/recharger,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"aeP" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/reagent_container/food/drinks/flask/detflask,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"aeQ" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/bigredv2/caves/lambda/xenobiology)
"aeS" = (
/obj/structure/closet/crate/freezer,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/lambda/xenobiology)
"aeT" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/lambda/xenobiology)
"aeU" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -1589,54 +1208,36 @@
/turf/open/floor/plating,
/area/bigredv2/caves/lambda/xenobiology)
"aeW" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/bigredv2/caves/lambda/xenobiology)
"aeX" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor{
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull,
/area/bigredv2/caves/lambda/xenobiology)
"aeY" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2/west,
/area/bigredv2/caves/lambda/xenobiology)
"aeZ" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/bigredv2/caves/lambda/xenobiology)
"afa" = (
/obj/structure/closet/secure_closet/chemical,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northeast,
/area/bigredv2/caves/lambda/xenobiology)
"afb" = (
/obj/structure/machinery/computer/telecomms/traffic{
req_one_access_txt = "19;200"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"afc" = (
/obj/item/folder/yellow,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"afd" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -1646,9 +1247,7 @@
/obj/effect/decal/cleanable/mucus,
/obj/structure/surface/table,
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/xenobiology)
"afg" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -1669,25 +1268,18 @@
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"afk" = (
/obj/structure/toilet{
dir = 4
},
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"afl" = (
/obj/structure/machinery/flasher/portable,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"afm" = (
/obj/structure/closet/l3closet/security,
@@ -1695,34 +1287,22 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"afn" = (
/obj/structure/closet/l3closet/security,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"afo" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/revolver/cmb,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"afp" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"afq" = (
/obj/structure/surface/rack,
@@ -1730,10 +1310,7 @@
dir = 1
},
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"afr" = (
/obj/structure/machinery/camera/autoname{
@@ -1746,9 +1323,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"aft" = (
/obj/structure/surface/table/reinforced,
@@ -1756,14 +1331,10 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/lambda/xenobiology)
"afu" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/lambda/xenobiology)
"afv" = (
/obj/structure/window/framed/solaris,
@@ -1780,24 +1351,17 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"afx" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"afy" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/east,
/area/bigredv2/caves/lambda/xenobiology)
"afz" = (
/turf/open/floor/plating,
@@ -1812,38 +1376,25 @@
/area/bigredv2/caves/lambda/xenobiology)
"afC" = (
/obj/structure/foamed_metal,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southwest,
/area/bigredv2/caves/lambda/xenobiology)
"afD" = (
/obj/item/device/mass_spectrometer/adv,
/obj/structure/foamed_metal,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/bigredv2/caves/lambda/xenobiology)
"afE" = (
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/bigredv2/caves/lambda/xenobiology)
"afF" = (
/obj/structure/machinery/light,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/lambda/xenobiology)
"afG" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/reagentgrinder,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southeast,
/area/bigredv2/caves/lambda/xenobiology)
"afH" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -1859,15 +1410,11 @@
name = "Storm Shutters";
pixel_x = -32
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"afJ" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm)
"afK" = (
/obj/structure/machinery/power/apc{
@@ -1885,25 +1432,18 @@
/turf/open/floor/greengrid,
/area/bigredv2/outside/telecomm)
"afM" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/outside/space_port)
"afO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"afP" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Marshal Office Prison"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"afQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -1911,27 +1451,18 @@
dir = 1;
name = "\improper Marshal Office Prison"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"afR" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"afS" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"afT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"afU" = (
/obj/structure/closet/bombclosetsecurity,
@@ -1943,9 +1474,7 @@
dir = 4
},
/obj/item/clothing/suit/storage/CMB,
-/turf/open/floor{
- icon_state = "floor4"
- },
+/turf/open/floor/floor4,
/area/bigredv2/outside/marshal_office)
"afW" = (
/obj/structure/machinery/door_control{
@@ -1953,53 +1482,37 @@
name = "Storm Shutters";
pixel_x = -32
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"afY" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves/lambda/xenobiology)
"afZ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves/lambda/xenobiology)
"aga" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/lambda/xenobiology)
"agb" = (
/obj/item/reagent_container/blood/OMinus,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/lambda/xenobiology)
"agc" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"agd" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"age" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
dir = 1;
name = "\improper Lambda Lab Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"agf" = (
/obj/structure/surface/table/reinforced,
@@ -2011,38 +1524,28 @@
id = "chem_lock";
name = "\improper Chemistry Lockdown"
},
-/turf/open/floor{
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull,
/area/bigredv2/caves/lambda/xenobiology)
"agg" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
dir = 1;
name = "\improper Lambda Lab Chemistry Lab"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"agh" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"agi" = (
/obj/structure/bed,
/obj/item/bedsheet/purple,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"agj" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"agk" = (
/obj/structure/toilet{
@@ -2050,14 +1553,10 @@
},
/obj/structure/machinery/door/window,
/obj/structure/window/reinforced,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/caves/lambda/xenobiology)
"agl" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/caves/lambda/xenobiology)
"agm" = (
/turf/closed/wall/solaris/rock,
@@ -2066,25 +1565,16 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"ago" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/space_port)
"agq" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/n)
"agr" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -2093,39 +1583,25 @@
/turf/open/floor/plating,
/area/bigredv2/outside/space_port)
"ags" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/n)
"agt" = (
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/marshal_office)
"agu" = (
/turf/closed/wall/solaris/rock,
/area/bigredv2/outside/nw)
"agv" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2/west,
/area/bigredv2/outside/space_port)
"agw" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/outside/space_port)
"agx" = (
/obj/structure/girder/displaced,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/outside/space_port)
"agy" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -2137,31 +1613,19 @@
/turf/open/floor/plating,
/area/bigredv2/outside/marshal_office)
"agz" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"agA" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"agB" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"agC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"agD" = (
/obj/structure/surface/rack,
@@ -2169,82 +1633,61 @@
/obj/item/clothing/accessory/storage/black_vest,
/obj/item/clothing/accessory/storage/black_vest,
/obj/item/clothing/accessory/storage/black_vest,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"agE" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"agF" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/item/ammo_magazine/shotgun/slugs,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"agG" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"agH" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"agI" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/eastleft,
/obj/item/weapon/shield/riot,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"agJ" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Marshal Head Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"agK" = (
/obj/structure/machinery/optable,
/obj/effect/decal/cleanable/blood/gibs/limb,
/obj/effect/decal/cleanable/blood/gibs/limb,
/obj/effect/decal/cleanable/blood/gibs/core,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/lambda/xenobiology)
"agL" = (
/obj/effect/decal/cleanable/blood,
/obj/item/shard,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/lambda/xenobiology)
"agM" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Lambda Lab Surgery"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"agN" = (
/obj/effect/decal/warning_stripes{
@@ -2254,127 +1697,84 @@
icon_state = "small"
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"agO" = (
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"agP" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"agQ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/xenobiology)
"agS" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/xenobiology)
"agT" = (
/obj/structure/sign/safety/chem_lab{
pixel_x = 8;
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/xenobiology)
"agU" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/caves/lambda/xenobiology)
"agV" = (
/obj/structure/foamed_metal,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/caves/lambda/xenobiology)
"agW" = (
/obj/structure/foamed_metal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"agX" = (
/obj/structure/foamed_metal,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/xenobiology)
"agY" = (
/obj/structure/closet/secure_closet/CMO,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"agZ" = (
/obj/structure/surface/table,
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"aha" = (
/obj/structure/surface/table,
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"ahb" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/caves/lambda/xenobiology)
"ahc" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm)
"ahd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm)
"ahe" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/n)
"ahf" = (
/obj/structure/surface/table,
@@ -2382,10 +1782,7 @@
/area/bigredv2/outside/general_offices)
"ahg" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/outside/space_port)
"ahh" = (
/obj/structure/girder/reinforced,
@@ -2397,9 +1794,7 @@
/area/bigredv2/outside/nw)
"ahj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"ahk" = (
/obj/effect/decal/cleanable/dirt,
@@ -2437,9 +1832,7 @@
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"ahq" = (
/obj/structure/surface/table,
@@ -2447,15 +1840,11 @@
dir = 8
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"ahr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"ahs" = (
/obj/structure/reagent_dispensers/water_cooler,
@@ -2477,59 +1866,43 @@
/area/bigredv2/caves/lambda/breakroom)
"ahw" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"ahx" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"ahy" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_lambda)
"ahz" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/scalpel/manager,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves/lambda/xenobiology)
"ahA" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/lambda/xenobiology)
"ahB" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 1;
name = "\improper Lambda Lab Surgery"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"ahC" = (
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/xenobiology)
"ahD" = (
/obj/structure/sign/safety/medical{
pixel_x = 8;
pixel_y = -32
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/xenobiology)
"ahE" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
@@ -2537,118 +1910,78 @@
},
/obj/structure/machinery/light,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/xenobiology)
"ahF" = (
/obj/structure/closet/hydrant{
pixel_y = -32
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/xenobiology)
"ahG" = (
/obj/structure/extinguisher_cabinet{
pixel_y = -30
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/xenobiology)
"ahH" = (
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/breakroom)
"ahI" = (
/obj/structure/foamed_metal,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/xenobiology)
"ahJ" = (
/obj/structure/foamed_metal,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/xenobiology)
"ahK" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/space_port)
"ahL" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/xenobiology)
"ahM" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 1;
name = "\improper Lambda Lab Cell"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"ahN" = (
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/telecomm)
"ahO" = (
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/outside/nw)
"ahP" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/nw)
"ahQ" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/nw)
"ahR" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"ahS" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"ahT" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/nw)
"ahU" = (
/obj/structure/lz_sign/solaris_sign,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"ahV" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/nw)
"ahW" = (
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"ahX" = (
/obj/effect/decal/cleanable/dirt,
@@ -2658,17 +1991,13 @@
/obj/item/stack/sheet/metal,
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"ahZ" = (
/obj/item/stack/rods,
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"aia" = (
/obj/structure/machinery/door_control{
@@ -2676,47 +2005,33 @@
name = "Storm Shutters";
pixel_x = -32
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"aib" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"aic" = (
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"aid" = (
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"aie" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"aif" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"aig" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_4"
- },
+/turf/open/mars_cave/mars_cave_4,
/area/bigredv2/caves_lambda)
"aih" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -2724,25 +2039,19 @@
dir = 1;
name = "\improper Marshal Office Armory"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"aii" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Marshal Office Equipment"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"aij" = (
/obj/effect/landmark/hunter_secondary,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"aik" = (
/obj/structure/surface/table/reinforced,
@@ -2750,15 +2059,11 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/lambda/xenobiology)
"ail" = (
/obj/structure/bed/roller,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/lambda/xenobiology)
"aim" = (
/obj/structure/surface/table,
@@ -2766,60 +2071,42 @@
pixel_x = -27
},
/obj/item/storage/box/beakers,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"ain" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
dir = 1;
name = "\improper Lambda Lab Maintenance"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"aio" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/west,
/area/bigredv2/caves/lambda/xenobiology)
"aip" = (
/obj/structure/surface/table,
/obj/structure/pipes/vents/pump,
/obj/item/device/flashlight/lamp,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aiq" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"air" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"ais" = (
/obj/structure/urinal{
pixel_y = 32
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/caves/lambda/xenobiology)
"ait" = (
/obj/effect/decal/cleanable/blood/gibs/body,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/caves/lambda/xenobiology)
"aiu" = (
/obj/structure/sink{
@@ -2829,9 +2116,7 @@
/obj/structure/mirror{
pixel_x = 30
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/caves/lambda/xenobiology)
"aiv" = (
/obj/effect/decal/cleanable/dirt,
@@ -2839,58 +2124,37 @@
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/telecomm)
"aiw" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/nw)
"aix" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"aiy" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/nw)
"aiz" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/nw)
"aiA" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/nw)
"aiB" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/nw)
"aiC" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Marshal Office Brig"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"aiD" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"aiE" = (
/obj/structure/closet/secure_closet/marshal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aiF" = (
/obj/structure/surface/table,
@@ -2899,9 +2163,7 @@
dir = 1;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aiG" = (
/obj/structure/surface/table,
@@ -2911,41 +2173,31 @@
phone_color = "red";
phone_id = "Marshal Office"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aiH" = (
/obj/structure/surface/table,
/obj/structure/machinery/camera/autoname,
/obj/item/ammo_magazine/shotgun/slugs,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aiI" = (
/obj/structure/surface/table,
/obj/item/ammo_magazine/shotgun/buckshot,
/obj/item/clothing/head/beret/sec/warden,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aiJ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aiK" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aiL" = (
/obj/structure/surface/table,
@@ -2978,59 +2230,40 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Marshal Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"aiR" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/west,
/area/bigredv2/caves/lambda/xenobiology)
"aiS" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"aiT" = (
/obj/structure/pipes/vents/scrubber/on,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/xenobiology)
"aiU" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Lambda Lab Prison Restroom"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"aiV" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/caves/lambda/xenobiology)
"aiW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm)
"aiX" = (
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"aiY" = (
/obj/structure/surface/table,
@@ -3039,36 +2272,25 @@
},
/obj/item/device/defibrillator,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aiZ" = (
/obj/structure/machinery/computer/cameras,
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"aja" = (
/obj/structure/surface/table,
/obj/item/ore/diamond,
/obj/item/ore/uranium,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"ajb" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/marshal_office)
"ajc" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"ajd" = (
/obj/structure/surface/table/holotable/wood,
@@ -3119,16 +2341,11 @@
/obj/effect/spawner/random/bomb_supply,
/obj/effect/spawner/random/bomb_supply,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"ajl" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"ajm" = (
/obj/structure/filingcabinet,
@@ -3144,9 +2361,7 @@
/obj/structure/machinery/light/small/built{
dir = 8
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"ajp" = (
/obj/structure/pipes/vents/pump{
@@ -3156,52 +2371,37 @@
dir = 4;
pixel_x = -30
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/west,
/area/bigredv2/caves/lambda/xenobiology)
"ajq" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/xenobiology)
"ajr" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 1;
name = "\improper Lambda Lab Prisoner Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"ajs" = (
/obj/structure/machinery/light,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"ajt" = (
/obj/structure/bed/stool,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"aju" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"ajv" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"ajw" = (
/obj/structure/sink{
@@ -3214,95 +2414,63 @@
},
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/caves/lambda/xenobiology)
"ajx" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"ajy" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/nw)
"ajz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/nw)
"ajA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/nw)
"ajB" = (
/obj/structure/machinery/camera/autoname{
dir = 4
},
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"ajC" = (
/obj/structure/surface/table,
/obj/item/device/radio,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"ajE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/marshal_office)
"ajF" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/westright,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"ajG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"ajH" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"ajI" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"ajJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"ajK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -3311,9 +2479,7 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Marshal Office Armory"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"ajL" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -3371,9 +2537,7 @@
/area/bigredv2/outside/marshal_office)
"ajT" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/n)
"ajU" = (
/obj/structure/machinery/light/small,
@@ -3386,44 +2550,31 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Lambda Lab Break Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"ajW" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"ajX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"ajY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"ajZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"aka" = (
/obj/structure/machinery/faxmachine,
@@ -3436,31 +2587,21 @@
/area/bigredv2/outside/marshal_office)
"akd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/nw)
"ake" = (
/obj/structure/surface/table,
/obj/item/ore/uranium,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"akh" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"aki" = (
/obj/structure/surface/table,
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"akj" = (
/obj/structure/window/framed/solaris,
@@ -3475,9 +2616,7 @@
/obj/structure/surface/rack,
/obj/item/clothing/suit/armor/riot,
/obj/item/clothing/suit/armor/riot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"akl" = (
/obj/structure/sign/safety/hazard,
@@ -3486,16 +2625,12 @@
"akm" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"akn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"ako" = (
/turf/closed/wall/solaris,
@@ -3537,98 +2672,64 @@
name = "\improper Marshal Office"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"akw" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/n)
"aky" = (
/obj/structure/bookcase/manuals/research_and_development,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northwest,
/area/bigredv2/caves/lambda/xenobiology)
"akz" = (
/obj/structure/bookcase/manuals/research_and_development,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/north,
/area/bigredv2/caves/lambda/xenobiology)
"akA" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/ashtray/bronze,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"akB" = (
/obj/structure/surface/table/reinforced,
/obj/structure/xenoautopsy,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/north,
/area/bigredv2/caves/lambda/xenobiology)
"akD" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/xenobiology)
"akE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/xenobiology)
"akF" = (
/obj/structure/machinery/botany/editor,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen_v"
- },
+/turf/open/floor/whitegreen_v/northwest,
/area/bigredv2/caves/lambda/xenobiology)
"akG" = (
/obj/structure/machinery/botany/extractor,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/caves/lambda/xenobiology)
"akH" = (
/obj/structure/machinery/centrifuge,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/caves/lambda/xenobiology)
"akI" = (
/obj/structure/machinery/mill,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/caves/lambda/xenobiology)
"akJ" = (
/obj/structure/surface/table,
@@ -3637,60 +2738,41 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen_v"
- },
+/turf/open/floor/whitegreen_v/northeast,
/area/bigredv2/caves/lambda/xenobiology)
"akK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"akL" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/general_offices)
"akM" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"akP" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/telecomm/n_cave)
"akQ" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/southright,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"akR" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Marshal Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"akS" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"akT" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"akU" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -3701,127 +2783,79 @@
/turf/open/mars,
/area/bigredv2/outside/n)
"akW" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/caves_north)
"akX" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_north)
"akY" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves_north)
"akZ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves_north)
"ala" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northwest,
/area/bigredv2/caves/lambda/xenobiology)
"alb" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/caves/lambda/xenobiology)
"alc" = (
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/xenobiology)
"ald" = (
/obj/structure/surface/table/reinforced,
/obj/item/book/manual/research_and_development,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/east,
/area/bigredv2/caves/lambda/xenobiology)
"ale" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/xenobiology)
"alf" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/caves/lambda/xenobiology)
"alg" = (
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/xenobiology)
"alh" = (
/obj/item/tool/hatchet,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/xenobiology)
"ali" = (
/obj/item/reagent_container/spray/plantbgone,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/xenobiology)
"alj" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/east,
/area/bigredv2/caves/lambda/xenobiology)
"alk" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen_v"
- },
+/turf/open/floor/whitegreen_v/northeast,
/area/bigredv2/caves/lambda/xenobiology)
"all" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/telecomm)
"alm" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/nw)
"aln" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/nw)
"alo" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/nw)
"alp" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Marshal Office Evidence Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"alr" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -3831,17 +2865,11 @@
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"alt" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"alu" = (
/turf/closed/wall/solaris,
@@ -3850,10 +2878,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"alw" = (
/obj/item/device/radio/intercom{
@@ -3862,10 +2887,7 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/bigredv2/outside/marshal_office)
"alx" = (
/obj/structure/bed/chair{
@@ -3877,27 +2899,19 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"alA" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"alB" = (
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/marshal_office)
"alC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/marshal_office)
"alD" = (
/obj/structure/window/framed/solaris,
@@ -3908,31 +2922,20 @@
/turf/open/floor/plating,
/area/bigredv2/outside/medical)
"alF" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/n)
"alG" = (
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/caves_north)
"alH" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves_north)
"alI" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves_north)
"alJ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves_north)
"alK" = (
/obj/effect/landmark/crap_item,
@@ -3941,84 +2944,54 @@
/area/bigredv2/caves/lambda/xenobiology)
"alL" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/bigredv2/caves/lambda/xenobiology)
"alM" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/bigredv2/caves/lambda/xenobiology)
"alN" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/bigredv2/caves/lambda/xenobiology)
"alO" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/bigredv2/caves/lambda/xenobiology)
"alP" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/west,
/area/bigredv2/caves/lambda/xenobiology)
"alQ" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/xenobiology)
"alR" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/xenobiology)
"alS" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/xenobiology)
"alT" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"alU" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/xenobiology)
"alV" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/item/grown/log,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/xenobiology)
"alW" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/xenobiology)
"alX" = (
/turf/closed/wall/solaris/reinforced,
@@ -4028,10 +3001,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/caves/lambda/xenobiology)
"alZ" = (
/obj/structure/window/framed/solaris,
@@ -4042,9 +3012,7 @@
/turf/open/floor/plating,
/area/bigredv2/outside/marshal_office)
"ama" = (
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/bigredv2/outside/nw)
"amb" = (
/obj/item/shard,
@@ -4058,37 +3026,26 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"amd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"ame" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"amg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"amh" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4153,10 +3110,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/red/east,
/area/bigredv2/outside/marshal_office)
"amt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4165,9 +3119,7 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Marshal Office Courtroom"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"amu" = (
/obj/structure/bed/chair{
@@ -4186,9 +3138,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"amx" = (
/obj/structure/surface/table,
@@ -4196,47 +3146,34 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"amy" = (
/obj/structure/surface/table/woodentable,
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/marshal_office)
"amz" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/rampbottom/north,
/area/bigredv2/outside/marshal_office)
"amA" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"amB" = (
/obj/effect/landmark/survivor_spawner,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/marshal_office)
"amC" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/marshal_office)
"amD" = (
/obj/effect/landmark/crap_item,
@@ -4246,9 +3183,7 @@
/turf/open/floor/plating,
/area/bigredv2/caves_north)
"amG" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_8"
- },
+/turf/open/mars_cave/mars_cave_8,
/area/bigredv2/caves_lambda)
"amH" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -4264,86 +3199,57 @@
/turf/open/floor/plating,
/area/bigredv2/outside/dorms)
"amJ" = (
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/bigredv2/caves/lambda/xenobiology)
"amK" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/caves/lambda/xenobiology)
"amL" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/caves/lambda/xenobiology)
"amM" = (
/obj/structure/machinery/door/poddoor/almayer{
dir = 4
},
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/bigredv2/caves/lambda/xenobiology)
"amN" = (
/obj/item/stool,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/xenobiology)
"amO" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/east,
/area/bigredv2/caves/lambda/xenobiology)
"amP" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Lambda Lab Xenobiology"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"amQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/bigredv2/caves/lambda/xenobiology)
"amR" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Lambda Lab Hydroponics"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"amS" = (
/obj/item/grown/log,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/xenobiology)
"amT" = (
/obj/effect/glowshroom,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/xenobiology)
"amU" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/caves/lambda/xenobiology)
"amV" = (
/obj/structure/window/framed/solaris,
@@ -4359,10 +3265,7 @@
dir = 1
},
/obj/structure/closet/crate/freezer/rations,
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"amX" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -4385,44 +3288,33 @@
dir = 1;
name = "\improper Marshal Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"anb" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"anc" = (
/obj/structure/machinery/alarm{
dir = 1;
pixel_y = -30
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"and" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/frame/table,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"ane" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
name = "Emergency NanoMed";
pixel_x = 30
},
-/turf/open/floor{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/red/southeast,
/area/bigredv2/outside/marshal_office)
"anf" = (
/obj/structure/bed/chair{
@@ -4434,9 +3326,7 @@
"ang" = (
/obj/structure/surface/table/woodentable,
/obj/item/paper/Court,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/marshal_office)
"anh" = (
/obj/structure/bed/chair/comfy/black{
@@ -4445,9 +3335,7 @@
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/marshal_office)
"ani" = (
/obj/structure/bed/chair{
@@ -4458,9 +3346,7 @@
name = "Storm Shutters";
pixel_x = -32
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"anj" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -4484,9 +3370,7 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper Lambda Lab Maintenance Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"anp" = (
/turf/closed/wall/solaris/reinforced,
@@ -4495,17 +3379,12 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/west,
/area/bigredv2/caves/lambda/xenobiology)
"ans" = (
/obj/structure/surface/table,
/obj/item/storage/box/gloves,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"ant" = (
/obj/structure/window/framed/solaris,
@@ -4523,20 +3402,14 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/xenobiology)
"anv" = (
/obj/effect/glowshroom,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/caves/lambda/xenobiology)
"anw" = (
/obj/structure/sign/safety/bulkhead_door,
@@ -4547,18 +3420,14 @@
dir = 1;
name = "\improper Marshal Office Holding Cell"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"any" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Marshal Office Checkpoint"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"anz" = (
/obj/effect/decal/cleanable/dirt,
@@ -4566,9 +3435,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Marshal Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"anB" = (
/obj/structure/machinery/light{
@@ -4588,23 +3455,17 @@
"anE" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/marshal_office)
"anF" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/marshal_office)
"anH" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/marshal_office)
"anI" = (
/turf/closed/wall/solaris/reinforced,
@@ -4637,10 +3498,7 @@
/area/bigredv2/caves/lambda/xenobiology)
"anO" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/bigredv2/caves/lambda/xenobiology)
"anP" = (
/obj/structure/machinery/light/small{
@@ -4648,33 +3506,21 @@
},
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/bigredv2/caves/lambda/xenobiology)
"anQ" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/bigredv2/caves/lambda/xenobiology)
"anR" = (
/obj/structure/machinery/door/poddoor/almayer{
dir = 4
},
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/bigredv2/caves/lambda/xenobiology)
"anS" = (
/obj/item/tool/warning_cone,
-/turf/open/floor{
- dir = 8;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/west,
/area/bigredv2/caves/lambda/xenobiology)
"anT" = (
/turf/closed/wall/solaris,
@@ -4689,9 +3535,7 @@
/area/bigredv2/outside/hydroponics)
"anV" = (
/obj/item/reagent_container/spray/pepper,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/xenobiology)
"anW" = (
/turf/closed/wall/solaris,
@@ -4733,23 +3577,17 @@
"aod" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/xenobiology)
"aoe" = (
/obj/item/explosive/grenade/custom/antiweed,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/xenobiology)
"aof" = (
/turf/closed/wall/solaris,
/area/bigredv2/outside/admin_building)
"aog" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/nw)
"aoh" = (
/obj/structure/machinery/door_control{
@@ -4757,17 +3595,11 @@
name = "Storm Shutters";
pixel_x = -32
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/marshal_office)
"aoi" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/marshal_office)
"aoj" = (
/obj/effect/decal/cleanable/dirt,
@@ -4777,29 +3609,21 @@
"aok" = (
/obj/structure/surface/table/woodentable,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/marshal_office)
"aol" = (
-/turf/open/floor{
- icon_state = "rampbottom"
- },
+/turf/open/floor/rampbottom,
/area/bigredv2/outside/marshal_office)
"aom" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/clothing/suit/storage/lawyer/bluejacket,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"aon" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/marshal_office)
"aoo" = (
/obj/structure/pipes/vents/pump{
@@ -4827,32 +3651,24 @@
/area/bigredv2/outside/general_offices)
"aov" = (
/obj/structure/machinery/suit_storage_unit/carbon_unit,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"aow" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/suit_storage_unit/carbon_unit,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"aox" = (
/obj/structure/machinery/suit_storage_unit/carbon_unit,
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"aoy" = (
/obj/structure/machinery/suit_storage_unit/carbon_unit,
/obj/effect/decal/cleanable/cobweb2,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"aoz" = (
/obj/structure/window/framed/solaris,
@@ -4869,14 +3685,10 @@
/obj/item/stack/sheet/mineral/plastic,
/obj/item/stack/sheet/mineral/plastic,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"aoB" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"aoD" = (
/turf/closed/wall/solaris/reinforced,
@@ -4888,16 +3700,11 @@
"aoF" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"aoG" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/bigredv2/caves/lambda/xenobiology)
"aoH" = (
/turf/closed/wall/solaris,
@@ -4906,102 +3713,66 @@
/obj/item/tool/surgery/scalpel/laser/advanced,
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/blood/gibs/limb,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/xenobiology)
"aoJ" = (
/obj/structure/surface/table/reinforced,
/obj/item/oldresearch/Resin,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/east,
/area/bigredv2/caves/lambda/xenobiology)
"aoK" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/breakroom)
"aoL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/xenobiology)
"aoM" = (
/obj/item/tool/weedkiller,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/xenobiology)
"aoN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"aoO" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/nw)
"aoP" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/nw)
"aoQ" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/nw)
"aoR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/safety/medical{
pixel_y = -32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/nw)
"aoT" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aoU" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/marshal_office)
"aoV" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/marshal_office)
"aoW" = (
/obj/effect/decal/cleanable/dirt,
@@ -5011,38 +3782,28 @@
"aoX" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/device/camera,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"aoY" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"aoZ" = (
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"apa" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"apb" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/device/camera_film,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"apc" = (
/turf/open/floor,
@@ -5052,15 +3813,11 @@
/turf/open/floor,
/area/bigredv2/outside/general_offices)
"ape" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"apg" = (
/obj/item/clothing/under/lightbrown,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"aph" = (
/obj/structure/machinery/light{
@@ -5081,25 +3838,19 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper Dormitories EVA Maintenance"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_offices)
"apk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"apl" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"apm" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5108,23 +3859,16 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Dormitories EVA"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_offices)
"apn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"apo" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/ne)
"app" = (
/obj/structure/machinery/power/port_gen/pacman,
@@ -5169,52 +3913,34 @@
name = "Lambda Lockdown";
pixel_y = -25
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/southwest,
/area/bigredv2/caves/lambda/xenobiology)
"apw" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/west,
/area/bigredv2/caves/lambda/xenobiology)
"apx" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/core,
/obj/item/shard,
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/xenobiology)
"apy" = (
/obj/effect/decal/cleanable/mucus,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/xenobiology)
"apz" = (
/obj/item/grown/sunflower,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/xenobiology)
"apA" = (
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/caves/lambda/xenobiology)
"apB" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/caves/lambda/xenobiology)
"apC" = (
/turf/closed/wall/solaris/reinforced,
@@ -5234,15 +3960,11 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Medical Clinic"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"apF" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"apG" = (
/turf/closed/wall/solaris,
@@ -5252,9 +3974,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Marshal Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"apJ" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -5282,23 +4002,17 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Dormitories Lavatory"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_offices)
"apN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"apO" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"apP" = (
/obj/structure/surface/table,
@@ -5306,9 +4020,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"apQ" = (
/obj/structure/window/framed/solaris,
@@ -5332,59 +4044,42 @@
dir = 4;
pixel_x = -30
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"apU" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"apV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"apW" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"apX" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/phoron{
amount = 25
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"apY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"apZ" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/uranium{
amount = 50
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"aqa" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/ne)
"aqb" = (
/obj/structure/surface/table,
@@ -5399,10 +4094,7 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/southwest,
/area/bigredv2/caves/lambda/xenobiology)
"aqe" = (
/obj/structure/xenoautopsy/tank/larva,
@@ -5410,18 +4102,14 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple,
/area/bigredv2/caves/lambda/xenobiology)
"aqf" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/xenoautopsy/tank/broken,
/obj/effect/decal/cleanable/blood/gibs/xeno/body,
/obj/effect/decal/warning_stripes,
-/turf/open/floor{
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple,
/area/bigredv2/caves/lambda/xenobiology)
"aqg" = (
/obj/structure/xenoautopsy/tank/alien,
@@ -5429,9 +4117,7 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple,
/area/bigredv2/caves/lambda/xenobiology)
"aqh" = (
/obj/structure/surface/table/reinforced,
@@ -5441,10 +4127,7 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/southeast,
/area/bigredv2/caves/lambda/xenobiology)
"aqi" = (
/obj/structure/machinery/light/built{
@@ -5453,10 +4136,7 @@
/obj/structure/pipes/vents/scrubber/on{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/xenobiology)
"aqj" = (
/obj/structure/machinery/light{
@@ -5465,96 +4145,60 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/xenobiology)
"aqk" = (
/obj/structure/machinery/vending/hydroseeds,
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/caves/lambda/xenobiology)
"aql" = (
/obj/structure/machinery/seed_extractor,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/caves/lambda/xenobiology)
"aqm" = (
/obj/structure/machinery/biogenerator,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/caves/lambda/xenobiology)
"aqn" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/caves/lambda/xenobiology)
"aqo" = (
/obj/structure/machinery/vending/hydronutrients,
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/caves/lambda/xenobiology)
"aqp" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/nw)
"aqq" = (
/obj/structure/closet/secure_closet/chemical,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"aqr" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"aqs" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/outside/medical)
"aqt" = (
/obj/structure/machinery/chem_master,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/outside/medical)
"aqu" = (
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/outside/medical)
"aqv" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aqw" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aqx" = (
/obj/structure/window/framed/solaris,
@@ -5574,48 +4218,32 @@
/area/bigredv2/outside/bar)
"aqC" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"aqH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/n)
"aqI" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/n)
"aqJ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/nw)
"aqK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/n)
"aqL" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/n)
"aqM" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/n)
"aqN" = (
/obj/structure/barricade/wooden{
@@ -5624,9 +4252,7 @@
health = 25000
},
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/n)
"aqO" = (
/obj/structure/barricade/wooden,
@@ -5640,15 +4266,11 @@
/area/bigredv2/outside/general_offices)
"aqR" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"aqS" = (
/obj/item/clothing/under/brown,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"aqT" = (
/obj/item/device/radio/intercom{
@@ -5657,9 +4279,7 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"aqU" = (
/obj/structure/window/framed/solaris,
@@ -5675,9 +4295,7 @@
/area/bigredv2/outside/general_offices)
"aqW" = (
/obj/structure/dispenser/oxygen,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"aqX" = (
/obj/item/storage/toolbox/mechanical,
@@ -5687,19 +4305,13 @@
health = 80
},
/obj/structure/surface/rack,
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"aqY" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"ara" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -5707,19 +4319,13 @@
pixel_y = 15
},
/obj/item/paper/bigred/lambda,
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"arb" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/xenobiology)
"arc" = (
/obj/structure/sign/safety/medical{
@@ -5728,82 +4334,54 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/xenobiology)
"ard" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/nw)
"are" = (
/obj/structure/surface/table,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"arf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/outside/medical)
"arg" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/outside/medical)
"ari" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"arj" = (
/obj/item/trash/chips,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ark" = (
/obj/structure/bed/roller,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"arl" = (
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"arm" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"arp" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/n)
"arq" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/n)
"ars" = (
/obj/structure/bed/chair{
@@ -5818,9 +4396,7 @@
"arx" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"ary" = (
/obj/structure/surface/table,
@@ -5829,9 +4405,7 @@
dir = 8
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"arA" = (
/obj/effect/decal/cleanable/dirt,
@@ -5839,16 +4413,12 @@
/obj/item/stack/sheet/mineral/uranium{
amount = 50
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"arB" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/item/stack/sheet/plasteel,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"arC" = (
/obj/structure/machinery/light{
@@ -5862,9 +4432,7 @@
/obj/item/stack/sheet/mineral/phoron{
amount = 25
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"arD" = (
/turf/open/mars,
@@ -5876,24 +4444,15 @@
/obj/item/ammo_magazine/shotgun/incendiary,
/obj/item/weapon/gun/shotgun/combat,
/obj/structure/machinery/door/window/eastleft,
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"arF" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"arG" = (
/obj/structure/bed,
/obj/item/bedsheet/rd,
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"arI" = (
/obj/structure/flora/pottedplant{
@@ -5905,69 +4464,48 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Lambda Lab Biology Wing"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/breakroom)
"arK" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/caves_lambda)
"arL" = (
/obj/effect/glowshroom,
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_lambda)
"arM" = (
/obj/effect/glowshroom,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_lambda)
"arN" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
-/turf/open/floor{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/purple/west,
/area/bigredv2/caves/lambda/research)
"arO" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/explosive/grenade/custom/large,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/outside/medical)
"arP" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/outside/medical)
"arQ" = (
/obj/structure/surface/table,
/obj/structure/machinery/reagentgrinder,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/outside/medical)
"arR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"arS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"arT" = (
/obj/structure/window/framed/solaris,
@@ -5975,9 +4513,7 @@
/area/bigredv2/outside/virology)
"arU" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"arW" = (
/obj/structure/surface/table,
@@ -5986,58 +4522,37 @@
},
/obj/structure/pipes/vents/pump,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"arX" = (
/obj/structure/closet/secure_closet/medical1,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"arZ" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/down,
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/n)
"asa" = (
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/bigredv2/outside/n)
"asc" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"asd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"ase" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"asf" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/n)
"asg" = (
/obj/structure/barricade/wooden{
@@ -6050,10 +4565,7 @@
dir = 8;
health = 25000
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"ash" = (
/obj/structure/barricade/wooden{
@@ -6061,10 +4573,7 @@
dir = 1;
health = 25000
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"asi" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -6072,9 +4581,7 @@
dir = 1;
name = "\improper Dormitories Tool Storage Maintenance"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_offices)
"asj" = (
/obj/structure/window/framed/solaris,
@@ -6090,9 +4597,7 @@
dir = 1;
name = "\improper Dormitories EVA"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_offices)
"asl" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -6103,20 +4608,14 @@
/obj/item/clothing/suit/armor/vest,
/obj/structure/machinery/door/window/eastright,
/obj/structure/window/reinforced,
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"aso" = (
/mob/living/simple_animal/corgi/puppy{
desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!";
name = "\improper Mister Wiggles"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"asp" = (
/obj/structure/bed/chair/comfy/black,
@@ -6124,9 +4623,7 @@
/area/bigredv2/caves/lambda/breakroom)
"asq" = (
/obj/structure/closet/secure_closet/medical1,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"asr" = (
/obj/structure/bed/chair/comfy{
@@ -6151,14 +4648,10 @@
dir = 4;
pixel_x = -30
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"asu" = (
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"asv" = (
/turf/closed/wall/solaris,
@@ -6170,9 +4663,7 @@
/obj/structure/machinery/light/built{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"asx" = (
/obj/effect/glowshroom,
@@ -6184,63 +4675,44 @@
dir = 8
},
/obj/item/tool/surgery/circular_saw,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"asz" = (
/obj/item/device/reagent_scanner,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"asA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/outside/medical)
"asB" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/outside/medical)
"asC" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/gloves/latex,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"asD" = (
/obj/effect/landmark/crap_item,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"asE" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"asF" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"asH" = (
/obj/structure/window/framed/solaris,
@@ -6311,25 +4783,17 @@
"asU" = (
/obj/structure/closet/l3closet,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/general_offices)
"asV" = (
/obj/structure/sign/safety/airlock{
pixel_y = 32
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"asW" = (
/obj/structure/closet/l3closet,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/general_offices)
"asX" = (
/obj/structure/surface/rack,
@@ -6339,24 +4803,17 @@
pixel_x = 4;
pixel_y = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"asY" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"ata" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/ne)
"atb" = (
/turf/closed/wall/solaris,
@@ -6368,10 +4825,7 @@
name = "Safe-Room intercom";
pixel_y = -30
},
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"atd" = (
/obj/structure/window/framed/solaris,
@@ -6390,33 +4844,23 @@
req_access_txt = "106";
specialfunctions = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"atf" = (
/obj/structure/closet/secure_closet/RD,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"atg" = (
/obj/structure/machinery/vending/snack{
icon_state = "snack-broken";
stat = 1
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"ath" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"ati" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -6424,38 +4868,26 @@
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/breakroom)
"atj" = (
/obj/structure/machinery/vending/coffee{
icon_state = "coffee-broken";
stat = 1
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"atk" = (
/obj/effect/glowshroom,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_lambda)
"atl" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/n)
"atm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/nw)
"atn" = (
/obj/structure/closet/secure_closet/personal/cabinet,
@@ -6465,22 +4897,15 @@
/obj/structure/machinery/chem_master,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/outside/medical)
"atq" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"atr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"atw" = (
/obj/structure/window/framed/solaris,
@@ -6500,9 +4925,7 @@
/obj/structure/bed{
pixel_y = 13
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"atz" = (
/obj/structure/surface/table,
@@ -6510,9 +4933,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"atA" = (
/obj/structure/window/framed/solaris,
@@ -6520,9 +4941,7 @@
/area/bigredv2/outside/cargo)
"atB" = (
/obj/structure/closet/crate,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"atC" = (
/obj/structure/surface/table,
@@ -6569,9 +4988,7 @@
id = "safe_room";
name = "\improper Lambda Lab Director's Safe Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/breakroom)
"atJ" = (
/obj/structure/window/framed/solaris,
@@ -6587,9 +5004,7 @@
dir = 1;
name = "\improper Lambda Lab Administration Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/breakroom)
"atL" = (
/obj/structure/bed/chair{
@@ -6598,32 +5013,24 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"atM" = (
/obj/structure/window/reinforced,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/breakroom)
"atN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
/obj/structure/window/reinforced,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/breakroom)
"atO" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"atP" = (
/obj/structure/window/framed/solaris,
@@ -6640,17 +5047,11 @@
/area/bigredv2/outside/nw)
"atR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"atS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/outside/medical)
"atT" = (
/obj/structure/surface/table,
@@ -6660,10 +5061,7 @@
},
/obj/item/tool/hand_labeler,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/outside/medical)
"atU" = (
/obj/structure/window_frame/solaris,
@@ -6675,9 +5073,7 @@
dir = 1;
name = "\improper Medical Clinic CMO's Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"atX" = (
/obj/item/stack/sheet/metal,
@@ -6685,22 +5081,16 @@
layer = 3;
pixel_x = 24
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"atY" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"atZ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Dormitories Bedroom"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"aua" = (
/obj/effect/decal/cleanable/dirt,
@@ -6730,38 +5120,28 @@
/area/bigredv2/outside/general_offices)
"aue" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"auf" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/gold,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"aug" = (
/obj/item/stack/sheet/plasteel,
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"auh" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/diamond,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"aui" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"auj" = (
/obj/item/device/radio/intercom{
@@ -6786,25 +5166,18 @@
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Lambda Lab Director's Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/breakroom)
"aun" = (
/obj/structure/closet/firecloset/full,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigred/ground/garage_workshop)
"auo" = (
/obj/structure/sign/safety/maint{
pixel_y = 32
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"aup" = (
/obj/structure/machinery/light{
@@ -6812,52 +5185,35 @@
},
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"auq" = (
/obj/structure/sign/poster{
pixel_y = 32
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"aur" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"aus" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/telecomm/n_cave)
"aut" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/breakroom)
"auu" = (
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/breakroom)
"auv" = (
/obj/structure/showcase{
icon_state = "bus"
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"aux" = (
/obj/effect/landmark/xeno_spawn,
@@ -6865,15 +5221,10 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/breakroom)
"auy" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/breakroom)
"auz" = (
/obj/structure/machinery/door_control{
@@ -6881,29 +5232,21 @@
name = "Observation Shutters";
pixel_y = 28
},
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/breakroom)
"auA" = (
/obj/structure/inflatable/door,
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/breakroom)
"auB" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/breakroom)
"auC" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/breakroom)
"auD" = (
/obj/effect/decal/cleanable/mucus,
@@ -6912,97 +5255,61 @@
name = "Observation Shutters";
pixel_y = 28
},
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/breakroom)
"auE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/n)
"auF" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/nw)
"auG" = (
/obj/effect/spawner/random/bomb_supply,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"auH" = (
/obj/structure/bed/chair,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/outside/medical)
"auI" = (
/obj/structure/surface/table,
/obj/item/storage/box/bodybags,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/outside/medical)
"auK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"auL" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"auM" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"auN" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"auP" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/bigredv2/outside/medical)
"auU" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Dormitories Bedroom"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"auV" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Dormitories Tool Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_offices)
"auW" = (
/turf/closed/wall/solaris/reinforced/hull,
@@ -7015,40 +5322,30 @@
dir = 1;
pixel_y = -30
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"ava" = (
/obj/structure/pipes/vents/scrubber/on{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"avb" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"avc" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"avd" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"ave" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -7058,17 +5355,13 @@
dir = 1;
name = "\improper Lambda Lab Administration Wing"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/breakroom)
"avf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"avg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -7076,10 +5369,7 @@
},
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/breakroom)
"avh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -7088,19 +5378,14 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/breakroom)
"avi" = (
/obj/structure/showcase,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"avj" = (
/obj/structure/showcase{
@@ -7109,27 +5394,20 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"avk" = (
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/breakroom)
"avl" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 1;
name = "\improper Lambda Lab Break Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/breakroom)
"avm" = (
/obj/structure/sign/safety/restrictedarea{
@@ -7137,31 +5415,19 @@
pixel_y = -32
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/breakroom)
"avn" = (
/obj/structure/inflatable/door,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/breakroom)
"avo" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/breakroom)
"avp" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/breakroom)
"avr" = (
/obj/structure/window_frame/solaris,
@@ -7169,63 +5435,41 @@
/area/bigredv2/outside/office_complex)
"avt" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/nw/ceiling)
"avu" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 1;
name = "\improper Medical Clinic Chemistry"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"avv" = (
/obj/structure/surface/table/reinforced,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"avw" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/outside/medical)
"avx" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"avy" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"avz" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/bigredv2/outside/medical)
"avA" = (
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/bigredv2/outside/medical)
"avB" = (
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/bigredv2/outside/medical)
"avC" = (
/obj/effect/decal/cleanable/dirt,
@@ -7293,26 +5537,19 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Lambda Lab Relaxation Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/breakroom)
"avP" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"avQ" = (
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/breakroom)
"avR" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -7321,10 +5558,7 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/breakroom)
"avS" = (
/obj/effect/decal/cleanable/dirt,
@@ -7347,27 +5581,18 @@
/obj/structure/surface/table,
/obj/item/trash/burger,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/bigredv2/outside/medical)
"avX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"avY" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"avZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -7376,36 +5601,25 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"awa" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"awb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/north,
/area/bigredv2/outside/medical)
"awc" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"awd" = (
/turf/closed/wall/solaris/reinforced,
@@ -7413,19 +5627,14 @@
"awe" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 10;
- icon_state = "purple"
- },
+/turf/open/floor/purple/southwest,
/area/bigredv2/caves/lambda/research)
"awg" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"awh" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -7433,29 +5642,21 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"awi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"awk" = (
/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"awl" = (
/obj/structure/machinery/sleep_console,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"awn" = (
/obj/effect/decal/cleanable/dirt,
@@ -7470,17 +5671,13 @@
/turf/closed/wall/solaris,
/area/bigredv2/outside/filtration_plant)
"awq" = (
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"awr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aws" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -7543,10 +5740,7 @@
dir = 8
},
/obj/item/tool/pickaxe/drill,
-/turf/open/floor{
- dir = 10;
- icon_state = "purple"
- },
+/turf/open/floor/purple/southwest,
/area/bigredv2/caves/lambda/research)
"awB" = (
/obj/structure/transmitter/colony_net/rotary{
@@ -7567,97 +5761,68 @@
/area/bigredv2/caves/lambda/breakroom)
"awE" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"awF" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"awG" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"awH" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/breakroom)
"awI" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/breakroom)
"awJ" = (
/obj/structure/pipes/vents/scrubber/on{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"awK" = (
/obj/structure/machinery/vending/sovietsoda{
icon_state = "sovietsoda-broken";
stat = 1
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"awL" = (
/obj/structure/surface/table,
/obj/item/storage/pill_bottle/tramadol,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/outside/medical)
"awM" = (
/turf/closed/wall/solaris/reinforced/hull,
/area/bigredv2/outside/filtration_plant)
"awN" = (
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"awO" = (
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/outside/medical)
"awP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/outside/medical)
"awQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"awR" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/outside/medical)
"awS" = (
/obj/structure/machinery/door_control{
@@ -7665,41 +5830,26 @@
name = "Storm Shutters";
pixel_y = -32
},
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/outside/medical)
"awT" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/west,
/area/bigredv2/outside/medical)
"awU" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"awV" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"awW" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/bigredv2/outside/medical)
"awX" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/bigredv2/outside/medical)
"awY" = (
/obj/structure/bed/chair{
@@ -7735,24 +5885,18 @@
"axe" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"axg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"axh" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper Dormitories"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"axi" = (
/obj/structure/machinery/light,
@@ -7786,10 +5930,7 @@
dir = 8
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/bigredv2/caves/lambda/virology)
"axo" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -7814,9 +5955,7 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"axr" = (
/obj/structure/window/framed/solaris,
@@ -7831,78 +5970,52 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"axt" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"axu" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/outside/nw)
"axv" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/nw/ceiling)
"axw" = (
/obj/structure/surface/table,
/obj/item/storage/firstaid/adv,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"axx" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"axy" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Medical Clinic Treatment"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"axz" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/outside/medical)
"axA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"axB" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"axF" = (
/obj/structure/barricade/wooden,
/obj/structure/barricade/wooden,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/n)
"axG" = (
/obj/structure/machinery/camera/autoname{
@@ -7945,23 +6058,17 @@
/area/bigredv2/outside/cargo)
"axM" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"axN" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"axO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"axP" = (
/obj/structure/bed/chair{
@@ -7980,18 +6087,14 @@
dir = 1;
name = "\improper Dormitories Bedroom"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_offices)
"axS" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Dormitories"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_offices)
"axT" = (
/obj/effect/landmark/xeno_spawn,
@@ -8001,21 +6104,14 @@
"axU" = (
/obj/item/tool/pickaxe/drill,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"axV" = (
/obj/effect/glowshroom,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"axW" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/c)
"axX" = (
/turf/closed/wall/solaris/reinforced,
@@ -8024,9 +6120,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/nw/ceiling)
"axZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -8057,18 +6151,14 @@
dir = 1;
name = "\improper Medical Clinic"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"aye" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ayf" = (
/turf/closed/wall/solaris/reinforced,
@@ -8077,55 +6167,38 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ayh" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/bigredv2/outside/medical)
"ayi" = (
/obj/structure/sign/safety/autodoc{
pixel_x = 32
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/outside/medical)
"ayj" = (
/obj/structure/pipes/unary/freezer{
icon_state = "freezer_1"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ayk" = (
/obj/structure/machinery/cryo_cell,
/obj/structure/pipes/standard/cap,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ayl" = (
/obj/structure/pipes/standard/tank/oxygen,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aym" = (
/obj/structure/sign/safety/autodoc{
pixel_x = -32
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/outside/medical)
"ayn" = (
/obj/effect/decal/cleanable/dirt,
@@ -8138,10 +6211,7 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"ayo" = (
/obj/effect/decal/cleanable/dirt,
@@ -8168,9 +6238,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"ayt" = (
/obj/effect/decal/cleanable/dirt,
@@ -8178,18 +6246,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"ayu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"ayv" = (
/obj/item/device/radio/intercom{
@@ -8201,15 +6265,11 @@
/turf/open/floor,
/area/bigredv2/outside/dorms)
"ayw" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/general_offices)
"ayx" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/general_offices)
"ayA" = (
/obj/structure/machinery/vending/snack,
@@ -8227,23 +6287,17 @@
/turf/open/floor/carpet,
/area/bigredv2/caves/lambda/breakroom)
"ayC" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves/lambda/research)
"ayD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves/lambda/research)
"ayE" = (
/obj/structure/girder/reinforced,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves/lambda/research)
"ayF" = (
/obj/structure/window/framed/solaris,
@@ -8251,109 +6305,72 @@
/area/bigredv2/outside/filtration_plant)
"ayG" = (
/obj/structure/bed/roller,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/outside/medical)
"ayH" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/outside/medical)
"ayI" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ayJ" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/west,
/area/bigredv2/outside/medical)
"ayK" = (
/obj/structure/pipes/standard/simple/visible{
dir = 5
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ayL" = (
/obj/structure/pipes/standard/manifold/visible,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"ayM" = (
/obj/structure/pipes/standard/simple/visible{
dir = 9
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"ayN" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"ayO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ayP" = (
/obj/item/weapon/broken_bottle,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ayQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/east,
/area/bigredv2/outside/medical)
"ayR" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"ayS" = (
/obj/structure/surface/table,
/obj/item/bodybag/cryobag,
/obj/item/bodybag/cryobag,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"ayT" = (
/obj/structure/surface/table,
/obj/item/bodybag/cryobag,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"ayU" = (
/obj/structure/surface/table,
@@ -8364,10 +6381,7 @@
/obj/item/storage/box/gloves,
/obj/item/reagent_container/spray/cleaner,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/outside/medical)
"ayV" = (
/turf/open/floor/plating,
@@ -8386,9 +6400,7 @@
/area/bigredv2/outside/engineering)
"aza" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"azb" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -8402,22 +6414,16 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/general_offices)
"azd" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/general_offices)
"azf" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_lambda)
"azg" = (
/obj/structure/surface/table,
@@ -8426,41 +6432,27 @@
dir = 1
},
/obj/item/cell/hyper,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northwest,
/area/bigredv2/caves/lambda/research)
"azh" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/objective,
/obj/item/clothing/glasses/science,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/north,
/area/bigredv2/caves/lambda/research)
"azi" = (
/obj/structure/machinery/r_n_d/protolathe,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/north,
/area/bigredv2/caves/lambda/research)
"azj" = (
/obj/structure/machinery/autolathe,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/bigredv2/caves/lambda/research)
"azk" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves/lambda/research)
"azl" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -8485,39 +6477,27 @@
"azp" = (
/obj/structure/bed/roller,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/outside/medical)
"azq" = (
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/outside/medical)
"azr" = (
/obj/structure/bed/roller,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/outside/medical)
"azs" = (
/obj/structure/bed/roller,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/outside/medical)
"azt" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"azu" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -8525,45 +6505,32 @@
},
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"azv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"azw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/west,
/area/bigredv2/outside/medical)
"azx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"azy" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"azz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -8573,18 +6540,14 @@
dir = 1;
name = "\improper Medical Clinic Treatment"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"azA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"azB" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -8601,9 +6564,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"azE" = (
/obj/item/shard,
@@ -8615,9 +6576,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W-corner"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"azG" = (
/obj/structure/window/framed/solaris,
@@ -8631,9 +6590,7 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper Medical Clinic Power Station"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"azK" = (
/obj/effect/decal/cleanable/dirt,
@@ -8641,15 +6598,11 @@
/area/bigredv2/outside/n)
"azM" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"azN" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"azO" = (
/turf/closed/wall/solaris/reinforced/hull,
@@ -8744,42 +6697,26 @@
/turf/open/floor/plating,
/area/bigredv2/outside/bar)
"aAi" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/west,
/area/bigredv2/caves/lambda/research)
"aAj" = (
/obj/item/tool/extinguisher/mini,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/research)
"aAk" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2/west,
/area/bigredv2/caves/lambda/research)
"aAl" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/bigredv2/caves/lambda/research)
"aAm" = (
/obj/structure/closet/hydrant{
pixel_x = 32
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/bigredv2/caves/lambda/research)
"aAn" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves/lambda/research)
"aAo" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -8799,53 +6736,35 @@
dir = 2;
name = "\improper Medical Clinic Operating Theatre"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"aAs" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/outside/medical)
"aAt" = (
/obj/structure/machinery/medical_pod/bodyscanner,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aAu" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/outside/medical)
"aAv" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aAw" = (
/obj/item/clothing/gloves/latex,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aAx" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aAy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aAz" = (
/obj/effect/decal/cleanable/dirt,
@@ -8856,10 +6775,7 @@
dir = 8;
pixel_x = 32
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"aAA" = (
/obj/effect/decal/cleanable/dirt,
@@ -8870,9 +6786,7 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"aAC" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -8884,9 +6798,7 @@
dir = 1;
name = "\improper Recreation"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"aAH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -8908,28 +6820,19 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/ne)
"aAK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/ne)
"aAL" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/ne)
"aAM" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -8948,56 +6851,39 @@
/obj/effect/decal/warning_stripes{
icon_state = "W-corner"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/west,
/area/bigredv2/caves/lambda/research)
"aAQ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/north,
/area/bigredv2/caves/lambda/research)
"aAR" = (
/obj/structure/barricade/metal{
dir = 4;
icon_state = "barricade"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/bigredv2/caves/lambda/research)
"aAS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_4"
- },
+/turf/open/mars_cave/mars_cave_4,
/area/bigredv2/caves/lambda/research)
"aAT" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/caves/lambda/research)
"aAU" = (
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/caves/lambda/research)
"aAV" = (
/obj/structure/machinery/conveyor{
dir = 4;
id = "anomalybelt"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/research)
"aAW" = (
/obj/structure/machinery/conveyor{
@@ -9005,23 +6891,17 @@
id = "anomalybelt"
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/research)
"aAX" = (
/obj/structure/machinery/light/small/built{
dir = 1
},
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/caves/lambda/research)
"aAY" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/caves/lambda/research)
"aAZ" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
@@ -9033,23 +6913,17 @@
/area/bigredv2/outside/nw/ceiling)
"aBb" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/medical)
"aBc" = (
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/medical)
"aBd" = (
/obj/structure/bed/chair,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/medical)
"aBe" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -9057,15 +6931,11 @@
dir = 1;
name = "\improper Medical Clinic"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"aBf" = (
/obj/item/device/healthanalyzer,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aBg" = (
/obj/effect/decal/cleanable/dirt,
@@ -9075,18 +6945,13 @@
pixel_y = -32
},
/obj/structure/machinery/iv_drip,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/outside/medical)
"aBh" = (
/obj/structure/sign/safety/galley{
pixel_x = 32
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/outside/medical)
"aBi" = (
/obj/structure/machinery/light{
@@ -9103,14 +6968,10 @@
/obj/structure/mirror{
pixel_x = -28
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"aBk" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"aBl" = (
/obj/structure/urinal{
@@ -9119,9 +6980,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"aBm" = (
/obj/structure/urinal{
@@ -9130,9 +6989,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"aBn" = (
/obj/structure/machinery/light{
@@ -9141,47 +6998,35 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"aBo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"aBp" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"aBq" = (
/obj/structure/machinery/shower{
dir = 8
},
/obj/structure/window/reinforced/tinted,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"aBr" = (
/obj/structure/surface/table/woodentable,
/obj/item/toy/beach_ball,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"aBu" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/ne)
"aBv" = (
/turf/closed/wall/solaris/reinforced,
@@ -9197,48 +7042,35 @@
"aBz" = (
/obj/effect/landmark/hunter_secondary,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_lambda)
"aBA" = (
/turf/closed/wall/solaris,
/area/bigredv2/caves/eta/research)
"aBB" = (
/obj/item/device/multitool,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/research)
"aBC" = (
/obj/item/clothing/suit/storage/labcoat/science,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/research)
"aBD" = (
/obj/item/tool/weldingtool/experimental,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/research)
"aBE" = (
/turf/closed/wall/solaris,
/area/bigredv2/caves/eta/storage)
"aBF" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/research)
"aBG" = (
/obj/effect/decal/warning_stripes{
icon_state = "U-S"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/research)
"aBH" = (
/obj/structure/machinery/conveyor{
@@ -9247,38 +7079,27 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/research)
"aBI" = (
/obj/structure/bed/chair,
/obj/structure/sign/nosmoking_2{
pixel_x = -28
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/medical)
"aBJ" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/outside/medical)
"aBK" = (
/obj/structure/closet/wardrobe/medic_white,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aBM" = (
/obj/structure/closet/secure_closet/medical1,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aBN" = (
/obj/structure/surface/table,
@@ -9291,23 +7112,17 @@
phone_id = "Clinic";
pixel_y = 24
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aBO" = (
/obj/structure/surface/table,
/obj/structure/machinery/recharger,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aBP" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aBQ" = (
/obj/structure/window/framed/solaris,
@@ -9318,18 +7133,13 @@
/area/bigredv2/outside/c)
"aBS" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/c)
"aBT" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Dormitories Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"aBU" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -9338,53 +7148,39 @@
/area/bigredv2/outside/dorms)
"aBW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"aBX" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"aBZ" = (
/obj/structure/bed/stool,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"aCa" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"aCb" = (
/obj/structure/pipes/standard/simple/hidden/green,
/turf/open/floor/plating,
/area/bigredv2/outside/bar)
"aCc" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/ne)
"aCd" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/ne)
"aCe" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/caves/eta/xenobiology)
"aCf" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/hydroponics)
"aCh" = (
/obj/structure/window/framed/solaris,
@@ -9403,9 +7199,7 @@
/obj/item/paper/courtroom{
name = "A Crash Course in Legal SOP"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"aCl" = (
/obj/structure/surface/table,
@@ -9438,26 +7232,18 @@
/area/bigredv2/caves/lambda/research)
"aCr" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/research)
"aCs" = (
/obj/effect/decal/warning_stripes{
icon_state = "W-corner"
},
/obj/item/clipboard,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/west,
/area/bigredv2/caves/lambda/research)
"aCt" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/lambda/research)
"aCu" = (
/obj/structure/barricade/metal{
@@ -9465,26 +7251,18 @@
icon_state = "barricade"
},
/obj/structure/ore_box,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/east,
/area/bigredv2/caves/lambda/research)
"aCv" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 1;
name = "\improper Lambda Lab Technical Lab"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/research)
"aCw" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/research)
"aCx" = (
/obj/structure/machinery/light{
@@ -9493,24 +7271,17 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/research)
"aCy" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/xenobiology)
"aCz" = (
/obj/structure/machinery/power/port_gen/pacman,
/obj/effect/decal/warning_stripes{
icon_state = "U-N"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/research)
"aCA" = (
/obj/structure/machinery/conveyor{
@@ -9520,19 +7291,14 @@
dir = 8
},
/obj/structure/plasticflaps,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/research)
"aCB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"aCC" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -9541,17 +7307,13 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Medical Clinic Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"aCD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aCE" = (
/obj/item/clothing/glasses/meson,
@@ -9559,26 +7321,20 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aCF" = (
/obj/item/reagent_container/pill/happy,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aCG" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Medical Clinic Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"aCH" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -9586,22 +7342,16 @@
/area/bigredv2/caves/eta/xenobiology)
"aCI" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aCJ" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aCK" = (
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aCL" = (
/turf/closed/wall/solaris,
@@ -9612,47 +7362,33 @@
/area/bigredv2/outside/c)
"aCN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"aCO" = (
/obj/structure/surface/table,
/obj/item/stack/cable_coil,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/filtration_plant)
"aCP" = (
/obj/structure/closet/secure_closet/bar,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aCR" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"aCS" = (
/obj/structure/closet/boxinggloves,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"aCT" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"aCU" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -9660,14 +7396,10 @@
dir = 1;
name = "\improper Bar Maintenance"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/bar)
"aCW" = (
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/outside/ne)
"aCY" = (
/obj/effect/decal/cleanable/dirt,
@@ -9697,17 +7429,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"aDg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"aDi" = (
/obj/structure/machinery/light/small,
@@ -9720,48 +7448,32 @@
"aDk" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner,
/area/bigredv2/caves/lambda/research)
"aDl" = (
/obj/structure/ore_box,
-/turf/open/floor{
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple,
/area/bigredv2/caves/lambda/research)
"aDm" = (
/obj/structure/barricade/metal{
dir = 4;
icon_state = "barricade"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/southeast,
/area/bigredv2/caves/lambda/research)
"aDn" = (
/obj/structure/pipes/vents/scrubber/on{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/research)
"aDp" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/bigredv2/caves/lambda/research)
"aDq" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/purple/north,
/area/bigredv2/caves/lambda/research)
"aDr" = (
/obj/structure/machinery/light{
@@ -9770,19 +7482,13 @@
/obj/structure/sign/safety/laser{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/purple/north,
/area/bigredv2/caves/lambda/research)
"aDs" = (
/obj/structure/machinery/conveyor{
id = "anomalybelt"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/purple/north,
/area/bigredv2/caves/lambda/research)
"aDt" = (
/obj/structure/machinery/conveyor_switch{
@@ -9791,16 +7497,10 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/purple/north,
/area/bigredv2/caves/lambda/research)
"aDu" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northeast,
/area/bigredv2/caves/lambda/research)
"aDv" = (
/obj/structure/window/framed/solaris,
@@ -9808,89 +7508,59 @@
/area/bigredv2/caves/eta/living)
"aDw" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/nw)
"aDx" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"aDy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"aDz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"aDA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/nw)
"aDB" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/caves/lambda/virology)
"aDC" = (
/obj/structure/surface/table,
/obj/item/tool/surgery/bonesetter,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"aDD" = (
/obj/structure/surface/table,
/obj/item/storage/box/masks,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"aDE" = (
/obj/structure/surface/table,
/obj/item/tool/surgery/FixOVein,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"aDF" = (
/obj/structure/surface/table,
/obj/item/tool/surgery/cautery,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"aDG" = (
/obj/structure/sign/safety/medical{
@@ -9898,64 +7568,43 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/head/surgery/blue,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"aDH" = (
/obj/structure/closet/secure_closet/medical1,
/obj/structure/machinery/camera/autoname{
dir = 4
},
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aDI" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/extinguisher,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aDJ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aDK" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/outside/medical)
"aDL" = (
/obj/structure/curtain/open/medical,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aDM" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"aDN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aDO" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aDP" = (
/obj/effect/decal/cleanable/blood{
@@ -9964,9 +7613,7 @@
},
/obj/item/trash/chips,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aDQ" = (
/obj/effect/decal/cleanable/dirt,
@@ -9982,25 +7629,19 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"aDV" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aDW" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aDX" = (
/turf/closed/wall/solaris,
@@ -10015,33 +7656,25 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Bar Backroom"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/bar)
"aEa" = (
/obj/structure/machinery/camera/autoname,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aEb" = (
/obj/structure/machinery/power/apc{
dir = 1;
name = "Bar APC"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aEc" = (
/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aEd" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -10057,9 +7690,7 @@
/turf/open/floor,
/area/bigredv2/outside/hydroponics)
"aEi" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"aEj" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -10071,28 +7702,18 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/west,
/area/bigredv2/caves/lambda/research)
"aEn" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/research)
"aEo" = (
-/turf/open/floor{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner,
/area/bigredv2/caves/lambda/research)
"aEp" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/southeast,
/area/bigredv2/caves/lambda/research)
"aEq" = (
/obj/structure/extinguisher_cabinet{
@@ -10101,10 +7722,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/research)
"aEs" = (
/obj/structure/bed/chair/comfy/lime{
@@ -10114,72 +7732,49 @@
/area/bigredv2/caves/lambda/breakroom)
"aEt" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/purple/east,
/area/bigredv2/caves/lambda/research)
"aEu" = (
/turf/closed/wall/solaris/rock,
/area/bigredv2/outside)
"aEv" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"aEw" = (
/obj/structure/surface/table,
/obj/item/tool/surgery/scalpel/manager,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"aEx" = (
/obj/item/alien_embryo,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aEz" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aEA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"aEC" = (
/obj/effect/decal/cleanable/blood/gibs/body,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aED" = (
/obj/structure/bed,
/obj/item/clothing/glasses/regular/hipster,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/outside/medical)
"aEE" = (
/obj/structure/bed,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"aEF" = (
/turf/closed/wall/solaris/rock,
@@ -10189,34 +7784,26 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aEH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/corpsespawner/doctor,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aEI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aEJ" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aEK" = (
/obj/structure/pipes/vents/pump,
@@ -10227,42 +7814,30 @@
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"aEN" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Dormitories Toilet"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"aEO" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aEP" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aEQ" = (
/obj/structure/bed/chair/wood/normal,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aER" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aET" = (
/obj/effect/decal/cleanable/dirt,
@@ -10292,10 +7867,7 @@
/area/bigredv2/outside/se)
"aEY" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigred/ground/garage_workshop)
"aEZ" = (
/obj/effect/decal/cleanable/dirt,
@@ -10329,41 +7901,28 @@
/obj/structure/closet/secure_closet/scientist,
/obj/structure/machinery/light,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/southwest,
/area/bigredv2/caves/lambda/research)
"aFg" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple,
/area/bigredv2/caves/lambda/research)
"aFh" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple,
/area/bigredv2/caves/lambda/research)
"aFi" = (
/obj/structure/closet/secure_closet/scientist,
/obj/structure/machinery/light/built,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/southeast,
/area/bigredv2/caves/lambda/research)
"aFj" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/research)
"aFk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -10375,10 +7934,7 @@
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/research)
"aFl" = (
/obj/structure/surface/table,
@@ -10389,94 +7945,59 @@
phone_id = "Observation";
pixel_x = -18
},
-/turf/open/floor{
- dir = 10;
- icon_state = "purple"
- },
+/turf/open/floor/purple/southwest,
/area/bigredv2/caves/lambda/research)
"aFm" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "purplecorner"
- },
+/turf/open/floor/purplecorner/west,
/area/bigredv2/caves/lambda/research)
"aFn" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/research)
"aFo" = (
-/turf/open/floor{
- icon_state = "purplecorner"
- },
+/turf/open/floor/purplecorner,
/area/bigredv2/caves/lambda/research)
"aFp" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "purple"
- },
+/turf/open/floor/purple/southeast,
/area/bigredv2/caves/lambda/research)
"aFq" = (
/obj/structure/machinery/smartfridge/secure/virology,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/bigredv2/caves/lambda/virology)
"aFr" = (
/obj/structure/machinery/smartfridge/secure/virology,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/caves/lambda/virology)
"aFs" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/outside/virology)
"aFt" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/virology)
"aFu" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/virology)
"aFv" = (
/turf/open/mars,
/area/bigredv2/outside/virology)
"aFw" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/virology)
"aFx" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"aFy" = (
/obj/structure/machinery/optable,
/obj/effect/decal/cleanable/dirt,
/obj/item/organ/heart/prosthetic,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aFz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"aFA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10485,71 +8006,51 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Medical Clinic Operating Theatre"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"aFB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/outside/medical)
"aFC" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aFE" = (
/obj/item/reagent_container/pill/happy,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aFF" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aFG" = (
/obj/structure/bed,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/outside/medical)
"aFH" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aFI" = (
/obj/structure/surface/table/reinforced,
/obj/item/trash/buritto,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aFJ" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/healthanalyzer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aFK" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -10558,19 +8059,14 @@
name = "Medbay Reception";
req_one_access_txt = "2;8;19"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aFL" = (
/obj/effect/landmark/crap_item,
/turf/open/mars,
/area/bigredv2/outside/c)
"aFM" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"aFN" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10585,9 +8081,7 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Dormitories Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"aFP" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10600,9 +8094,7 @@
/obj/structure/surface/table/woodentable,
/obj/item/device/radio,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"aFU" = (
/obj/structure/machinery/door_control{
@@ -10613,50 +8105,37 @@
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"aFV" = (
/obj/structure/machinery/light/small/built{
dir = 8
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/caves/lambda/virology)
"aFW" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aFX" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aFY" = (
/obj/structure/reagent_dispensers/beerkeg,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aGa" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper Greenhouse Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/hydroponics)
"aGb" = (
/obj/effect/decal/cleanable/dirt,
@@ -10672,25 +8151,18 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Greenhouse Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/library)
"aGd" = (
/obj/structure/closet/l3closet/virology,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 10;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/southwest,
/area/bigredv2/caves/lambda/virology)
"aGe" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"aGg" = (
/obj/structure/machinery/light/built{
@@ -10699,10 +8171,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/research)
"aGh" = (
/obj/structure/filingcabinet/filingcabinet,
@@ -10710,18 +8179,12 @@
/area/bigredv2/caves/lambda/breakroom)
"aGi" = (
/obj/item/clothing/glasses/welding,
-/turf/open/floor{
- dir = 8;
- icon_state = "purplecorner"
- },
+/turf/open/floor/purplecorner/west,
/area/bigredv2/caves/lambda/research)
"aGj" = (
/obj/structure/closet/l3closet/virology,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 6;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/southeast,
/area/bigredv2/caves/lambda/virology)
"aGk" = (
/obj/effect/decal/warning_stripes{
@@ -10733,29 +8196,20 @@
/obj/structure/reagent_dispensers/virusfood{
pixel_y = 32
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/bigredv2/caves/lambda/virology)
"aGl" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/north,
/area/bigredv2/caves/lambda/virology)
"aGm" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/east,
/area/bigredv2/caves/lambda/virology)
"aGn" = (
/obj/effect/decal/warning_stripes{
@@ -10764,87 +8218,58 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/caves/lambda/virology)
"aGo" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/virology)
"aGp" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/outside/virology)
"aGq" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/virology)
"aGr" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/virology)
"aGs" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/virology)
"aGt" = (
/obj/item/reagent_container/spray/cleaner{
desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
name = "Surgery Cleaner"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aGu" = (
/obj/item/clothing/mask/breath/medical,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aGv" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"aGw" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/outside/medical)
"aGx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aGy" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"aGz" = (
/obj/structure/surface/table,
@@ -10852,85 +8277,62 @@
dir = 8
},
/obj/item/storage/firstaid/adv,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aGA" = (
/obj/structure/surface/table,
/obj/item/storage/firstaid/o2,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aGB" = (
/obj/structure/bed,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"aGC" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/item/trash/kepler,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aGD" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/objective,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aGE" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aGF" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Dormitories"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"aGG" = (
/obj/structure/surface/table/woodentable,
/obj/item/device/binoculars,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aGH" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aGI" = (
/obj/structure/bed/chair/wood/normal{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aGJ" = (
/obj/structure/machinery/squeezer,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aGL" = (
/obj/structure/machinery/biogenerator,
@@ -10939,25 +8341,17 @@
"aGP" = (
/obj/structure/filingcabinet/medical,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aGT" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aGU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/research)
"aGV" = (
/obj/structure/surface/table,
@@ -10966,31 +8360,22 @@
dir = 4
},
/obj/item/weapon/gun/pistol/holdout,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aGW" = (
-/turf/open/floor{
- icon_state = "purple"
- },
+/turf/open/floor/purple,
/area/bigredv2/caves/lambda/research)
"aGX" = (
/obj/structure/surface/table,
/obj/item/tool/weedkiller/D24,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aGY" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "purple"
- },
+/turf/open/floor/purple/southeast,
/area/bigredv2/caves/lambda/research)
"aGZ" = (
/obj/effect/decal/warning_stripes{
@@ -11001,81 +8386,51 @@
pixel_y = 28;
start_charge = 0
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/bigredv2/caves/lambda/virology)
"aHa" = (
/obj/structure/surface/table,
/obj/item/storage/pill_bottle/spaceacillin,
/obj/structure/machinery/computer/objective,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aHc" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/caves/lambda/virology)
"aHd" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-in"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/east,
/area/bigredv2/caves/lambda/virology)
"aHe" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/caves/lambda/virology)
"aHf" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/outside/virology)
"aHg" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/virology)
"aHh" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/virology)
"aHj" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"aHl" = (
/obj/effect/decal/cleanable/blood/gibs/body,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"aHm" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/nw)
"aHn" = (
/obj/effect/decal/cleanable/blood,
@@ -11083,171 +8438,112 @@
/area/bigredv2/outside/nw)
"aHo" = (
/obj/structure/closet/secure_closet/medical2,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"aHp" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"aHq" = (
/obj/structure/machinery/bioprinter{
stored_metal = 1000
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"aHr" = (
/obj/structure/machinery/medical_pod/bodyscanner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/outside/medical)
"aHs" = (
/obj/structure/machinery/body_scanconsole,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/outside/medical)
"aHt" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/outside/medical)
"aHu" = (
/obj/structure/surface/table,
/obj/item/storage/firstaid/fire,
/obj/item/storage/firstaid/fire,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aHv" = (
/obj/structure/surface/table,
/obj/item/storage/firstaid/toxin,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aHw" = (
/obj/structure/surface/table,
/obj/item/storage/firstaid/regular,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aHy" = (
/obj/structure/surface/table,
/obj/item/storage/firstaid/rad,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/outside/medical)
"aHz" = (
/obj/structure/bed,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/outside/medical)
"aHA" = (
/obj/structure/bed,
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/outside/medical)
"aHB" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aHC" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/c)
"aHD" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"aHF" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"aHG" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/bigredv2/outside/bar)
"aHH" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/bigredv2/outside/bar)
"aHI" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet11-12"
- },
+/turf/open/floor/carpet11_12/west,
/area/bigredv2/outside/bar)
"aHJ" = (
/obj/structure/machinery/reagentgrinder,
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aHK" = (
/obj/structure/surface/table,
/obj/item/toy/sword,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aHL" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Kitchen Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/hydroponics)
"aHO" = (
/obj/structure/bed/chair/wood/normal,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"aHP" = (
/obj/structure/prop/almayer/computers/mapping_computer{
@@ -11257,18 +8553,13 @@
/turf/open/floor/greengrid,
/area/bigredv2/caves/lambda/research)
"aHQ" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/research)
"aHR" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Lambda Lab Anomaly Lab"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/research)
"aHS" = (
/obj/effect/decal/warning_stripes{
@@ -11281,19 +8572,13 @@
master_tag = "viro_controller";
pixel_y = 28
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/bigredv2/caves/lambda/virology)
"aHT" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-in"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/north,
/area/bigredv2/caves/lambda/virology)
"aHU" = (
/obj/structure/window/reinforced/toughened{
@@ -11304,25 +8589,16 @@
icon_state = "fwindow";
pixel_y = 12
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/bigredv2/caves/lambda/virology)
"aHV" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/bigredv2/caves/lambda/virology)
"aHW" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/bigredv2/caves/lambda/virology)
"aHX" = (
/obj/structure/window/reinforced/toughened{
@@ -11334,10 +8610,7 @@
pixel_y = 12
},
/obj/structure/machinery/disease2/diseaseanalyser,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/bigredv2/caves/lambda/virology)
"aHY" = (
/obj/effect/decal/warning_stripes{
@@ -11346,48 +8619,32 @@
/obj/structure/machinery/light/built{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/caves/lambda/virology)
"aHZ" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/virology)
"aIa" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/virology)
"aIb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"aIc" = (
/obj/structure/closet/wardrobe/virology_white,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aIe" = (
/obj/structure/surface/table/reinforced,
/obj/item/pizzabox/vegetable,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/lambda_cave_cas)
"aIg" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -11398,48 +8655,33 @@
id = "viro";
name = "Virology Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/virology)
"aIi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/nw)
"aIj" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aIk" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aIl" = (
/obj/item/reagent_container/glass/rag,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aIm" = (
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/outside/c)
"aIn" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/c)
"aIo" = (
/obj/structure/machinery/light{
@@ -11450,82 +8692,57 @@
/turf/open/floor,
/area/bigredv2/outside/office_complex)
"aIp" = (
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/bigredv2/outside/c)
"aIq" = (
/obj/structure/machinery/alarm{
dir = 4;
pixel_x = -30
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/bigredv2/outside/bar)
"aIr" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/bigredv2/outside/bar)
"aIs" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/bigredv2/outside/bar)
"aIt" = (
/obj/effect/decal/cleanable/blood/gibs/body,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aIu" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aIv" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aIw" = (
/obj/structure/surface/table,
/obj/structure/machinery/microwave,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aIx" = (
/obj/structure/machinery/vending/dinnerware,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aIy" = (
/obj/structure/machinery/vending/sovietsoda,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aIz" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aIA" = (
/obj/structure/sign/safety/biolab{
@@ -11536,68 +8753,43 @@
dir = 4;
pixel_x = -30
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aIB" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aIC" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aID" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aIE" = (
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aIF" = (
/obj/structure/machinery/vending/snack,
/turf/open/floor,
/area/bigredv2/outside/hydroponics)
"aIJ" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northwest,
/area/bigredv2/caves/lambda/research)
"aIK" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/research)
"aIL" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/research)
"aIM" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/research)
"aIN" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/bigredv2/caves/lambda/research)
"aIO" = (
/obj/effect/landmark/crap_item,
@@ -11605,39 +8797,27 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/research)
"aIP" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/research)
"aIQ" = (
-/turf/open/floor/bluegrid{
- icon_state = "damaged5"
- },
+/turf/open/floor/bluegrid/damaged5,
/area/bigredv2/caves/lambda/research)
"aIR" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/bluegrid{
- icon_state = "damaged4"
- },
+/turf/open/floor/bluegrid/damaged4,
/area/bigredv2/caves/lambda/research)
"aIS" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/research)
"aIT" = (
/obj/structure/surface/table,
@@ -11651,10 +8831,7 @@
/obj/structure/pipes/vents/scrubber/on,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/research)
"aIV" = (
/obj/effect/decal/warning_stripes{
@@ -11664,16 +8841,10 @@
pixel_x = 32;
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/bigredv2/caves/lambda/research)
"aIW" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/bigredv2/caves/lambda/virology)
"aIX" = (
/obj/structure/sign/safety/biohazard{
@@ -11683,10 +8854,7 @@
/obj/structure/machinery/light/small/built{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/caves/lambda/virology)
"aIY" = (
/obj/structure/surface/table,
@@ -11697,10 +8865,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/caves/lambda/virology)
"aJa" = (
/obj/structure/window/reinforced/toughened{
@@ -11713,10 +8878,7 @@
},
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/bigredv2/caves/lambda/virology)
"aJb" = (
/obj/structure/surface/table,
@@ -11724,25 +8886,17 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/bigredv2/outside/admin_building)
"aJc" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/virology)
"aJd" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/bigredv2/caves/lambda/virology)
"aJe" = (
/obj/structure/window/reinforced/toughened{
@@ -11753,82 +8907,52 @@
/obj/structure/machinery/door/window{
layer = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/bigredv2/caves/lambda/virology)
"aJf" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
/obj/effect/decal/cleanable/mucus,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/caves/lambda/virology)
"aJg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/virology)
"aJh" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/virology)
"aJi" = (
/obj/item/trash/popcorn,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/virology)
"aJj" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/virology)
"aJl" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Medical Clinic"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"aJm" = (
/obj/effect/decal/cleanable/blood/gibs/limb,
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/c)
"aJn" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/bigredv2/outside/bar)
"aJo" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/bigredv2/outside/bar)
"aJp" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet9-4"
- },
+/turf/open/floor/carpet9_4/west,
/area/bigredv2/outside/bar)
"aJq" = (
/obj/structure/bed/chair/wood/normal{
@@ -11840,47 +8964,35 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aJr" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Bar Backroom"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/bar)
"aJs" = (
/obj/effect/decal/cleanable/flour,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aJt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aJv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aJw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aJx" = (
/obj/effect/decal/cleanable/dirt,
@@ -11888,15 +9000,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aJy" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/chapel)
"aJz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -11905,9 +9013,7 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Kitchen Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/hydroponics)
"aJA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -11920,58 +9026,42 @@
dir = 4;
pixel_x = -30
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"aJD" = (
/obj/structure/surface/table/woodentable,
/obj/item/toy/dice/d20,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"aJE" = (
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/research)
"aJF" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/research)
"aJG" = (
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/research)
"aJH" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/research)
"aJI" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tech_supply,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"aJJ" = (
/obj/structure/machinery/light/built,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/research)
"aJL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -11979,26 +9069,20 @@
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/research)
"aJM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/bluegrid{
- icon_state = "damaged3"
- },
+/turf/open/floor/bluegrid/damaged3,
/area/bigredv2/caves/lambda/research)
"aJN" = (
/obj/structure/extinguisher_cabinet{
pixel_y = -30
},
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/research)
"aJO" = (
/obj/structure/machinery/light,
@@ -12008,15 +9092,11 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/research)
"aJQ" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/research)
"aJR" = (
/obj/structure/machinery/access_button/airlock_exterior{
@@ -12026,9 +9106,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/research)
"aJS" = (
/obj/structure/sign/safety/biohazard{
@@ -12041,43 +9119,31 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/research)
"aJT" = (
/obj/structure/filingcabinet/medical,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aJU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/caves/lambda/virology)
"aJV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/caves/lambda/virology)
"aJW" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/caves/lambda/virology)
"aJX" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -12087,9 +9153,7 @@
dir = 1;
name = "\improper Lambda Lab Virology Wing"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/virology)
"aJY" = (
/obj/effect/decal/warning_stripes{
@@ -12101,10 +9165,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/bigredv2/caves/lambda/virology)
"aJZ" = (
/obj/structure/window/reinforced/toughened,
@@ -12114,27 +9175,19 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/bigredv2/caves/lambda/virology)
"aKa" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/lambda/virology)
"aKb" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/virology)
"aKc" = (
/obj/structure/pipes/vents/scrubber/on{
@@ -12142,64 +9195,44 @@
},
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/virology)
"aKd" = (
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/lambda/virology)
"aKe" = (
/obj/structure/window/reinforced/toughened,
/obj/structure/machinery/door/window{
layer = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/bigredv2/caves/lambda/virology)
"aKf" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/caves/lambda/virology)
"aKg" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"aKi" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"aKk" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/mars,
/area/bigredv2/outside/c)
"aKl" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/c)
"aKm" = (
/obj/structure/sign/safety/medical{
pixel_x = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"aKn" = (
/obj/structure/surface/table,
@@ -12208,84 +9241,61 @@
/area/bigredv2/outside/office_complex)
"aKo" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aKp" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aKq" = (
/obj/structure/sign/safety/medical{
pixel_x = -32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"aKr" = (
/obj/effect/landmark/hunter_primary,
/turf/open/mars,
/area/bigredv2/outside/c)
"aKt" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/c)
"aKv" = (
/obj/structure/bed/chair/wood/normal,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aKw" = (
/obj/item/clothing/head/welding,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aKx" = (
/obj/structure/bed/stool,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aKy" = (
/obj/structure/surface/table/woodentable,
/obj/item/ashtray/glass,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aKz" = (
/obj/structure/machinery/cm_vending/sorted/boozeomat,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aKC" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aKD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aKE" = (
/obj/structure/machinery/door_control{
@@ -12296,70 +9306,48 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aKF" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aKG" = (
/obj/structure/machinery/gibber,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aKH" = (
/obj/structure/machinery/power/apc,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aKI" = (
/obj/structure/machinery/processor,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"aKJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aKO" = (
/obj/structure/bed/chair/wood/normal{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"aKP" = (
/turf/open/mars,
/area/bigredv2/outside/e)
"aKQ" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/research)
"aKS" = (
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/caves/lambda/virology)
"aKT" = (
/obj/structure/machinery/light/small/built{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/caves/lambda/virology)
"aKU" = (
/obj/effect/decal/warning_stripes{
@@ -12373,44 +9361,30 @@
pixel_y = -30
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/caves/lambda/virology)
"aKV" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-in"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/west,
/area/bigredv2/caves/lambda/virology)
"aKW" = (
/obj/structure/window/reinforced/toughened{
dir = 8
},
/obj/structure/window/reinforced/toughened,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/bigredv2/caves/lambda/virology)
"aKX" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/lambda/virology)
"aKY" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/lambda/virology)
"aKZ" = (
/obj/structure/window/reinforced/toughened{
@@ -12422,18 +9396,13 @@
dir = 8
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/bigredv2/caves/lambda/virology)
"aLa" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-in"
},
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/bigredv2/caves/lambda/virology)
"aLb" = (
/obj/effect/decal/warning_stripes{
@@ -12442,10 +9411,7 @@
/obj/structure/machinery/light/built{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/caves/lambda/virology)
"aLc" = (
/obj/effect/decal/cleanable/blood{
@@ -12454,17 +9420,13 @@
/turf/open/mars,
/area/bigredv2/outside/c)
"aLd" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/c)
"aLe" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Medical Command Complex"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"aLf" = (
/obj/structure/surface/table,
@@ -12472,26 +9434,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"aLg" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/office_complex)
"aLi" = (
/obj/structure/closet/jcloset,
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"aLl" = (
/obj/structure/filingcabinet,
@@ -12514,35 +9469,27 @@
/obj/structure/bed/chair/wood/normal{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aLq" = (
/obj/structure/surface/table/woodentable,
/obj/structure/pipes/vents/pump,
/obj/item/trash/cheesie,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aLr" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aLs" = (
/obj/structure/bed/chair/wood/normal{
dir = 4
},
/obj/item/tool/extinguisher,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aLt" = (
/obj/structure/surface/table/woodentable{
@@ -12550,92 +9497,66 @@
},
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aLu" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aLv" = (
/obj/structure/machinery/cm_vending/sorted/boozeomat,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aLw" = (
/obj/structure/surface/table/reinforced,
/obj/item/trash/waffles,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aLx" = (
/obj/structure/surface/table/reinforced,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aLy" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/kitchen/knife,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aLz" = (
/obj/structure/surface/table/reinforced,
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/waffles,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aLA" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aLB" = (
/obj/structure/surface/table/reinforced,
/obj/item/trash/plate,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aLC" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/kitchen/rollingpin,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aLD" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/kitchen/knife/butcher,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aLE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aLH" = (
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"aLI" = (
/turf/open/floor/greengrid,
@@ -12643,10 +9564,7 @@
"aLJ" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"aLM" = (
/obj/structure/machinery/shower{
@@ -12663,27 +9581,20 @@
dir = 1;
opacity = 1
},
-/turf/open/floor{
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite,
/area/bigredv2/caves/lambda/virology)
"aLO" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
/obj/effect/decal/cleanable/mucus,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/caves/lambda/virology)
"aLP" = (
/obj/structure/surface/table,
/obj/item/tool/lighter/random,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"aLQ" = (
/obj/structure/window/reinforced/toughened{
@@ -12692,10 +9603,7 @@
/obj/structure/window/reinforced/toughened{
dir = 8
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/bigredv2/caves/lambda/virology)
"aLR" = (
/obj/structure/window/reinforced/toughened{
@@ -12706,141 +9614,89 @@
},
/obj/structure/machinery/computer/pandemic,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/bigredv2/caves/lambda/virology)
"aLS" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/caves/lambda/virology)
"aLT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/virology)
"aLU" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"aLV" = (
/obj/structure/sign/safety/biohazard{
pixel_x = 7;
pixel_y = -24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"aLW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"aLX" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"aLY" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/virology)
"aLZ" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/nw)
"aMa" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/wood{
amount = 2
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/nw)
"aMb" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/nw)
"aMc" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/c)
"aMd" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/c)
"aMf" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aMg" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/c)
"aMh" = (
/obj/structure/bed/chair/wood/normal{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aMi" = (
/obj/structure/surface/table/woodentable,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aMj" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aMk" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/ne)
"aMl" = (
/obj/structure/machinery/light{
@@ -12852,25 +9708,19 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aMn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aMo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aMp" = (
/obj/effect/decal/cleanable/dirt,
@@ -12881,9 +9731,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Lambda Lab"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/research)
"aMr" = (
/obj/structure/machinery/computer3/server/rack,
@@ -12921,18 +9769,13 @@
req_access_txt = "7";
specialfunctions = 4
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/caves/lambda/virology)
"aMw" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/caves/lambda/virology)
"aMx" = (
/obj/effect/decal/warning_stripes{
@@ -12940,9 +9783,7 @@
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/caves/lambda/virology)
"aMy" = (
/obj/effect/decal/warning_stripes{
@@ -12953,19 +9794,13 @@
pixel_y = -32
},
/obj/structure/machinery/light/built,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/caves/lambda/virology)
"aMB" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/pen,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"aMC" = (
/obj/effect/landmark/railgun_camera_pos,
@@ -12976,18 +9811,14 @@
dir = 1;
name = "\improper General Store"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_store)
"aMF" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "\improper Operations"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"aMG" = (
/obj/structure/machinery/light{
@@ -12996,25 +9827,18 @@
/obj/structure/surface/table,
/obj/item/tool/surgery/retractor,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/caves/eta/research)
"aMH" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aMI" = (
/obj/structure/surface/table/woodentable,
/obj/item/trash/sosjerky,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aMJ" = (
/obj/structure/machinery/chem_dispenser/soda{
@@ -13029,18 +9853,14 @@
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aMK" = (
/obj/structure/machinery/alarm{
dir = 4;
pixel_x = -30
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aML" = (
/obj/structure/bed/chair,
@@ -13048,16 +9868,12 @@
/area/bigredv2/outside/hydroponics)
"aMM" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aMN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aMO" = (
/obj/structure/bed/chair,
@@ -13069,9 +9885,7 @@
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aMQ" = (
/obj/effect/decal/cleanable/dirt,
@@ -13079,112 +9893,76 @@
/turf/open/floor,
/area/bigredv2/outside/hydroponics)
"aMR" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/e)
"aMT" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/caves_lambda)
"aMV" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/caves_lambda)
"aMW" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"aMX" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Lambda Lab Virology Quarantine"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/virology)
"aMY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/virology)
"aMZ" = (
/obj/structure/closet/firecloset/full,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aNa" = (
/obj/structure/closet/l3closet/general,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aNb" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aNc" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aNd" = (
/obj/structure/machinery/shower{
dir = 8
},
/obj/structure/window/reinforced,
-/turf/open/floor{
- dir = 8;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/west,
/area/bigredv2/outside/virology)
"aNe" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aNf" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aNg" = (
/obj/structure/surface/table,
/obj/item/tool/surgery/surgicaldrill,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aNh" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/research)
"aNi" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/virology)
"aNj" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/virology)
"aNk" = (
/obj/structure/barricade/wooden{
@@ -13192,32 +9970,20 @@
dir = 1;
health = 25000
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aNl" = (
/obj/item/stack/sheet/wood{
amount = 2
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aNm" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aNn" = (
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aNo" = (
/turf/open/floor,
@@ -13233,59 +9999,42 @@
"aNr" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aNs" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aNt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/computer/arcade,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aNu" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aNv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aNw" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/c)
"aNx" = (
/obj/structure/surface/table,
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"aNy" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aNz" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -13294,9 +10043,7 @@
dir = 1;
health = 25000
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aNA" = (
/obj/structure/barricade/wooden{
@@ -13304,23 +10051,17 @@
dir = 1;
health = 25000
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aNB" = (
/obj/structure/machinery/computer/cameras,
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aNC" = (
/obj/structure/machinery/computer/station_alert,
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aND" = (
/obj/structure/surface/table,
@@ -13328,9 +10069,7 @@
density = 0;
req_one_access_txt = "200"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aNE" = (
/obj/structure/surface/table,
@@ -13343,18 +10082,13 @@
phone_color = "blue";
phone_id = "Administration"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/east,
/area/bigredv2/outside/admin_building)
"aNG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aNH" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -13363,151 +10097,107 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"aNI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/bigredv2/outside/admin_building)
"aNJ" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/bigredv2/outside/admin_building)
"aNK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/bigredv2/outside/admin_building)
"aNL" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/outside/admin_building)
"aNM" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/outside/admin_building)
"aNN" = (
/obj/structure/machinery/vending/coffee,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/outside/admin_building)
"aNO" = (
/obj/structure/closet/secure_closet/personal/cabinet,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aNP" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aNQ" = (
/obj/structure/bed,
/obj/item/bedsheet/brown{
layer = 3.1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aNR" = (
/obj/structure/bed/chair/wood/normal,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aNS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aNT" = (
/obj/structure/bed/chair/wood/normal,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aNU" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aNV" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aNW" = (
/obj/structure/bed/stool,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aNX" = (
/obj/structure/surface/table/woodentable,
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aNY" = (
/obj/structure/surface/table/woodentable,
/obj/item/trash/raisins,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aNZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aOa" = (
/obj/structure/bed/chair{
@@ -13521,9 +10211,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/plate,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aOc" = (
/obj/structure/surface/table,
@@ -13535,9 +10223,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aOe" = (
/obj/structure/bed/chair{
@@ -13552,9 +10238,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aOg" = (
/obj/structure/surface/table,
@@ -13566,90 +10250,62 @@
"aOh" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aOk" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/e)
"aOl" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
/obj/item/disk/nuclear,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/bigredv2/caves/eta/research)
"aOm" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/caves_lambda)
"aOn" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/caves_lambda)
"aOo" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"aOp" = (
/obj/structure/machinery/light/small/built{
dir = 8
},
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/virology)
"aOq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/virology)
"aOr" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aOs" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/west,
/area/bigredv2/outside/virology)
"aOt" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/virology)
"aOu" = (
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/virology)
"aOv" = (
/obj/structure/barricade/wooden{
@@ -13657,10 +10313,7 @@
dir = 8;
health = 25000
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aOw" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -13705,33 +10358,24 @@
"aOD" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aOE" = (
/obj/effect/decal/cleanable/blood/gibs/up,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"aOF" = (
/obj/structure/machinery/computer/atmos_alert{
dir = 4
},
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aOG" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aOH" = (
/obj/structure/surface/table,
@@ -13740,16 +10384,11 @@
dir = 4;
health = 80
},
-/turf/open/floor{
- dir = 4;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/east,
/area/bigredv2/outside/admin_building)
"aOI" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aOJ" = (
/obj/structure/surface/table,
@@ -13758,40 +10397,26 @@
/turf/open/floor/plating,
/area/bigredv2/caves/eta/research)
"aOK" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/outside/admin_building)
"aOL" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"aOM" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aON" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Operations Bedroom"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"aOO" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aOP" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"aOQ" = (
/obj/structure/surface/table,
@@ -13800,43 +10425,31 @@
phone_color = "Blue";
phone_id = "Director"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/bigredv2/caves/eta/research)
"aOR" = (
/obj/effect/decal/cleanable/blood/gibs/down,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"aOS" = (
/obj/structure/surface/table/woodentable,
/obj/item/trash/cheesie,
/obj/item/trash/pistachios,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aOU" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 1;
name = "\improper Crew Habitation Complex"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/hydroponics)
"aOV" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aOW" = (
/obj/structure/surface/table,
@@ -13853,9 +10466,7 @@
},
/obj/item/trash/tray,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aOY" = (
/obj/structure/bed/chair{
@@ -13873,9 +10484,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aPa" = (
/obj/structure/surface/table,
@@ -13901,16 +10510,11 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aPd" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/caves/eta/research)
"aPe" = (
/obj/structure/surface/table,
@@ -13919,9 +10523,7 @@
},
/obj/item/trash/plate,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aPf" = (
/obj/structure/surface/table,
@@ -13929,19 +10531,14 @@
phone_category = "Eta Labs";
phone_id = "Workshop"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/caves/eta/research)
"aPg" = (
/obj/structure/surface/table,
/obj/item/oldresearch/Blood,
/obj/item/oldresearch/Blood,
/obj/item/paper,
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/xenobiology)
"aPh" = (
/obj/structure/bed/chair{
@@ -13965,23 +10562,17 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aPq" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
dir = 1;
name = "\improper Lambda Lab Anomaly Chamber"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/research)
"aPr" = (
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/virology)
"aPs" = (
/obj/structure/machinery/light/small/built{
@@ -13990,9 +10581,7 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/caves/lambda/virology)
"aPt" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -14000,24 +10589,17 @@
dir = 1;
name = "\improper Virology Lab Decontamination"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/virology)
"aPu" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/virology)
"aPv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aPw" = (
/obj/structure/surface/table,
@@ -14026,58 +10608,40 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aPx" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/chips,
/obj/item/reagent_container/food/snacks/cookie,
/obj/item/reagent_container/food/snacks/donut,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aPy" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/candy,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aPz" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/cans/waterbottle,
/obj/item/reagent_container/food/drinks/cans/cola,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aPA" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/cans/waterbottle,
/obj/item/reagent_container/food/drinks/cans/cola,
/obj/item/reagent_container/food/drinks/cans/beer,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aPB" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/flask,
/obj/item/reagent_container/food/drinks/cans/waterbottle,
/obj/item/reagent_container/food/drinks/cans/beer,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aPC" = (
/obj/effect/landmark/hunter_primary,
@@ -14086,28 +10650,19 @@
"aPD" = (
/obj/structure/surface/table,
/obj/item/storage/briefcase,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aPE" = (
/obj/structure/surface/table,
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aPF" = (
/obj/structure/surface/table,
/obj/item/storage/box/snappops,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aPG" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -14117,55 +10672,40 @@
"aPH" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/caves/eta/research)
"aPI" = (
/obj/structure/machinery/camera/autoname{
dir = 4
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aPJ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aPK" = (
/obj/structure/machinery/computer/communications{
dir = 4
},
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aPL" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aPM" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aPN" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aPO" = (
/obj/structure/surface/table,
@@ -14174,19 +10714,14 @@
health = 80
},
/obj/item/phone,
-/turf/open/floor{
- dir = 4;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/east,
/area/bigredv2/outside/admin_building)
"aPP" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aPQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -14194,33 +10729,24 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aPS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aPT" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/caves/eta/research)
"aPV" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aPW" = (
/obj/structure/coatrack{
@@ -14234,32 +10760,23 @@
pixel_x = -6;
pixel_y = 15
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aPX" = (
/obj/structure/surface/table/woodentable,
/obj/item/tool/lighter/zippo,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aPY" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aPZ" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/caves/eta/xenobiology)
"aQa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -14280,9 +10797,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aQd" = (
/obj/structure/bed/chair{
@@ -14300,9 +10815,7 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aQf" = (
/obj/structure/surface/table,
@@ -14323,18 +10836,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aQh" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aQi" = (
/obj/structure/bed/chair{
@@ -14346,9 +10855,7 @@
"aQj" = (
/obj/item/tool/wet_sign,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aQk" = (
/obj/structure/pipes/vents/pump{
@@ -14360,9 +10867,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aQm" = (
/obj/structure/bed/chair{
@@ -14383,9 +10888,7 @@
"aQp" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aQq" = (
/obj/structure/bed/chair{
@@ -14395,36 +10898,24 @@
/area/bigredv2/outside/hydroponics)
"aQt" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"aQu" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/e)
"aQv" = (
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- dir = 1;
- icon_state = "podhatch"
- },
+/turf/open/floor/podhatch/north,
/area/bigredv2/caves/lambda/research)
"aQw" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 5;
- icon_state = "podhatch"
- },
+/turf/open/floor/podhatch/northeast,
/area/bigredv2/caves/lambda/research)
"aQy" = (
/obj/structure/surface/table,
/obj/item/tool/pen,
/obj/item/paper_bundle,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"aQz" = (
/obj/structure/machinery/light{
@@ -14435,59 +10926,42 @@
"aQA" = (
/obj/item/frame/table,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aQB" = (
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aQC" = (
/obj/structure/machinery/power/apc{
dir = 1;
name = "Virology APC"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aQD" = (
/obj/structure/surface/table,
/obj/item/stock_parts/smes_coil,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"aQE" = (
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aQF" = (
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/bigredv2/outside/w)
"aQG" = (
-/turf/open/mars{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars/mars_dirt_6,
/area/bigredv2/outside/w)
"aQH" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/chips,
/obj/item/reagent_container/food/snacks/cookie,
/obj/item/reagent_container/food/snacks/donkpocket,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aQI" = (
/obj/structure/surface/table,
@@ -14497,10 +10971,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aQJ" = (
/obj/structure/surface/table,
@@ -14509,20 +10980,14 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aQL" = (
/obj/structure/surface/table,
/obj/structure/machinery/camera/autoname{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aQM" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -14533,10 +10998,7 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aQO" = (
/obj/structure/surface/table,
@@ -14544,18 +11006,14 @@
/obj/effect/decal/cleanable/blood,
/obj/item/alien_embryo,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aQP" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/blood,
/obj/item/tool/kitchen/knife,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aQQ" = (
/obj/structure/surface/table,
@@ -14563,9 +11021,7 @@
/obj/item/tool/lighter/random,
/obj/item/storage/toolbox/mechanical,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aQR" = (
/obj/structure/surface/table,
@@ -14575,14 +11031,10 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aQS" = (
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aQT" = (
/obj/effect/decal/cleanable/dirt,
@@ -14591,62 +11043,46 @@
/area/bigredv2/outside/general_store)
"aQU" = (
/obj/item/device/flashlight,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aQV" = (
/obj/structure/surface/table,
/obj/item/paper,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aQW" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aQX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aQY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aQZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aRa" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aRb" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aRc" = (
/obj/item/device/radio/intercom{
@@ -14658,31 +11094,22 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aRd" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"aRe" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
dir = 1;
name = "\improper Operations"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aRf" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"aRh" = (
/obj/structure/machinery/door_control{
@@ -14691,71 +11118,52 @@
pixel_y = -32
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/outside/admin_building)
"aRi" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/outside/admin_building)
"aRj" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aRk" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aRl" = (
/obj/structure/barricade/wooden,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aRm" = (
/obj/structure/barricade/wooden,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aRn" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"aRo" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper Bar"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/bar)
"aRp" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper Kitchen"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/hydroponics)
"aRq" = (
/obj/effect/decal/cleanable/dirt,
@@ -14776,31 +11184,22 @@
name = "Storm Shutters";
pixel_x = 32
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"aRu" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Library"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/library)
"aRx" = (
/obj/structure/machinery/teleport/station,
-/turf/open/floor{
- icon_state = "podhatch"
- },
+/turf/open/floor/podhatch,
/area/bigredv2/caves/lambda/research)
"aRy" = (
/obj/structure/machinery/teleport/hub,
-/turf/open/floor{
- dir = 6;
- icon_state = "podhatch"
- },
+/turf/open/floor/podhatch/southeast,
/area/bigredv2/caves/lambda/research)
"aRz" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
@@ -14815,28 +11214,19 @@
},
/obj/effect/landmark/corpsespawner/doctor,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/bigredv2/caves/lambda/virology)
"aRA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/caves/lambda/virology)
"aRB" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/caves/lambda/virology)
"aRC" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
@@ -14850,10 +11240,7 @@
/obj/structure/machinery/light/built{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/caves/lambda/virology)
"aRD" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -14864,51 +11251,38 @@
/area/bigredv2/outside/virology)
"aRF" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aRG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aRH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aRI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aRJ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aRK" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/cheesewedge,
/obj/item/reagent_container/food/snacks/chips,
/obj/item/reagent_container/food/snacks/cookie,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aRL" = (
/obj/structure/surface/table,
@@ -14918,10 +11292,7 @@
/obj/item/reagent_container/food/snacks/candy,
/obj/item/reagent_container/food/snacks/candy,
/obj/item/reagent_container/food/snacks/donkpocket,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aRM" = (
/obj/effect/landmark/crap_item,
@@ -14932,18 +11303,12 @@
/obj/item/reagent_container/food/drinks/cans/thirteenloko,
/obj/item/reagent_container/food/drinks/cans/cola,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aRO" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/flask,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aRP" = (
/obj/effect/decal/cleanable/dirt,
@@ -14955,186 +11320,124 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aRR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aRS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aRT" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aRU" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aRV" = (
/obj/structure/sign/safety/terminal{
pixel_y = -32
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aRX" = (
/obj/structure/machinery/lapvend,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aRY" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"aRZ" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"aSc" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Bar"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/bar)
"aSe" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Kitchen"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/hydroponics)
"aSf" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/e)
"aSg" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/e)
"aSh" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/e)
"aSi" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/e)
"aSl" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/caves_lambda)
"aSm" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/caves_lambda)
"aSn" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_lambda)
"aSo" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/bigredv2/caves/lambda/virology)
"aSp" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/bigredv2/caves/lambda/virology)
"aSq" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/vents/scrubber/on{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/bigredv2/caves/lambda/virology)
"aSr" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/bigredv2/caves/lambda/virology)
"aSs" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/bigredv2/caves/lambda/virology)
"aSt" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/caves/lambda/virology)
"aSu" = (
/obj/structure/barricade/wooden{
desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it...";
health = 25000
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aSv" = (
/obj/structure/barricade/wooden{
@@ -15147,45 +11450,32 @@
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aSx" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aSy" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aSA" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
dir = 1;
name = "\improper Virology Lab Cell"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/virology)
"aSB" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/w)
"aSC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/camera/autoname{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aSD" = (
/obj/structure/surface/table,
@@ -15193,10 +11483,7 @@
/obj/item/reagent_container/food/snacks/chips,
/obj/item/reagent_container/food/snacks/donkpocket,
/obj/item/reagent_container/food/snacks/donut,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aSE" = (
/obj/structure/surface/table,
@@ -15204,10 +11491,7 @@
/obj/item/reagent_container/food/snacks/candy,
/obj/item/reagent_container/food/snacks/candy,
/obj/item/reagent_container/food/snacks/chips,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aSF" = (
/obj/structure/surface/table,
@@ -15215,19 +11499,13 @@
/obj/item/reagent_container/food/drinks/cans/waterbottle,
/obj/item/reagent_container/food/drinks/cans/aspen,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aSG" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/flask/vacuumflask,
/obj/item/reagent_container/food/drinks/flask,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aSH" = (
/obj/structure/surface/table,
@@ -15235,10 +11513,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aSI" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -15250,10 +11525,7 @@
dir = 4
},
/obj/structure/bed/roller,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aSK" = (
/obj/structure/surface/table,
@@ -15262,9 +11534,7 @@
},
/obj/item/tool/surgery/surgicaldrill,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aSL" = (
/obj/structure/surface/table,
@@ -15273,9 +11543,7 @@
},
/obj/item/device/healthanalyzer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aSM" = (
/obj/structure/surface/table,
@@ -15284,9 +11552,7 @@
},
/obj/item/device/multitool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aSN" = (
/obj/structure/surface/table,
@@ -15296,17 +11562,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aSO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aSP" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -15314,9 +11576,7 @@
dir = 1;
name = "\improper General Store Security"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_store)
"aSQ" = (
/obj/effect/decal/warning_stripes{
@@ -15331,64 +11591,44 @@
dir = 1;
name = "\improper Operations"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"aSR" = (
/obj/structure/pipes/vents/pump,
/obj/structure/surface/rack,
/obj/item/weapon/gun/smg/mp27,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/admin_building)
"aSS" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/smg/mp27,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/admin_building)
"aST" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/bigredv2/outside/admin_building)
"aSU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/outside/admin_building)
"aSV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/outside/admin_building)
"aSW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/north,
/area/bigredv2/outside/admin_building)
"aSX" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -15396,9 +11636,7 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aSZ" = (
/obj/structure/machinery/power/apc{
@@ -15415,40 +11653,28 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aTc" = (
/obj/effect/decal/cleanable/blood/gibs/body,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"aTd" = (
/obj/effect/decal/cleanable/blood{
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"aTe" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/limb,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"aTf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"aTg" = (
/obj/structure/sign/double/barsign{
@@ -15457,154 +11683,95 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"aTh" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"aTi" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"aTj" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"aTk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/e)
"aTl" = (
/obj/effect/decal/cleanable/blood/xeno,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"aTp" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"aTq" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"aTr" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/e)
"aTs" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigred/ground/garage_workshop)
"aTt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"aTu" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/e)
"aTv" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/caves_lambda)
"aTw" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/caves_lambda)
"aTC" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/bigredv2/caves/lambda/virology)
"aTD" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/bigredv2/caves/lambda/virology)
"aTE" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/bigredv2/caves/lambda/virology)
"aTG" = (
/obj/effect/decal/cleanable/mucus,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/virology)
"aTH" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/bigredv2/caves/lambda/virology)
"aTI" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/bigredv2/caves/lambda/virology)
"aTJ" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/caves/lambda/virology)
"aTK" = (
/obj/structure/barricade/wooden{
@@ -15612,15 +11779,11 @@
dir = 8;
health = 25000
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aTL" = (
/obj/item/tool/extinguisher,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aTM" = (
/obj/structure/surface/table,
@@ -15628,10 +11791,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aTN" = (
/obj/structure/surface/table,
@@ -15641,28 +11801,19 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aTO" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/cans/waterbottle,
/obj/item/reagent_container/food/drinks/cans/aspen,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aTP" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/flask/vacuumflask,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aTQ" = (
/obj/structure/reagent_dispensers/watertank,
@@ -15674,10 +11825,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aTS" = (
/obj/structure/surface/table,
@@ -15685,63 +11833,40 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aTU" = (
/obj/structure/prop/server_equipment/yutani_server{
density = 0;
pixel_y = 16
},
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/admin_building)
"aTV" = (
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/admin_building)
"aTY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/admin_building)
"aTZ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/admin_building)
"aUa" = (
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/outside/admin_building)
"aUb" = (
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/outside/admin_building)
"aUc" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/bigredv2/outside/admin_building)
"aUd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/bigredv2/outside/admin_building)
"aUe" = (
/obj/structure/machinery/light{
@@ -15757,144 +11882,95 @@
"aUf" = (
/obj/effect/landmark/good_item,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"aUg" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aUh" = (
/obj/effect/decal/cleanable/blood{
icon_state = "xgib4"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/c)
"aUi" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"aUk" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/e)
"aUl" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/e)
"aUm" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/e)
"aUn" = (
/obj/effect/decal/cleanable/blood/gibs/limb,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/e)
"aUv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/lambda_cave_cas)
"aUD" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/caves/lambda/virology)
"aUE" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/bigredv2/caves/lambda/virology)
"aUF" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/lambda/virology)
"aUG" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/virology)
"aUH" = (
/obj/effect/decal/cleanable/mucus,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/lambda/virology)
"aUI" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/bigredv2/caves/lambda/virology)
"aUJ" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
/obj/effect/landmark/objective_landmark/science,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/caves/lambda/virology)
"aUM" = (
/obj/structure/machinery/computer/operating,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aUO" = (
/obj/structure/surface/table,
/obj/item/tank/anesthetic,
/obj/item/storage/pill_bottle/spaceacillin,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aUP" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aUQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/w)
"aUS" = (
/obj/structure/surface/table,
@@ -15902,10 +11978,7 @@
/obj/item/reagent_container/food/snacks/bun,
/obj/item/reagent_container/food/snacks/cheesewedge,
/obj/item/reagent_container/food/snacks/donut,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aUT" = (
/obj/structure/surface/table,
@@ -15913,19 +11986,13 @@
/obj/item/reagent_container/food/snacks/bun,
/obj/item/reagent_container/food/snacks/cheesewedge,
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aUU" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/candy,
/obj/item/reagent_container/food/snacks/bun,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aUV" = (
/obj/effect/decal/cleanable/dirt,
@@ -15941,86 +12008,61 @@
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/coffee,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aUY" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/coffee,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aUZ" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/flask/vacuumflask,
/obj/item/reagent_container/food/drinks/cans/aspen,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aVa" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aVb" = (
/obj/structure/surface/table,
/obj/item/storage/box/snappops,
/obj/item/storage/box/snappops,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aVc" = (
/obj/structure/platform/kutjevo/rock{
dir = 1
},
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/space)
"aVd" = (
/obj/structure/surface/table,
/obj/item/toy/dice,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aVe" = (
/obj/structure/surface/table,
/obj/item/weapon/gun/pistol/holdout,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aVf" = (
/obj/structure/surface/table,
/obj/item/tool/kitchen/knife,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aVg" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/pod/old{
name = "Register"
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aVh" = (
/obj/structure/bed/chair/office/dark{
@@ -16035,84 +12077,54 @@
name = "Storm Shutters";
pixel_x = 32
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aVj" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/admin_building)
"aVk" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/admin_building)
"aVl" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"aVm" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"aVn" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/c)
"aVo" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/c)
"aVp" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"aVq" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/e)
"aVr" = (
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/outside/e)
"aVs" = (
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/bigredv2/outside/e)
"aVt" = (
/obj/effect/landmark/hunter_primary,
/turf/open/mars,
/area/bigredv2/outside/e)
"aVv" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/e)
"aVx" = (
/obj/structure/curtain/medical,
@@ -16120,35 +12132,21 @@
dir = 1;
pixel_y = -30
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/caves/lambda/virology)
"aVy" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/bigredv2/caves/lambda/virology)
"aVz" = (
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/caves/lambda/virology)
"aVA" = (
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/bigredv2/caves/lambda/virology)
"aVB" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/caves/lambda/virology)
"aVC" = (
/obj/structure/machinery/camera/autoname{
@@ -16159,57 +12157,37 @@
name = "Virology Lockdown";
pixel_x = -25
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aVD" = (
/obj/structure/bed/stool,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aVE" = (
/obj/structure/surface/table,
/obj/structure/machinery/reagentgrinder,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aVF" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/w)
"aVG" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/w)
"aVH" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/w)
"aVI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/w)
"aVJ" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper General Store"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_store)
"aVK" = (
/obj/effect/decal/cleanable/blood{
@@ -16231,24 +12209,18 @@
/area/bigredv2/outside/general_store)
"aVN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aVO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aVP" = (
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/general_store)
"aVQ" = (
/obj/structure/platform_decoration/kutjevo/rock,
@@ -16258,39 +12230,26 @@
/obj/structure/platform_decoration/kutjevo/rock{
dir = 1
},
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/space)
"aVS" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("interrogation")
},
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/admin_building)
"aVT" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/bigredv2/outside/admin_building)
"aVU" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/bigredv2/outside/admin_building)
"aVV" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/bigredv2/outside/admin_building)
"aVW" = (
/obj/structure/bed/chair/office/dark{
@@ -16303,20 +12262,14 @@
pixel_y = 24
},
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/bigredv2/outside/admin_building)
"aVX" = (
/obj/structure/machinery/computer/cameras{
dir = 8
},
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/bigredv2/outside/admin_building)
"aVY" = (
/obj/effect/landmark/crap_item,
@@ -16326,10 +12279,7 @@
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/microwave,
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/caves/lambda/virology)
"aWb" = (
/obj/structure/surface/table/reinforced,
@@ -16338,18 +12288,13 @@
pixel_x = 6;
pixel_y = 8
},
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/caves/lambda/virology)
"aWc" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/microwave,
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/caves/lambda/virology)
"aWd" = (
/obj/structure/sink{
@@ -16357,45 +12302,31 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aWe" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aWf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aWg" = (
/obj/structure/machinery/computer/pandemic,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aWh" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 9;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/northwest,
/area/bigredv2/outside/virology)
"aWi" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/north,
/area/bigredv2/outside/virology)
"aWj" = (
/obj/effect/decal/warning_stripes{
@@ -16403,77 +12334,51 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/red/southwest,
/area/bigredv2/outside/marshal_office)
"aWk" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/w)
"aWs" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aWt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aWu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aWv" = (
/obj/structure/machinery/alarm{
dir = 1;
pixel_y = -30
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aWw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aWx" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aWy" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/telecomm/n_cave)
"aWz" = (
/obj/structure/showcase{
@@ -16488,10 +12393,7 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aWC" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -16499,61 +12401,39 @@
dir = 1;
name = "\improper Operations Armory"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"aWD" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/bigredv2/outside/admin_building)
"aWE" = (
-/turf/open/floor{
- icon_state = "darkbluecorners2"
- },
+/turf/open/floor/darkbluecorners2,
/area/bigredv2/outside/admin_building)
"aWF" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/bigredv2/outside/admin_building)
"aWG" = (
/obj/structure/machinery/computer/communications{
dir = 8
},
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/bigredv2/outside/admin_building)
"aWH" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/outside/admin_building)
"aWI" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/c)
"aWJ" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/c)
"aWK" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/e)
"aWL" = (
/obj/effect/landmark/hunter_secondary,
@@ -16562,26 +12442,19 @@
"aWM" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/e)
"aWN" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"aWO" = (
/obj/structure/reagent_dispensers/virusfood{
pixel_x = -32
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aWP" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -16590,9 +12463,7 @@
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Virology Lab Chemistry"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/virology)
"aWQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -16603,32 +12474,23 @@
dir = 8;
health = 25000
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aWR" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/west,
/area/bigredv2/outside/virology)
"aWS" = (
/obj/structure/surface/table,
/obj/item/reagent_container/glass/bottle/toxin,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/virology)
"aWT" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/virology)
"aWU" = (
/obj/structure/sink{
@@ -16638,32 +12500,21 @@
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/virology)
"aWV" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/w)
"aWW" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/c)
"aWX" = (
/obj/structure/surface/table,
/obj/item/toy/prize/ripley,
/obj/item/toy/prize/odysseus,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aWY" = (
/obj/effect/decal/cleanable/dirt,
@@ -16679,9 +12530,7 @@
/area/bigredv2/outside/cargo)
"aXc" = (
/obj/structure/machinery/light,
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"aXd" = (
/obj/structure/machinery/light{
@@ -16698,32 +12547,23 @@
dir = 10;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/outside/admin_building)
"aXj" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aXk" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aXl" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aXm" = (
/obj/structure/surface/table,
@@ -16735,64 +12575,46 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/bigredv2/outside/admin_building)
"aXn" = (
/obj/structure/surface/table/woodentable,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aXo" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/c)
"aXq" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Office Complex"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/office_complex)
"aXr" = (
/turf/open/floor,
/area/bigredv2/outside/office_complex)
"aXu" = (
/obj/structure/machinery/computer/med_data,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aXw" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/west,
/area/bigredv2/outside/virology)
"aXx" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Virology Lab Cell"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/virology)
"aXy" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/virology)
"aXz" = (
/obj/structure/toilet{
@@ -16801,42 +12623,28 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/virology)
"aXA" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/w)
"aXB" = (
/obj/structure/surface/table,
/obj/item/toy/prize/mauler,
/obj/item/toy/prize/odysseus,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aXC" = (
/obj/structure/surface/table,
/obj/structure/machinery/light,
/obj/item/toy/prize/ripley,
/obj/item/toy/prize/odysseus,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aXD" = (
/obj/structure/surface/table,
/obj/item/toy/prize/mauler,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aXE" = (
/obj/structure/surface/table,
@@ -16845,36 +12653,24 @@
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aXG" = (
/obj/structure/surface/table,
/obj/item/toy/sword,
/obj/item/toy/gun,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"aXH" = (
/turf/open/floor/plating,
/area/bigredv2/outside/cargo)
"aXL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"aXM" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/outside/admin_building)
"aXN" = (
/obj/structure/surface/table,
@@ -16885,31 +12681,21 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/bigredv2/outside/admin_building)
"aXO" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/bigredv2/outside/admin_building)
"aXP" = (
/obj/structure/surface/table,
/obj/item/tool/pen,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/bigredv2/outside/admin_building)
"aXQ" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/bigredv2/outside/admin_building)
"aXS" = (
/obj/structure/machinery/vending/snack,
@@ -16933,16 +12719,10 @@
/turf/open/floor,
/area/bigredv2/outside/office_complex)
"aXW" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/e)
"aXY" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/w)
"aXZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -16950,9 +12730,7 @@
dir = 1;
name = "\improper General Store Maintenance"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_store)
"aYc" = (
/obj/structure/machinery/light,
@@ -16960,42 +12738,30 @@
/area/bigredv2/outside/cargo)
"aYh" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/outside/admin_building)
"aYi" = (
/obj/effect/spawner/random/toolbox,
/obj/structure/platform_decoration,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aYk" = (
/obj/effect/landmark/survivor_spawner,
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aYl" = (
/obj/item/cell/hyper/empty,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/outside/admin_building)
"aYm" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
dir = 1;
name = "\improper Operations Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"aYo" = (
/obj/effect/decal/warning_stripes{
@@ -17003,18 +12769,13 @@
pixel_y = -1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/bigredv2/outside/admin_building)
"aYp" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Operations Toilet"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"aYq" = (
/obj/effect/landmark/objective_landmark/far,
@@ -17025,9 +12786,7 @@
/obj/structure/mirror{
pixel_y = 29
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/admin_building)
"aYr" = (
/obj/structure/toilet{
@@ -17037,9 +12796,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/admin_building)
"aYs" = (
/obj/structure/machinery/vending/cola,
@@ -17064,25 +12821,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"aYx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/e)
"aYA" = (
/obj/structure/closet/l3closet/virology,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aYB" = (
/obj/structure/closet/l3closet/virology,
@@ -17091,14 +12840,10 @@
/area/bigredv2/outside/virology)
"aYC" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/virology)
"aYE" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/w)
"aYF" = (
/turf/open/mars,
@@ -17131,40 +12876,28 @@
/turf/open/floor/plating,
/area/bigredv2/outside/cargo)
"aYK" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/c)
"aYL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aYM" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/outside/admin_building)
"aYN" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
dir = 1;
name = "\improper Operations Meeting Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"aYO" = (
/turf/open/floor,
/area/bigredv2/outside/admin_building)
"aYS" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/east,
/area/bigredv2/outside/admin_building)
"aYT" = (
/obj/structure/machinery/atm{
@@ -17172,50 +12905,32 @@
pixel_y = 30
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/outside/admin_building)
"aYU" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/outside/admin_building)
"aYV" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/outside/admin_building)
"aYW" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/north,
/area/bigredv2/outside/admin_building)
"aYX" = (
/obj/structure/machinery/robotic_fabricator,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"aYY" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"aYZ" = (
/obj/structure/machinery/mech_bay_recharge_port,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"aZa" = (
/obj/effect/decal/mecha_wreckage/ripley/firefighter,
@@ -17223,9 +12938,7 @@
/area/bigredv2/outside/office_complex)
"aZb" = (
/obj/structure/machinery/mecha_part_fabricator,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"aZc" = (
/obj/structure/surface/table,
@@ -17240,33 +12953,24 @@
/area/bigredv2/outside/office_complex)
"aZe" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/e)
"aZh" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Chapel"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/chapel)
"aZi" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/chapel)
"aZj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"aZk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -17275,19 +12979,14 @@
/obj/structure/machinery/door/airlock/almayer/research/colony{
name = "\improper Virology Lab Decontamination"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/virology)
"aZl" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- dir = 8;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/west,
/area/bigredv2/outside/virology)
"aZm" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -17347,15 +13046,10 @@
dir = 8
},
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aZA" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/bigredv2/outside/admin_building)
"aZB" = (
/obj/structure/bed/chair/comfy/black,
@@ -17365,38 +13059,26 @@
/turf/open/floor/carpet,
/area/bigredv2/outside/admin_building)
"aZE" = (
-/turf/open/floor{
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite,
/area/bigredv2/outside/office_complex)
"aZF" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/office_complex)
"aZG" = (
/obj/structure/sign/safety/galley{
pixel_x = 32
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"aZH" = (
/obj/structure/closet/wardrobe/chaplain_black,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"aZJ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/filtration_plant)
"aZL" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -17404,9 +13086,7 @@
dir = 1;
name = "\improper General Store Maintenance"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"aZM" = (
/obj/effect/landmark/crap_item,
@@ -17438,9 +13118,7 @@
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"aZT" = (
/obj/structure/surface/table,
@@ -17457,26 +13135,19 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"aZW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/outside/admin_building)
"aZX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/outside/admin_building)
"aZY" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -17488,134 +13159,91 @@
pixel_y = -32
},
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/outside/admin_building)
"aZZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"baa" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"bac" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bad" = (
/obj/item/device/analyzer,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bae" = (
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"baf" = (
/obj/structure/surface/table,
/obj/item/cell/hyper,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bag" = (
/obj/structure/surface/table,
/obj/item/reagent_container/glass/beaker/sulphuric,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bah" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bai" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"baj" = (
/obj/structure/bed/chair/office/light,
/turf/open/floor,
/area/bigredv2/outside/office_complex)
"bal" = (
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"bam" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/rampbottom/north,
/area/bigredv2/outside/chapel)
"ban" = (
/obj/structure/surface/table/woodentable,
/obj/item/device/radio/headset,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"bao" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/bigredv2/outside/chapel)
"bap" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/bigredv2/outside/chapel)
"baq" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/bigredv2/outside/chapel)
"bar" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/bigredv2/outside/chapel)
"bat" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/bigredv2/outside/chapel)
"bay" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -17663,10 +13291,7 @@
/turf/open/floor,
/area/bigredv2/outside/cargo)
"baF" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"baG" = (
/obj/structure/bed/chair/comfy/blue{
@@ -17678,9 +13303,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "\improper Operations"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"baJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -17691,29 +13314,21 @@
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"baL" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/hotdog,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"baM" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/folder/black,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"baN" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_sw)
"baO" = (
/obj/structure/machinery/light{
@@ -17728,47 +13343,32 @@
/area/bigredv2/outside/office_complex)
"baR" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"baS" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/bigredv2/outside/chapel)
"baT" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/bigredv2/outside/chapel)
"baU" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/bigredv2/outside/chapel)
"baW" = (
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/bigredv2/outside/chapel)
"bba" = (
/obj/effect/decal/cleanable/blood{
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/w)
"bbb" = (
/obj/effect/decal/cleanable/blood{
@@ -17778,9 +13378,7 @@
/turf/open/mars,
/area/bigredv2/outside/w)
"bbc" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/w)
"bbe" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -17796,9 +13394,7 @@
dir = 1;
name = "\improper Cargo Bay"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bbh" = (
/obj/effect/landmark/survivor_spawner,
@@ -17822,10 +13418,7 @@
dir = 4
},
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/outside/admin_building)
"bbl" = (
/obj/structure/bed/chair{
@@ -17834,28 +13427,20 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/bigredv2/outside/admin_building)
"bbm" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/med_data/laptop{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/bigredv2/outside/admin_building)
"bbn" = (
/obj/structure/safe,
/obj/effect/landmark/objective_landmark/close,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bbo" = (
/obj/structure/bed/chair/comfy/blue,
@@ -17895,26 +13480,20 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bbt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bbu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bbv" = (
/obj/effect/decal/cleanable/blood,
@@ -17923,9 +13502,7 @@
dir = 4
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bbw" = (
/obj/effect/decal/cleanable/dirt,
@@ -17933,9 +13510,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bbx" = (
/obj/effect/decal/cleanable/dirt,
@@ -17943,39 +13518,28 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bby" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bbz" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bbA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/office_complex)
"bbB" = (
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bbC" = (
/obj/structure/bed/chair/office/light{
@@ -17987,9 +13551,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"bbE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -17998,45 +13560,33 @@
/obj/structure/surface/table/woodentable,
/obj/item/storage/bible,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"bbF" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/chapel)
"bbG" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/chapel)
"bbH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/chapel)
"bbI" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/chapel)
"bbJ" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/w)
"bbM" = (
/obj/structure/machinery/camera/autoname{
@@ -18090,9 +13640,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bbW" = (
/obj/structure/bed/chair{
@@ -18101,16 +13649,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/bigredv2/outside/admin_building)
"bbY" = (
/obj/structure/bed/chair/comfy/blue,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bbZ" = (
/obj/structure/surface/table,
@@ -18120,9 +13663,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bca" = (
/obj/structure/machinery/camera/autoname{
@@ -18132,14 +13673,10 @@
/area/bigredv2/outside/admin_building)
"bcb" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/admin_building)
"bcc" = (
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/admin_building)
"bcd" = (
/obj/effect/landmark/survivor_spawner,
@@ -18148,84 +13685,59 @@
"bce" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bcf" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bcg" = (
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bch" = (
/obj/structure/surface/table,
/obj/item/clipboard,
-/turf/open/floor{
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite,
/area/bigredv2/outside/office_complex)
"bci" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite,
/area/bigredv2/outside/office_complex)
"bcj" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bck" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Private Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/office_complex)
"bcl" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/bigredv2/outside/chapel)
"bcn" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_virology)
"bco" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"bcq" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/w)
"bct" = (
/obj/structure/barricade/wooden{
@@ -18233,10 +13745,7 @@
dir = 8;
health = 25000
},
-/turf/open/floor{
- dir = 4;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/east,
/area/bigredv2/outside/cargo)
"bcu" = (
/obj/structure/barricade/wooden{
@@ -18244,9 +13753,7 @@
dir = 8;
health = 25000
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bcv" = (
/obj/effect/decal/cleanable/blood,
@@ -18306,9 +13813,7 @@
dir = 1;
name = "\improper Cargo Bay Offices"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bcE" = (
/obj/structure/surface/table,
@@ -18337,27 +13842,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bcI" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"bcJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"bcK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18366,36 +13863,24 @@
/obj/structure/machinery/door/airlock/almayer/command/colony{
name = "\improper Operations Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"bcL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bcM" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet5-1"
- },
+/turf/open/floor/carpet5_1/west,
/area/bigredv2/outside/admin_building)
"bcN" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/bigredv2/outside/admin_building)
"bcO" = (
/obj/structure/surface/table,
/obj/item/clothing/mask/cigarette/cigar,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bcP" = (
/obj/structure/surface/table,
@@ -18403,9 +13888,7 @@
density = 0;
req_one_access_txt = "200"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bcQ" = (
/obj/structure/machinery/vending/cola,
@@ -18415,26 +13898,20 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/admin_building)
"bcS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/admin_building)
"bcT" = (
/obj/effect/landmark/crap_item,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/admin_building)
"bcU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18481,14 +13958,10 @@
/turf/open/floor,
/area/bigredv2/outside/office_complex)
"bdd" = (
-/turf/open/floor{
- icon_state = "rampbottom"
- },
+/turf/open/floor/rampbottom,
/area/bigredv2/outside/chapel)
"bdg" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bdh" = (
/obj/effect/spawner/random/tool,
@@ -18506,27 +13979,19 @@
dir = 1;
name = "\improper Cargo Bay Offices"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bdk" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/c)
"bdl" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/outside/admin_building)
"bdm" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bdn" = (
/obj/structure/machinery/light{
@@ -18534,30 +13999,20 @@
},
/obj/structure/surface/table/woodentable,
/obj/item/device/camera,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bdo" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/bigredv2/outside/admin_building)
"bdp" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/bigredv2/outside/admin_building)
"bdq" = (
/obj/structure/surface/table,
/obj/item/trash/snack_bowl,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bdr" = (
/obj/structure/machinery/vending/snack,
@@ -18566,9 +14021,7 @@
/area/bigredv2/outside/admin_building)
"bds" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/admin_building)
"bdt" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -18576,23 +14029,17 @@
/area/bigredv2/outside/admin_building)
"bdu" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bdv" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bdx" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bdy" = (
/obj/structure/bed/chair/comfy/lime{
@@ -18619,9 +14066,7 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Private Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/office_complex)
"bdD" = (
/obj/structure/machinery/light{
@@ -18639,30 +14084,22 @@
name = "Storm Shutters";
pixel_x = -32
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"bdF" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/chapel)
"bdG" = (
/obj/structure/machinery/power/apc,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/chapel)
"bdI" = (
/obj/structure/machinery/alarm{
dir = 1;
pixel_y = -30
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/chapel)
"bdK" = (
/obj/structure/largecrate,
@@ -18684,15 +14121,11 @@
/area/bigredv2/outside/cargo)
"bdO" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bdP" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bdU" = (
/obj/structure/machinery/door_control{
@@ -18701,10 +14134,7 @@
pixel_x = -32
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/office_complex)
"bdW" = (
/obj/structure/bed/chair{
@@ -18720,10 +14150,7 @@
/turf/open/floor,
/area/bigredv2/outside/office_complex)
"bdZ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/w)
"bec" = (
/obj/effect/decal/cleanable/blood,
@@ -18768,52 +14195,35 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "\improper Operations"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"bek" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"bel" = (
/obj/structure/machinery/autolathe,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bem" = (
/obj/item/device/taperecorder,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"ben" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Robotics"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/office_complex)
"bep" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/se)
"beq" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/se)
"ber" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/se)
"bes" = (
/turf/open/mars,
@@ -18821,21 +14231,15 @@
"bet" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_east)
"beu" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/w)
"bev" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/w)
"bex" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18855,70 +14259,44 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"beC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"beE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"beF" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"beG" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/c)
"beH" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/office_complex)
"beI" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/office_complex)
"beJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/office_complex)
"beK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/office_complex)
"beL" = (
/obj/effect/decal/cleanable/dirt,
@@ -18937,21 +14315,14 @@
/obj/structure/sign/prop3{
pixel_y = 32
},
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/office_complex)
"beP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/w)
"beQ" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/w)
"beT" = (
/obj/structure/machinery/light{
@@ -18960,18 +14331,14 @@
/turf/open/floor,
/area/bigredv2/outside/cargo)
"beU" = (
-/turf/open/floor{
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea,
/area/bigredv2/outside/cargo)
"beV" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Cargo Offices"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"beW" = (
/obj/structure/machinery/computer/cameras,
@@ -18986,29 +14353,20 @@
/area/bigredv2/outside/cargo)
"beY" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/c)
"beZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"bfb" = (
/obj/structure/barricade/wooden,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/c)
"bfc" = (
/obj/structure/barricade/wooden,
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/c)
"bfd" = (
/obj/structure/surface/table,
@@ -19017,16 +14375,12 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bfe" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bfi" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -19035,19 +14389,14 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Office Complex Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/office_complex)
"bfj" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/office_complex)
"bfk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -19057,9 +14406,7 @@
/area/bigredv2/outside/office_complex)
"bfl" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bfn" = (
/obj/structure/machinery/light,
@@ -19067,25 +14414,19 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bfo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bfp" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bfq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -19106,25 +14447,19 @@
dir = 4
},
/obj/item/trash/cheesie,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bft" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bfu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bfv" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -19134,16 +14469,11 @@
/turf/open/floor,
/area/bigredv2/outside/office_complex)
"bfw" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/se)
"bfy" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bfz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -19162,20 +14492,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bfD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bfE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -19185,10 +14509,7 @@
/area/bigredv2/outside/cargo)
"bfF" = (
/obj/structure/largecrate,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bfG" = (
/obj/structure/bed/chair/office/dark{
@@ -19206,97 +14527,67 @@
/area/bigredv2/outside/cargo)
"bfI" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"bfJ" = (
/obj/item/trash/raisins,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bfK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bfL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bfM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bfO" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/office_complex)
"bfP" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bfQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Office Complex Janitor Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/office_complex)
"bfR" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bfV" = (
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bfX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate/trashcart,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bfY" = (
/obj/structure/largecrate/cow,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bfZ" = (
/obj/effect/decal/cleanable/dirt,
@@ -19312,9 +14603,7 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Cargo Bay Security"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bgb" = (
/obj/structure/surface/table,
@@ -19325,48 +14614,34 @@
/turf/open/floor,
/area/bigredv2/outside/cargo)
"bgc" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bgd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bge" = (
/obj/effect/decal/cleanable/blood/gibs/down,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bgf" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/office_complex)
"bgg" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/office_complex)
"bgh" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/office_complex)
"bgi" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer3/laptop/secure_data,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/office_complex)
"bgj" = (
/obj/structure/surface/table,
@@ -19374,19 +14649,14 @@
icon_state = "pottedplant_15";
pixel_y = 10
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/office_complex)
"bgk" = (
/obj/structure/machinery/alarm{
dir = 4;
pixel_x = -30
},
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/office_complex)
"bgl" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -19396,46 +14666,29 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bgm" = (
/obj/structure/janitorialcart,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bgn" = (
/obj/structure/janitorialcart,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bgo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bgp" = (
/obj/item/reagent_container/glass/bucket/mopbucket,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bgq" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bgr" = (
/obj/structure/closet/secure_closet/security,
@@ -19444,79 +14697,54 @@
/area/bigredv2/outside/cargo)
"bgs" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bgt" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/syndi_cakes,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bgu" = (
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/office_complex)
"bgv" = (
/obj/structure/surface/table,
/obj/item/tool/pen/blue,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/office_complex)
"bgw" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/office_complex)
"bgx" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/office_complex)
"bgy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bgz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bgA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bgB" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bgD" = (
/obj/effect/decal/cleanable/dirt,
@@ -19525,10 +14753,7 @@
/area/bigredv2/outside/cargo)
"bgE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bgF" = (
/obj/structure/barricade/wooden{
@@ -19536,10 +14761,7 @@
dir = 4;
health = 25000
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/c)
"bgI" = (
/obj/structure/surface/table,
@@ -19547,31 +14769,23 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bgJ" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"bgK" = (
/obj/structure/surface/table,
/obj/item/device/multitool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bgL" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"bgM" = (
/obj/item/device/radio/intercom{
@@ -19580,39 +14794,29 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bgN" = (
/obj/structure/machinery/camera/autoname{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/office_complex)
"bgO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/office_complex)
"bgP" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/floodlight/landing/floor,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/bigredv2/outside/space_port)
"bgQ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/office_complex)
"bgR" = (
/obj/structure/machinery/door_control{
@@ -19620,10 +14824,7 @@
name = "Storm Shutters";
pixel_x = -32
},
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/office_complex)
"bgS" = (
/obj/structure/machinery/light{
@@ -19634,25 +14835,16 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bgT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bgU" = (
/obj/item/clothing/shoes/galoshes,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bgV" = (
/obj/item/device/radio/intercom{
@@ -19661,43 +14853,27 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bgW" = (
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/outside/space_port_lz2)
"bgX" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/space_port_lz2)
"bgZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/explosive/grenade/high_explosive/frag{
desc = "High-Explosive Fragmenting-Antipersonnel. A small, but deceptively strong fragmentation grenade that has been phasing out the M15 fragmentation grenades alongside the M40 HEDP. Capable of being loaded in the M92 Launcher, or thrown by hand. This one seems to have weird insciptions all over it. You can barely make out 'PrAIs3 thE H3f@ G0d'"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"bhb" = (
-/turf/open/floor{
- icon_state = "floor4"
- },
+/turf/open/floor/floor4,
/area/bigredv2/outside/cargo)
"bhe" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bhf" = (
/obj/structure/machinery/power/apc{
@@ -19710,35 +14886,24 @@
/area/bigredv2/outside/c)
"bhk" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/office_complex)
"bhl" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bhm" = (
/obj/structure/surface/table,
/obj/item/trash/kepler,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bhn" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/lighter/random,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bhp" = (
/obj/structure/closet/jcloset,
@@ -19749,15 +14914,10 @@
/obj/item/clothing/head/beret/jan,
/obj/item/clothing/head/beret/jan,
/obj/item/clothing/head/beret/jan,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bhq" = (
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/bigredv2/outside/se)
"bhr" = (
/obj/effect/landmark/crap_item,
@@ -19765,60 +14925,42 @@
/area/bigredv2/outside/se)
"bhs" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_east)
"bhu" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"bhv" = (
/obj/structure/machinery/landinglight/ds2/delayone,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"bhw" = (
/obj/structure/machinery/landinglight/ds2,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"bhx" = (
/obj/structure/machinery/landinglight/ds2/delaythree,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"bhy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/landinglight/ds2/delayone,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"bhz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/landinglight/ds2/delaythree,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"bhA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/landinglight/ds2/delaytwo,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"bhD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "floor4"
- },
+/turf/open/floor/floor4,
/area/bigredv2/outside/cargo)
"bhE" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -19829,15 +14971,11 @@
/area/bigredv2/outside/cargo)
"bhI" = (
/obj/item/stack/sheet/metal/med_small_stack,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/c)
"bhL" = (
/obj/item/prop/helmetgarb/gunoil,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/c)
"bhO" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -19853,58 +14991,39 @@
/area/bigredv2/outside/c)
"bhQ" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"bhR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"bhT" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"bhU" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"bhX" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/office_complex)
"bhY" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/office_complex)
"bhZ" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/dirt,
/obj/item/paper/janitor,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bia" = (
/obj/structure/noticeboard{
@@ -19912,10 +15031,7 @@
pixel_y = -27
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"bic" = (
/obj/effect/landmark/yautja_teleport,
@@ -19925,10 +15041,7 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port_lz2)
"bie" = (
/turf/open/floor/plating,
@@ -19937,9 +15050,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "floor4"
- },
+/turf/open/floor/floor4,
/area/bigredv2/outside/cargo)
"biq" = (
/obj/effect/decal/cleanable/dirt,
@@ -19970,33 +15081,23 @@
dir = 4;
health = 25000
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bix" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"biy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/c)
"biz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/c)
"biA" = (
/obj/structure/machinery/door_control{
@@ -20004,34 +15105,25 @@
name = "Storm Shutters";
pixel_x = -32
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"biD" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Office Complex"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/office_complex)
"biE" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Office Complex Janitor Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/office_complex)
"biH" = (
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port_lz2)
"biI" = (
/obj/docking_port/stationary/marine_dropship/lz2{
@@ -20064,36 +15156,27 @@
desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it...";
health = 25000
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"biS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"biT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"biU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"biV" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -20104,36 +15187,23 @@
/area/bigredv2/outside/c)
"biY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/c)
"bja" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/se)
"bjb" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/se)
"bjc" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/se)
"bjd" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port_lz2)
"bje" = (
/obj/structure/machinery/camera/autoname/lz_camera,
@@ -20145,28 +15215,19 @@
/area/bigredv2/outside/cargo)
"bjk" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"bjl" = (
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/outside/se)
"bjm" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/se)
"bjn" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port_lz2)
"bjo" = (
/obj/effect/landmark/crap_item,
@@ -20177,40 +15238,25 @@
/obj/structure/machinery/landinglight/ds2{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port_lz2)
"bjw" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/s)
"bjx" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/s)
"bjy" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/s)
"bjz" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/s)
"bjA" = (
/turf/open/mars,
/area/bigredv2/outside/s)
"bjB" = (
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/outside/s)
"bjC" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -20222,68 +15268,47 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/s)
"bjE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/s)
"bjF" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/s)
"bjG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/s)
"bjH" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/s)
"bjJ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/office_complex)
"bjK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/office_complex)
"bjL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/office_complex)
"bjM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -20300,10 +15325,7 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port_lz2)
"bjR" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -20311,71 +15333,43 @@
dir = 1;
name = "\improper Cargo Bay Quartermaster"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bjY" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/s)
"bjZ" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"bka" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/s)
"bkb" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/s)
"bkc" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/s)
"bkd" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/s)
"bkf" = (
/obj/structure/sign/safety/distribution_pipes{
pixel_y = -32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"bkg" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/office_complex)
"bkh" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/se)
"bki" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/se)
"bkl" = (
/obj/structure/filingcabinet,
@@ -20391,30 +15385,21 @@
dir = 1;
name = "\improper Cargo Bay Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bkp" = (
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/bigredv2/outside/s)
"bkq" = (
/obj/effect/landmark/crap_item,
/turf/open/mars,
/area/bigredv2/outside/s)
"bkr" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/s)
"bks" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/s)
"bku" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -20422,18 +15407,14 @@
dir = 1;
name = "\improper Atmospherics Condenser"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"bkw" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 1;
name = "\improper Atmospherics Condenser"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"bkx" = (
/obj/effect/spawner/gibspawner/human,
@@ -20442,22 +15423,16 @@
dir = 1;
name = "\improper Atmospherics Condenser"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"bky" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/se)
"bkz" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Cargo Bay Quartermaster"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bkA" = (
/obj/structure/bed/chair/office/dark,
@@ -20471,60 +15446,40 @@
/turf/open/floor,
/area/bigredv2/outside/cargo)
"bkC" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/s)
"bkD" = (
/obj/structure/machinery/vending/sovietsoda{
icon_state = "sovietsoda-broken";
stat = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/filtration_plant)
"bkE" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"bkG" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"bkH" = (
/obj/structure/dispenser/oxygen,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/filtration_plant)
"bkI" = (
/obj/structure/cryofeed/right{
name = "\improper coolant feed"
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/outside/filtration_plant)
"bkJ" = (
/obj/structure/cryofeed,
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/outside/filtration_plant)
"bkK" = (
/obj/structure/closet/toolcloset,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"bkL" = (
/obj/structure/surface/table,
@@ -20532,43 +15487,29 @@
dir = 1
},
/obj/item/tank/air,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/filtration_plant)
"bkM" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/bomb_supply,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"bkN" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bkO" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"bkP" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Atmospherics Condenser Storage"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"bkS" = (
/obj/structure/closet/toolcloset,
@@ -20576,10 +15517,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"bkT" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan,
@@ -20589,9 +15527,7 @@
/turf/open/floor/plating,
/area/bigredv2/outside/filtration_plant)
"bkV" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/se)
"bkY" = (
/obj/structure/sink{
@@ -20602,9 +15538,7 @@
pixel_x = 30
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/caves/lambda/xenobiology)
"bld" = (
/obj/structure/surface/table,
@@ -20674,73 +15608,48 @@
/turf/open/floor,
/area/bigredv2/outside/cargo)
"blq" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/s)
"blr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/s)
"bls" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/s)
"blt" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/s)
"blu" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/s)
"blv" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/s)
"blx" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/item/tool/extinguisher,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bly" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"blA" = (
/obj/structure/dispenser/oxygen,
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"blB" = (
/obj/effect/landmark/survivor_spawner,
@@ -20752,34 +15661,24 @@
dir = 4;
pixel_x = -30
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/filtration_plant)
"blC" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"blD" = (
/obj/structure/surface/table,
/obj/item/circuitboard/firealarm,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"blE" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"blF" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -20800,9 +15699,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"blV" = (
/obj/structure/bed/chair/office/light{
@@ -20811,9 +15708,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"blW" = (
/obj/structure/surface/table,
@@ -20823,35 +15718,25 @@
dir = 8
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"blX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/filtration_plant)
"blY" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"blZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bma" = (
/obj/effect/decal/cleanable/dirt,
@@ -20860,9 +15745,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bmb" = (
/obj/structure/surface/table,
@@ -20871,19 +15754,14 @@
pixel_x = 32
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"bme" = (
/turf/open/mars,
/area/bigredv2/outside/sw)
"bmf" = (
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bmg" = (
/obj/effect/decal/cleanable/dirt,
@@ -20891,49 +15769,33 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"bmh" = (
/obj/effect/decal/cleanable/liquid_fuel,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bmi" = (
/obj/effect/decal/cleanable/liquid_fuel,
/obj/structure/curtain/red,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/engineering)
"bmj" = (
/obj/effect/decal/cleanable/liquid_fuel,
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/engineering)
"bml" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/engineering)
"bmm" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bmn" = (
/obj/structure/machinery/power/smes/buildable{
@@ -20943,41 +15805,26 @@
/area/bigredv2/outside/engineering)
"bmp" = (
/obj/structure/machinery/mill,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bmq" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bms" = (
/obj/structure/machinery/autolathe,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/engineering)
"bmt" = (
/obj/structure/machinery/computer/atmos_alert,
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/engineering)
"bmu" = (
/obj/structure/machinery/computer/station_alert,
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bmw" = (
/obj/structure/closet/secure_closet/engineering_chief,
@@ -20985,45 +15832,28 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bmx" = (
/obj/structure/bookcase/manuals/engineering,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/engineering)
"bmy" = (
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"bmz" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bmA" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/s)
"bmB" = (
/obj/structure/barricade/wooden,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/s)
"bmC" = (
/obj/structure/surface/table,
@@ -21032,59 +15862,40 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bmD" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bmF" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bmG" = (
/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"bmH" = (
/obj/structure/surface/table,
/obj/item/tool/lighter/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bmJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"bmM" = (
/obj/effect/landmark/hunter_primary,
/turf/open/floor/plating,
/area/bigredv2/outside/space_port_lz2)
"bmN" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port_lz2)
"bmO" = (
/obj/effect/decal/cleanable/liquid_fuel,
@@ -21093,28 +15904,20 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"bmP" = (
/obj/effect/decal/cleanable/liquid_fuel,
/obj/effect/decal/cleanable/liquid_fuel,
/obj/item/stack/sheet/metal,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bmQ" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/engineering)
"bmR" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
@@ -21122,18 +15925,13 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"bmS" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bmT" = (
/obj/structure/machinery/power/terminal{
@@ -21142,15 +15940,6 @@
/obj/structure/machinery/light,
/turf/open/floor/plating,
/area/bigredv2/outside/engineering)
-"bmU" = (
-/obj/structure/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/machinery/power/terminal{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/bigredv2/outside/engineering)
"bmV" = (
/obj/structure/machinery/power/terminal{
dir = 1
@@ -21159,33 +15948,23 @@
/area/bigredv2/outside/engineering)
"bmW" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bmX" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bmZ" = (
/obj/effect/decal/cleanable/liquid_fuel,
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"bna" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bnb" = (
/obj/structure/machinery/door_control{
@@ -21193,36 +15972,25 @@
name = "Storm Shutters";
pixel_x = -32
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bnd" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/computer3/server,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"bne" = (
/obj/structure/cryofeed,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/outside/filtration_plant)
"bnf" = (
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bng" = (
/obj/effect/decal/cleanable/dirt,
@@ -21230,16 +15998,12 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bnh" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bnj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21248,50 +16012,37 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Atmospherics Condenser Storage"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"bnl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bnm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bnn" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bno" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/radio/headset,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bnp" = (
/obj/structure/machinery/computer/area_atmos/area,
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"bnq" = (
/obj/effect/decal/cleanable/dirt,
@@ -21299,51 +16050,36 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bnr" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"bns" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 1;
name = "\improper Engineering SMES"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bnt" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/glasses/welding,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bnu" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bnw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bnx" = (
/obj/structure/surface/table,
@@ -21353,9 +16089,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/glasses/meson,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bny" = (
/obj/structure/window/reinforced/toughened{
@@ -21371,64 +16105,45 @@
phone_category = "Lambda Labs";
phone_id = "Virology"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/bigredv2/caves/lambda/virology)
"bnz" = (
/obj/structure/surface/table,
/obj/item/tool/lighter/zippo,
/obj/item/tool/lighter/zippo,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bnA" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{
dir = 1;
name = "\improper Atmospherics Condenser"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"bnB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bnE" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bnF" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bnH" = (
/obj/structure/machinery/computer/general_air_control,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"bnI" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bnK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21437,99 +16152,72 @@
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bnL" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bnM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bnN" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bnO" = (
/obj/structure/machinery/computer/atmos_alert{
dir = 8
},
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/filtration_plant)
"bnQ" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bnR" = (
/obj/structure/machinery/shower{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/engineering)
"bnS" = (
/obj/item/trash/eat,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bnT" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
name = "\improper Engineering Secure Storage"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bnV" = (
/obj/structure/sign/safety/electronics{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bnW" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/outside/engineering)
"bnX" = (
/obj/item/folder/yellow,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bnY" = (
/obj/structure/machinery/photocopier,
@@ -21539,36 +16227,26 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bnZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"boa" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bob" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"boc" = (
/obj/structure/machinery/light{
@@ -21576,92 +16254,64 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"boe" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bof" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"boj" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bok" = (
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"boq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"bor" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"bos" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bou" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bov" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/twohanded/fireaxe,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"box" = (
/obj/item/frame/table,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"boy" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"boA" = (
/obj/effect/decal/cleanable/dirt,
@@ -21669,57 +16319,40 @@
/area/bigredv2/outside/filtration_plant)
"boG" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"boH" = (
/obj/effect/decal/cleanable/liquid_fuel,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/bigredv2/outside/engineering)
"boI" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"boK" = (
/obj/item/trash/pistachios,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"boL" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"boM" = (
/obj/structure/closet/firecloset/full,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"boN" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"boR" = (
/obj/structure/surface/table,
@@ -21728,19 +16361,14 @@
dir = 1
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"boS" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/engineering)
"boU" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -21748,31 +16376,22 @@
dir = 1;
name = "\improper Chief Engineer's Office"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"boV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Engineering Complex"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"boW" = (
/obj/structure/closet/secure_closet/atmos_personal,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"boX" = (
/obj/structure/machinery/pipedispenser,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/filtration_plant)
"boY" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
@@ -21782,30 +16401,21 @@
phone_id = "Filtration";
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"boZ" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bpa" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bpc" = (
/obj/structure/barricade/handrail,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/filtration_plant)
"bpe" = (
/obj/effect/landmark/survivor_spawner,
@@ -21813,37 +16423,26 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/engineering)
"bpf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bpi" = (
/obj/structure/reagent_dispensers/watertank,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"bpj" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bpk" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -21851,26 +16450,19 @@
dir = 1;
name = "\improper Engineering Tool Storage"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bpl" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/engineering)
"bpm" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/glasses/welding,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bpn" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21879,62 +16471,44 @@
/obj/structure/machinery/camera/autoname{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bpo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bpp" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bpq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bpu" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port_lz2)
"bpx" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/sw)
"bpy" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/sw)
"bpz" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 1;
name = "\improper Engineering Lockers"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bpA" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -21942,51 +16516,34 @@
dir = 1;
name = "\improper Engineering Lockers"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bpC" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/engineering)
"bpD" = (
/obj/structure/surface/rack,
/obj/item/device/camera_film,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/engineering)
"bpE" = (
/obj/structure/surface/rack,
/obj/item/device/analyzer,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bpF" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bpH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bpI" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21994,10 +16551,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/device/lightreplacer,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bpK" = (
/obj/structure/machinery/light{
@@ -22006,43 +16560,31 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bpL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/outside/engineering)
"bpM" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bpN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bpO" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bpP" = (
/obj/structure/machinery/camera/autoname{
@@ -22051,9 +16593,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bpQ" = (
/obj/structure/machinery/light{
@@ -22063,32 +16603,24 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bpR" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bpS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bpT" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/c)
"bpU" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary,
@@ -22103,62 +16635,40 @@
/turf/open/floor/plating,
/area/bigredv2/outside/filtration_plant)
"bpX" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/se)
"bpY" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/se)
"bpZ" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/filtration_cave_cas)
"bqa" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/se)
"bqb" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/filtration_cave_cas)
"bqc" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_y = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"bqd" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port_lz2)
"bqf" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 1;
name = "\improper Engineering Break Room"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bqk" = (
/obj/effect/decal/cleanable/dirt,
@@ -22166,9 +16676,7 @@
dir = 1;
pixel_y = -30
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"bql" = (
/obj/structure/machinery/door_control{
@@ -22176,17 +16684,13 @@
name = "Storm Shutters";
pixel_y = -32
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"bqo" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bqv" = (
/obj/effect/decal/warning_stripes{
@@ -22209,40 +16713,28 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port_lz2)
"bqI" = (
/obj/structure/machinery/vending/snack{
icon_state = "snack-broken";
stat = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/engineering)
"bqJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/camera/autoname{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/outside/engineering)
"bqK" = (
/obj/item/folder/yellow,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/bigredv2/outside/engineering)
"bqL" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22251,27 +16743,21 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Engineering Workshop"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bqM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bqN" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bqP" = (
/obj/effect/decal/warning_stripes{
@@ -22283,16 +16769,12 @@
dir = 1;
name = "\improper Engine Reactor Control"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bqT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bqV" = (
/obj/structure/machinery/light{
@@ -22301,10 +16783,7 @@
/obj/structure/surface/table,
/obj/item/paper,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"bqX" = (
/obj/effect/decal/warning_stripes{
@@ -22316,98 +16795,65 @@
/obj/structure/machinery/landinglight/ds2{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port_lz2)
"bre" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"brf" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Engineering Workshop"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"brg" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bri" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"brj" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"brn" = (
/obj/structure/machinery/power/breakerbox/activated,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/engineering)
"bro" = (
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bru" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"brv" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"brw" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/engineering)
"brx" = (
/obj/structure/surface/table,
/obj/item/stack/cable_coil,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bry" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -22415,18 +16861,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"brz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"brA" = (
/obj/structure/surface/table,
@@ -22441,25 +16883,17 @@
pixel_x = 30
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"brB" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"brC" = (
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"brD" = (
/turf/open/floor/plating,
@@ -22474,50 +16908,36 @@
/obj/item/stack/sheet/metal{
amount = 30
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"brJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/glass,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"brK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"brL" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"brM" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"brO" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"brP" = (
/obj/structure/bed/chair/office/light{
@@ -22526,9 +16946,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"brR" = (
/obj/item/device/radio/intercom{
@@ -22537,92 +16955,64 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/engineering)
"brU" = (
/obj/structure/surface/table,
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"brV" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"brW" = (
/obj/structure/surface/table,
/obj/item/weapon/baton,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"brY" = (
/obj/structure/bed/chair/office/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"brZ" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/outside/filtration_plant)
"bsa" = (
/obj/structure/machinery/floodlight/landing/floor,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/bigredv2/outside/space_port_lz2)
"bsb" = (
/obj/structure/machinery/landinglight/ds2{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/space_port_lz2)
"bsc" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/space_port_lz2)
"bsd" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/space_port_lz2)
"bse" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/space_port_lz2)
"bsm" = (
/obj/effect/decal/cleanable/dirt,
@@ -22630,9 +17020,7 @@
amount = 30
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bss" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -22647,81 +17035,58 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/filtration_plant)
"bsC" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bsD" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bsE" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bsF" = (
/obj/structure/surface/table,
/obj/item/circuitboard/solar_tracker,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/filtration_plant)
"bsG" = (
/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"bsH" = (
/obj/effect/landmark/hunter_primary,
/turf/open/floor,
/area/bigredv2/outside/filtration_cave_cas)
"bsI" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/sw)
"bsJ" = (
/obj/structure/machinery/vending/coffee{
icon_state = "coffee-broken";
stat = 1
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/engineering)
"bsK" = (
/obj/structure/machinery/light,
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"bsL" = (
/obj/effect/landmark/crap_item,
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"bsM" = (
/obj/structure/machinery/door_control{
@@ -22729,10 +17094,7 @@
name = "Storm Shutters";
pixel_y = -32
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/engineering)
"bsN" = (
/obj/structure/surface/table,
@@ -22744,62 +17106,44 @@
/obj/item/stack/sheet/glass{
amount = 30
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"bsP" = (
/obj/structure/closet/radiation,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bsX" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Engineering Complex"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bsY" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Atmospherics Condenser"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bsZ" = (
/obj/structure/janitorialcart,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/engineering)
"bta" = (
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"btb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/constructable_frame,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"btc" = (
/obj/structure/surface/table,
/obj/structure/machinery/light,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"btd" = (
/obj/structure/surface/table,
@@ -22807,10 +17151,7 @@
/obj/item/stack/sheet/metal{
amount = 30
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/engineering)
"bte" = (
/obj/structure/machinery/light{
@@ -22819,88 +17160,56 @@
/obj/structure/sign/safety/high_rad{
pixel_x = 32
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"bti" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"btj" = (
/obj/structure/bed/chair,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"btk" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"btn" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/s)
"bto" = (
/obj/item/tool/warning_cone,
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/se)
"btr" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"btt" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"btu" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"btw" = (
/turf/open/floor/plating,
/area/bigredv2/outside/lz2_south_cas)
"btA" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"btB" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"btD" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/s)
"btH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22910,28 +17219,21 @@
dir = 1;
name = "\improper Engineering Complex"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"btJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"btK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"btN" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22941,108 +17243,68 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/engineering)
"bua" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Engineering Complex"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"bub" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/outside/s)
"buc" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/s)
"bud" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/outside/s)
"buj" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves/mining)
"bun" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/s)
"buo" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/s)
"buu" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/s)
"buy" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_east)
"buz" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/caves_sw)
"buB" = (
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"buJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/s)
"buQ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_north)
"buR" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/lz2_south_cas)
"buY" = (
/obj/effect/decal/cleanable/blood{
icon_state = "xgib1"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"bvk" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/outside/s)
"bvv" = (
/obj/structure/machinery/light{
@@ -23052,9 +17314,7 @@
/area/bigredv2/outside/lz2_south_cas)
"bvw" = (
/obj/effect/landmark/yautja_teleport,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/lz2_south_cas)
"bvz" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -23062,17 +17322,13 @@
id = "eta";
name = "Eta Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/eta)
"bvD" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/caves/mining)
"bvF" = (
/obj/structure/bed/chair/office/light{
@@ -23082,40 +17338,29 @@
/area/bigredv2/outside/lz2_south_cas)
"bvH" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/eta)
"bvK" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 1;
name = "\improper Power Substation"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/lz2_south_cas)
"bvO" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/caves/eta/xenobiology)
"bvP" = (
/turf/open/mars,
/area/bigredv2/caves/eta/research)
"bvQ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/eta)
"bvR" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves_se)
"bvS" = (
/obj/structure/machinery/power/port_gen/pacman/super,
@@ -23123,25 +17368,16 @@
/area/bigredv2/outside/lz2_south_cas)
"bvV" = (
/obj/structure/machinery/door/poddoor/almayer/closed,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"bvW" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/eta)
"bvX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/eta)
"bvY" = (
/turf/open/floor/plating,
@@ -23149,38 +17385,24 @@
"bvZ" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/eta)
"bwa" = (
/obj/effect/landmark/hunter_primary,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/eta)
"bwb" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/eta)
"bwc" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/eta)
"bwj" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/caves/eta/xenobiology)
"bwr" = (
/obj/structure/machinery/light,
@@ -23190,23 +17412,17 @@
phone_color = "green";
phone_id = "Virology Lab"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"bww" = (
/turf/open/floor/plating,
/area/bigredv2/caves/eta/storage)
"bwx" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/eta/xenobiology)
"bwz" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite,
/area/bigredv2/outside/office_complex)
"bwA" = (
/obj/structure/surface/table,
@@ -23217,23 +17433,17 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Eta Lab Storage Bay"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/storage)
"bwH" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/storage)
"bwI" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
dir = 1;
name = "\improper Eta Lab Decontamination"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/research)
"bwK" = (
/obj/effect/decal/cleanable/blood,
@@ -23243,19 +17453,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 1;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/north,
/area/bigredv2/caves/eta/storage)
"bwM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/north,
/area/bigredv2/caves/eta/storage)
"bwN" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -23271,9 +17475,7 @@
/area/bigredv2/caves/eta/storage)
"bwP" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bwQ" = (
/obj/structure/surface/table,
@@ -23283,86 +17485,57 @@
phone_color = "yellow";
phone_id = "Robotics"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bwR" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bwS" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bwT" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bwU" = (
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/eta/research)
"bwV" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/eta/research)
"bwW" = (
/obj/structure/closet/l3closet/scientist,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/eta/research)
"bwX" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/caves/eta/research)
"bwY" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tech_supply,
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/caves/eta/research)
"bwZ" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/caves/eta/research)
"bxa" = (
/obj/structure/surface/rack,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/caves/eta/research)
"bxb" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/caves/eta/research)
"bxc" = (
/turf/open/floor,
@@ -23381,23 +17554,15 @@
/turf/open/floor,
/area/bigredv2/caves/eta/storage)
"bxh" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/bigredv2/caves/eta/storage)
"bxi" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/bigredv2/caves/eta/storage)
"bxj" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bxk" = (
/obj/structure/surface/table,
@@ -23410,34 +17575,23 @@
pixel_x = -4;
pixel_y = 7
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bxl" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/eta/research)
"bxn" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bxo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bxp" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/caves/eta/research)
"bxq" = (
/obj/effect/decal/cleanable/dirt,
@@ -23453,44 +17607,29 @@
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Eta Lab Robotics"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/storage)
"bxs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bxt" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/bigredv2/caves/eta/storage)
"bxu" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/bigredv2/caves/eta/storage)
"bxv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/bigredv2/caves/eta/storage)
"bxw" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bxx" = (
/obj/structure/closet/l3closet/scientist,
@@ -23498,42 +17637,29 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/eta/research)
"bxy" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/caves/eta/research)
"bxz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bxA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bxB" = (
/obj/structure/largecrate/guns,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "bot"
- },
+/turf/open/floor/bot,
/area/bigredv2/caves/eta/storage)
"bxC" = (
/obj/structure/largecrate/guns,
-/turf/open/floor{
- icon_state = "bot"
- },
+/turf/open/floor/bot,
/area/bigredv2/caves/eta/storage)
"bxD" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -23543,32 +17669,22 @@
"bxE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bxF" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/bigredv2/caves/eta/storage)
"bxG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/bigredv2/caves/eta/storage)
"bxH" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bxI" = (
/obj/structure/sink{
@@ -23576,17 +17692,11 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/caves/eta/research)
"bxJ" = (
/obj/structure/machinery/r_n_d/organic_analyzer,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/caves/eta/research)
"bxK" = (
/obj/structure/machinery/light{
@@ -23596,60 +17706,42 @@
/area/bigredv2/caves/eta/storage)
"bxL" = (
/obj/structure/powerloader_wreckage/ft,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bxM" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bxO" = (
/obj/structure/machinery/r_n_d/protolathe,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/caves/eta/research)
"bxP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bxQ" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/r_n_d/destructive_analyzer,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/caves/eta/research)
"bxR" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/research)
"bxS" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/research)
"bxT" = (
/obj/structure/bed,
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/research)
"bxU" = (
/obj/structure/largecrate/cow,
@@ -23657,53 +17749,35 @@
/area/bigredv2/caves/eta/storage)
"bxV" = (
/obj/structure/largecrate/cow,
-/turf/open/floor{
- icon_state = "bot"
- },
+/turf/open/floor/bot,
/area/bigredv2/caves/eta/storage)
"bxW" = (
/obj/effect/spawner/random/toolbox,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bxX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/bigredv2/caves/eta/storage)
"bxY" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"bya" = (
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/research)
"byb" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"byc" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/research)
"bye" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_12"
- },
+/turf/open/mars_cave/mars_cave_12,
/area/bigredv2/caves_research)
"byf" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -23723,107 +17797,76 @@
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"byj" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/bigredv2/caves/eta/storage)
"byk" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"byl" = (
/obj/structure/machinery/photocopier,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"byn" = (
/obj/structure/machinery/r_n_d/bioprinter,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/caves/eta/research)
"byo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/caves/eta/research)
"byp" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/caves/eta/research)
"byq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/caves/eta/research)
"byr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/caves/eta/research)
"bys" = (
/obj/structure/machinery/r_n_d/circuit_imprinter,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/caves/eta/research)
"byt" = (
/obj/structure/bed,
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/research)
"byu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/research)
"byv" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/research)
"byw" = (
/obj/structure/largecrate/mule,
-/turf/open/floor{
- icon_state = "bot"
- },
+/turf/open/floor/bot,
/area/bigredv2/caves/eta/storage)
"byx" = (
/obj/structure/largecrate/mule,
@@ -23833,35 +17876,21 @@
"byy" = (
/obj/structure/largecrate/lisa,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "bot"
- },
+/turf/open/floor/bot,
/area/bigredv2/caves/eta/storage)
"byz" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/bigredv2/caves/eta/storage)
"byA" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/bigredv2/caves/eta/storage)
"byB" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/bigredv2/caves/eta/storage)
"byC" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/bigredv2/caves/eta/storage)
"byE" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -23869,9 +17898,7 @@
dir = 1;
name = "\improper Eta Lab Technical Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/research)
"byF" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -23879,16 +17906,12 @@
dir = 1;
name = "\improper Eta Lab Dormitories"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/research)
"byG" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_se)
"byH" = (
/obj/structure/machinery/light,
@@ -23908,125 +17931,88 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"byK" = (
/obj/structure/closet/l3closet/scientist,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"byL" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"byM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"byN" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"byO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"byP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"byQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"byR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/bigredv2/caves/eta/research)
"byS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/bigredv2/caves/eta/research)
"byT" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/bigredv2/caves/eta/research)
"byU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/bigredv2/caves/eta/research)
"byV" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/bigredv2/caves/eta/research)
"byW" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/caves/eta/research)
"byX" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/caves/eta/research)
"byY" = (
/obj/structure/flora/pottedplant{
@@ -24040,95 +18026,65 @@
dir = 1;
name = "\improper Eta Lab Robotics"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bza" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"bzb" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bzc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"bzd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"bze" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"bzf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"bzg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"bzh" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bzi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"bzj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/caves/eta/research)
"bzk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -24136,18 +18092,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bzl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bzm" = (
/obj/structure/pipes/vents/pump{
@@ -24156,37 +18108,24 @@
/turf/open/floor/plating,
/area/bigredv2/caves/eta/research)
"bzn" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_22"
- },
+/turf/open/mars_cave/mars_cave_22,
/area/bigredv2/caves/eta/research)
"bzo" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_research)
"bzp" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/bigredv2/caves/eta/storage)
"bzq" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/bigredv2/caves/eta/storage)
"bzr" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/bigredv2/caves/eta/storage)
"bzs" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -24194,56 +18133,39 @@
dir = 1;
name = "\improper Eta Lab Armory"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/research)
"bzt" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/caves/eta/research)
"bzu" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves/eta/research)
"bzv" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves/eta/research)
"bzw" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/storage)
"bzx" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/storage)
"bzy" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bzz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bzA" = (
/obj/effect/decal/cleanable/dirt,
@@ -24251,91 +18173,63 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/storage)
"bzB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/storage)
"bzC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/storage)
"bzD" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bzE" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/bigredv2/caves/eta/research)
"bzF" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tech_supply,
/obj/item/phone,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/bigredv2/caves/eta/research)
"bzG" = (
/obj/structure/surface/table,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/bigredv2/caves/eta/research)
"bzH" = (
/obj/structure/closet/secure_closet/RD,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/bigredv2/caves/eta/research)
"bzI" = (
/obj/structure/machinery/computer/cameras,
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/bigredv2/caves/eta/research)
"bzJ" = (
/obj/item/weapon/gun/smg/m39,
/obj/structure/closet/secure_closet/guncabinet/wy,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/caves/eta/research)
"bzK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bzL" = (
/obj/structure/machinery/light{
@@ -24345,46 +18239,31 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/caves/eta/research)
"bzM" = (
/obj/structure/closet/secure_closet,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/caves/eta/research)
"bzN" = (
/obj/structure/machinery/computer/cameras,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/caves/eta/research)
"bzO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves/eta/research)
"bzP" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves/eta/research)
"bzQ" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
dir = 1;
name = "\improper Eta Lab Server"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/storage)
"bzR" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -24392,24 +18271,17 @@
dir = 1;
name = "\improper Eta Lab Security Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/storage)
"bzT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"bzU" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bzW" = (
/obj/structure/bed/chair/office/light{
@@ -24418,34 +18290,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/bigredv2/caves/eta/research)
"bzX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bzY" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/caves/eta/research)
"bzZ" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/caves/eta/research)
"bAa" = (
/obj/structure/bed/chair,
@@ -24453,85 +18314,60 @@
/area/bigredv2/caves/eta/research)
"bAb" = (
/obj/structure/bed/chair,
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves/eta/research)
"bAc" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves/eta/research)
"bAd" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves/eta/research)
"bAe" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_se)
"bAf" = (
/obj/structure/machinery/r_n_d/server,
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/caves/eta/storage)
"bAg" = (
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/caves/eta/storage)
"bAh" = (
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/eta/storage)
"bAi" = (
/obj/structure/machinery/computer/cameras,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bAj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bAn" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bAo" = (
/obj/structure/surface/table,
/obj/item/trash/kepler,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bAp" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/bigredv2/caves/eta/research)
"bAq" = (
/obj/structure/machinery/light{
@@ -24539,25 +18375,16 @@
},
/obj/structure/machinery/computer/aifixer,
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/bigredv2/caves/eta/research)
"bAr" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/caves/eta/research)
"bAs" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/caves/eta/research)
"bAu" = (
/obj/structure/surface/table,
@@ -24569,64 +18396,47 @@
dir = 8
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/eta/storage)
"bAw" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Eta Lab Server"
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/eta/storage)
"bAx" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/eta/storage)
"bAy" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/eta/storage)
"bAz" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/closet/secure_closet/security,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bAA" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bAB" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"bAC" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bAD" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -24635,50 +18445,33 @@
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Eta Lab Director's Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/research)
"bAE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/bigredv2/caves/eta/research)
"bAF" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/bigredv2/caves/eta/research)
"bAH" = (
/obj/structure/lamarr,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/bigredv2/caves/eta/research)
"bAI" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/caves/eta/research)
"bAJ" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/caves/eta/research)
"bAK" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -24689,86 +18482,59 @@
/turf/open/floor/plating,
/area/bigredv2/caves/eta/research)
"bAM" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_12"
- },
+/turf/open/mars_cave/mars_cave_12,
/area/bigredv2/caves/eta/research)
"bAN" = (
/obj/structure/machinery/telecomms/server,
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/caves/eta/storage)
"bAO" = (
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/eta/storage)
"bAP" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/eta/storage)
"bAQ" = (
/obj/structure/closet/secure_closet/security/science,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bAR" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/bigredv2/caves/eta/research)
"bAS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/bigredv2/caves/eta/research)
"bAT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/bigredv2/caves/eta/research)
"bAU" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/caves/eta/research)
"bAV" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/caves/eta/research)
"bAW" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/caves/eta/research)
"bAX" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/caves/eta/research)
"bAY" = (
/obj/structure/machinery/light{
@@ -24781,141 +18547,88 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/drip,
/obj/effect/decal/cleanable/blood/gibs/down,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bBa" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/research)
"bBb" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/bigredv2/caves/eta/xenobiology)
"bBc" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/caves/eta/xenobiology)
"bBd" = (
/obj/structure/target,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/caves/eta/xenobiology)
"bBe" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/caves/eta/xenobiology)
"bBf" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/bigredv2/caves/eta/xenobiology)
"bBg" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"bBh" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/bigredv2/caves/eta/research)
"bBj" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/caves/eta/research)
"bBk" = (
/obj/structure/filingcabinet/medical,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/caves/eta/research)
"bBl" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/caves/eta/research)
"bBn" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/biogenerator,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/caves/eta/research)
"bBo" = (
/obj/structure/machinery/seed_extractor,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/bigredv2/caves/eta/research)
"bBp" = (
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/bigredv2/caves/eta/research)
"bBq" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/caves/eta/xenobiology)
"bBr" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"bBs" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"bBt" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/caves/eta/xenobiology)
"bBv" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -24925,66 +18638,44 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper Eta Lab Maintenance Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/storage)
"bBA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bBB" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bBC" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/bigredv2/caves/eta/research)
"bBH" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Eta Lab Cell"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/research)
"bBI" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/bigredv2/caves/eta/research)
"bBJ" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/bigredv2/caves/eta/xenobiology)
"bBK" = (
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/caves/eta/xenobiology)
"bBL" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/bigredv2/caves/eta/xenobiology)
"bBN" = (
/obj/structure/closet/firecloset,
@@ -24995,269 +18686,175 @@
/turf/open/floor/plating,
/area/bigredv2/caves/eta/storage)
"bBP" = (
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/research)
"bBQ" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/caves/eta/research)
"bBR" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/caves/eta/research)
"bBS" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
dir = 1;
name = "\improper Eta Lab Cell"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/xenobiology)
"bBT" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"bBU" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"bBV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bBW" = (
/obj/item/tool/pen,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bBX" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/caves/eta/research)
"bBY" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/caves/eta/research)
"bBZ" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bCa" = (
/obj/structure/xenoautopsy/tank,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/caves/eta/xenobiology)
"bCb" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/east,
/area/bigredv2/caves/eta/xenobiology)
"bCc" = (
/obj/structure/machinery/computer/cameras,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/east,
/area/bigredv2/caves/eta/xenobiology)
"bCd" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/east,
/area/bigredv2/caves/eta/xenobiology)
"bCe" = (
/obj/structure/surface/table,
/obj/item/alienjar,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/east,
/area/bigredv2/caves/eta/xenobiology)
"bCf" = (
/obj/structure/surface/table,
/obj/structure/xenoautopsy,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/east,
/area/bigredv2/caves/eta/xenobiology)
"bCg" = (
/obj/structure/surface/table,
/obj/item/oldresearch/Blood,
/obj/item/oldresearch/Blood,
/obj/item/tool/pen,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/east,
/area/bigredv2/caves/eta/xenobiology)
"bCi" = (
/obj/structure/closet/l3closet/scientist,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/bigredv2/caves/eta/xenobiology)
"bCj" = (
/obj/structure/closet/l3closet/scientist,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/bigredv2/caves/eta/xenobiology)
"bCk" = (
/obj/structure/closet/l3closet/scientist,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/bigredv2/caves/eta/xenobiology)
"bCl" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"bCm" = (
/obj/structure/surface/table,
/obj/structure/machinery/faxmachine,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/caves/eta/research)
"bCn" = (
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/caves/eta/research)
"bCo" = (
/obj/structure/xenoautopsy/tank/broken,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/caves/eta/xenobiology)
"bCp" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"bCq" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/bigredv2/caves/eta/xenobiology)
"bCr" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/bigredv2/caves/eta/xenobiology)
"bCs" = (
/obj/effect/landmark/good_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bCt" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/caves/eta/research)
"bCu" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bCv" = (
/obj/structure/surface/table,
/obj/structure/machinery/reagentgrinder,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/caves/eta/research)
"bCw" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/caves/eta/research)
"bCx" = (
/obj/structure/xenoautopsy/tank/hugger,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/caves/eta/xenobiology)
"bCy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"bCz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -25266,18 +18863,14 @@
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Eta Lab Xenobiology Lab"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/xenobiology)
"bCA" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"bCC" = (
/obj/structure/surface/table,
@@ -25285,10 +18878,7 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/caves/eta/research)
"bCE" = (
/obj/item/stack/sheet/xenochitin,
@@ -25302,17 +18892,12 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"bCI" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/caves/eta/research)
"bCJ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -25332,171 +18917,112 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/caves/eta/xenobiology)
"bCN" = (
/obj/structure/closet/crate/secure,
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/xenobiology)
"bCO" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/bigredv2/caves/eta/xenobiology)
"bCP" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/caves/eta/xenobiology)
"bCQ" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/bigredv2/caves/eta/xenobiology)
"bCR" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Eta Lab"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/living)
"bCS" = (
/obj/structure/machinery/autolathe,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/caves/eta/research)
"bCT" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/caves/eta/research)
"bCU" = (
/obj/structure/surface/table,
/obj/item/tool/pickaxe/plasmacutter,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/caves/eta/research)
"bCV" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"bCW" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/xenobiology)
"bCX" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/caves/eta/living)
"bCY" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"bCZ" = (
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bDa" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/caves/eta/research)
"bDb" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/caves/eta/xenobiology)
"bDc" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/xenobiology)
"bDd" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/caves/eta/xenobiology)
"bDe" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/bigredv2/caves/eta/xenobiology)
"bDf" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bDg" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/bigredv2/caves/eta/research)
"bDh" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/teleport/station,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bDi" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"bDj" = (
/obj/structure/machinery/computer/WYresearch,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"bDk" = (
/obj/structure/machinery/light{
@@ -25510,33 +19036,23 @@
},
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/bigredv2/caves/eta/xenobiology)
"bDm" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/caves/eta/living)
"bDn" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"bDo" = (
/obj/structure/bookcase/manuals/research_and_development,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bDp" = (
/obj/structure/machinery/light{
@@ -25546,9 +19062,7 @@
/obj/item/disk/nuclear,
/obj/item/weapon/gun/pistol/mod88,
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bDq" = (
/obj/structure/machinery/light{
@@ -25557,9 +19071,7 @@
/obj/structure/closet/cabinet,
/obj/item/clothing/accessory/armband,
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bDr" = (
/obj/structure/machinery/light{
@@ -25568,41 +19080,29 @@
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/caves/eta/xenobiology)
"bDs" = (
/obj/structure/machinery/alarm{
dir = 4;
pixel_x = -30
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/caves/eta/living)
"bDt" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/good_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"bDu" = (
/obj/structure/surface/table,
/obj/item/book/manual/nuclear,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bDv" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bDx" = (
/obj/structure/machinery/light{
@@ -25618,42 +19118,32 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bDA" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/pod/old{
name = "Personal Computer"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bDB" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bDC" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bDD" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bDE" = (
/obj/item/trash/kepler,
@@ -25668,40 +19158,28 @@
"bDG" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"bDH" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bDJ" = (
/obj/structure/showcase,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet6-2"
- },
+/turf/open/floor/carpet6_2/west,
/area/bigredv2/caves/eta/living)
"bDK" = (
/obj/structure/showcase{
desc = "A stand with a plastic display of some kind of weird machine.";
icon_state = "coinpress0"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet10-8"
- },
+/turf/open/floor/carpet10_8/west,
/area/bigredv2/caves/eta/living)
"bDL" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bDM" = (
/obj/structure/surface/table,
@@ -25710,9 +19188,7 @@
/area/bigredv2/caves/eta/living)
"bDN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bDO" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -25720,31 +19196,23 @@
dir = 1;
name = "\improper Eta Lab Research Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/living)
"bDP" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
dir = 1;
name = "\improper Eta Lab Canteen"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/living)
"bDQ" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/eta/living)
"bDR" = (
/obj/structure/toilet{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/eta/living)
"bDS" = (
/obj/structure/machinery/light{
@@ -25754,48 +19222,32 @@
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/xenobiology)
"bDT" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/caves/eta/living)
"bDU" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/caves/eta/living)
"bDV" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/caves/eta/living)
"bDW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/caves/eta/living)
"bDX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bEc" = (
/obj/structure/machinery/light,
@@ -25803,18 +19255,14 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bEd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"bEe" = (
/obj/structure/sink{
@@ -25823,82 +19271,56 @@
pixel_y = 2
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/eta/living)
"bEf" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/eta/xenobiology)
"bEg" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/caves/eta/xenobiology)
"bEh" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bEi" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/caves/eta/living)
"bEj" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Eta Lab Restroom"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/living)
"bEk" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/eta/xenobiology)
"bEl" = (
/obj/structure/showcase{
icon_state = "mechfab1"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet5-1"
- },
+/turf/open/floor/carpet5_1/west,
/area/bigredv2/caves/eta/living)
"bEm" = (
/obj/structure/showcase{
icon_state = "bus"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet9-4"
- },
+/turf/open/floor/carpet9_4/west,
/area/bigredv2/caves/eta/living)
"bEn" = (
/obj/structure/bookcase/manuals/medical,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bEo" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/caves/eta/living)
"bEp" = (
/obj/structure/sink{
@@ -25906,58 +19328,41 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/eta/living)
"bEq" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/caves/eta/living)
"bEr" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_22"
- },
+/turf/open/mars_cave/mars_cave_22,
/area/bigredv2/caves/eta/xenobiology)
"bEt" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bEv" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bEw" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bEx" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/bigredv2/caves/eta/living)
"bEy" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bEz" = (
/obj/structure/bed/chair/comfy/orange,
@@ -25966,17 +19371,12 @@
"bEA" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bEB" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/bigredv2/caves/eta/research)
"bEC" = (
/obj/structure/machinery/light,
@@ -25984,24 +19384,18 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bED" = (
/obj/structure/bed,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bEE" = (
/obj/structure/surface/table,
/obj/item/spacecash/c1000,
/obj/item/spacecash/c1000,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"bEF" = (
/obj/structure/surface/table,
@@ -26013,10 +19407,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/caves/eta/living)
"bEH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26025,9 +19416,7 @@
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Eta Lab Relaxation"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/living)
"bEI" = (
/obj/structure/bed/chair/comfy/orange{
@@ -26044,19 +19433,14 @@
dir = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"bEK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/caves/eta/living)
"bEL" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26064,19 +19448,13 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/caves/eta/living)
"bEM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/caves/eta/living)
"bEN" = (
/obj/structure/machinery/vending/coffee,
@@ -26084,38 +19462,28 @@
/area/bigredv2/caves/eta/living)
"bEO" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bEP" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bEQ" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bER" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"bES" = (
/obj/structure/machinery/light,
/turf/open/floor,
/area/bigredv2/caves/eta/living)
"bET" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/office_complex)
"bFw" = (
/turf/closed/wall/solaris/reinforced,
@@ -26127,22 +19495,15 @@
/turf/open/floor,
/area/bigred/ground/garage_workshop)
"bGC" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/outside/n)
"bGL" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/lz2_south_cas)
"bII" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"bJz" = (
/obj/structure/bed/chair{
@@ -26150,15 +19511,10 @@
pixel_x = -9;
pixel_y = 13
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"bJQ" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/n)
"bJS" = (
/obj/structure/largecrate/random/barrel/green,
@@ -26168,41 +19524,27 @@
"bKY" = (
/obj/structure/fence,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/outside/filtration_cave_cas)
"bLA" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_se)
"bMa" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/pistol/mod88,
/obj/item/weapon/gun/pistol/mod88,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/admin_building)
"bMf" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/filtration_plant)
"bMz" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/ne)
"bNl" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/lambda/xenobiology)
"bNA" = (
/obj/structure/surface/table,
@@ -26211,48 +19553,34 @@
/area/bigredv2/outside/dorms)
"bNE" = (
/obj/structure/closet/secure_closet/brig,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bOZ" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"bPy" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"bQb" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/outside/lz2_west_cas)
"bQe" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor,
/area/bigredv2/outside/admin_building)
"bQh" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/n)
"bQi" = (
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/virology)
"bQG" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves_lambda)
"bRd" = (
/obj/structure/cable{
@@ -26262,9 +19590,7 @@
/area/bigredv2/oob)
"bRm" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/lz1_telecomm_cas)
"bRC" = (
/obj/effect/landmark/nightmare{
@@ -26282,16 +19608,11 @@
pixel_y = -8
},
/obj/item/tool/pickaxe/drill,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"bRV" = (
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"bSw" = (
/obj/structure/cable{
@@ -26300,19 +19621,13 @@
/obj/structure/cable{
icon_state = "4-10"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"bSy" = (
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"bTm" = (
/obj/structure/surface/table,
@@ -26320,15 +19635,10 @@
/obj/item/device/flashlight/lamp{
pixel_y = 15
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"bTW" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_se)
"bVX" = (
/obj/structure/barricade/wooden{
@@ -26337,22 +19647,14 @@
health = 25000
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves_north)
"bWk" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/filtration_plant)
"bWl" = (
/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigred/ground/garage_workshop)
"bXe" = (
/obj/structure/closet/crate/freezer/rations,
@@ -26365,10 +19667,7 @@
/area/bigredv2/outside/cargo)
"bYW" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bZp" = (
/obj/structure/bed/chair{
@@ -26379,24 +19678,16 @@
"bZJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/suit/radiation,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/outside/engineering)
"bZL" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/research)
"caD" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/s)
"caN" = (
/obj/structure/surface/table,
@@ -26413,24 +19704,16 @@
layer = 2.5;
pixel_x = -1
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/bigredv2/outside/telecomm/warehouse)
"ccP" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/bomb_supply,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"cdA" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/outside/lz2_west_cas)
"cec" = (
/obj/structure/bed,
@@ -26441,89 +19724,63 @@
/obj/effect/landmark/corpsespawner/ua_riot,
/obj/item/weapon/gun/rifle/m41a/training,
/obj/effect/spawner/gibspawner/human,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"ceA" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/e)
"cfr" = (
/obj/item/explosive/grenade/baton{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"cgt" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"cgO" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/telecomm/n_cave)
"chq" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_lambda)
"ciG" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/n)
"ciY" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"cla" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"clB" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigred/ground/garage_workshop)
"cmC" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -1;
pixel_y = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"cmG" = (
/obj/item/ore/iron{
pixel_x = 6;
pixel_y = 9
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"cnk" = (
/obj/structure/platform/kutjevo/rock{
@@ -26541,9 +19798,7 @@
/obj/structure/platform_decoration/kutjevo/rock{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/space)
"cns" = (
/obj/effect/landmark/nightmare{
@@ -26556,62 +19811,43 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"coT" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"cpc" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_se)
"cpQ" = (
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"cqj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"cqZ" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"crd" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/bigredv2/outside/chapel)
"crl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port_lz2)
"crv" = (
/obj/structure/surface/table,
@@ -26619,84 +19855,57 @@
pixel_x = 3;
pixel_y = 12
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"cry" = (
/obj/structure/surface/table/reinforced,
/obj/item/restraint/handcuffs,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/lambda_cave_cas)
"crQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_virology)
"csB" = (
/obj/structure/prop/dam/crane/damaged,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"csC" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"csE" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/outside/lz1_telecomm_cas)
"ctT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"cud" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"cuG" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/chapel)
"cvi" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/tunnel{
id = "hole2"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"cxi" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/bigredv2/caves/eta/xenobiology)
"cyv" = (
/obj/structure/machinery/prop/almayer/computer/PC{
@@ -26712,21 +19921,14 @@
/area/bigredv2/outside/admin_building)
"czV" = (
/obj/item/tool/pickaxe,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"cAf" = (
/obj/item/stack/sheet/wood,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_north)
"cAs" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_cave_cas)
"cAN" = (
/obj/effect/decal/cleanable/dirt,
@@ -26737,48 +19939,33 @@
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"cCr" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves_sw)
"cCu" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"cDx" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper Abandoned Mining Storage"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"cGc" = (
/obj/structure/machinery/botany,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"cGi" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/red/west,
/area/bigredv2/outside/marshal_office)
"cGT" = (
/obj/effect/decal/cleanable/dirt,
@@ -26787,21 +19974,13 @@
pixel_x = -32;
start_charge = 0
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"cGZ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/outside/lz1_north_cas)
"cHn" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/lz2_south_cas)
"cHy" = (
/obj/item/device/flashlight,
@@ -26814,15 +19993,10 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/lz2_cave)
"cHH" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/ne)
"cHI" = (
/obj/structure/closet/crate,
@@ -26830,9 +20004,7 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"cIP" = (
/obj/item/paper/bigred/smuggling,
@@ -26851,9 +20023,7 @@
dir = 1;
name = "\improper Operations"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"cJd" = (
/turf/open/space/basic,
@@ -26864,26 +20034,18 @@
pixel_x = 7;
pixel_y = 7
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"cJA" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"cJG" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/caves_north)
"cKu" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"cLq" = (
/obj/structure/bed/chair{
@@ -26897,24 +20059,18 @@
"cLZ" = (
/obj/structure/closet/secure_closet/brig,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"cNb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"cNH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/bar)
"cOa" = (
/obj/structure/bed/chair{
@@ -26922,14 +20078,10 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"cOl" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_research)
"cOt" = (
/obj/structure/sign/poster/clf,
@@ -26937,40 +20089,29 @@
/area/bigredv2/caves/mining)
"cOu" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"cOJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/research)
"cPg" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/n)
"cPZ" = (
/obj/structure/window/framed/solaris/reinforced,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"cQi" = (
/obj/effect/landmark/nightmare{
insert_tag = "medbay-v3"
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"cQO" = (
/obj/effect/decal/cleanable/dirt,
@@ -26989,10 +20130,7 @@
"cRP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"cSu" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -27005,9 +20143,7 @@
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"cVd" = (
/obj/effect/decal/cleanable/dirt,
@@ -27024,9 +20160,7 @@
"cVL" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_se)
"cVY" = (
/turf/open/mars,
@@ -27035,9 +20169,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"cYy" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -27049,14 +20181,10 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/hydroponics)
"cYJ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz2_west_cas)
"cZj" = (
/obj/structure/filingcabinet,
@@ -27065,15 +20193,11 @@
/area/bigredv2/caves/mining)
"cZB" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"daf" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"daB" = (
/obj/structure/surface/table/reinforced,
@@ -27081,10 +20205,7 @@
phone_category = "Lambda Labs";
phone_id = "Xenobiology"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/east,
/area/bigredv2/caves/lambda/xenobiology)
"dbi" = (
/turf/closed/wall/solaris/reinforced/hull,
@@ -27093,22 +20214,16 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"dgy" = (
/obj/structure/barricade/handrail/wire{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/c)
"dgH" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/caves_north)
"dhN" = (
/obj/structure/window/framed/solaris,
@@ -27122,16 +20237,12 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"dij" = (
/obj/structure/fence,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"din" = (
/obj/structure/machinery/blackbox_recorder,
@@ -27139,31 +20250,21 @@
pixel_x = -6;
pixel_y = 10
},
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/admin_building)
"djo" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/lambda_cave_cas)
"dka" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/n)
"dkY" = (
/obj/structure/platform,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"dmB" = (
/obj/item/tool/pickaxe,
@@ -27175,10 +20276,7 @@
/area/bigredv2/caves/eta/storage)
"dnV" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/filtration_plant)
"dot" = (
/obj/structure/barricade/wooden{
@@ -27190,23 +20288,17 @@
/area/bigredv2/outside/cargo)
"dov" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"dqy" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"drq" = (
/obj/item/weapon/twohanded/folded_metal_chair,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"drx" = (
/obj/structure/filingcabinet{
@@ -27219,17 +20311,13 @@
pixel_x = -8;
pixel_y = 18
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"drT" = (
/obj/structure/disposalpipe/broken{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"dsh" = (
/obj/effect/decal/cleanable/blood,
@@ -27241,16 +20329,11 @@
dir = 8
},
/obj/item/ammo_magazine/pistol/m1911,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"dsm" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"dsy" = (
/obj/structure/platform,
@@ -27261,10 +20344,7 @@
/area/bigredv2/outside/engineering)
"dtf" = (
/obj/structure/prop/server_equipment/broken,
-/turf/open/floor{
- dir = 10;
- icon_state = "podhatch"
- },
+/turf/open/floor/podhatch/southwest,
/area/bigredv2/caves/lambda/research)
"dtX" = (
/obj/structure/barricade/wooden{
@@ -27272,9 +20352,7 @@
dir = 4;
health = 25000
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/caves_north)
"duo" = (
/obj/effect/landmark/corpsespawner/colonist/burst,
@@ -27296,15 +20374,11 @@
pixel_y = 8
},
/obj/item/ore/coal,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"dvC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"dws" = (
/obj/effect/decal/warning_stripes{
@@ -27312,10 +20386,7 @@
pixel_x = -1;
pixel_y = 1
},
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/bigredv2/outside/telecomm/warehouse)
"dwL" = (
/obj/structure/bed/chair{
@@ -27323,9 +20394,7 @@
dir = 1;
pixel_y = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"dwO" = (
/obj/structure/machinery/light/small{
@@ -27338,9 +20407,7 @@
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"dxV" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_sw)
"dyv" = (
/turf/open/mars,
@@ -27350,51 +20417,36 @@
dir = 1
},
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/engineering)
"dzY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"dAd" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/lambda_cave_cas)
"dAi" = (
/obj/effect/landmark/objective_landmark/close,
/turf/open/floor/plating,
/area/bigredv2/outside/lz2_south_cas)
"dAX" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"dBa" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_y = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"dBm" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"dBE" = (
/obj/item/trash/cigbutt/cigarbutt{
@@ -27407,10 +20459,7 @@
icon_state = "map";
name = "Pipe manifold"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"dBU" = (
/obj/structure/barricade/handrail{
@@ -27418,10 +20467,7 @@
layer = 3.01;
pixel_y = 9
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"dCb" = (
/obj/effect/landmark/corpsespawner/security/marshal,
@@ -27434,10 +20480,7 @@
icon_state = "1-5"
},
/obj/item/clothing/head/helmet/marine/veteran/ua_riot,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"dCA" = (
/obj/effect/decal/cleanable/dirt,
@@ -27457,14 +20500,10 @@
"dEr" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_se)
"dEV" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/lz2_south_cas)
"dFz" = (
/obj/item/tool/pickaxe{
@@ -27474,9 +20513,7 @@
/obj/effect/decal/cleanable/blood{
icon_state = "xgib1"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"dFL" = (
/obj/effect/landmark/corpsespawner/security,
@@ -27489,9 +20526,7 @@
/obj/item/stack/sheet/wood{
pixel_y = -8
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"dHr" = (
/obj/effect/decal/cleanable/blood{
@@ -27502,17 +20537,13 @@
/area/bigredv2/caves/mining)
"dHH" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"dIb" = (
/turf/open/floor,
/area/bigredv2/caves)
"dIz" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_8"
- },
+/turf/open/mars_cave/mars_cave_8,
/area/bigredv2/caves_virology)
"dIG" = (
/obj/structure/machinery/light{
@@ -27524,19 +20555,13 @@
/obj/item/ore/uranium{
desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"dIH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port_lz2)
"dJc" = (
/obj/structure/surface/table,
@@ -27546,25 +20571,16 @@
"dJr" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/caves_lambda)
"dJM" = (
/obj/structure/surface/rack,
/obj/item/storage/pouch/shotgun,
/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"dKk" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/lambda_cave_cas)
"dKo" = (
/obj/item/ore/iron{
@@ -27581,9 +20597,7 @@
"dKR" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_lambda)
"dLS" = (
/obj/effect/decal/cleanable/dirt,
@@ -27595,21 +20609,14 @@
/obj/structure/window{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"dNd" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"dNn" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigred/ground/garage_workshop)
"dNr" = (
/obj/structure/machinery/light{
@@ -27618,10 +20625,7 @@
/obj/structure/machinery/firealarm{
dir = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"dNX" = (
/obj/effect/landmark/crap_item,
@@ -27634,75 +20638,52 @@
pixel_x = -4;
pixel_y = 7
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"dOZ" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/outside/n)
"dPb" = (
/obj/item/tool/pickaxe/drill,
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"dPs" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/bigredv2/caves/eta/xenobiology)
"dPC" = (
/obj/structure/barricade/wooden{
dir = 1;
pixel_y = 7
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves/mining)
"dPJ" = (
/turf/closed/wall/r_wall/unmeltable,
/area/bigredv2/outside/c)
"dQw" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_sw)
"dQF" = (
/obj/effect/spawner/random/tool,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/mining)
"dQR" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/n)
"dQZ" = (
/obj/structure/closet/toolcloset,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/filtration_plant)
"dRc" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Lambda Checkpoint"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/lambda_cave_cas)
"dSg" = (
/obj/effect/landmark/crap_item,
@@ -27714,9 +20695,7 @@
/area/bigredv2/caves/mining)
"dTi" = (
/obj/item/stack/sheet/wood,
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves_north)
"dTB" = (
/turf/closed/wall/solaris/reinforced,
@@ -27726,74 +20705,50 @@
pixel_x = -8;
pixel_y = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"dUz" = (
/obj/effect/landmark/corpsespawner/miner,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves/mining)
"dVp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port_lz2)
"dVA" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/outside/lz2_south_cas)
"dVM" = (
/obj/structure/largecrate/supply/supplies,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"dWd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"dWl" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/engineering)
"dXs" = (
/obj/item/tool/pickaxe{
pixel_y = 12
},
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/mining)
"dXu" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/eta)
"dXK" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/outside/n)
"dZO" = (
/obj/effect/decal/cleanable/blood{
@@ -27803,9 +20758,7 @@
pixel_x = 12;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/caves/mining)
"eaW" = (
/obj/structure/disposalpipe/segment,
@@ -27815,35 +20768,23 @@
dir = 1
},
/obj/structure/pipes/valve/open,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"eaZ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "yellowfull"
- },
+/turf/open/floor/yellowfull,
/area/bigredv2/outside/hydroponics)
"ebr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/bigredv2/outside/engineering)
"ebZ" = (
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/storage)
"eci" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/outside/lz1_telecomm_cas)
"ecy" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -27856,24 +20797,17 @@
/obj/item/trash/cigbutt{
pixel_x = 7
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/caves/mining)
"ecK" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_east)
"ecX" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/largecrate,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigred/ground/garage_workshop)
"eeI" = (
/obj/structure/machinery/light,
@@ -27885,26 +20819,19 @@
icon_state = "pottedplant_10";
pixel_y = 11
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"efh" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
/obj/structure/medical_supply_link,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/caves/eta/research)
"efK" = (
/obj/structure/machinery/computer/crew{
density = 0;
pixel_y = 16
},
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"egI" = (
/obj/item/ore,
@@ -27912,17 +20839,12 @@
pixel_x = 13;
pixel_y = 12
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"egL" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/engineering)
"egS" = (
/obj/structure/disposalpipe/segment,
@@ -27932,18 +20854,14 @@
/obj/effect/landmark/nightmare{
insert_tag = "filtration_restored"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/s)
"eju" = (
/obj/item/ore{
pixel_x = 9;
pixel_y = 2
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"ejP" = (
/turf/closed/wall/solaris,
@@ -27958,37 +20876,25 @@
},
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/miner,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"elh" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/outside/n)
"els" = (
/obj/structure/ore_box,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"elM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"emC" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"ene" = (
/obj/structure/surface/table,
@@ -28018,70 +20924,46 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{
name = "\improper Dormitories Restroom"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"eoU" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "w-y2"
- },
+/turf/open/floor/almayer/w_y2/north,
/area/bigredv2/outside/admin_building)
"epe" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/eta)
"eql" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves/mining)
"eqr" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{
dir = 1;
name = "\improper Dormitories Restroom"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"erA" = (
/obj/item/ore,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"erG" = (
/obj/effect/decal/hefa_cult_decals/d32,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"erJ" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/eta)
"erX" = (
/obj/structure/machinery/light/small,
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/caves/mining)
"esS" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/window,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"eup" = (
/obj/structure/bed/chair,
@@ -28092,14 +20974,10 @@
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"euF" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/lz2_south_cas)
"euO" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_22"
- },
+/turf/open/mars_cave/mars_cave_22,
/area/bigredv2/caves_research)
"euP" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -28108,50 +20986,33 @@
/obj/structure/closet/crate/miningcar/yellow{
layer = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"evA" = (
/obj/structure/platform_decoration/shiva{
dir = 8
},
/obj/structure/platform_decoration/shiva,
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"evX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"ewv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/curtain/red,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/engineering)
"exc" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigred/ground/garage_workshop)
"ezQ" = (
/obj/structure/largecrate/supply/supplies/flares,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"eAU" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/eta)
"eBn" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -28159,17 +21020,13 @@
pixel_y = 15
},
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"eBL" = (
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"eDQ" = (
/obj/structure/closet/secure_closet/engineering_personal,
@@ -28183,9 +21040,7 @@
"eEm" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/queen_spawn,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"eEy" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -28193,31 +21048,21 @@
/area/bigredv2/outside/lz2_west_cas)
"eER" = (
/obj/structure/machinery/power/port_gen/pacman/super,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"eFh" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_lambda)
"eFr" = (
/obj/effect/decal/warning_stripes{
icon_state = "S";
pixel_y = -1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/red/north,
/area/bigredv2/outside/marshal_office)
"eGa" = (
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves_research)
"eGb" = (
/obj/structure/barricade/wooden{
@@ -28228,40 +21073,26 @@
/obj/item/weapon/twohanded/spear{
pixel_x = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"eGf" = (
/obj/structure/machinery/light/double,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"eGM" = (
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/outside/engineering)
"eHA" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"eIN" = (
/obj/structure/machinery/power/port_gen/pacman,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"eJE" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/breakroom)
"eJU" = (
/obj/structure/surface/table,
@@ -28270,16 +21101,11 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"eKm" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"eKU" = (
/obj/structure/machinery/door_control{
@@ -28288,27 +21114,19 @@
pixel_x = 30;
throw_range = 15
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"eKZ" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras/wooden_tv{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/lambda_cave_cas)
"eLp" = (
/obj/structure/closet/secure_closet/brig,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"eLq" = (
/obj/structure/surface/rack,
@@ -28320,21 +21138,15 @@
/turf/open/floor,
/area/bigredv2/outside/cargo)
"eLQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/outside/filtration_plant)
"eMX" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves_lambda)
"eNe" = (
/obj/item/clothing/under/darkred,
/obj/structure/surface/rack,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"eNx" = (
/obj/effect/landmark/nightmare{
@@ -28344,26 +21156,18 @@
/area/bigredv2/caves)
"eNN" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"eOd" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_telecomm_cas)
"ePk" = (
/obj/structure/prop/server_equipment/broken,
/turf/open/floor/greengrid,
/area/bigredv2/caves/lambda/research)
"eRc" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/filtration_plant)
"eRe" = (
/obj/structure/pipes/vents/pump{
@@ -28372,37 +21176,26 @@
/turf/open/floor,
/area/bigredv2/outside/cargo)
"eRI" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/c)
"eSm" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"eSu" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"eSN" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"eTj" = (
/obj/structure/reagent_dispensers/fueltank/gas,
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/c)
"eUs" = (
/obj/effect/decal/cleanable/dirt,
@@ -28427,23 +21220,14 @@
/obj/structure/cable{
icon_state = "9-10"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"eVM" = (
/obj/structure/largecrate/random/barrel/true_random,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"eWd" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port_lz2)
"eWo" = (
/obj/effect/decal/cleanable/dirt,
@@ -28451,10 +21235,7 @@
/area/bigredv2/outside/filtration_plant)
"eWv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/telecomm/n_cave)
"eWy" = (
/obj/effect/decal/cleanable/dirt,
@@ -28465,9 +21246,7 @@
"eWB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/recharge_station,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"eWE" = (
/obj/structure/barricade/wooden{
@@ -28475,17 +21254,12 @@
dir = 4;
health = 25000
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/caves_north)
"eWG" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"eWP" = (
/obj/structure/surface/table,
@@ -28500,18 +21274,13 @@
"eYy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"eYA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/e)
"eYH" = (
/obj/structure/machinery/camera/autoname{
@@ -28523,9 +21292,7 @@
"eYK" = (
/obj/item/reagent_container/spray/cleaner,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "floor4"
- },
+/turf/open/floor/floor4,
/area/bigredv2/outside/cargo)
"eZw" = (
/obj/effect/decal/warning_stripes{
@@ -28538,9 +21305,7 @@
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"fbf" = (
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/outside/sw)
"fbB" = (
/obj/effect/landmark/nightmare{
@@ -28552,37 +21317,25 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/firecloset,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"fdr" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_sw)
"fdy" = (
/turf/open/floor,
/area/bigredv2/caves/eta/living)
"feN" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/space_port_lz2)
"feS" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_sw)
"fgD" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Lambda Lab Server Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/research)
"fgE" = (
/obj/effect/decal/cleanable/dirt,
@@ -28590,24 +21343,17 @@
/obj/effect/landmark/static_comms/net_two{
broken_on_spawn = 1
},
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/engineering)
"fhy" = (
/obj/structure/bed/chair/comfy/blue{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/bigredv2/outside/admin_building)
"fhI" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves_north)
"fin" = (
/turf/open/floor/plating,
@@ -28617,42 +21363,28 @@
/obj/structure/machinery/computer/objective{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"fjF" = (
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/mars{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars/mars_dirt_6,
/area/bigredv2/outside/w)
"fjP" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves)
"fmd" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"fmn" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves_virology)
"fmL" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/camera/oldcamera,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"fnh" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -28660,31 +21392,23 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"fni" = (
/obj/structure/machinery/door/airlock/almayer/medical{
name = "\improper Medical Clinic Morgue"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"fnv" = (
/obj/structure/bed/chair/comfy,
/turf/open/floor/carpet,
/area/bigredv2/caves/lambda/breakroom)
"fnO" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"foB" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_22"
- },
+/turf/open/mars_cave/mars_cave_22,
/area/bigredv2/caves_east)
"fpa" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -28694,45 +21418,30 @@
/turf/closed/wall/wood,
/area/bigredv2/caves/mining)
"fsT" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/n)
"fsY" = (
-/turf/open/mars{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars/mars_dirt_6,
/area/bigredv2/outside/space_port_lz2)
"ftY" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/sw)
"fus" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/lz2_south_cas)
"fvb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"fvu" = (
/obj/structure/machinery/light/double,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/outside/lz2_south_cas)
"fwa" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_virology)
"fwD" = (
/obj/structure/barricade/wooden{
@@ -28740,10 +21449,7 @@
dir = 4;
health = 25000
},
-/turf/open/floor{
- dir = 8;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/west,
/area/bigredv2/outside/cargo)
"fwO" = (
/obj/structure/prop/almayer/cannon_cables{
@@ -28754,9 +21460,7 @@
desc = "A bewildering tangle of machinery and pipes.";
name = "\improper coolant feed"
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/bigredv2/oob)
"fwV" = (
/obj/structure/surface/table,
@@ -28766,39 +21470,26 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"fxn" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/bigredv2/oob)
"fxK" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/outside/lz1_telecomm_cas)
"fxZ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_lambda)
"fyp" = (
/obj/structure/machinery/power/apc,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/storage)
"fyz" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"fyO" = (
/obj/structure/transmitter/colony_net{
@@ -28807,29 +21498,21 @@
phone_id = "Clinic Labs";
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"fyZ" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/camera,
/obj/structure/machinery/light/small,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/lambda_cave_cas)
"fBc" = (
/obj/structure/pipes/standard/tank/phoron,
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"fBo" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"fCb" = (
/turf/open/floor,
@@ -28839,58 +21522,39 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Greenhouse Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/hydroponics)
"fDr" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/caves/eta/research)
"fEv" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
name = "\improper Engine Reactor"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/engineering)
"fEE" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/outside/ne)
"fFG" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"fFO" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/space_port_lz2)
"fGK" = (
/obj/effect/decal/warning_stripes{
icon_state = "E-corner"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves_north)
"fGN" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/caves_research)
"fHw" = (
/obj/structure/barricade/handrail,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"fHF" = (
/obj/effect/landmark/corpsespawner/miner,
@@ -28899,23 +21563,16 @@
icon_state = "gib6"
},
/obj/item/weapon/baseballbat,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"fJH" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/eta)
"fJW" = (
/obj/structure/window,
/obj/structure/surface/table/woodentable,
/obj/item/newspaper,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"fKO" = (
/obj/structure/barricade/wooden{
@@ -28924,49 +21581,33 @@
health = 25000
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_north)
"fKW" = (
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/caves/eta/living)
"fLj" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_virology)
"fLl" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/engineering)
"fLA" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"fLR" = (
/obj/item/tool/pickaxe,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"fMl" = (
/obj/item/device/flashlight/lantern,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"fML" = (
/obj/effect/decal/cleanable/dirt,
@@ -28979,9 +21620,7 @@
pixel_x = -9;
pixel_y = 13
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"fMZ" = (
/obj/structure/machinery/light{
@@ -28992,14 +21631,10 @@
phone_id = "Surgery";
pixel_y = 24
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"fOc" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves_virology)
"fOo" = (
/obj/effect/decal/warning_stripes{
@@ -29015,23 +21650,16 @@
pixel_x = 14;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"fOx" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"fOK" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"fOM" = (
/obj/effect/decal/warning_stripes{
@@ -29042,10 +21670,7 @@
/area/bigredv2/caves/mining)
"fPe" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/telecomm/n_cave)
"fPB" = (
/obj/effect/decal/cleanable/dirt,
@@ -29062,43 +21687,29 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"fRo" = (
/obj/item/tool/pickaxe/drill,
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/caves/mining)
"fRH" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_se)
"fRW" = (
/obj/structure/machinery/light/small,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"fSJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/space_port)
"fST" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"fSY" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/outside/lz2_west_cas)
"fTg" = (
/obj/effect/decal/warning_stripes{
@@ -29106,10 +21717,7 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"fUk" = (
/obj/structure/surface/table,
@@ -29118,19 +21726,14 @@
pixel_x = 7;
pixel_y = 12
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_plant)
"fUp" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
dir = 1;
name = "\improper Engine Reactor"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/engineering)
"fVt" = (
/obj/effect/decal/cleanable/dirt,
@@ -29144,10 +21747,7 @@
/turf/open/floor,
/area/bigredv2/outside/cargo)
"fWw" = (
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/bigredv2/caves/eta/xenobiology)
"fWY" = (
/obj/structure/window,
@@ -29157,26 +21757,19 @@
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/objective_landmark/close,
/obj/item/prop/magazine/book/starshiptroopers,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"fXm" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"fXR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/hydroponics)
"fYH" = (
/turf/closed/wall/solaris/reinforced/hull,
@@ -29185,10 +21778,7 @@
/obj/structure/closet/boxinggloves,
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"fZg" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -29196,20 +21786,13 @@
/obj/structure/sign/safety/hvac{
pixel_x = -32
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"fZm" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/eta)
"gad" = (
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"gan" = (
/obj/structure/platform_decoration/shiva{
@@ -29218,74 +21801,49 @@
/obj/structure/platform_decoration/shiva{
dir = 4
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"gbA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/ne)
"gcR" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves_sw)
"gda" = (
/turf/open/mars_cave,
/area/bigredv2/outside/lz1_telecomm_cas)
"gdx" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/engineering)
"gdK" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/n)
"gdN" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/mars,
/area/bigredv2/caves/eta/xenobiology)
"gej" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/bigredv2/outside/medical)
"geC" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/lz1_north_cas)
"gfX" = (
/obj/structure/sign/safety/hazard{
pixel_y = -32
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"ggC" = (
/obj/structure/surface/rack,
/obj/effect/landmark/good_item,
/obj/item/stack/sheet/metal/small_stack,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"ggW" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/east,
/area/bigredv2/caves/lambda/research)
"gio" = (
/turf/open/mars_cave,
@@ -29301,23 +21859,17 @@
/obj/structure/barricade/handrail/wire{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/s)
"gke" = (
/obj/item/tool/warning_cone,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/s)
"gki" = (
/obj/effect/decal/cleanable/blood{
icon_state = "xgib2"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"gkD" = (
/obj/structure/barricade/wooden{
@@ -29325,9 +21877,7 @@
dir = 4;
health = 25000
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"glB" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -29343,17 +21893,12 @@
/turf/open/floor/plating,
/area/bigredv2/outside/engineering)
"gmN" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_lambda)
"gnR" = (
/obj/structure/largecrate/random/barrel/red,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"gpg" = (
/turf/open/mars_cave,
@@ -29362,38 +21907,27 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ore/diamond,
/obj/effect/landmark/corpsespawner/miner,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"gpt" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"gpA" = (
/obj/structure/surface/table,
/obj/structure/machinery/light,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"gpB" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves_research)
"gpR" = (
/turf/open/gm/river,
/area/bigredv2/outside/c)
"gpT" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz2_south_cas)
"gqS" = (
/obj/structure/surface/table/reinforced/prison,
@@ -29413,18 +21947,14 @@
id = "viro";
name = "Virology Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/virology)
"gsW" = (
/obj/structure/platform/kutjevo/rock,
/obj/structure/platform/kutjevo/rock{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/space)
"gts" = (
/obj/structure/machinery/light{
@@ -29433,32 +21963,23 @@
/obj/structure/morgue{
dir = 2
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/bigredv2/outside/medical)
"gtX" = (
/turf/open/mars_cave,
/area/bigredv2/caves_se)
"guu" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"guM" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_research)
"gvd" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Lambda Lab Break Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/breakroom)
"gvI" = (
/obj/structure/transmitter/colony_net{
@@ -29469,55 +21990,39 @@
phone_id = "Director's Safe Room";
pixel_x = -18
},
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"gwg" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"gxJ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_sw)
"gyJ" = (
/obj/structure/machinery/power/port_gen/pacman/super,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"gyL" = (
/obj/item/ore{
pixel_x = 13;
pixel_y = 12
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"gyU" = (
/obj/item/ore{
pixel_x = -7;
pixel_y = 7
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"gzG" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -9;
pixel_y = 18
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/caves/mining)
"gAE" = (
/obj/structure/sink{
@@ -29536,17 +22041,12 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"gCx" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"gCC" = (
/obj/structure/closet/secure_closet,
@@ -29570,43 +22070,28 @@
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"gCE" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_east)
"gEM" = (
/obj/structure/machinery/vending/security,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- icon_state = "red"
- },
+/turf/open/floor/red,
/area/bigredv2/outside/lambda_cave_cas)
"gFR" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"gGO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2/west,
/area/bigredv2/caves/mining)
"gHH" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"gHV" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/engineering)
"gIT" = (
/obj/structure/machinery/door/poddoor/almayer/closed{
@@ -29614,9 +22099,7 @@
id = "lambda-interior";
name = "Lambda Checkpoint Interior"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves_north)
"gJw" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -29624,9 +22107,7 @@
/area/bigredv2/caves_virology)
"gKk" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_4"
- },
+/turf/open/mars_cave/mars_cave_4,
/area/bigredv2/caves_virology)
"gMj" = (
/obj/effect/decal/warning_stripes{
@@ -29634,10 +22115,7 @@
pixel_x = -1;
pixel_y = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"gMC" = (
/obj/structure/surface/table,
@@ -29646,17 +22124,12 @@
/area/bigredv2/outside/cargo)
"gML" = (
/obj/structure/machinery/power/turbine,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"gNz" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_se)
"gNH" = (
/turf/closed/wall/solaris/reinforced,
@@ -29664,32 +22137,22 @@
"gOr" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_research)
"gPc" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/telecomm/n_cave)
"gPh" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/door/airlock/almayer/secure/colony{
name = "\improper Engine Reactor"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/engineering)
"gPE" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/flashlight/lantern,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"gQj" = (
/obj/structure/cargo_container/horizontal/blue/top,
@@ -29697,10 +22160,7 @@
/area/bigredv2/outside/space_port_lz2)
"gSg" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/se)
"gSB" = (
/obj/structure/sign/safety/restrictedarea{
@@ -29715,20 +22175,14 @@
"gTN" = (
/obj/structure/window/framed/solaris/reinforced/hull,
/obj/structure/cable,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/oob)
"gTS" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/shard{
icon_state = "small"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"gUD" = (
/obj/structure/barricade/handrail{
@@ -29736,10 +22190,7 @@
layer = 3.01;
pixel_y = 9
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/engineering)
"gVl" = (
/obj/effect/decal/warning_stripes{
@@ -29747,16 +22198,10 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/bigredv2/outside/engineering)
"gVm" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/bigredv2/caves/eta/research)
"gWv" = (
/obj/effect/landmark/nightmare{
@@ -29776,33 +22221,23 @@
icon_state = "S";
pixel_y = -1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"gXp" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_lambda)
"gXs" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/bigredv2/oob)
"gYl" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_virology)
"gYt" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"gZc" = (
/obj/structure/machinery/light{
@@ -29811,68 +22246,48 @@
/obj/structure/sign/safety/high_rad{
pixel_x = -32
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"hah" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea,
/area/bigredv2/outside/cargo)
"haT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"hbx" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/bed/roller,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"hcb" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_telecomm_cas)
"hcH" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"hdc" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"heD" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"heG" = (
/obj/structure/bed/chair{
@@ -29882,51 +22297,35 @@
pixel_y = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"hfB" = (
/obj/item/ore{
pixel_x = -5;
pixel_y = 2
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"hgr" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/outside/ne)
"hgO" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/outside/n)
"hgT" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/lz1_north_cas)
"hho" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/chair/wood/normal{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"hhK" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"hhX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -29941,9 +22340,7 @@
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/caves/mining)
"hiY" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves_sw)
"hkv" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -29953,15 +22350,10 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/outside/admin_building)
"hmm" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/research)
"hmJ" = (
/obj/item/weapon/gun/pistol/holdout,
@@ -29972,50 +22364,34 @@
pixel_x = -1;
pixel_y = -8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"hnh" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves_research)
"hoQ" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"hoY" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary,
/obj/structure/cable{
icon_state = "11-6"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"hpg" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/space_port_lz2)
"hqC" = (
/obj/item/ammo_magazine/rifle/mar40/lmg,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"hqD" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/lz2_south_cas)
"hqO" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -30025,23 +22401,16 @@
/obj/effect/decal/warning_stripes{
icon_state = "E-corner"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"hsF" = (
/obj/structure/closet/firecloset/full,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"hsJ" = (
/obj/item/ore,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/filtration_plant)
"hto" = (
/obj/effect/decal/cleanable/dirt,
@@ -30059,35 +22428,25 @@
pixel_x = -8;
pixel_y = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"hwy" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/research)
"hxs" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"hyv" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"hyC" = (
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/telecomm/warehouse)
"hzg" = (
/obj/structure/cable{
@@ -30096,10 +22455,7 @@
/obj/structure/cable{
icon_state = "1-9"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"hzy" = (
/obj/structure/surface/table,
@@ -30108,9 +22464,7 @@
/area/bigredv2/outside/cargo)
"hzP" = (
/obj/item/paper/bigred/final,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"hAj" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -30136,83 +22490,54 @@
pixel_x = -3;
pixel_y = 16
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"hDK" = (
/obj/structure/largecrate/supply,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"hEz" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves/mining)
"hEC" = (
/obj/structure/machinery/light,
/turf/open/floor/plating,
/area/bigredv2/outside/lz2_south_cas)
"hEE" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/outside/lz2_south_cas)
"hEK" = (
/obj/structure/reagent_dispensers/fueltank/gas,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"hFg" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_lambda)
"hFv" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"hFP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/item_pool_spawner/survivor_ammo,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"hFV" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/outside/n)
"hGv" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"hHa" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"hHb" = (
/obj/structure/sign/safety/ladder,
@@ -30224,55 +22549,38 @@
/area/bigredv2/caves/eta/storage)
"hJH" = (
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/telecomm/n_cave)
"hKl" = (
/obj/structure/surface/rack,
/obj/item/reagent_container/food/drinks/bottle/goldschlager,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"hKt" = (
/obj/item/device/flashlight/lantern,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"hKD" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_se)
"hKM" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves_north)
"hKO" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/red/southwest,
/area/bigredv2/outside/lambda_cave_cas)
"hLp" = (
/obj/effect/landmark/corpsespawner/ua_riot,
/turf/open/mars_cave,
/area/bigredv2/caves/mining)
"hLs" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/lambda_cave_cas)
"hLS" = (
/obj/structure/sign/poster/safety,
@@ -30282,57 +22590,37 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"hNW" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/lambda_cave_cas)
"hOx" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_plant)
"hOS" = (
/obj/structure/surface/table,
/obj/item/clothing/head/collectable/tophat/super,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/general_store)
"hPS" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_se)
"hQO" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/outside/n)
"hRy" = (
/obj/structure/surface/rack,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"hSP" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"hTO" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/body,
@@ -30341,38 +22629,26 @@
id = "viro";
name = "Virology Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/virology)
"hUh" = (
/obj/item/spacecash/c1,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"hVP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"hWa" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/research)
"hWM" = (
/obj/structure/machinery/filtration/console{
pixel_y = 15
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"hYB" = (
/obj/structure/platform{
@@ -30389,17 +22665,13 @@
"hYI" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"hZc" = (
/obj/structure/platform/shiva{
dir = 4
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"hZl" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -30434,16 +22706,12 @@
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"iaX" = (
/obj/item/weapon/twohanded/folded_metal_chair,
/obj/effect/landmark/corpsespawner/colonist/random/burst,
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"ibP" = (
/turf/open/floor/plating,
@@ -30453,51 +22721,34 @@
dir = 1
},
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"ibZ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves_sw)
"ice" = (
/obj/structure/surface/table,
/obj/item/clothing/ears/earmuffs,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"icQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_sw)
"idn" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/n)
"idM" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"idT" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves_lambda)
"ied" = (
/obj/structure/surface/table,
/obj/item/clothing/under/brown,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"iep" = (
/obj/structure/surface/rack,
@@ -30512,9 +22763,7 @@
/obj/item/clothing/head/hardhat/dblue{
pixel_x = 7
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"ieD" = (
/obj/structure/surface/rack,
@@ -30527,10 +22776,7 @@
/obj/item/stack/sheet/mineral/platinum{
pixel_y = 12
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"ifF" = (
/obj/effect/decal/cleanable/dirt,
@@ -30540,32 +22786,23 @@
pixel_y = 12
},
/obj/item/ammo_box/magazine/misc/flares/empty,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"igM" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"igU" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -5;
pixel_y = 10
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"ihW" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/eta)
"iig" = (
/obj/effect/decal/cleanable/dirt,
@@ -30577,9 +22814,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor{
- icon_state = "red"
- },
+/turf/open/floor/red,
/area/bigredv2/outside/marshal_office)
"ijU" = (
/obj/structure/prop/almayer/cannon_cables{
@@ -30590,37 +22825,27 @@
desc = "A bewildering tangle of machinery and pipes.";
name = "coolant feed"
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor1"
- },
+/turf/open/shuttle/escapepod/floor1,
/area/bigredv2/oob)
"ilH" = (
/obj/structure/machinery/light,
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/hydroponics)
"ilO" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/caves/mining)
"iml" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_research)
"inx" = (
/obj/item/tool/warning_cone,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/filtration_plant)
"ioA" = (
/obj/item/tool/pickaxe{
@@ -30637,15 +22862,10 @@
dir = 8
},
/obj/structure/surface/rack,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"ioS" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"ipf" = (
/obj/item/device/flashlight/lantern{
@@ -30658,9 +22878,7 @@
/obj/item/storage/fancy/cigarettes/kpack{
pixel_x = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"ipo" = (
/obj/structure/barricade/wooden{
@@ -30668,21 +22886,15 @@
dir = 8;
health = 25000
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_north)
"iqF" = (
/obj/structure/prop/invuln/minecart_tracks,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"irM" = (
/obj/item/weapon/shield/riot,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_research)
"irN" = (
/obj/effect/spawner/random/technology_scanner,
@@ -30692,57 +22904,38 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/red/southeast,
/area/bigredv2/outside/lambda_cave_cas)
"itL" = (
/obj/structure/closet/l3closet/virology,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/virology)
"iuu" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/outside/lz1_north_cas)
"ivW" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/outside/ne)
"iwG" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_virology)
"ixA" = (
/obj/item/ore,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"iyY" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/outside/lz1_north_cas)
"izb" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"izh" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_se)
"iAi" = (
/obj/structure/surface/rack,
@@ -30757,15 +22950,10 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/hefa_cult_decals/d96,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"iAF" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_sw)
"iAI" = (
/obj/structure/platform{
@@ -30781,10 +22969,7 @@
dir = 8;
health = 25000
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/w)
"iDJ" = (
/obj/effect/landmark/corpsespawner/miner,
@@ -30796,17 +22981,13 @@
pixel_y = 3
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"iDL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/research)
"iDT" = (
/obj/effect/decal/warning_stripes{
@@ -30814,26 +22995,17 @@
pixel_x = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/north,
/area/bigredv2/outside/admin_building)
"iDW" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/caves/eta/living)
"iEj" = (
/obj/structure/disposalpipe/segment,
/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"iEm" = (
/obj/structure/bed/chair/wood/normal,
@@ -30842,10 +23014,7 @@
"iFa" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/bananapeel,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"iFz" = (
/obj/structure/machinery/door/poddoor/almayer/closed{
@@ -30853,25 +23022,18 @@
id = "lambda-interior";
name = "Lambda Checkpoint Interior"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/lambda_cave_cas)
"iGK" = (
/turf/open/mars_cave,
/area/bigredv2/caves_sw)
"iGY" = (
/obj/item/stack/sheet/wood,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_north)
"iHe" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port_lz2)
"iJF" = (
/obj/effect/decal/cleanable/blood{
@@ -30879,53 +23041,36 @@
pixel_y = 12
},
/obj/item/stack/sheet/wood,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"iKn" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/lambda_cave_cas)
"iLs" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"iLu" = (
/obj/structure/girder,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"iNE" = (
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/telecomm/warehouse)
"iNR" = (
/turf/open/gm/river,
/area/bigredv2/outside/engineering)
"iOR" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/ne)
"iPE" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"iQw" = (
/obj/item/ore,
@@ -30933,37 +23078,25 @@
/area/bigredv2/outside/filtration_plant)
"iQC" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"iQG" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_research)
"iRf" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"iRw" = (
/obj/structure/closet/secure_closet,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/caves/eta/research)
"iRG" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_research)
"iSz" = (
/obj/structure/barricade/handrail{
@@ -30980,16 +23113,10 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/bigredv2/outside/telecomm/warehouse)
"iUe" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/bigredv2/caves/eta/research)
"iVd" = (
/obj/structure/platform/kutjevo/rock{
@@ -31008,10 +23135,7 @@
/turf/open/mars,
/area/bigredv2/outside/se)
"iXp" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/filtration_cave_cas)
"iXs" = (
/obj/structure/platform_decoration{
@@ -31021,10 +23145,7 @@
density = 0;
pixel_y = 16
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"iXx" = (
/turf/open/mars_cave,
@@ -31034,32 +23155,22 @@
pixel_x = -7;
pixel_y = 7
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"iYN" = (
/obj/structure/closet/secure_closet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/caves/eta/research)
"iYR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/filtration_plant)
"iZc" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"iZA" = (
/obj/structure/surface/rack,
@@ -31070,9 +23181,7 @@
dir = 5
},
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/hydroponics)
"jbU" = (
/obj/effect/decal/cleanable/blood{
@@ -31082,24 +23191,17 @@
icon_state = "grenade_custom";
name = "M55C Teargas grenade"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"jcR" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_research)
"jdj" = (
/obj/effect/landmark/nightmare{
insert_tag = "crashlanding-offices"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"jdQ" = (
/obj/structure/prop/dam/truck/mining{
@@ -31108,52 +23210,35 @@
icon_state = "crawler_crate_alt";
name = "crawler"
},
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/s)
"jeO" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/n)
"jfr" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/se)
"jgw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"jgW" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_lambda)
"jhj" = (
/obj/structure/machinery/vending/sovietsoda{
icon_state = "sovietsoda-broken";
stat = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"jhM" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/paper/bigred/witness,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"jiS" = (
/obj/structure/machinery/power/apc{
@@ -31175,10 +23260,7 @@
pixel_x = -1;
pixel_y = 14
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"jkO" = (
/obj/item/explosive/grenade/high_explosive/frag,
@@ -31192,27 +23274,17 @@
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"jlS" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/space_port_lz2)
"jmD" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/outside/ne)
"jna" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/outside/admin_building)
"jnR" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/bigredv2/caves/eta/research)
"jnV" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -31224,10 +23296,7 @@
/obj/structure/cable{
icon_state = "2-9"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"jph" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -31244,79 +23313,55 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"jrA" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"jrD" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_research)
"jrN" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/bigredv2/outside/space_port_lz2)
"jsL" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2/west,
/area/bigredv2/caves/mining)
"jtL" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves/mining)
"juo" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "podhatch"
- },
+/turf/open/floor/podhatch/northwest,
/area/bigredv2/caves/lambda/research)
"juZ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/lambda_cave_cas)
"jvW" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/caves_lambda)
"jwj" = (
/obj/structure/platform/shiva{
dir = 8
},
/obj/item/disk,
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"jxA" = (
/obj/structure/barricade/handrail,
@@ -31326,16 +23371,11 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"jzD" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/virology)
"jAm" = (
/obj/structure/coatrack{
@@ -31345,55 +23385,37 @@
/obj/item/clothing/shoes/black{
pixel_y = -7
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"jAo" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_sw)
"jAJ" = (
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/engineering)
"jAN" = (
/obj/item/tool/pickaxe,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"jAR" = (
/obj/structure/bookcase/manuals/engineering,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"jAX" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves_lambda)
"jBq" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/eta)
"jCg" = (
/obj/effect/spawner/random/attachment,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"jCq" = (
/obj/effect/landmark/corpsespawner/ua_riot,
@@ -31408,20 +23430,14 @@
layer = 3
},
/obj/item/weapon/baton/loaded,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"jCY" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_virology)
"jDo" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/space_port_lz2)
"jDy" = (
/obj/effect/decal/cleanable/dirt,
@@ -31436,22 +23452,15 @@
"jDT" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"jEx" = (
/obj/structure/machinery/power/port_gen/pacman/super,
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"jGd" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_se)
"jGn" = (
/obj/structure/machinery/door_control{
@@ -31460,23 +23469,16 @@
pixel_x = 26;
range = 500
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"jGQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/flashlight/lantern,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2/west,
/area/bigredv2/caves/mining)
"jGT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"jHS" = (
/obj/structure/surface/table/reinforced/prison,
@@ -31488,9 +23490,7 @@
/turf/open/floor,
/area/bigred/ground/garage_workshop)
"jIQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/outside/lz1_north_cas)
"jJB" = (
/obj/effect/decal/cleanable/dirt,
@@ -31504,24 +23504,17 @@
icon_state = "4-8";
name = "heavy duty power cable"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/mining)
"jJO" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves_north)
"jKp" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/red/north,
/area/bigredv2/outside/lambda_cave_cas)
"jKI" = (
/obj/structure/platform_decoration/shiva{
@@ -31531,43 +23524,32 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"jMm" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"jMn" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/ash,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"jNE" = (
/obj/structure/machinery/washing_machine,
/obj/structure/machinery/washing_machine{
pixel_y = 13
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"jNN" = (
/obj/structure/bed/chair/wood/normal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"jOc" = (
/obj/structure/machinery/door/poddoor/almayer/closed{
@@ -31575,17 +23557,13 @@
id = "eta";
name = "Eta Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/lz2_south_cas)
"jOj" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/surgery/hemostat,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"jOS" = (
/obj/structure/surface/rack,
@@ -31596,10 +23574,7 @@
pixel_y = -5
},
/obj/item/tool/pickaxe/plasmacutter,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"jPm" = (
/obj/structure/bed/chair/office/dark{
@@ -31609,9 +23584,7 @@
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"jPQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/outside/ne)
"jPV" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -31623,9 +23596,7 @@
pixel_y = 15
},
/obj/effect/spawner/gibspawner/human,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"jPX" = (
/obj/item/ore/diamond{
@@ -31639,9 +23610,7 @@
/obj/structure/prop/almayer/cannon_cable_connector{
name = "\improper Cable connector"
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/bigredv2/oob)
"jRi" = (
/obj/item/ammo_magazine/smg/bizon{
@@ -31660,31 +23629,20 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"jRn" = (
/obj/structure/machinery/computer3/server,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"jRH" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/bigredv2/outside/medical)
"jSe" = (
/obj/item/stack/sheet/wood,
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/caves_north)
"jTa" = (
/obj/structure/machinery/camera/autoname,
@@ -31693,18 +23651,12 @@
pixel_x = -1;
pixel_y = -1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/bigredv2/outside/marshal_office)
"jTk" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/molten_item,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/engineering)
"jUc" = (
/obj/structure/surface/table,
@@ -31715,9 +23667,7 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper General Store Storage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"jUJ" = (
/obj/structure/machinery/light,
@@ -31729,16 +23679,12 @@
id = "Library";
name = "Storm Shutters"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"jUM" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"jUW" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -31751,10 +23697,7 @@
/obj/structure/cable{
icon_state = "2-5"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"jUY" = (
/turf/open/mars_cave,
@@ -31763,16 +23706,12 @@
/obj/effect/decal/cleanable/blood/drip{
pixel_x = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves/mining)
"jVN" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"jVW" = (
/obj/effect/decal/cleanable/blood{
@@ -31781,20 +23720,14 @@
/obj/item/stack/sheet/wood{
pixel_y = -8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"jWj" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"jWA" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/lz2_south_cas)
"jWF" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -31804,9 +23737,7 @@
icon_state = "intact";
name = "Pipe"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"jWR" = (
/obj/effect/decal/warning_stripes{
@@ -31814,78 +23745,55 @@
pixel_x = 1;
pixel_y = -1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/red/northwest,
/area/bigredv2/outside/marshal_office)
"jXf" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"jXJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light_construct{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"jXP" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"jXX" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/caves_sw)
"jYD" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_y = 9
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"jYF" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"jYS" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/miner,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"jZp" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"jZy" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
/obj/structure/barricade/wooden,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"jZM" = (
/obj/effect/decal/warning_stripes{
@@ -31895,9 +23803,7 @@
icon_state = "gib6";
pixel_y = -8
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves/mining)
"kcx" = (
/obj/effect/decal/cleanable/dirt,
@@ -31905,29 +23811,21 @@
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"kcH" = (
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/bigredv2/outside/sw)
"kcZ" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/filtration_cave_cas)
"kdf" = (
/obj/item/tool/warning_cone{
pixel_y = 17
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/filtration_plant)
"kdh" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/sw)
"kdp" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -31937,15 +23835,10 @@
icon_state = "4-8";
name = "heavy duty power cable"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"kdr" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/eta)
"keg" = (
/turf/closed/wall/solaris/reinforced,
@@ -31958,10 +23851,7 @@
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"key" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -31973,34 +23863,23 @@
/turf/open/mars_cave,
/area/bigredv2/caves_lambda)
"kfx" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/outside/n)
"kfY" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"kgn" = (
/obj/item/paper/bigred/crazy,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kgw" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/outside/lz2_west_cas)
"kgx" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz2_south_cas)
"khl" = (
/obj/structure/machinery/light/small{
@@ -32010,10 +23889,7 @@
/obj/structure/cable{
icon_state = "11-2"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"khx" = (
/obj/structure/barricade/wooden{
@@ -32024,38 +23900,27 @@
pixel_x = -4;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"khB" = (
/obj/structure/prop/vehicles/crawler{
icon_state = "crawler_covered_bed"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_lambda)
"khK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"khP" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"khR" = (
/obj/structure/machinery/floodlight,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"kjr" = (
/obj/effect/decal/cleanable/dirt,
@@ -32067,10 +23932,7 @@
},
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/effect/spawner/random/attachment,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kjH" = (
/obj/structure/surface/table,
@@ -32084,9 +23946,7 @@
pixel_x = 13;
pixel_y = 12
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"kka" = (
/obj/structure/barricade/handrail,
@@ -32099,18 +23959,14 @@
/area/bigredv2/outside/engineering)
"kli" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/caves/mining)
"klp" = (
/obj/structure/prop/almayer/cannon_cables{
name = "\improper Large Cables";
pixel_y = 13
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"kmb" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -32120,68 +23976,45 @@
icon_state = "intact";
name = "Pipe"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kmm" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"kmx" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/outside/engineering)
"knN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/caves/eta/living)
"kok" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/filtration_cave_cas)
"kpd" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/outside/ne)
"kqO" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/caves_lambda)
"kqS" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"kqV" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = 5;
pixel_y = 11
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"krx" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/lz2_south_cas)
"krW" = (
/obj/effect/decal/cleanable/dirt,
@@ -32191,9 +24024,7 @@
"ksO" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"ktE" = (
/obj/item/tool/wrench{
@@ -32203,21 +24034,14 @@
/obj/item/storage/toolbox/mechanical{
pixel_x = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/caves/mining)
"ktN" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/filtration_plant)
"ktY" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"kuu" = (
/obj/effect/decal/cleanable/dirt,
@@ -32225,46 +24049,30 @@
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"kuw" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_plant)
"kvp" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_sw)
"kvB" = (
/obj/item/device/flashlight,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kwq" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/ne)
"kwQ" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/se)
"kxi" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/xenobiology)
"kxr" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32282,14 +24090,10 @@
phone_id = "Observation";
pixel_x = -18
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"kzF" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/ne)
"kAj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32304,10 +24108,7 @@
},
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"kBn" = (
/turf/closed/wall/solaris,
@@ -32315,9 +24116,7 @@
"kBB" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves_lambda)
"kBE" = (
/obj/structure/largecrate/supply/supplies/water,
@@ -32325,10 +24124,7 @@
/area/bigredv2/caves/mining)
"kCe" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kCR" = (
/obj/structure/machinery/light{
@@ -32338,10 +24134,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/red/west,
/area/bigredv2/outside/marshal_office)
"kDs" = (
/obj/structure/surface/table,
@@ -32349,22 +24142,15 @@
pixel_y = 17
},
/obj/item/reagent_container/food/snacks/jellysandwich/cherry,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"kFe" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigred/ground/garage_workshop)
"kGm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/research)
"kGw" = (
/obj/effect/landmark/objective_landmark/medium,
@@ -32372,17 +24158,12 @@
/area/bigredv2/caves/eta/storage)
"kHK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port_lz2)
"kIv" = (
/obj/structure/curtain/red,
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"kIF" = (
/obj/structure/bed/chair/comfy/orange{
@@ -32392,10 +24173,7 @@
/area/bigredv2/caves/lambda/breakroom)
"kIW" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/se)
"kKx" = (
/obj/effect/decal/cleanable/dirt,
@@ -32403,16 +24181,11 @@
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"kKB" = (
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/caves/eta/research)
"kMk" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/ne)
"kMs" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -32431,10 +24204,7 @@
/obj/structure/cable{
icon_state = "4-5"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kMJ" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -32444,48 +24214,34 @@
icon_state = "1-2";
name = "heavy duty power cable"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kNc" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_research)
"kNK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"kOv" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/bigredv2/outside/space_port_lz2)
"kPu" = (
/obj/structure/machinery/power/terminal{
dir = 1
},
/obj/structure/pipes/valve/open,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kPP" = (
/obj/structure/prop/almayer/cannon_cable_connector{
name = "\improper Control Module";
pixel_y = 13
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"kQc" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -32510,30 +24266,20 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kSt" = (
/obj/structure/cable{
icon_state = "11-2"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kSH" = (
/obj/structure/ore_box,
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/caves/mining)
"kSL" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/filtration_cave_cas)
"kTs" = (
/obj/effect/decal/cleanable/blood,
@@ -32545,62 +24291,41 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/caves_lambda)
"kVR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/n)
"kVS" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"kVT" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/engineering)
"kVY" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/gold/small_stack,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kWV" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_se)
"kWW" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/lz2_cave)
"kXV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/roller,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"kZG" = (
/obj/effect/decal/cleanable/dirt,
@@ -32611,23 +24336,16 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/caves_lambda)
"laj" = (
/obj/structure/tunnel{
id = "hole5"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"lbh" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/n)
"lbZ" = (
/obj/item/frame/rack,
@@ -32646,10 +24364,7 @@
/area/bigredv2/caves/mining)
"lck" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"lcu" = (
/obj/structure/surface/table/reinforced/prison,
@@ -32667,9 +24382,7 @@
/obj/item/device/flashlight/on{
pixel_x = 8
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor1"
- },
+/turf/open/shuttle/escapepod/floor1,
/area/bigredv2/oob)
"ldD" = (
/obj/item/tool/warning_cone{
@@ -32681,9 +24394,7 @@
"lhh" = (
/obj/structure/fence,
/obj/structure/disposalpipe/segment,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"lhE" = (
/obj/structure/prop/almayer/cannon_cable_connector{
@@ -32691,9 +24402,7 @@
pixel_y = 15
},
/obj/item/stack/cable_coil/cut,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"llS" = (
/obj/structure/prop/almayer/cannon_cable_connector{
@@ -32706,9 +24415,7 @@
name = "\improper massive vent";
pixel_x = -15
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor1"
- },
+/turf/open/shuttle/escapepod/floor1,
/area/bigredv2/oob)
"lmg" = (
/obj/structure/bed/chair/office/light{
@@ -32718,16 +24425,10 @@
/area/bigredv2/outside/lz2_south_cas)
"lmi" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"lms" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/eta)
"lmO" = (
/obj/structure/surface/table/woodentable,
@@ -32740,9 +24441,7 @@
/obj/item/tool/pen{
pixel_x = -7
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"lom" = (
/obj/effect/landmark/corpsespawner/miner,
@@ -32753,9 +24452,7 @@
pixel_x = 12;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"lqo" = (
/obj/item/tool/lighter/random,
@@ -32763,33 +24460,24 @@
dir = 4
},
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"lqp" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"lrs" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
name = "\improper Operations"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"lrH" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_telecomm_cas)
"lrW" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -32799,26 +24487,17 @@
icon_state = "intact";
name = "Pipe"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"lsq" = (
/obj/item/device/flashlight/lantern,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"lst" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/bigredv2/caves/eta/research)
"ltu" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/outside/filtration_plant)
"ltK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32833,10 +24512,7 @@
/area/bigredv2/outside/dorms)
"luA" = (
/obj/item/tool/crowbar/red,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"lvh" = (
/obj/item/weapon/gun/rifle/m4ra,
@@ -32848,9 +24524,7 @@
pixel_x = 12;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves_research)
"lvy" = (
/obj/effect/decal/cleanable/dirt,
@@ -32860,24 +24534,16 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigred/ground/garage_workshop)
"lwX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_sw)
"lxQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/paper/bigred/union,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"lym" = (
/obj/structure/bed/chair{
@@ -32896,9 +24562,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"lzI" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -32906,9 +24570,7 @@
/area/bigredv2/caves)
"lAC" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/ne)
"lAF" = (
/obj/item/paper_bin,
@@ -32923,10 +24585,7 @@
name = "Lambda Checkpoint Interior";
pixel_x = null
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/lambda_cave_cas)
"lBc" = (
/turf/closed/wall/solaris/reinforced,
@@ -32940,18 +24599,13 @@
dir = 1;
name = "\improper Machine room"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"lCt" = (
/obj/structure/machinery/power/reactor/colony{
name = "Reactor Turbine"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/engineering)
"lCR" = (
/obj/structure/surface/table,
@@ -32972,34 +24626,24 @@
"lDa" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"lDp" = (
/obj/structure/closet/secure_closet,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/caves/eta/research)
"lEi" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"lEw" = (
/obj/item/tool/pickaxe{
pixel_y = -3
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"lFR" = (
/obj/effect/landmark/nightmare{
@@ -33008,76 +24652,52 @@
/turf/closed/wall/solaris/rock,
/area/bigredv2/caves)
"lGt" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/living)
"lIe" = (
/obj/item/weapon/twohanded/folded_metal_chair,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"lID" = (
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/c)
"lIL" = (
/obj/structure/sign/safety/fire_haz,
/turf/closed/wall/wood,
/area/bigredv2/caves/mining)
"lIS" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/outside/ne)
"lKw" = (
/obj/item/paper/bigred/walls,
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"lLe" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/outside/lambda_cave_cas)
"lLf" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"lMw" = (
/obj/structure/machinery/sensortower{
pixel_x = -9
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/caves_lambda)
"lMC" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigred/ground/garage_workshop)
"lNp" = (
/obj/structure/machinery/light{
@@ -33086,14 +24706,10 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"lOL" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/outside/n)
"lOY" = (
/obj/effect/landmark/nightmare{
@@ -33109,9 +24725,7 @@
pixel_x = 3;
pixel_y = 12
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"lPL" = (
/obj/structure/platform/shiva{
@@ -33120,35 +24734,24 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"lQN" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/outside/lz2_south_cas)
"lQU" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/virology)
"lRC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"lSb" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/outside/ne)
"lSm" = (
/obj/effect/decal/cleanable/dirt,
@@ -33156,38 +24759,26 @@
/obj/item/shard{
icon_state = "small"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"lSH" = (
/obj/structure/largecrate/guns/merc{
icon_state = "case_double";
name = "supply crate"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"lSS" = (
/obj/item/tool/warning_cone,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/filtration_cave_cas)
"lTi" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"lTC" = (
/obj/structure/machinery/light{
@@ -33196,40 +24787,26 @@
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"lTM" = (
/obj/item/folder/yellow,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/bigredv2/outside/engineering)
"lTV" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"lUa" = (
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/outside/n)
"lUd" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/caves/eta/xenobiology)
"lUq" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_se)
"lUM" = (
/obj/structure/machinery/power/reactor/colony,
@@ -33238,42 +24815,29 @@
"lVr" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"lWA" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/outside/lz2_south_cas)
"lWE" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_sw)
"lYi" = (
/obj/structure/ore_box,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"lYC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/mucus,
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2/west,
/area/bigredv2/caves/mining)
"lYH" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"lYZ" = (
/obj/structure/bed/chair/office/dark{
@@ -33282,9 +24846,7 @@
/turf/open/floor,
/area/bigred/ground/garage_workshop)
"lZV" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves/mining)
"maB" = (
/obj/effect/landmark/nightmare{
@@ -33293,9 +24855,7 @@
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/virology)
"maD" = (
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"maF" = (
/obj/item/frame/rack,
@@ -33306,10 +24866,7 @@
"maH" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"mbz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33318,14 +24875,10 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper Bar Maintenance"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/bar)
"mda" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves_lambda)
"meT" = (
/turf/open/mars,
@@ -33334,15 +24887,11 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"mfG" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"mfQ" = (
/obj/structure/surface/rack,
@@ -33351,18 +24900,13 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/item/fuel_cell,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/engineering)
"mhF" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"mhG" = (
/obj/structure/sign/safety/bulkhead_door{
@@ -33375,33 +24919,22 @@
/area/bigredv2/caves/mining)
"mhV" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"mhZ" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/engineering)
"mij" = (
/obj/item/folder/yellow,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"miD" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/security/marshal,
/obj/item/weapon/gun/revolver/cmb,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"mji" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{
@@ -33416,9 +24949,7 @@
"mlV" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"mmg" = (
/obj/effect/decal/cleanable/dirt,
@@ -33429,23 +24960,15 @@
/obj/item/reagent_container/food/snacks/tofu{
pixel_y = 11
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"mnv" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"mnY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/ne)
"moe" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33455,9 +24978,7 @@
/turf/open/floor/carpet,
/area/bigredv2/outside/library)
"moE" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves_research)
"mqf" = (
/obj/structure/bed/chair{
@@ -33465,42 +24986,29 @@
pixel_y = 3
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"mqh" = (
/obj/structure/window/framed/solaris,
-/turf/open/floor{
- icon_state = "panelscorched"
- },
+/turf/open/floor/panelscorched,
/area/bigredv2/outside/engineering)
"mqX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"mrH" = (
/obj/structure/machinery/computer3/server,
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/admin_building)
"mrS" = (
/obj/structure/prop/almayer/cannon_cable_connector{
name = "\improper Cable connector"
},
/obj/structure/cable,
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/bigredv2/oob)
"msf" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves/lambda/xenobiology)
"msq" = (
/obj/structure/sink{
@@ -33508,22 +25016,15 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/hydroponics)
"msS" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigred/ground/garage_workshop)
"mts" = (
/obj/item/ore,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"mtL" = (
/obj/structure/bed/chair/office/dark{
@@ -33539,32 +25040,22 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/marshal_office)
"mtS" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/n)
"muP" = (
/turf/closed/wall/wood,
/area/bigredv2/caves_research)
"mxf" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/filtration_cave_cas)
"mya" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_east)
"myc" = (
/obj/structure/surface/table,
@@ -33580,31 +25071,22 @@
pixel_x = 10;
pixel_y = 2
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"myY" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/filtration_cave_cas)
"mzV" = (
/turf/open/mars,
/area/bigredv2/outside/filtration_plant)
"mAY" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/space_port_lz2)
"mBc" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/hatchet,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"mBo" = (
/obj/item/weapon/twohanded/folded_metal_chair{
@@ -33622,78 +25104,54 @@
/turf/open/floor/plating,
/area/bigredv2/outside/filtration_plant)
"mDs" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/filtration_cave_cas)
"mDt" = (
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/bigredv2/outside/space_port_lz2)
"mDN" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/outside/lz1_north_cas)
"mEC" = (
/obj/effect/decal/warning_stripes{
icon_state = "E-corner"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_north)
"mEH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/outside/admin_building)
"mFT" = (
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/effect/landmark/corpsespawner/russian,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"mGq" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/lz1_north_cas)
"mHp" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_se)
"mIc" = (
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/admin_building)
"mIr" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/filtration_plant)
"mIs" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"mIu" = (
/obj/structure/machinery/light{
@@ -33707,18 +25165,13 @@
dir = 8
},
/obj/item/tank/air,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/filtration_plant)
"mKi" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"mKM" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -33727,69 +25180,48 @@
/turf/closed/wall/solaris/rock,
/area/bigredv2/caves)
"mMf" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/space_port_lz2)
"mNT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"mOc" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
dir = 1;
name = "\improper General Store Maintenance"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"mOW" = (
/obj/structure/pipes/standard/tank/oxygen,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"mOZ" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/queen_spawn,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"mPC" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"mPF" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_y = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"mPK" = (
/obj/effect/decal/cleanable/liquid_fuel,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"mRi" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"mRD" = (
/obj/structure/surface/table,
@@ -33798,16 +25230,10 @@
/area/bigredv2/caves)
"mSn" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"mSS" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/outside/engineering)
"mST" = (
/obj/effect/decal/warning_stripes{
@@ -33816,10 +25242,7 @@
pixel_y = -1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"mUb" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33828,23 +25251,17 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"mUy" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves/eta/xenobiology)
"mWg" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
dir = 2;
name = "\improper Operations"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"mWt" = (
/obj/structure/prop/almayer/missile_tube{
@@ -33852,25 +25269,18 @@
name = "\improper Massive mining drill";
pixel_y = 13
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/mining)
"mXw" = (
/obj/item/storage/toolbox/mechanical,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"mYV" = (
/obj/structure/machinery/power/apc{
dir = 1;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/red/north,
/area/bigredv2/outside/lambda_cave_cas)
"mYW" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -33880,28 +25290,19 @@
icon_state = "4-8";
name = "heavy duty power cable"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"mZC" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_virology)
"nbc" = (
/obj/item/tool/warning_cone,
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/se)
"nbi" = (
/obj/effect/landmark/hunter_secondary,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_research)
"nbu" = (
/obj/effect/landmark/hunter_secondary,
@@ -33916,9 +25317,7 @@
pixel_x = 12;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_research)
"ncL" = (
/obj/structure/bed/chair{
@@ -33927,65 +25326,43 @@
pixel_x = 2;
pixel_y = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"ndw" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/bigredv2/outside/engineering)
"ndy" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -3;
pixel_y = 11
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"neH" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/filtration_cave_cas)
"nfY" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/caves_east)
"ngJ" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"nhF" = (
/obj/structure/machinery/camera/autoname{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"niQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/outside/engineering)
"njf" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/lz2_south_cas)
"nky" = (
/obj/structure/machinery/vending/coffee,
@@ -34002,24 +25379,17 @@
pixel_x = -4;
pixel_y = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"nkQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves_se)
"nkW" = (
/obj/item/ore/gold,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"nkY" = (
/obj/item/ore{
@@ -34027,20 +25397,14 @@
pixel_y = -8
},
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"nlB" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/outside/n)
"nlJ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"nlW" = (
/obj/structure/platform/kutjevo/rock,
@@ -34053,19 +25417,13 @@
"nmU" = (
/obj/structure/surface/table,
/obj/item/device/analyzer,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"nny" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves_research)
"nnz" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/outside/n)
"nnA" = (
/obj/structure/surface/table/woodentable,
@@ -34075,16 +25433,11 @@
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"nnK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"nnU" = (
/obj/structure/machinery/door_control{
@@ -34098,10 +25451,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/engineering)
"npz" = (
/obj/structure/surface/table,
@@ -34109,10 +25459,7 @@
/obj/item/ammo_magazine/shotgun/buckshot{
pixel_y = 12
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"nqr" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -34122,37 +25469,25 @@
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"nra" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/sw)
"nrj" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -1;
pixel_y = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"nrw" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/outside/filtration_cave_cas)
"nrA" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/ne)
"ntX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/filtration_plant)
"nub" = (
/obj/structure/surface/rack,
@@ -34167,10 +25502,7 @@
/obj/item/clothing/head/hardhat/dblue{
pixel_x = 7
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"nug" = (
/obj/structure/platform{
@@ -34190,56 +25522,40 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"nuz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/barricade/handrail,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"nuQ" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"nvn" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
density = 0;
pixel_y = 16
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/c)
"nwB" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"nwS" = (
/obj/item/ore{
pixel_x = -7;
pixel_y = 7
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/mining)
"nxa" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"nzB" = (
/obj/structure/machinery/computer/general_air_control{
@@ -34247,17 +25563,11 @@
pixel_y = 6
},
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"nzN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"nBb" = (
/obj/item/ammo_magazine/pistol/b92fs,
@@ -34265,16 +25575,12 @@
pixel_x = 13;
pixel_y = -7
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"nCp" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_se)
"nCT" = (
/obj/structure/sign/poster/ad,
@@ -34287,27 +25593,18 @@
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"nEl" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/outside/lz2_south_cas)
"nEH" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/outside/n)
"nEJ" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/outside/eta)
"nEP" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/outside/filtration_plant)
"nEV" = (
/obj/item/weapon/twohanded/folded_metal_chair{
@@ -34315,41 +25612,29 @@
pixel_y = 12
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"nFp" = (
/obj/structure/window,
/obj/structure/window{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"nFB" = (
/obj/item/weapon/gun/rifle/m16,
/obj/item/ammo_magazine/rifle/m16,
/obj/item/ammo_magazine/rifle/m16,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"nFH" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/caves_lambda)
"nGm" = (
/obj/structure/fence,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/filtration_cave_cas)
"nHQ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -34358,26 +25643,19 @@
id = "filtration";
name = "Filtration Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/filtration_cave_cas)
"nIi" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
dir = 1;
name = "\improper Engine Reactor"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"nIS" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/donut_box,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/lambda_cave_cas)
"nKL" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -34387,16 +25665,11 @@
icon_state = "map";
name = "Automated Valve"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"nLw" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/sw)
"nMB" = (
/obj/structure/machinery/door_control{
@@ -34404,35 +25677,24 @@
name = "Workshop Garage Lockdown";
pixel_x = 28
},
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigred/ground/garage_workshop)
"nMZ" = (
/obj/structure/machinery/door/poddoor/almayer/closed,
/obj/structure/cable,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"nOe" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"nPz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"nQl" = (
/obj/item/ore{
@@ -34442,27 +25704,19 @@
/obj/effect/decal/cleanable/blood/oil/streak{
pixel_y = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"nRS" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"nRT" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/chapel)
"nSP" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"nTF" = (
/obj/structure/barricade/wooden{
@@ -34470,85 +25724,56 @@
dir = 4;
health = 25000
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"nTG" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/outside/lz2_south_cas)
"nUK" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"nUV" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/filtration_cave_cas)
"nVq" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"nVx" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/filtration_plant)
"nWD" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/burger,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"nWG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/hydroponics)
"nXh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/remains/human,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"nXw" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"nXC" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves_research)
"nYC" = (
/obj/structure/surface/table,
/obj/item/tool/pickaxe/plasmacutter,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"nYV" = (
/obj/item/tool/warning_cone,
@@ -34562,18 +25787,13 @@
/area/bigredv2/outside/space_port)
"nZB" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/telecomm/n_cave)
"nZD" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"nZK" = (
/obj/item/ore/diamond,
@@ -34597,35 +25817,26 @@
/obj/item/stack/sheet/wood{
pixel_y = -8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"ocp" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/bigredv2/caves/eta/research)
"ocA" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/library)
"ocG" = (
/obj/structure/bookcase/manuals/research_and_development,
/obj/item/storage/fancy/vials/random,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"ocR" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/caves_lambda)
"odw" = (
/obj/structure/bed,
@@ -34634,16 +25845,12 @@
"oea" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/breakroom)
"oes" = (
/obj/structure/surface/table/woodentable,
/obj/item/newspaper,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"ofn" = (
/obj/effect/decal/cleanable/dirt,
@@ -34652,10 +25859,7 @@
"ofu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/largecrate,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"ofJ" = (
/obj/structure/surface/table,
@@ -34664,9 +25868,7 @@
phone_color = "red";
phone_id = "Security"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"ofX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -34680,21 +25882,14 @@
dir = 1;
name = "\improper Abandoned Mining Storage"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"ohg" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"ohD" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_east)
"ohY" = (
/obj/structure/cargo_container/hd/left/alt,
@@ -34704,10 +25899,7 @@
/obj/structure/morgue{
dir = 2
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/bigredv2/outside/medical)
"ojD" = (
/obj/structure/platform_decoration{
@@ -34728,43 +25920,28 @@
/obj/structure/cable{
icon_state = "1-8"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"okt" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port_lz2)
"ole" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "w-y0"
- },
+/turf/open/floor/almayer/w_y0/north,
/area/bigredv2/outside/admin_building)
"olT" = (
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/shuttle/escapepod{
- icon_state = "floor1"
- },
+/turf/open/shuttle/escapepod/floor1,
/area/bigredv2/oob)
"oma" = (
/obj/structure/window/framed/solaris/reinforced,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"omw" = (
/obj/item/clothing/head/helmet/marine/veteran/ua_riot,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"omG" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -34772,9 +25949,7 @@
pixel_y = 10
},
/obj/structure/barricade/wooden,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"omX" = (
/obj/item/stack/cable_coil/cut{
@@ -34789,17 +25964,13 @@
pixel_x = 6;
pixel_y = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves/mining)
"onh" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"onR" = (
/obj/effect/decal/cleanable/dirt,
@@ -34812,43 +25983,31 @@
},
/obj/structure/platform_decoration/shiva,
/obj/item/stack/cable_coil,
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"ooD" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/filtration_cave_cas)
"opz" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/mining)
"opK" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"oqr" = (
/obj/item/ore{
pixel_x = -1
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"oqM" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"orT" = (
/obj/structure/machinery/vending/coffee,
@@ -34857,48 +26016,32 @@
"orZ" = (
/obj/structure/closet/secure_closet/atmos_personal,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"otb" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_se)
"oud" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"ouh" = (
/obj/item/tool/extinguisher,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"ovq" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/general_offices)
"ovB" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz2_west_cas)
"ovQ" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/ne)
"ovZ" = (
/obj/effect/decal/warning_stripes{
@@ -34909,36 +26052,25 @@
pixel_y = 15
},
/obj/effect/spawner/gibspawner/human,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"owR" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"oxh" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/plasteel/medium_stack,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"oxk" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor,
/area/bigred/ground/garage_workshop)
"oxp" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_research)
"oye" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/outside/filtration_cave_cas)
"ozf" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -34948,9 +26080,7 @@
icon_state = "4-8";
name = "heavy duty power cable"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/caves/mining)
"ozv" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -34961,39 +26091,27 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"ozQ" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"oAf" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_virology)
"oDB" = (
/obj/structure/closet/l3closet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/general_offices)
"oDW" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"oFj" = (
/obj/structure/barricade/wooden{
@@ -35002,23 +26120,16 @@
health = 25000
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_north)
"oFx" = (
/obj/item/device/flashlight/lantern,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/ne)
"oFY" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"oHn" = (
/obj/structure/bed/chair{
@@ -35034,9 +26145,7 @@
icon_state = "grenade_custom";
name = "M55C Teargas grenade"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"oIK" = (
/obj/structure/platform,
@@ -35057,20 +26166,14 @@
name = "heavy duty power cable"
},
/obj/structure/machinery/power/port_gen/pacman/super,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"oJv" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras/wooden_tv{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/lambda_cave_cas)
"oJO" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -35080,59 +26183,39 @@
/obj/effect/decal/cleanable/blood/drip{
pixel_x = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"oKc" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"oKy" = (
/obj/structure/window/framed/solaris/reinforced,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"oMd" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_y = 13
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"oMf" = (
/obj/structure/fence,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"oNu" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/outside/lz2_west_cas)
"oOk" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_research)
"oOr" = (
/obj/effect/landmark/item_pool_spawner/survivor_ammo,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"oOw" = (
/obj/effect/decal/cleanable/dirt,
@@ -35145,63 +26228,42 @@
name = "Lambda Checkpoint Exterior";
pixel_x = null
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/lambda_cave_cas)
"oQz" = (
/obj/structure/machinery/light/double{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/lz2_south_cas)
"oQI" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves_sw)
"oRs" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves_north)
"oRK" = (
/obj/structure/computer3frame/wallcomp,
/obj/structure/cable{
icon_state = "11-2"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"oTf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/filtration_plant)
"oTv" = (
/obj/structure/largecrate/supply,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"oTL" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"oTM" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -35211,9 +26273,7 @@
icon_state = "1-4-8";
name = "heavy duty power cable"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"oUs" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -35223,19 +26283,14 @@
icon_state = "4-8";
name = "heavy duty power cable"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"oUY" = (
/obj/structure/platform_decoration{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"oVq" = (
/obj/effect/landmark/nightmare{
@@ -35250,37 +26305,26 @@
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"oWe" = (
/obj/structure/machinery/photocopier{
density = 0;
pixel_y = 16
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/bigredv2/outside/admin_building)
"oWk" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/telecomm/lz2_cave)
"oWp" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/barricade/handrail,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/engineering)
"oWC" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -35290,16 +26334,11 @@
icon_state = "1-2";
name = "heavy duty power cable"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"oXr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/eta)
"oXH" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -35309,19 +26348,14 @@
icon_state = "intact";
name = "Pipe"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"oZA" = (
/obj/structure/prop/almayer/cannon_cables{
name = "\improper Large Cables";
pixel_y = 12
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"oZQ" = (
/turf/closed/wall/r_wall/unmeltable,
@@ -35334,18 +26368,13 @@
/obj/structure/cable{
icon_state = "11-2"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"paz" = (
/obj/effect/decal/cleanable/blood{
icon_state = "xgib1"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"pbr" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -35353,18 +26382,13 @@
/area/bigredv2/outside/filtration_cave_cas)
"pbs" = (
/obj/effect/landmark/objective_landmark/far,
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/bigredv2/caves/eta/living)
"pbK" = (
/obj/effect/landmark/hunter_secondary,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/queen_spawn,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"pbX" = (
/obj/effect/spawner/random/tool,
@@ -35391,105 +26415,73 @@
dir = 1;
pixel_y = 7
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/caves/mining)
"pcF" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/closed/wall/solaris/rock,
/area/bigredv2/caves)
"pcI" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/filtration_plant)
"pdG" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"pdW" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/outside/virology)
"per" = (
/obj/structure/window_frame/solaris,
/turf/open/floor/plating,
/area/bigredv2/outside/dorms)
"pgh" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/ne)
"pgi" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"pgk" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"pgu" = (
/obj/effect/decal/warning_stripes{
icon_state = "W-corner"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"pgP" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"pgV" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/caves_east)
"phi" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_research)
"phx" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"plx" = (
/obj/structure/machinery/power/apc{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/caves/eta/research)
"pmk" = (
/obj/structure/surface/table,
/obj/item/spacecash/c1,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"pmN" = (
/obj/effect/decal/cleanable/blood{
@@ -35499,9 +26491,7 @@
icon_state = "grenade_custom";
name = "M55C Teargas grenade"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"pmS" = (
/turf/open/mars,
@@ -35510,15 +26500,10 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/caves_lambda)
"pnL" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/caves_north)
"pog" = (
/obj/structure/platform{
@@ -35531,18 +26516,13 @@
/area/bigredv2/outside/engineering)
"pow" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/lz1_north_cas)
"poF" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/research)
"ppp" = (
/obj/structure/sign/safety/hazard,
@@ -35554,9 +26534,7 @@
dir = 8;
health = 25000
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves_north)
"prU" = (
/obj/structure/machinery/light{
@@ -35567,15 +26545,11 @@
/obj/item/prop/magazine/book/bladerunner{
pixel_y = 3
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"psE" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"ptL" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -35585,16 +26559,12 @@
/area/bigredv2/caves/eta/living)
"puU" = (
/obj/item/paper/bigred/witness,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/lz2_south_cas)
"pvg" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"pvj" = (
/obj/structure/machinery/camera/autoname,
@@ -35608,22 +26578,14 @@
icon_state = "map_valve1";
name = "Pressure Valve"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"pvp" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/filtration_plant)
"pxp" = (
/obj/structure/ore_box,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"pxv" = (
/obj/structure/barricade/wooden{
@@ -35634,17 +26596,13 @@
/obj/item/weapon/twohanded/spear{
pixel_x = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/caves/mining)
"pxH" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"pyq" = (
/obj/structure/surface/table,
@@ -35652,9 +26610,7 @@
dir = 8;
pixel_y = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"pyU" = (
/obj/effect/decal/warning_stripes{
@@ -35669,9 +26625,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"pzC" = (
/obj/structure/window/framed/solaris,
@@ -35683,16 +26637,10 @@
/area/bigredv2/outside/lambda_cave_cas)
"pBv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/filtration_plant)
"pBD" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/caves/eta/research)
"pCR" = (
/obj/structure/barricade/wooden{
@@ -35706,49 +26654,34 @@
/obj/item/weapon/twohanded/spear{
pixel_x = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"pDV" = (
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"pGP" = (
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/filtration_plant)
"pHb" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_sw)
"pIl" = (
/obj/structure/morgue{
dir = 2
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/bigredv2/outside/medical)
"pIN" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"pJd" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -35757,87 +26690,56 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Lambda Checkpoint"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/lambda_cave_cas)
"pJn" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/ne)
"pJt" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/telecomm/n_cave)
"pJS" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -4;
pixel_y = 20
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"pJX" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/caves/mining)
"pKP" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"pLj" = (
/obj/structure/largecrate/random/barrel/red,
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/caves/mining)
"pLH" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/ne)
"pMi" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/extinguisher,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"pMm" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/filtration_plant)
"pMv" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/outside/lz1_north_cas)
"pMB" = (
/obj/structure/machinery/light/small,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"pNa" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/bigredv2/caves/eta/research)
"pNU" = (
/obj/structure/bed,
@@ -35845,47 +26747,33 @@
/obj/item/bedsheet/brown{
layer = 3.1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"pOg" = (
/obj/structure/machinery/compressor{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"pOt" = (
/obj/structure/machinery/optable,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/bigredv2/outside/medical)
"pOL" = (
/obj/structure/closet/crate/miningcar/yellow,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"pPh" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/outside/telecomm/warehouse)
"pPo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"pQv" = (
/obj/structure/surface/table,
@@ -35906,19 +26794,13 @@
"pRG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"pRP" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/telecomm/n_cave)
"pSa" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"pSf" = (
/turf/open/floor/carpet,
@@ -35932,10 +26814,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/telecomm/lz2_cave)
"pTA" = (
/obj/structure/platform_decoration/shiva{
@@ -35945,15 +26824,11 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"pTH" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_se)
"pUi" = (
/obj/item/weapon/broken_bottle,
@@ -35963,26 +26838,18 @@
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"pVv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/compressor{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"pVP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigred/ground/garage_workshop)
"pWs" = (
/obj/structure/barricade/handrail{
@@ -35997,10 +26864,7 @@
dir = 4
},
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"pXn" = (
/obj/structure/closet/fireaxecabinet{
@@ -36008,15 +26872,10 @@
},
/obj/structure/closet/toolcloset,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"pXu" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"pXB" = (
/obj/effect/landmark/corpsespawner/ua_riot,
@@ -36035,54 +26894,37 @@
pixel_y = 3
},
/obj/item/weapon/gun/rifle/m41a/training,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"pYt" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves_sw)
"pYE" = (
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/bigredv2/oob)
"pZe" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/twohanded/folded_metal_chair,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"pZu" = (
/obj/structure/surface/rack,
/obj/item/storage/bag/ore{
pixel_y = 5
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"qaK" = (
/obj/structure/largecrate,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigred/ground/garage_workshop)
"qaR" = (
/obj/vehicle/powerloader/ft,
/turf/open/floor/plating,
/area/bigredv2/outside/nw/ceiling)
"qby" = (
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/telecomm/lz2_cave)
"qbG" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -36093,9 +26935,7 @@
id = "lambda-interior";
name = "Lambda Checkpoint Interior"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/lambda_cave_cas)
"qcE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -36104,39 +26944,27 @@
/turf/open/floor/carpet,
/area/bigredv2/outside/library)
"qcQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/space_port_lz2)
"qeK" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/filtration_plant)
"qeX" = (
/obj/structure/largecrate,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"qeZ" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"qgY" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves_sw)
"qhk" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -36154,10 +26982,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"qhH" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -36167,18 +26992,13 @@
icon_state = "1-2";
name = "heavy duty power cable"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves/mining)
"qiA" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/item/tool/extinguisher,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigred/ground/garage_workshop)
"qjA" = (
/obj/structure/machinery/light/small{
@@ -36199,15 +27019,11 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper Access door"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"qkC" = (
/obj/structure/fence,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/filtration_cave_cas)
"qlK" = (
/obj/structure/surface/rack,
@@ -36225,63 +27041,44 @@
/obj/item/stack/sheet/wood{
pixel_y = -7
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"qoj" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/outside/filtration_cave_cas)
"qot" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = 6;
pixel_y = 10
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"qoN" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"qoQ" = (
/obj/structure/morgue{
dir = 1
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/bigredv2/outside/medical)
"qoS" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/e)
"qpn" = (
/obj/item/tool/warning_cone{
pixel_x = -6
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/filtration_plant)
"qqw" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"qrZ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -36294,10 +27091,7 @@
/area/bigredv2/outside/space_port_lz2)
"qse" = (
/obj/structure/largecrate/supply,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"qsE" = (
/turf/closed/wall/solaris/reinforced,
@@ -36307,15 +27101,11 @@
icon_state = "book-5"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"qus" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/dorms)
"qux" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -36329,9 +27119,7 @@
pixel_x = 2;
pixel_y = 17
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"quX" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -36340,32 +27128,22 @@
id = "Engineering";
name = "\improper Engineering Shutters"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"qvA" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"qvI" = (
/obj/item/clothing/head/helmet/marine/veteran/ua_riot,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"qwm" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/n)
"qwx" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"qwy" = (
/obj/effect/decal/cleanable/dirt,
@@ -36374,20 +27152,14 @@
pixel_y = 7
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"qyi" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
pixel_y = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/east,
/area/bigredv2/outside/admin_building)
"qzO" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -36395,34 +27167,24 @@
id = "eta";
name = "Eta Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/lz2_south_cas)
"qzY" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -1;
pixel_y = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"qCK" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/lz2_south_cas)
"qDZ" = (
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/telecomm/n_cave)
"qEs" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz2_south_cas)
"qEJ" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -36430,9 +27192,7 @@
id = "workshop_br_g";
name = "\improper Workshop Garage"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigred/ground/garage_workshop)
"qFg" = (
/obj/effect/decal/cleanable/blood{
@@ -36442,9 +27202,7 @@
pixel_x = 12;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_research)
"qFh" = (
/obj/item/tool/pickaxe,
@@ -36452,14 +27210,10 @@
pixel_x = -11;
pixel_y = 10
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"qFY" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_east)
"qGg" = (
/obj/item/device/flashlight/lamp{
@@ -36468,29 +27222,18 @@
},
/obj/item/ashtray/plastic,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"qGY" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"qHc" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/outside/filtration_plant)
"qHY" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/outside/lz2_south_cas)
"qHZ" = (
/obj/structure/surface/table,
@@ -36503,10 +27246,7 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/lambda_cave_cas)
"qJM" = (
/obj/effect/decal/cleanable/dirt,
@@ -36517,10 +27257,7 @@
pixel_x = -5;
pixel_y = 10
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"qKH" = (
/obj/structure/machinery/light{
@@ -36529,33 +27266,21 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/caves_lambda)
"qLk" = (
/obj/item/device/flashlight/lantern,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/mining)
"qLD" = (
-/turf/open/floor{
- icon_state = "red"
- },
+/turf/open/floor/red,
/area/bigredv2/outside/lambda_cave_cas)
"qLV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/eta)
"qMS" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/outside/n)
"qNu" = (
/obj/structure/surface/table,
@@ -36563,15 +27288,11 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/xenobiology)
"qNH" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/bigredv2/outside/space_port_lz2)
"qNP" = (
/obj/structure/bed/chair{
@@ -36584,9 +27305,7 @@
/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{
dir = 1
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/landing/console2)
"qOM" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -36600,33 +27319,24 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"qPT" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/eta)
"qQl" = (
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"qQn" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_lambda)
"qQr" = (
/obj/item/stack/sheet/wood,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_north)
"qSj" = (
/obj/structure/cargo_container/hd/mid/alt,
@@ -36634,42 +27344,31 @@
/area/bigredv2/caves/mining)
"qTC" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"qUF" = (
/obj/structure/machinery/computer/area_atmos{
dir = 1
},
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"qUS" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves_sw)
"qVd" = (
/obj/item/reagent_container/food/snacks/sausage,
/obj/structure/platform_decoration/kutjevo/rock{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/space)
"qVi" = (
/obj/structure/window/framed/solaris/reinforced,
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"qVw" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/virology)
"qVB" = (
/obj/item/weapon/shield/riot,
@@ -36677,18 +27376,14 @@
pixel_x = -8;
pixel_y = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"qWA" = (
/obj/structure/surface/table/woodentable,
/obj/item/paper,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"qWT" = (
/obj/effect/decal/cleanable/dirt,
@@ -36698,16 +27393,12 @@
name = "Lambda Checkpoint Exterior"
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/lambda_cave_cas)
"qXi" = (
/obj/structure/surface/table/woodentable,
/obj/item/device/pinpointer,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"qYB" = (
/obj/structure/sink{
@@ -36723,27 +27414,20 @@
/obj/structure/mirror{
pixel_x = -28
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"qYY" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"qZo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"qZU" = (
/obj/structure/machinery/light/small{
@@ -36756,23 +27440,17 @@
icon_state = "4-8";
name = "heavy duty power cable"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"rat" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"raQ" = (
/obj/structure/barricade/handrail/wire{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/outside/telecomm/lz2_cave)
"raU" = (
/obj/effect/decal/warning_stripes{
@@ -36780,10 +27458,7 @@
layer = 2.5;
pixel_x = -1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/red/east,
/area/bigredv2/outside/marshal_office)
"rbs" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -36791,17 +27466,11 @@
/area/bigredv2/outside/lambda_cave_cas)
"rbD" = (
/obj/structure/largecrate/random,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"rbV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/n)
"rcc" = (
/obj/structure/prop/almayer/missile_tube{
@@ -36814,21 +27483,14 @@
pixel_y = 12
},
/obj/structure/cable,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"rcN" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves_research)
"rdr" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"rdR" = (
/turf/open/floor,
@@ -36846,9 +27508,7 @@
/obj/item/weapon/twohanded/spear{
pixel_x = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"reL" = (
/obj/effect/landmark/nightmare{
@@ -36866,34 +27526,25 @@
/obj/structure/platform_decoration/kutjevo/rock{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/space)
"rfX" = (
/obj/structure/surface/table,
/obj/item/bodybag,
/obj/item/bodybag,
/obj/item/bodybag,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/outside/medical)
"rgm" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/bigredv2/outside/chapel)
"rgp" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"rhP" = (
/obj/effect/decal/cleanable/dirt,
@@ -36902,10 +27553,7 @@
pixel_x = -1;
pixel_y = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/outside/engineering)
"rie" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -36913,10 +27561,7 @@
pixel_x = 6;
pixel_y = 4
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"rjw" = (
/obj/effect/decal/cleanable/dirt,
@@ -36930,18 +27575,13 @@
/area/bigredv2/caves/mining)
"rkh" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- icon_state = "red"
- },
+/turf/open/floor/red,
/area/bigredv2/outside/lambda_cave_cas)
"rkS" = (
/obj/structure/cable{
icon_state = "5-6"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"rml" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
@@ -36957,94 +27597,65 @@
name = "Lambda Checkpoint Exterior"
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/lambda_cave_cas)
"rnV" = (
/obj/item/stack/sheet/glass,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"row" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/caves/eta/research)
"roP" = (
/obj/item/ore{
pixel_x = 9;
pixel_y = -4
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"rpl" = (
/obj/structure/machinery/light/small,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"rpI" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
layer = 2.5
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/outside/admin_building)
"rqa" = (
/obj/structure/tunnel{
id = "hole4"
},
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/xenobiology)
"rqv" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/caves/mining)
"rrF" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/outside/ne)
"rsv" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"rtL" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/outside/lz2_west_cas)
"rtR" = (
/obj/effect/landmark/corpsespawner/security/marshal,
/obj/effect/decal/cleanable/blood,
/obj/item/weapon/classic_baton,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_research)
"rtS" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/wetleather,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"rtV" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -37055,41 +27666,29 @@
/obj/item/ammo_magazine/rifle/m16,
/obj/item/ammo_magazine/rifle/m16,
/obj/effect/decal/cleanable/blood,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"ruS" = (
/obj/structure/bed/chair{
dir = 8;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"rvS" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"rxh" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"rxJ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves_east)
"rzb" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"rzO" = (
/obj/effect/decal/cleanable/dirt,
@@ -37100,47 +27699,32 @@
/turf/open/floor/plating,
/area/bigredv2/outside/filtration_plant)
"rzR" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/ne)
"rzT" = (
/obj/structure/sign/nosmoking_1,
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/caves/mining)
"rAs" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_east)
"rBn" = (
/obj/structure/window,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"rBK" = (
/obj/structure/fence,
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/se)
"rCd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigred/ground/garage_workshop)
"rCA" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/lz1_telecomm_cas)
"rDa" = (
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/lambda_cave_cas)
"rDl" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -37150,45 +27734,32 @@
/obj/effect/decal/cleanable/blood/drip{
pixel_y = 13
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"rDO" = (
/obj/structure/bed/chair{
dir = 8;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"rDP" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_virology)
"rDV" = (
/obj/structure/barricade/handrail{
dir = 1;
pixel_y = 2
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_plant)
"rGP" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_virology)
"rHr" = (
/obj/item/ore,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"rHA" = (
/obj/effect/decal/cleanable/dirt,
@@ -37196,25 +27767,17 @@
/area/bigredv2/outside/filtration_plant)
"rHD" = (
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"rIl" = (
/turf/closed/wall/solaris/reinforced/hull,
/area/bigredv2/oob)
"rJJ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/lz2_south_cas)
"rJR" = (
/obj/structure/reagent_dispensers/fueltank/gas,
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"rKe" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -37239,45 +27802,30 @@
dir = 8
},
/obj/structure/machinery/recharge_station,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"rKP" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/bigredv2/oob)
"rLM" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/ne)
"rLR" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_lambda)
"rMg" = (
/obj/structure/toilet{
pixel_y = 8
},
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"rMw" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigred/ground/garage_workshop)
"rMG" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
@@ -37295,9 +27843,7 @@
pixel_x = -1;
pixel_y = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"rNc" = (
/obj/effect/decal/cleanable/dirt,
@@ -37332,9 +27878,7 @@
pixel_x = 12;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"rPh" = (
/obj/item/ore{
@@ -37345,9 +27889,7 @@
pixel_x = -7;
pixel_y = 7
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/mining)
"rQs" = (
/obj/structure/bed/sofa/south{
@@ -37360,23 +27902,15 @@
/area/bigredv2/oob)
"rRO" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/filtration_cave_cas)
"rTq" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"rTN" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/filtration_plant)
"rUn" = (
/obj/effect/decal/warning_stripes{
@@ -37409,47 +27943,35 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"rVh" = (
/obj/effect/decal/cleanable/blood{
icon_state = "xgib3"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"rVE" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/outside/n)
"rVT" = (
/obj/structure/fence,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/n)
"rWF" = (
/obj/item/stack/cable_coil/cut{
pixel_x = 6;
pixel_y = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"rWN" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -9;
pixel_y = 18
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"rXy" = (
/obj/effect/decal/cleanable/dirt,
@@ -37458,32 +27980,22 @@
/obj/item/ammo_magazine/handful/shotgun/buckshot/incendiary{
pixel_y = 12
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"rXY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/bigredv2/caves/lambda/research)
"rYr" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/ash,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"rYt" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves_north)
"rYD" = (
/obj/effect/decal/cleanable/dirt,
@@ -37491,10 +28003,7 @@
dir = 1
},
/obj/structure/largecrate/supply/supplies/mre,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"rYS" = (
/obj/structure/machinery/light{
@@ -37513,48 +28022,32 @@
/obj/item/toy/deck/uno{
pixel_y = 18
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"rZU" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"sap" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"saX" = (
/obj/structure/machinery/power/turbine,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"sbk" = (
/obj/effect/landmark/corpsespawner/miner,
/obj/effect/decal/cleanable/blood,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"sbm" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port_lz2)
"sbz" = (
/obj/structure/platform/kutjevo/rock{
@@ -37564,9 +28057,7 @@
/obj/structure/platform_decoration/kutjevo/rock{
dir = 1
},
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/space)
"sbA" = (
/obj/item/frame/rack,
@@ -37580,27 +28071,20 @@
/area/bigredv2/caves/mining)
"sbQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"scK" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"sdl" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
/obj/structure/window,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"sdP" = (
/obj/structure/largecrate/random/barrel/white,
@@ -37611,14 +28095,10 @@
pixel_x = -1;
pixel_y = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"sfI" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves_east)
"sgF" = (
/obj/structure/cable{
@@ -37627,17 +28107,11 @@
/obj/structure/cable{
icon_state = "6-8"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"sgT" = (
/obj/item/trash/burger,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"shn" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -37649,30 +28123,20 @@
name = "Lambda Checkpoint Exterior"
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/lambda_cave_cas)
"shK" = (
/obj/structure/cargo_container/arious/right,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/space_port_lz2)
"shV" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigred/ground/garage_workshop)
"siu" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/eta)
"siM" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/outside/lz1_telecomm_cas)
"ski" = (
/turf/open/mars_cave,
@@ -37681,21 +28145,14 @@
/obj/effect/decal/cleanable/blood{
icon_state = "xgib4"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/mining)
"slC" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/outside/engineering)
"slG" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"smh" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -37703,9 +28160,7 @@
/area/bigredv2/caves_north)
"smy" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"smF" = (
/obj/structure/bed/chair{
@@ -37713,29 +28168,20 @@
pixel_x = 13;
pixel_y = 10
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"smO" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/outside/lz1_north_cas)
"snk" = (
/obj/item/tank/air,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"snv" = (
/obj/structure/machinery/light_construct{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"sog" = (
/obj/item/explosive/grenade/slug/baton{
@@ -37760,10 +28206,7 @@
icon_state = "4-8"
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"sqc" = (
/obj/effect/decal/cleanable/blood{
@@ -37773,34 +28216,22 @@
icon_state = "grenade_custom";
name = "M55C Teargas grenade"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"sqj" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_research)
"sqt" = (
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/ne)
"sqQ" = (
/obj/item/paper/bigred/them,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"sso" = (
/obj/structure/bed/chair,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"ssE" = (
/obj/structure/window/framed/solaris,
@@ -37808,26 +28239,18 @@
/area/bigredv2/caves)
"ssI" = (
/obj/structure/prop/dam/truck/damaged,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/s)
"ssO" = (
/obj/item/weapon/twohanded/folded_metal_chair,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"stZ" = (
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/telecomm/lz2_cave)
"sus" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves_research)
"suD" = (
/obj/structure/prop/almayer/cannon_cables{
@@ -37856,34 +28279,25 @@
pixel_x = -5;
pixel_y = 25
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor1"
- },
+/turf/open/shuttle/escapepod/floor1,
/area/bigredv2/oob)
"suV" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{
dir = 1;
name = "\improper Engineering Workshop"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigred/ground/garage_workshop)
"swk" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/w)
"swJ" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/virology)
"sxs" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -37893,62 +28307,45 @@
/obj/effect/decal/cleanable/blood/drip{
pixel_x = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"syi" = (
/obj/structure/surface/table,
/obj/item/device/radio{
pixel_y = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"syu" = (
/obj/effect/decal/cleanable/blood{
icon_state = "xgib3"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"szi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/outside/admin_building)
"szw" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"szy" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/outside/engineering)
"szZ" = (
/obj/structure/window/reinforced/tinted,
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/dorms)
"sAG" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"sAS" = (
/obj/item/toy/prize/fireripley{
@@ -37964,27 +28361,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"sBu" = (
/obj/effect/landmark/hunter_secondary,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_east)
"sCj" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"sCt" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"sDs" = (
/obj/structure/closet/crate/miningcar,
@@ -37994,29 +28383,19 @@
/obj/item/ammo_magazine/smg/nailgun,
/obj/item/ammo_magazine/smg/nailgun,
/obj/item/ammo_magazine/smg/nailgun,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"sDC" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves_sw)
"sDO" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"sDZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/head/welding,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"sEb" = (
/obj/structure/filingcabinet{
@@ -38024,63 +28403,42 @@
pixel_x = 8;
pixel_y = 3
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"sEh" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/e)
"sEi" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/eta/research)
"sFv" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/caves_north)
"sFW" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"sGi" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/outside/lz1_telecomm_cas)
"sGT" = (
/obj/item/tool/weldpack,
/obj/item/frame/rack,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"sHz" = (
/obj/item/ore{
pixel_x = 9;
pixel_y = 13
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"sHO" = (
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"sIh" = (
/obj/effect/landmark/nightmare{
@@ -38091,33 +28449,22 @@
"sIP" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_se)
"sIY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/c)
"sJq" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_cave_cas)
"sLr" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_se)
"sLy" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"sLS" = (
/obj/structure/machinery/suit_storage_unit/carbon_unit,
@@ -38125,45 +28472,30 @@
/area/bigredv2/outside/admin_building)
"sNP" = (
/obj/structure/window/framed/solaris,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"sNQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_lambda)
"sOi" = (
/obj/structure/airlock_assembly,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"sOE" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/outside/lz1_telecomm_cas)
"sON" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_east)
"sPv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/bar)
"sQw" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/outside/lz1_telecomm_cas)
"sRy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38172,32 +28504,23 @@
/obj/structure/machinery/door/airlock/almayer/command/colony{
name = "\improper Operations Meeting Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"sRV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/caves_lambda)
"sSU" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/outside/lz2_south_cas)
"sSY" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"sUQ" = (
/obj/structure/machinery/photocopier,
@@ -38205,10 +28528,7 @@
/area/bigredv2/caves/lambda/breakroom)
"sVk" = (
/obj/effect/decal/remains/human,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/lambda_cave_cas)
"sVB" = (
/obj/structure/window_frame/solaris,
@@ -38220,19 +28540,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/caves_lambda)
"sWa" = (
/obj/item/ore{
pixel_x = 12;
pixel_y = 13
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"sWh" = (
/obj/structure/platform_decoration,
@@ -38240,17 +28555,11 @@
dir = 1;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm/n_cave)
"sWS" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"sXd" = (
/obj/effect/landmark/nightmare{
@@ -38264,27 +28573,18 @@
pixel_x = 2;
pixel_y = 17
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"sYL" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_8"
- },
+/turf/open/mars_cave/mars_cave_8,
/area/bigredv2/outside/lambda_cave_cas)
"sYR" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/item/stack/cable_coil/cut,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"sZh" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"sZi" = (
/obj/effect/decal/warning_stripes{
@@ -38293,9 +28593,7 @@
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"taf" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38303,31 +28601,22 @@
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"tap" = (
/obj/structure/machinery/message_server,
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/admin_building)
"taV" = (
/obj/structure/closet/coffin/woodencrate,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"tbS" = (
/obj/structure/morgue{
dir = 1
},
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/bigredv2/outside/medical)
"tcb" = (
/obj/structure/surface/table/reinforced/prison,
@@ -38336,9 +28625,7 @@
/area/bigred/ground/garage_workshop)
"tcq" = (
/obj/item/explosive/grenade/baton,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves_research)
"tcP" = (
/obj/effect/decal/cleanable/dirt/greenglow,
@@ -38348,31 +28635,22 @@
/obj/effect/decal/cleanable/blood{
icon_state = "xgib4"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"tdz" = (
/obj/effect/decal/cleanable/blood/gibs/limb,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"tdB" = (
/obj/structure/tunnel{
id = "hole1"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_se)
"tdN" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/engineering)
"tdZ" = (
/obj/item/tool/pickaxe/drill,
@@ -38394,10 +28672,7 @@
icon_state = "4-8";
name = "heavy duty power cable"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"tff" = (
/obj/effect/decal/cleanable/blood{
@@ -38407,9 +28682,7 @@
pixel_x = 12;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"tfp" = (
/obj/structure/prop/almayer/computers/sensor_computer1{
@@ -38422,10 +28695,7 @@
/obj/structure/cable{
icon_state = "11-10"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"tft" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -38442,14 +28712,10 @@
/area/bigredv2/outside/general_offices)
"tgF" = (
/obj/effect/spawner/random/tool,
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/bigredv2/oob)
"tgL" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_se)
"tiD" = (
/obj/effect/decal/cleanable/blood{
@@ -38458,9 +28724,7 @@
},
/obj/effect/decal/cleanable/blood,
/obj/item/weapon/gun/pistol/highpower,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"tju" = (
/obj/structure/machinery/shower{
@@ -38469,22 +28733,16 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/engineering)
"tjX" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/n)
"tkN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/research)
"tkY" = (
/obj/structure/noticeboard{
@@ -38497,10 +28755,7 @@
anchored = 1;
pixel_y = 27
},
-/turf/open/floor{
- dir = 1;
- icon_state = "elevatorshaft"
- },
+/turf/open/floor/elevatorshaft/north,
/area/bigredv2/caves/lambda/breakroom)
"tlP" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
@@ -38516,33 +28771,25 @@
dir = 8;
pixel_y = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"tmH" = (
/obj/structure/closet/crate,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"tnd" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -3;
pixel_y = 11
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_research)
"tnG" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/n)
"toA" = (
/obj/effect/decal/cleanable/dirt,
@@ -38555,57 +28802,41 @@
pixel_x = 13;
pixel_y = 10
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"tpU" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/hydroponics)
"tpY" = (
/obj/structure/lz_sign/solaris_sign,
/turf/open/mars,
/area/bigredv2/outside/space_port_lz2)
"tqi" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/caves/mining)
"tqS" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/caves_north)
"trk" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves_sw)
"trr" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"trW" = (
/obj/item/clothing/suit/storage/hazardvest,
/obj/effect/decal/cleanable/blood,
/obj/item/clothing/head/hardhat,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"tsc" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"tsy" = (
/obj/effect/decal/cleanable/dirt{
@@ -38634,23 +28865,16 @@
"tsB" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/xeno_spawn,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_east)
"tsK" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/outside/lz2_south_cas)
"tub" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/engineering)
"tuu" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38661,59 +28885,41 @@
dir = 4;
health = 25000
},
-/turf/open/floor{
- dir = 8;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/west,
/area/bigredv2/outside/cargo)
"tuN" = (
/obj/structure/machinery/light/small,
/turf/open/mars_cave,
/area/bigredv2/caves/mining)
"tvh" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/lz2_south_cas)
"tvH" = (
/obj/structure/machinery/compressor{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"tzJ" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Engine Reactor Control"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"tAe" = (
/obj/structure/bed,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"tAW" = (
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/ne)
"tBb" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves/mining)
"tBf" = (
/obj/structure/largecrate/random/barrel,
@@ -38734,16 +28940,10 @@
/obj/structure/cable{
icon_state = "5-9"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"tBD" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "w-y1"
- },
+/turf/open/floor/almayer/w_y1/north,
/area/bigredv2/outside/admin_building)
"tBK" = (
/obj/structure/surface/rack,
@@ -38757,10 +28957,7 @@
/obj/item/tool/pickaxe{
pixel_y = 4
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"tCh" = (
/obj/structure/machinery/door/poddoor/almayer/closed,
@@ -38775,9 +28972,7 @@
pixel_x = 12;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"tDk" = (
/obj/structure/machinery/light/double{
@@ -38787,65 +28982,44 @@
/area/bigredv2/caves/mining)
"tDl" = (
/obj/structure/machinery/power/apc,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/caves/eta/xenobiology)
"tDv" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz2_west_cas)
"tEc" = (
/obj/structure/machinery/light/small,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_research)
"tFt" = (
/obj/structure/surface/table,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"tFO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/breakroom)
"tHl" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/c)
"tHB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"tIq" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_lambda)
"tIv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"tIA" = (
/obj/structure/surface/rack,
@@ -38864,26 +29038,20 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"tJv" = (
/obj/structure/tunnel{
id = "hole3"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"tKr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"tKC" = (
/obj/structure/surface/table,
@@ -38899,61 +29067,43 @@
pixel_y = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"tKR" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/hydroponics)
"tLt" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/caves_north)
"tLO" = (
/obj/structure/machinery/computer/med_data{
density = 0;
pixel_y = 16
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"tMa" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port_lz2)
"tNz" = (
/obj/effect/decal/warning_stripes{
icon_state = "E-corner"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/filtration_cave_cas)
"tOh" = (
/obj/structure/surface/table,
/obj/item/device/megaphone,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"tQg" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
/turf/open/mars,
/area/bigredv2/outside/space_port_lz2)
"tQj" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/caves_lambda)
"tQo" = (
/obj/effect/decal/cleanable/dirt,
@@ -38962,15 +29112,10 @@
pixel_x = -7;
pixel_y = 4
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2/west,
/area/bigredv2/caves/mining)
"tQw" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"tRd" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -38980,15 +29125,10 @@
icon_state = "intact";
name = "Pipe"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"tRI" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_research)
"tRV" = (
/obj/item/ore/uranium{
@@ -39004,84 +29144,58 @@
/obj/item/ore/uranium{
desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/caves/mining)
"tSI" = (
/obj/structure/platform/shiva{
dir = 8
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"tTI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"tUL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/hefa_cult_decals/d32,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"tUY" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port_lz2)
"tVn" = (
/obj/item/tool/lighter/zippo,
/turf/open/floor,
/area/bigred/ground/garage_workshop)
"tVp" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/space_port_lz2)
"tVy" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_y = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"tWf" = (
/obj/structure/cargo_container/arious/leftmid,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/space_port_lz2)
"tWS" = (
/obj/effect/landmark/item_pool_spawner/survivor_ammo,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"tZU" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/mineral/processing_unit,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"uaB" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/bigredv2/caves/lambda/research)
"uaS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -39090,15 +29204,11 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Engine Reactor Control"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"ubY" = (
/obj/structure/barricade/wooden,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"ucl" = (
/obj/structure/cargo_container/arious/rightmid,
@@ -39108,38 +29218,26 @@
/turf/open/mars_cave,
/area/bigredv2/caves_virology)
"ucN" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_4"
- },
+/turf/open/mars_cave/mars_cave_4,
/area/bigredv2/caves_se)
"ueL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/window/framed/solaris,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"ufc" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port_lz2)
"ufu" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"ufB" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/research)
"ugc" = (
/obj/effect/decal/cleanable/dirt,
@@ -39148,39 +29246,26 @@
/area/bigredv2/outside/cargo)
"ugW" = (
/obj/structure/machinery/light/small,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"uij" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/filtration_cave_cas)
"uiE" = (
/obj/structure/bed/chair{
dir = 8;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"ujq" = (
/obj/structure/bed/roller,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/bigredv2/outside/medical)
"ujC" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"ujD" = (
/obj/structure/machinery/door/poddoor/almayer/closed{
@@ -39188,9 +29273,7 @@
id = "filtration";
name = "Filtration Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/filtration_cave_cas)
"ujU" = (
/obj/item/ammo_magazine/handful/shotgun/custom_color{
@@ -39199,19 +29282,13 @@
name = "handful of HE/FRAG shells (12g)";
pixel_y = 3
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/bigredv2/oob)
"ukv" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves_lambda)
"ukW" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/outside/ne)
"ulk" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -39221,10 +29298,7 @@
icon_state = "4-8";
name = "heavy duty power cable"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"ulH" = (
/obj/effect/decal/cleanable/dirt,
@@ -39241,9 +29315,7 @@
pixel_y = 32
},
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"umK" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -39253,14 +29325,10 @@
/obj/effect/decal/cleanable/blood/drip{
pixel_x = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"unC" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/telecomm/lz2_cave)
"unS" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -39268,9 +29336,7 @@
/area/bigredv2/outside/library)
"uoj" = (
/obj/effect/decal/remains/human,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/caves_lambda)
"upE" = (
/obj/effect/decal/cleanable/dirt,
@@ -39279,23 +29345,16 @@
"upV" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"urn" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/filtration_plant)
"usg" = (
/obj/item/tool/warning_cone,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"ust" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -39306,36 +29365,24 @@
/turf/open/floor/plating,
/area/bigredv2/caves/mining)
"usG" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_east)
"uuO" = (
/obj/item/shard{
icon_state = "small"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"uvl" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/lambda/xenobiology)
"uvz" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigred/ground/garage_workshop)
"uvZ" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/filtration_plant)
"uwV" = (
/obj/effect/decal/cleanable/dirt,
@@ -39350,38 +29397,26 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/telecomm/lz2_cave)
"uyk" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/lz2_west_cas)
"uzv" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/lz1_north_cas)
"uzB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil,
/obj/item/device/flashlight/lantern,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"uBi" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"uBP" = (
/obj/structure/cargo_container/arious/leftmid,
@@ -39389,10 +29424,7 @@
/area/bigredv2/outside/space_port_lz2)
"uCa" = (
/obj/effect/landmark/corpsespawner/miner,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"uDn" = (
/obj/structure/sign/safety/west,
@@ -39406,16 +29438,11 @@
/obj/item/bodybag,
/obj/item/bodybag,
/obj/item/bodybag,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"uDA" = (
/obj/item/stack/sheet/glass,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"uDI" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -39424,18 +29451,13 @@
icon_state = "map";
name = "Pipe manifold"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"uDZ" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"uFi" = (
/obj/item/paper/bigred/finance{
@@ -39454,40 +29476,29 @@
pixel_x = 2;
pixel_y = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves/mining)
"uFF" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"uGs" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/ash,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"uGz" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/xenobiology)
"uHE" = (
/obj/item/tool/warning_cone{
pixel_y = 19
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/filtration_plant)
"uHQ" = (
/turf/closed/wall/solaris/reinforced,
@@ -39495,42 +29506,28 @@
"uHT" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/cable_coil/cut,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"uIz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/telecomm/n_cave)
"uIB" = (
/obj/effect/vehicle_spawner/van/decrepit,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigred/ground/garage_workshop)
"uJj" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"uJu" = (
/obj/item/robot_parts/robot_component/diagnosis_unit{
pixel_y = 15
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/mining)
"uJF" = (
/obj/structure/machinery/power/apc{
@@ -39544,19 +29541,14 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"uKH" = (
/obj/structure/stairs/perspective{
dir = 6;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/bigredv2/outside/admin_building)
"uNW" = (
/obj/effect/decal/cleanable/blood{
@@ -39568,22 +29560,16 @@
},
/obj/effect/landmark/corpsespawner/miner,
/obj/effect/decal/cleanable/blood,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"uPm" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_se)
"uPF" = (
/obj/structure/machinery/filtration/console{
pixel_y = 13
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"uPK" = (
/obj/structure/platform/shiva{
@@ -39593,9 +29579,7 @@
/obj/structure/machinery/light/small/built{
dir = 4
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"uRE" = (
/obj/effect/landmark/nightmare{
@@ -39604,99 +29588,67 @@
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/admin_building)
"uSf" = (
-/turf/open/shuttle/escapepod{
- icon_state = "floor1"
- },
+/turf/open/shuttle/escapepod/floor1,
/area/bigredv2/oob)
"uSt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"uSC" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/space_port_lz2)
"uST" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
dir = 1;
name = "\improper Medical Clinic Power Station"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"uTO" = (
/obj/structure/machinery/pipedispenser,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"uUV" = (
/obj/structure/prop/server_equipment/yutani_server/broken,
/turf/open/floor/greengrid,
/area/bigredv2/caves/lambda/research)
"uVe" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/filtration_cave_cas)
"uVi" = (
/obj/structure/surface/table,
/obj/item/clothing/under/lightbrown,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"uVn" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_sw)
"uWo" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"uXW" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_8"
- },
+/turf/open/mars_cave/mars_cave_8,
/area/bigredv2/caves_research)
"uYb" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves_sw)
"vbi" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northeast,
/area/bigredv2/caves/lambda/research)
"vbp" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"vct" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/outside/lz2_south_cas)
"vcA" = (
/obj/effect/landmark/corpsespawner/miner,
@@ -39705,9 +29657,7 @@
},
/obj/item/weapon/gun/rifle/mar40/lmg,
/obj/item/ammo_magazine/rifle/mar40/lmg,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"vdl" = (
/obj/effect/decal/cleanable/liquid_fuel,
@@ -39715,10 +29665,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"vdS" = (
/obj/item/explosive/grenade/incendiary/molotov{
@@ -39730,10 +29677,7 @@
pixel_y = 7
},
/obj/item/explosive/grenade/incendiary/molotov,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"vec" = (
/obj/structure/pipes/standard/tank,
@@ -39748,37 +29692,26 @@
pixel_x = 9;
pixel_y = -3
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"vfI" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/eta)
"vfQ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"vgE" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/n)
"vgZ" = (
/obj/structure/platform/shiva,
/obj/structure/platform/shiva{
dir = 1
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"vhw" = (
/obj/structure/machinery/light{
@@ -39788,17 +29721,13 @@
/area/bigredv2/outside/medical)
"vhF" = (
/obj/item/device/flashlight/lantern,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"vin" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"viN" = (
/obj/structure/machinery/door_control{
@@ -39809,33 +29738,22 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/nw)
"vjc" = (
/obj/item/tool/warning_cone{
pixel_x = -13;
pixel_y = 11
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/filtration_plant)
"vkf" = (
/obj/effect/landmark/crap_item,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/ne)
"vkv" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/engineering)
"vkF" = (
/obj/effect/decal/cleanable/dirt,
@@ -39845,9 +29763,7 @@
/area/bigredv2/outside/cargo)
"vld" = (
/obj/item/tool/warning_cone,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"vlr" = (
/obj/effect/decal/warning_stripes{
@@ -39855,31 +29771,21 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"vlA" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_y = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"vmm" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/c)
"vmI" = (
/obj/item/device/flashlight/lantern,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"vmL" = (
/obj/effect/decal/cleanable/dirt,
@@ -39906,73 +29812,51 @@
/area/bigredv2/caves/mining)
"voz" = (
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"voG" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/barricade/handrail,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/engineering)
"vpu" = (
/obj/item/weapon/twohanded/folded_metal_chair,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"vpx" = (
/obj/structure/platform,
/obj/structure/flora/jungle/planttop1{
pixel_y = 10
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"vpY" = (
/obj/structure/machinery/door/poddoor/almayer/closed{
id = "eta";
name = "Eta Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/eta)
"vqY" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_research)
"vrt" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/eta)
"vsi" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port_lz2)
"vti" = (
/obj/structure/closet/crate,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/dorms)
"vty" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Eta Lab Cell"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/eta/xenobiology)
"vuz" = (
/obj/structure/machinery/door_control{
@@ -39981,10 +29865,7 @@
pixel_x = 30;
throw_range = 15
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/bigredv2/caves/eta/research)
"vvj" = (
/obj/effect/decal/cleanable/dirt,
@@ -40006,10 +29887,7 @@
pixel_x = -4;
pixel_y = 7
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"vxv" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -40017,10 +29895,7 @@
},
/obj/structure/surface/table,
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"vxQ" = (
/obj/item/tool/pickaxe/gold,
@@ -40032,10 +29907,7 @@
/area/bigredv2/caves/lambda/xenobiology)
"vzL" = (
/obj/item/weapon/gun/boltaction,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"vAs" = (
/obj/structure/window/framed/solaris/reinforced/tinted,
@@ -40043,14 +29915,10 @@
/area/bigredv2/caves/lambda/xenobiology)
"vBy" = (
/obj/item/ammo_magazine/shotgun/beanbag/riot,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves_research)
"vBI" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/outside/n)
"vBT" = (
/obj/structure/surface/table/reinforced,
@@ -40058,9 +29926,7 @@
phone_category = "Solaris Ridge";
phone_id = "Clinic Reception"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"vCd" = (
/obj/structure/surface/rack,
@@ -40070,65 +29936,43 @@
/obj/item/weapon/twohanded/lungemine{
pixel_y = -7
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"vCf" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"vCU" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/outside/lz2_south_cas)
"vEF" = (
/obj/structure/surface/table,
/obj/item/clothing/head/hardhat/orange{
pixel_y = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_plant)
"vEU" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/s)
"vFA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"vFH" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/caves_lambda)
"vFS" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"vGE" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/space_port_lz2)
"vGN" = (
/obj/effect/decal/cleanable/blood{
@@ -40138,61 +29982,43 @@
name = "\improper Medical Clinic"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"vHw" = (
/turf/closed/wall/wood,
/area/bigredv2/caves/mining)
"vHU" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/n)
"vIQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"vKv" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port_lz2)
"vLd" = (
/turf/open/floor,
/area/bigred/ground/garage_workshop)
"vMj" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/outside/lz2_west_cas)
"vMm" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_y = 13
},
/obj/structure/closet/crate/miningcar/yellow,
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves/mining)
"vNh" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_virology)
"vNm" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_virology)
"vOs" = (
/obj/structure/coatrack{
@@ -40203,34 +30029,26 @@
pixel_x = 11;
pixel_y = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"vPP" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"vPZ" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"vQZ" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves_research)
"vRs" = (
/obj/structure/sign/safety/high_voltage,
@@ -40239,131 +30057,92 @@
"vRK" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves/lambda/xenobiology)
"vRR" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves_north)
"vTh" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"vTt" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"vUw" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/lambda_cave_cas)
"vUy" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/space_port_lz2)
"vUN" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"vVl" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Dormitories Toilet"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"vVF" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -5;
pixel_y = 10
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves/mining)
"vVZ" = (
/turf/closed/wall/solaris,
/area/bigredv2/outside/filtration_cave_cas)
"vWm" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"vXp" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"vXJ" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_lambda)
"vYw" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"vZh" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/item/clothing/under/darkred,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"waJ" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_east)
"waN" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"waX" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"wbp" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves)
"wbx" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -40377,21 +30156,15 @@
/area/bigredv2/caves/mining)
"wbD" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/space_port_lz2)
"wbY" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/n)
"wcs" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/lz1_north_cas)
"wcw" = (
/turf/open/gm/river,
@@ -40406,9 +30179,7 @@
/obj/structure/platform_decoration/kutjevo/rock{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/space)
"weO" = (
/obj/structure/closet/secure_closet/medical_wall{
@@ -40432,9 +30203,7 @@
pixel_y = 16
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"wfm" = (
/obj/structure/bed/chair{
@@ -40442,25 +30211,19 @@
dir = 1;
pixel_y = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"wfx" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/bigredv2/caves/eta/research)
"wfC" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
/obj/effect/landmark/queen_spawn,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_se)
"wfR" = (
/obj/structure/cable{
@@ -40469,104 +30232,71 @@
/obj/structure/cable{
icon_state = "5-6"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"whi" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/filtration_cave_cas)
"whw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"whE" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"whZ" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigred/ground/garage_workshop)
"wix" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigred/ground/garage_workshop)
"wiK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/engineering)
"wjW" = (
/obj/structure/platform/shiva{
dir = 1
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"wko" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/bigredv2/caves/lambda/research)
"wlE" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"wmh" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6";
pixel_y = -8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"wmN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/telecomm/n_cave)
"wni" = (
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/xenobiology)
"woe" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/space_port_lz2)
"wog" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"woK" = (
/obj/effect/decal/warning_stripes{
@@ -40574,21 +30304,14 @@
pixel_x = -1;
pixel_y = 1
},
-/turf/open/floor{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/red/southeast,
/area/bigredv2/outside/marshal_office)
"wpf" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/caves_north)
"wpn" = (
/obj/structure/closet/radiation,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/engineering)
"wry" = (
/obj/structure/surface/table,
@@ -40597,15 +30320,11 @@
phone_color = "blue";
phone_id = "Space Port"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"wrz" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_lambda)
"wrS" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -40618,10 +30337,7 @@
/obj/item/tool/warning_cone{
pixel_y = 20
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/telecomm/n_cave)
"wtj" = (
/turf/open/floor/plating,
@@ -40630,16 +30346,11 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"wtG" = (
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"wtJ" = (
/obj/effect/decal/cleanable/blood{
@@ -40652,9 +30363,7 @@
pixel_x = 12;
pixel_y = 16
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"wuz" = (
/obj/structure/sink{
@@ -40662,37 +30371,25 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"wuC" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/flashlight/flare{
pixel_y = -7
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"wvk" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/virology)
"wvK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"wvR" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/virology)
"wwT" = (
/obj/effect/decal/cleanable/dirt,
@@ -40700,60 +30397,43 @@
/area/bigredv2/outside/engineering)
"wxo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"wyF" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"wyP" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/space_port_lz2)
"wBi" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz2_south_cas)
"wBq" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"wBu" = (
/obj/structure/barricade/handrail{
dir = 1;
pixel_y = 2
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/c)
"wBK" = (
/obj/structure/bed/chair/wood/normal{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"wCo" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"wCs" = (
/obj/structure/machinery/vending/cigarette/colony,
@@ -40767,17 +30447,13 @@
pixel_x = -8;
pixel_y = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"wET" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"wFL" = (
/obj/effect/decal/cleanable/dirt,
@@ -40785,21 +30461,15 @@
pixel_x = 8;
pixel_y = -32
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"wFO" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/caves/mining)
"wFP" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/caves/eta/living)
"wGr" = (
/obj/structure/closet/firecloset/full,
@@ -40819,22 +30489,15 @@
layer = 2.5
},
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"wGF" = (
/obj/item/tool/warning_cone,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/se)
"wGV" = (
/obj/item/tool/wrench,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/c)
"wHg" = (
/obj/effect/landmark/nightmare{
@@ -40847,10 +30510,7 @@
icon_state = "S";
pixel_y = -1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/east,
/area/bigredv2/outside/admin_building)
"wHM" = (
/obj/structure/pipes/vents/pump{
@@ -40863,22 +30523,16 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"wIj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/e)
"wIw" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves_east)
"wJd" = (
/obj/effect/decal/cleanable/dirt,
@@ -40889,53 +30543,37 @@
"wKf" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"wKx" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/lz1_north_cas)
"wKA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/library)
"wLD" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"wLU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"wMg" = (
/obj/item/tool/warning_cone{
pixel_x = 5;
pixel_y = 13
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/filtration_plant)
"wMp" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves_north)
"wMM" = (
/obj/structure/pipes/vents/pump{
@@ -40945,10 +30583,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"wMQ" = (
/obj/structure/largecrate/random/secure,
@@ -40962,10 +30597,7 @@
"wOK" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/caves_lambda)
"wPk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -40973,9 +30605,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"wQa" = (
/obj/structure/surface/table,
@@ -40983,14 +30613,10 @@
pixel_x = 9;
pixel_y = 11
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"wQC" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_lambda)
"wRl" = (
/obj/effect/landmark/nightmare{
@@ -41001,9 +30627,7 @@
"wRH" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/flashlight,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"wSj" = (
/obj/structure/sign/safety/life_support,
@@ -41016,27 +30640,18 @@
/obj/item/stack/sheet/wood{
pixel_y = -8
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"wUD" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_se)
"wVd" = (
/obj/structure/largecrate/random/barrel/red,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"wVw" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/filtration_plant)
"wVB" = (
/obj/structure/platform,
@@ -41049,38 +30664,25 @@
/turf/open/gm/river,
/area/bigredv2/outside/engineering)
"wVQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"wWE" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/outside/n)
"wWK" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_east)
"wWN" = (
/obj/structure/largecrate/random/barrel/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"wXg" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/lz1_north_cas)
"wXv" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/space_port_lz2)
"wXz" = (
/turf/open/floor/plating,
@@ -41089,55 +30691,39 @@
/obj/structure/surface/table/woodentable,
/obj/item/ashtray/glass,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/bar)
"wYE" = (
/obj/structure/prop/server_equipment/yutani_server{
density = 0;
pixel_y = 16
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/engineering)
"wZv" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"wZC" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/eta)
"wZP" = (
/obj/structure/cargo_container/arious/rightmid,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/space_port_lz2)
"xaE" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Lambda Checkpoint"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/lambda_cave_cas)
"xaH" = (
/turf/closed/wall/wood,
/area/bigredv2/caves_sw)
"xbV" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/outside/lz1_north_cas)
"xck" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -41155,9 +30741,7 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"xcz" = (
/obj/effect/decal/warning_stripes{
@@ -41165,25 +30749,18 @@
layer = 2.5;
pixel_x = -1
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/bigredv2/outside/telecomm/warehouse)
"xej" = (
/obj/effect/decal/warning_stripes{
icon_state = "S";
pixel_y = -1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"xeN" = (
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/filtration_plant)
"xfx" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -41193,9 +30770,7 @@
icon_state = "4-8";
name = "heavy duty power cable"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"xfN" = (
/obj/structure/platform_decoration/shiva{
@@ -41208,15 +30783,10 @@
icon_state = "medium"
},
/obj/item/stack/cable_coil/random,
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/caves/lambda/research)
"xfW" = (
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/bigredv2/caves/eta/living)
"xgi" = (
/obj/effect/decal/cleanable/blood{
@@ -41226,53 +30796,37 @@
pixel_x = 12;
pixel_y = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"xgm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/ne)
"xgw" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/outside/lz2_south_cas)
"xhy" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"xhB" = (
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xhU" = (
/obj/structure/closet/fireaxecabinet{
pixel_y = 27
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xjU" = (
/obj/structure/cargo_container/arious/right,
/turf/open/mars,
/area/bigredv2/outside/space_port_lz2)
"xkq" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves_research)
"xkH" = (
/obj/structure/cable{
@@ -41282,10 +30836,7 @@
icon_state = "4-10"
},
/obj/structure/pipes/standard/tank/oxygen,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xkR" = (
/obj/effect/decal/cleanable/blood{
@@ -41296,14 +30847,10 @@
pixel_x = -9;
pixel_y = 13
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"xmy" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_telecomm_cas)
"xmT" = (
/obj/structure/platform/kutjevo/rock,
@@ -41313,20 +30860,13 @@
/obj/structure/platform_decoration/kutjevo/rock{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/space)
"xpb" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/lz2_south_cas)
"xpl" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/research)
"xpG" = (
/obj/structure/sign/safety/hazard,
@@ -41334,10 +30874,7 @@
/area/bigredv2/outside/filtration_plant)
"xpL" = (
/obj/item/tool/wirecutters,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/c)
"xqf" = (
/obj/effect/decal/cleanable/dirt,
@@ -41361,9 +30898,7 @@
},
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/miner,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"xsX" = (
/obj/structure/bed/chair{
@@ -41376,10 +30911,7 @@
"xte" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xtB" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -41389,9 +30921,7 @@
/obj/structure/barricade/handrail/wire{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/s)
"xuP" = (
/obj/item/trash/cigbutt/cigarbutt{
@@ -41410,15 +30940,11 @@
"xuU" = (
/obj/effect/landmark/crap_item,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_east)
"xwo" = (
/obj/structure/disposalpipe/junction,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"xwy" = (
/obj/structure/machinery/light/small{
@@ -41430,10 +30956,7 @@
/obj/structure/cable{
icon_state = "11-2"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xya" = (
/obj/structure/barricade/wooden{
@@ -41444,127 +30967,86 @@
/obj/item/weapon/twohanded/spear{
pixel_x = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"xyu" = (
/obj/structure/closet/l3closet/security,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"xyz" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xzb" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"xzi" = (
/obj/effect/decal/remains/xeno,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xzs" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/living)
"xAh" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_se)
"xAv" = (
/obj/item/weapon/twohanded/folded_metal_chair,
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves/mining)
"xAX" = (
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"xBn" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"xBr" = (
/obj/item/ore{
pixel_x = 9
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/mining)
"xBS" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/outside/lz1_north_cas)
"xDO" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/oob)
"xDW" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/engineering)
"xFZ" = (
/turf/open/mars_cave,
/area/bigredv2/caves_lambda)
"xIo" = (
/obj/structure/window/framed/solaris/reinforced/hull,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/oob)
"xIv" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 8;
name = "\improper Abandoned Mining Storage"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xIx" = (
/obj/item/clothing/mask/gas,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/filtration_plant)
"xIP" = (
/obj/structure/surface/table,
@@ -41578,17 +31060,13 @@
/obj/effect/landmark/corpsespawner/miner,
/obj/item/tool/pickaxe,
/obj/effect/decal/cleanable/blood,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"xJT" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 10
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"xKb" = (
/obj/structure/prop/server_equipment/yutani_server,
@@ -41605,20 +31083,14 @@
/obj/effect/landmark/nightmare{
insert_tag = "lz1containers_scramble"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"xLM" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/largecrate/supply/supplies/water,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xMr" = (
/obj/effect/decal/cleanable/dirt,
@@ -41629,10 +31101,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/gun/pistol/holdout,
/obj/structure/machinery/light,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xMT" = (
/obj/structure/closet,
@@ -41644,18 +31113,13 @@
/obj/item/ammo_magazine/shotgun/buckshot,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/item/reagent_container/food/snacks/packaged_burger,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xNL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/research)
"xOk" = (
/obj/effect/landmark/nightmare{
@@ -41665,9 +31129,7 @@
/area/bigredv2/outside/cargo)
"xPg" = (
/obj/structure/barricade/handrail/wire,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/c)
"xQb" = (
/obj/structure/pipes/vents/pump/on,
@@ -41677,31 +31139,21 @@
"xQd" = (
/obj/structure/largecrate/random/barrel/true_random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"xRl" = (
/obj/item/weapon/gun/pistol/b92fs{
pixel_x = 13;
pixel_y = -7
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"xRn" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/caves_north)
"xSa" = (
/obj/structure/prop/dam/crane,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves/mining)
"xTk" = (
/obj/limb/arm/l_arm,
@@ -41718,23 +31170,16 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/lambda_cave_cas)
"xUo" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/lambda/research)
"xUS" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"xWl" = (
/obj/structure/machinery/door/poddoor/almayer/closed{
@@ -41742,14 +31187,10 @@
id = "lambda";
name = "Lambda Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves_north)
"xWm" = (
-/turf/open/floor{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/whitepurplefull,
/area/bigredv2/caves/lambda/research)
"xWr" = (
/obj/item/ore/uranium{
@@ -41770,10 +31211,7 @@
"xWv" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/caves_lambda)
"xWz" = (
/obj/effect/decal/cleanable/dirt{
@@ -41781,26 +31219,18 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xWH" = (
/obj/structure/barricade/wooden,
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves/mining)
"xWR" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/bigredv2/outside/telecomm/warehouse)
"xWV" = (
/obj/structure/machinery/power/apc{
@@ -41809,18 +31239,13 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xXg" = (
/obj/effect/decal/cleanable/blood{
icon_state = "xgib1"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"xXq" = (
/obj/structure/barricade/handrail{
@@ -41828,16 +31253,11 @@
layer = 3.01;
pixel_y = 9
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/engineering)
"xXP" = (
/obj/structure/prop/invuln/minecart_tracks/bumper,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"xXT" = (
/obj/effect/decal/cleanable/dirt,
@@ -41852,17 +31272,13 @@
icon_state = "4-8";
name = "heavy duty power cable"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves/mining)
"xZf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"xZm" = (
/obj/structure/barricade/wooden{
@@ -41870,44 +31286,30 @@
dir = 4;
health = 25000
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/mining)
"xZL" = (
/turf/closed/wall/solaris/rock,
/area/bigredv2/outside/lambda_cave_cas)
"yar" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"ybk" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves_research)
"ybT" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper Machine room"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"ycM" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves/lambda/xenobiology)
"ycP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/storage)
"yda" = (
/obj/effect/decal/warning_stripes{
@@ -41916,9 +31318,7 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/security/marshal,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves/mining)
"ydd" = (
/obj/item/weapon/shield/riot{
@@ -41928,40 +31328,28 @@
layer = 3
},
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_research)
"ydn" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/eta)
"yej" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"yfs" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"yfz" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/xeno_spawn,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_research)
"yfN" = (
/obj/structure/closet/hydrant{
@@ -41970,10 +31358,7 @@
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/dirt,
/obj/item/ammo_box/magazine/misc/flares,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"ygN" = (
/obj/structure/machinery/washing_machine,
@@ -41981,9 +31366,7 @@
/obj/structure/machinery/washing_machine{
pixel_y = 13
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"ygP" = (
/obj/effect/decal/warning_stripes{
@@ -41994,10 +31377,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/engineering)
"yha" = (
/obj/structure/surface/table,
@@ -42005,14 +31385,10 @@
pixel_y = 8
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves/mining)
"yhc" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/mining)
"yhG" = (
/obj/structure/showcase{
@@ -42022,32 +31398,23 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/caves/lambda/breakroom)
"yhN" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"yhV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"yjU" = (
/obj/item/weapon/broken_bottle,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"yjV" = (
/obj/structure/platform_decoration{
@@ -42067,9 +31434,7 @@
pixel_x = -8;
pixel_y = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves/mining)
"yln" = (
/obj/effect/decal/cleanable/dirt,
@@ -42083,17 +31448,11 @@
/obj/item/ammo_magazine/rifle/nsg23/ap,
/obj/item/ammo_magazine/rifle/nsg23/ap,
/obj/item/ammo_magazine/rifle/nsg23/extended,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"ymi" = (
/obj/item/tool/wet_sign,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
(1,1,1) = {"
@@ -56757,7 +46116,7 @@ asK
asK
axX
bmn
-bmU
+bmV
bns
hhK
tTI
diff --git a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm
index 027d2630f392..29f3f5b1e4dd 100644
--- a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm
+++ b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm
@@ -1,54 +1,39 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"ab" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"ac" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"ad" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"ae" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"af" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"ag" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/marshal_office)
"ah" = (
/turf/closed/wall/solaris/reinforced,
@@ -62,24 +47,17 @@
"ak" = (
/obj/structure/pipes/vents/pump,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"al" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/marshal_office)
"am" = (
/obj/structure/sink{
pixel_y = 32
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"an" = (
/obj/structure/mirror{
@@ -87,45 +65,32 @@
pixel_x = 30
},
/obj/item/tool/soap/deluxe,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"ao" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"ap" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"aq" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"ar" = (
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"as" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 1;
name = "\improper Marshal Office Prison"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull/northeast,
/area/bigredv2/outside/marshal_office)
"at" = (
/turf/closed/wall/solaris,
@@ -136,107 +101,74 @@
dir = 1;
name = "\improper Marshal Office Prison"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull/northeast,
/area/bigredv2/outside/marshal_office)
"av" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Marshal Office Prison Toilet"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"aw" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"ax" = (
/obj/structure/surface/table,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"ay" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"az" = (
/obj/structure/surface/table,
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/marshal_office)
"aA" = (
/obj/structure/toilet{
dir = 4
},
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/marshal_office)
"aB" = (
/obj/structure/machinery/flasher/portable,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"aC" = (
/obj/structure/closet/l3closet/security,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"aD" = (
/obj/structure/closet/l3closet/security,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"aE" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"aF" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"aG" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/revolver/cmb,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"aH" = (
/obj/structure/surface/rack,
@@ -244,35 +176,24 @@
dir = 1
},
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"aI" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
icon_state = "door_locked";
- locked = 0;
name = "\improper Marshal Office Prison"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull/northeast,
/area/bigredv2/outside/marshal_office)
"aJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
icon_state = "door_locked";
- locked = 0;
name = "\improper Marshal Office Prison"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull/northeast,
/area/bigredv2/outside/marshal_office)
"aK" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -281,96 +202,63 @@
icon_state = "door_open";
name = "\improper Marshal Office Prison"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull/northeast,
/area/bigredv2/outside/marshal_office)
"aL" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"aN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aO" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"aP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"aQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"aR" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"aS" = (
/obj/structure/surface/rack,
/obj/item/clothing/accessory/storage/black_vest,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aT" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aU" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/shotgun,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aV" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aW" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"aX" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/eastleft,
/obj/item/weapon/shield/riot,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"aY" = (
/obj/effect/decal/cleanable/dirt,
@@ -413,62 +301,44 @@
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bh" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"bi" = (
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"bj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"bk" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"bl" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"bm" = (
/obj/effect/landmark/corpsespawner/prisoner,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"bn" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"bp" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -478,109 +348,77 @@
icon_state = "door_open";
name = "\improper Marshal Office Armory"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bq" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Marshal Office Brig"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"br" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"bs" = (
/obj/structure/closet/secure_closet/marshal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bt" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bu" = (
/obj/structure/surface/table,
/obj/item/ammo_magazine/shotgun/buckshot,
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bv" = (
/obj/structure/surface/table,
/obj/item/clothing/head/beret/sec/warden,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bw" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/item/ammo_casing/shell,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bx" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"by" = (
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"bA" = (
/obj/structure/machinery/computer/cameras,
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"bB" = (
/obj/structure/surface/table,
/obj/item/ore/diamond,
/obj/item/ore/uranium,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"bD" = (
/obj/effect/decal/warning_stripes{
icon_state = "S";
pixel_y = -1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/red/north,
/area/bigredv2/outside/marshal_office)
"bE" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/marshal_office)
"bF" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"bG" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -593,25 +431,19 @@
icon_state = "gib6"
},
/obj/item/ammo_casing/shell,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bI" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/corpsespawner/prisoner,
/obj/effect/decal/cleanable/blood,
/obj/item/tool/screwdriver,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bK" = (
/obj/effect/landmark/corpsespawner/prison_security,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bL" = (
/obj/structure/window_frame/solaris,
@@ -623,75 +455,53 @@
/obj/structure/machinery/camera/autoname{
dir = 4
},
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"bN" = (
/obj/structure/surface/table,
/obj/item/device/radio,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"bO" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/n)
"bP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/marshal_office)
"bQ" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/westright,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"bR" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bS" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/shard,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bU" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
/obj/item/ammo_casing/shell,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -699,19 +509,14 @@
},
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
icon_state = "door_locked";
- locked = 0;
name = "\improper Marshal Office Armory"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"bX" = (
/obj/structure/surface/table,
/obj/item/ore/uranium,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"bY" = (
/obj/structure/machinery/light{
@@ -721,16 +526,11 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/red/west,
/area/bigredv2/outside/marshal_office)
"bZ" = (
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"ca" = (
/obj/effect/decal/warning_stripes{
@@ -738,66 +538,46 @@
pixel_x = 1;
pixel_y = -1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/red/northwest,
/area/bigredv2/outside/marshal_office)
"cb" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/n)
"cc" = (
/obj/structure/surface/table,
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"ce" = (
/obj/structure/surface/rack,
/obj/item/clothing/suit/armor/riot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"cf" = (
/obj/item/shard,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"cg" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"ch" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"ci" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"cj" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor{
- icon_state = "red"
- },
+/turf/open/floor/red,
/area/bigredv2/outside/marshal_office)
"ck" = (
/obj/effect/decal/warning_stripes{
@@ -805,10 +585,7 @@
pixel_x = -1;
pixel_y = 1
},
-/turf/open/floor{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/red/southeast,
/area/bigredv2/outside/marshal_office)
"cl" = (
/obj/effect/decal/cleanable/dirt,
@@ -816,26 +593,18 @@
/obj/effect/decal/cleanable/blood,
/obj/item/ammo_casing/shell,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/marshal_office)
"cm" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/item/ammo_casing/shell,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"cn" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/southright,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/bigredv2/outside/marshal_office)
"co" = (
/obj/structure/window_frame/solaris,
@@ -847,17 +616,11 @@
/turf/open/floor/plating,
/area/bigredv2/outside/marshal_office)
"cq" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"cr" = (
/obj/item/ammo_casing/shell,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/marshal_office)
"cs" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -867,79 +630,52 @@
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"cu" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"cw" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/shard,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"cx" = (
/obj/item/shard,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"cy" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"cz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/red/west,
/area/bigredv2/outside/marshal_office)
"cA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"cB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"cC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"cE" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -977,10 +713,7 @@
dir = 1;
name = "\improper Marshal Office"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/red/west,
/area/bigredv2/outside/marshal_office)
"cO" = (
/obj/effect/decal/cleanable/dirt,
@@ -988,50 +721,38 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"cP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/corpsespawner/prisoner,
/obj/effect/decal/cleanable/blood,
/obj/item/tool/kitchen/knife,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"cQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/shard,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"cR" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"cS" = (
/obj/structure/machinery/alarm{
dir = 1;
pixel_y = -30
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"cT" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/frame/table,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/marshal_office)
"cU" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -1040,30 +761,22 @@
icon_state = "door_open";
name = "\improper Marshal Office Holding Cell"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"cV" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
icon_state = "door_locked";
- locked = 0;
name = "\improper Marshal Office Holding Cell"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"cW" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Marshal Office Checkpoint"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/marshal_office)
"cX" = (
/obj/effect/decal/cleanable/dirt,
@@ -1077,16 +790,12 @@
/turf/open/floor,
/area/bigredv2/outside/marshal_office)
"cZ" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"da" = (
/obj/effect/landmark/corpsespawner/prisoner,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"db" = (
/obj/structure/machinery/door_control{
@@ -1094,17 +803,11 @@
name = "Storm Shutters";
pixel_x = -32
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/marshal_office)
"dc" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/marshal_office)
"dd" = (
/obj/effect/decal/cleanable/dirt,
@@ -1113,33 +816,23 @@
/area/bigredv2/outside/marshal_office)
"de" = (
/obj/structure/closet/secure_closet/brig,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"df" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"dg" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/marshal_office)
"dh" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/bigredv2/outside/marshal_office)
"di" = (
/obj/effect/decal/cleanable/dirt,
@@ -1157,18 +850,14 @@
/turf/open/floor,
/area/bigredv2/outside/marshal_office)
"do" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/n)
"fh" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Marshal Office Evidence Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/marshal_office)
"fD" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1180,29 +869,20 @@
/turf/open/floor,
/area/bigredv2/outside/marshal_office)
"gu" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/n)
"gJ" = (
/obj/structure/closet/secure_closet/brig,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"if" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/n)
"ix" = (
/obj/structure/closet/secure_closet/brig,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"jq" = (
/obj/structure/machinery/camera/autoname,
@@ -1211,17 +891,12 @@
pixel_x = -1;
pixel_y = -1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/bigredv2/outside/marshal_office)
"qm" = (
/obj/structure/bed,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"rC" = (
/obj/effect/decal/warning_stripes{
@@ -1229,10 +904,7 @@
layer = 2.5;
pixel_x = -1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/red/east,
/area/bigredv2/outside/marshal_office)
"rL" = (
/obj/effect/decal/warning_stripes{
@@ -1240,23 +912,16 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/red/southwest,
/area/bigredv2/outside/marshal_office)
"wL" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/marshal_office)
"zX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/marshal_office)
"MM" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -1271,10 +936,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/red/west,
/area/bigredv2/outside/marshal_office)
"NW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1285,17 +947,11 @@
name = "Storm Shutters";
pixel_y = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/marshal_office)
"RJ" = (
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm b/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm
index 99728fdf50f6..8b49fafe5290 100644
--- a/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm
+++ b/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm
@@ -6,121 +6,73 @@
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/telecomm)
"c" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/telecomm)
"d" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm)
"e" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm)
"f" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm)
"g" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/telecomm)
"h" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm)
"j" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/telecomm)
"k" = (
/obj/effect/decal/cleanable/blood/tracks,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/telecomm)
"l" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/telecomm)
"m" = (
/obj/effect/decal/cleanable/blood/tracks,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/telecomm)
"n" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/telecomm)
"o" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/telecomm)
"p" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/tracks,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/telecomm)
"q" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/telecomm)
"r" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/telecomm)
"s" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/telecomm)
"t" = (
/obj/effect/decal/cleanable/dirt,
@@ -130,14 +82,10 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/tracks,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/telecomm)
"v" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/telecomm)
"w" = (
/obj/structure/sign/safety/hazard,
@@ -145,31 +93,21 @@
/area/bigredv2/outside/telecomm)
"x" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/telecomm)
"y" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/lz1_telecomm_cas)
"z" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/outside/lz1_telecomm_cas)
"A" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_telecomm_cas)
"B" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/outside/lz1_telecomm_cas)
"C" = (
/turf/open/mars_cave,
@@ -183,19 +121,13 @@
/area/bigredv2/outside/lz1_telecomm_cas)
"F" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_telecomm_cas)
"G" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/outside/lz1_telecomm_cas)
"U" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/outside/lz1_telecomm_cas)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm b/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm
index 7b28c00cc0d6..897f76d0f656 100644
--- a/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm
+++ b/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm
@@ -1,9 +1,7 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"ai" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"ak" = (
/obj/effect/spawner/random/tool,
@@ -12,35 +10,25 @@
"al" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"am" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/engineering)
"an" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"ao" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"aq" = (
/turf/closed/wall/solaris/reinforced,
@@ -54,17 +42,13 @@
"aD" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"aE" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"aF" = (
/obj/structure/window/framed/solaris,
@@ -72,51 +56,34 @@
/area/bigredv2/outside/engineering)
"aT" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"aU" = (
/obj/structure/surface/rack,
/obj/item/device/camera_film,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/engineering)
"aV" = (
/obj/structure/surface/rack,
/obj/item/device/analyzer,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"aW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"aY" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"aZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"ba" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -124,20 +91,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/device/lightreplacer,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bc" = (
/obj/structure/machinery/light{
@@ -146,58 +107,41 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/outside/engineering)
"be" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bg" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bi" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/mask/breath,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bj" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bk" = (
/obj/effect/decal/cleanable/dirt,
@@ -205,9 +149,7 @@
dir = 1;
pixel_y = -30
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"bl" = (
/obj/effect/decal/cleanable/liquid_fuel,
@@ -216,9 +158,7 @@
name = "Storm Shutters";
pixel_y = -32
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"bm" = (
/obj/structure/bed/chair{
@@ -226,35 +166,26 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bn" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/glasses/welding,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bo" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bp" = (
/obj/item/folder/yellow,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/bigredv2/outside/engineering)
"bq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -263,87 +194,62 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Engineering Workshop"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/engineering)
"br" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"bu" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 1;
name = "\improper Engine Reactor Control"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/telecomm/engi)
"bv" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bw" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"bx" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/engineering)
"by" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bz" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bA" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bB" = (
/obj/item/stack/sheet/glass,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bC" = (
/obj/effect/decal/cleanable/dirt,
@@ -361,30 +267,19 @@
dir = 8
},
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/telecomm/engi)
"bF" = (
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/telecomm/engi)
"bG" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/telecomm/engi)
"bH" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/ash,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bJ" = (
/obj/structure/bed/chair{
@@ -393,70 +288,46 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bK" = (
/obj/item/folder/yellow,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/bigredv2/outside/engineering)
"bL" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bM" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/engineering)
"bN" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/engineering)
"bO" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bP" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/bigredv2/outside/engineering)
"bR" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"bS" = (
/obj/structure/bed/chair/office/light{
@@ -465,18 +336,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm/engi)
"bT" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/telecomm/engi)
"bU" = (
/obj/item/device/radio/intercom{
@@ -485,27 +351,21 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/telecomm/engi)
"bV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bY" = (
/obj/effect/decal/cleanable/dirt,
@@ -513,27 +373,19 @@
amount = 30
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"bZ" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/pen,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"ca" = (
/obj/structure/sign/safety/hazard{
pixel_y = -32
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/engineering)
"ce" = (
/obj/item/tool/lighter/random,
@@ -541,87 +393,59 @@
dir = 4
},
/obj/effect/decal/cleanable/ash,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"cf" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"cg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"ch" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"ck" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/suit/radiation,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/outside/engineering)
"cl" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/head/welding,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"cm" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"cn" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
dir = 1;
name = "\improper Engine Reactor"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/engineering)
"co" = (
/obj/structure/closet/radiation,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/engineering)
"cp" = (
/obj/item/folder/yellow,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"cq" = (
/obj/effect/decal/cleanable/ash,
/obj/structure/machinery/power/breakerbox,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/telecomm/engi)
"cr" = (
/obj/effect/decal/cleanable/molten_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/telecomm/engi)
"cs" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -630,9 +454,7 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Engine Reactor Control"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/telecomm/engi)
"ct" = (
/obj/structure/machinery/door_control{
@@ -642,48 +464,36 @@
pixel_x = 30;
req_access_txt = "7"
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/telecomm/engi)
"cv" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Engine Reactor Control"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/telecomm/engi)
"cw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"cx" = (
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"cy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/constructable_frame,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"cz" = (
/obj/structure/surface/table,
/obj/structure/machinery/light,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"cA" = (
/obj/structure/surface/table,
@@ -691,10 +501,7 @@
/obj/item/stack/sheet/metal{
amount = 30
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/engineering)
"cB" = (
/obj/structure/machinery/light{
@@ -703,24 +510,17 @@
/obj/structure/sign/safety/high_rad{
pixel_x = 32
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"cC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"cD" = (
/obj/structure/machinery/computer/area_atmos,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/engineering)
"cE" = (
/obj/structure/machinery/light{
@@ -729,17 +529,12 @@
/obj/structure/sign/safety/high_rad{
pixel_x = -32
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"cF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"cG" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -755,9 +550,7 @@
/obj/effect/landmark/static_comms/net_two{
broken_on_spawn = 1
},
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/telecomm/engi)
"cI" = (
/obj/structure/sign/safety/hazard{
@@ -765,29 +558,21 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/extinguisher,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"cK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/molten_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm/engi)
"cM" = (
/turf/open/mars,
/area/bigredv2/outside/lz2_south_cas)
"cN" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/lz2_south_cas)
"cO" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/lz2_south_cas)
"cP" = (
/turf/open/floor/plating,
@@ -800,9 +585,7 @@
/turf/open/gm/river,
/area/bigredv2/outside/engineering)
"cT" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/lz2_south_cas)
"cX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -812,14 +595,10 @@
dir = 1;
name = "\improper Engineering Complex"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/engineering)
"cY" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/outside/lz2_south_cas)
"da" = (
/turf/closed/wall/mineral/uranium,
@@ -830,20 +609,14 @@
/turf/open/floor/plating,
/area/bigredv2/outside/engineering)
"dc" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/lz2_south_cas)
"dd" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/lz2_south_cas)
"de" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/outside/lz2_south_cas)
"df" = (
/obj/structure/machinery/power/port_gen/pacman,
@@ -854,10 +627,7 @@
dir = 8
},
/obj/effect/decal/cleanable/ash,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"dj" = (
/obj/effect/decal/cleanable/dirt/greenglow,
@@ -868,9 +638,7 @@
/turf/open/floor/plating,
/area/bigredv2/outside/engineering)
"dl" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/lz2_south_cas)
"dn" = (
/turf/open/mars_cave,
@@ -901,9 +669,7 @@
/turf/open/floor/plating,
/area/bigredv2/outside/engineering)
"dt" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/s)
"dv" = (
/obj/structure/machinery/power/turbine,
@@ -911,9 +677,7 @@
/area/bigredv2/outside/engineering)
"dx" = (
/obj/effect/decal/cleanable/dirt/greenglow,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"dy" = (
/obj/structure/machinery/power/reactor/colony{
@@ -926,23 +690,17 @@
/turf/open/floor/plating,
/area/bigredv2/outside/engineering)
"dA" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/s)
"dC" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/s)
"dE" = (
/obj/structure/window_frame/solaris/reinforced,
/turf/open/floor/plating,
/area/bigredv2/outside/engineering)
"dF" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/s)
"dG" = (
/obj/structure/machinery/power/port_gen/pacman,
@@ -951,9 +709,7 @@
/area/bigredv2/outside/engineering)
"dJ" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz2_south_cas)
"dK" = (
/obj/structure/machinery/compressor{
@@ -963,38 +719,26 @@
/turf/open/floor/plating,
/area/bigredv2/outside/engineering)
"dO" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/outside/lz2_south_cas)
"dR" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz2_south_cas)
"dS" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/lz2_south_cas)
"dT" = (
/turf/closed/wall/solaris/rock,
/area/bigredv2/caves)
"dU" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/outside/lz2_south_cas)
"dV" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/outside/lz2_south_cas)
"dW" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/outside/lz2_south_cas)
"dX" = (
/obj/structure/girder/reinforced,
@@ -1002,9 +746,7 @@
/area/bigredv2/outside/engineering)
"dY" = (
/obj/effect/decal/cleanable/dirt/greenglow,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/engineering)
"dZ" = (
/obj/effect/decal/cleanable/dirt/greenglow,
@@ -1013,9 +755,7 @@
"eb" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt/greenglow,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"ec" = (
/obj/structure/catwalk/bigred,
@@ -1040,17 +780,13 @@
/obj/structure/machinery/compressor{
dir = 1
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"ej" = (
/obj/structure/machinery/light_construct{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"ek" = (
/obj/structure/machinery/camera/autoname{
@@ -1081,9 +817,7 @@
"eo" = (
/obj/effect/decal/cleanable/dirt/greenglow,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/lz2_south_cas)
"ep" = (
/obj/item/tool/extinguisher,
@@ -1091,9 +825,7 @@
/area/bigredv2/outside/engineering)
"eq" = (
/obj/effect/decal/cleanable/molten_item,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"er" = (
/obj/effect/decal/cleanable/dirt,
@@ -1102,27 +834,19 @@
/area/bigredv2/outside/engineering)
"et" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/telecomm/engi)
"ev" = (
/obj/structure/machinery/light_construct,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"ew" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"ex" = (
/obj/effect/decal/cleanable/molten_item,
/obj/effect/decal/cleanable/dirt/greenglow,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/engineering)
"ey" = (
/obj/structure/machinery/light_construct{
@@ -1133,17 +857,13 @@
/area/bigredv2/outside/engineering)
"ez" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"eA" = (
/obj/structure/machinery/light_construct{
dir = 1
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/engineering)
"eB" = (
/obj/effect/decal/cleanable/dirt/greenglow,
@@ -1153,55 +873,38 @@
"eC" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/molten_item,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/telecomm/engi)
"eD" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/telecomm/engi)
"eE" = (
/obj/structure/computerframe,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/telecomm/engi)
"eF" = (
/obj/structure/surface/table,
/obj/item/device/analyzer,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/telecomm/engi)
"eG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt/greenglow,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/engineering)
"eH" = (
/obj/effect/decal/cleanable/molten_item,
-/turf/open/floor{
- icon_state = "panelscorched"
- },
+/turf/open/floor/panelscorched,
/area/bigredv2/outside/engineering)
"eI" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/telecomm/engi)
"eJ" = (
/obj/effect/decal/cleanable/molten_item,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/engineering)
"eK" = (
/obj/effect/decal/cleanable/molten_item,
@@ -1210,9 +913,7 @@
/area/bigredv2/outside/engineering)
"eL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/engineering)
"eM" = (
/obj/effect/decal/cleanable/dirt/greenglow,
@@ -1221,43 +922,31 @@
/area/bigredv2/outside/engineering)
"eN" = (
/obj/effect/decal/cleanable/dirt/greenglow,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/outside/lz2_south_cas)
"eO" = (
/turf/closed/wall/mineral/uranium/leaking,
/area/bigredv2/outside/engineering)
"fI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"gT" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"im" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"iQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"jr" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/outside/lz2_south_cas)
"kN" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -1267,9 +956,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"oE" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -1280,23 +967,15 @@
/area/bigredv2/outside/telecomm/engi)
"oK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"sU" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/lz2_south_cas)
"to" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"vs" = (
/turf/closed/wall/solaris/reinforced,
@@ -1305,30 +984,21 @@
/obj/structure/machinery/power/apc/fully_broken{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/telecomm/engi)
"xl" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/outside/engineering)
"xz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm/engi)
"yH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/telecomm/engi)
"Ah" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -1336,44 +1006,29 @@
/area/bigredv2/outside/lz2_south_cas)
"Bo" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/telecomm/engi)
"CA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/telecomm/engi)
"Dh" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/bigredv2/outside/engineering)
"Dq" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
"ET" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/engineering)
"IE" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/lz2_south_cas)
"KJ" = (
/obj/structure/window_frame/solaris/reinforced,
@@ -1383,72 +1038,46 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"LE" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/telecomm/engi)
"Nv" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/engineering)
"NT" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/bigredv2/outside/telecomm/engi)
"NX" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/lz2_south_cas)
"Ph" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/lz2_south_cas)
"RN" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/telecomm/engi)
"Sz" = (
/obj/item/stack/sheet/glass,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/engineering)
"SC" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/engineering)
"Tv" = (
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/telecomm/engi)
"Uo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/bigredv2/outside/telecomm/engi)
"WI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/engineering)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm
index 8f155a1eabef..ac01a7d1f4f7 100644
--- a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm
+++ b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm
@@ -1,39 +1,26 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"ao" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/outside/lz2_south_cas)
"au" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/weapon/shield/riot,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"az" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_research)
"bu" = (
/obj/structure/closet/secure_closet/marshal,
/obj/item/clothing/suit/storage/CMB,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"cj" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"cR" = (
/turf/closed/wall/solaris/rock,
@@ -42,48 +29,32 @@
/turf/open/mars_cave,
/area/bigredv2/caves_research)
"fo" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/outside/lz2_south_cas)
"fK" = (
/obj/structure/machinery/light/double{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/lz2_south_cas)
"fQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/lz2_south_cas)
"gQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/bigredv2/caves_sw)
"ie" = (
/obj/item/prop/helmetgarb/spent_buckshot,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/lz2_south_cas)
"ii" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves_sw)
"ik" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/outside/lz2_south_cas)
"io" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_research)
"iF" = (
/obj/structure/surface/table/reinforced/prison,
@@ -98,24 +69,16 @@
pixel_x = -8;
pixel_y = 7
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"jj" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/lz2_south_cas)
"ki" = (
/obj/structure/machinery/light/double{
dir = 4
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kq" = (
/obj/structure/surface/table/reinforced/prison,
@@ -140,91 +103,57 @@
pixel_x = -7;
pixel_y = -3
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"kS" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves_sw)
"lQ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_sw)
"mT" = (
/obj/item/clothing/head/helmet/riot,
-/turf/open/floor/plating{
- burnt = 1;
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/burnt_platingdmg3/west,
/area/bigredv2/caves/mining)
"nx" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/lz2_south_cas)
"pn" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/caves_sw)
"qm" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz2_south_cas)
"qW" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/caves_sw)
"sJ" = (
/obj/item/clothing/suit/storage/CMB,
/obj/structure/closet/secure_closet/marshal,
/obj/structure/machinery/light/double,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"sV" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_sw)
"uJ" = (
/obj/item/shard{
pixel_x = 11;
pixel_y = 8
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"vX" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves_sw)
"wn" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/outside/lz2_south_cas)
"wJ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/lz2_south_cas)
"wK" = (
/obj/structure/bed/chair{
@@ -232,10 +161,7 @@
},
/obj/effect/landmark/corpsespawner/security,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"wW" = (
/obj/structure/surface/table/reinforced/prison,
@@ -254,10 +180,7 @@
pixel_x = 1;
pixel_y = 5
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"xS" = (
/obj/item/trash/cigbutt,
@@ -265,22 +188,16 @@
pixel_x = 9;
pixel_y = -5
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/lz2_south_cas)
"yw" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/caves)
"zB" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"zP" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/outside/lz2_south_cas)
"AD" = (
/obj/effect/decal/cleanable/blood{
@@ -288,43 +205,28 @@
icon_state = "gib6";
pixel_y = 20
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"Be" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Marshals Mining Security Post"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"Bm" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/caves_sw)
"Bz" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"BO" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/lz2_south_cas)
"BY" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_research)
"En" = (
/obj/structure/window_frame/solaris/reinforced,
@@ -337,40 +239,26 @@
pixel_y = -9
},
/obj/item/shard,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"Et" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_research)
"Fp" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/bigredv2/caves_sw)
"FB" = (
/obj/structure/surface/rack,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/clothing/under/marine/ua_riot,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"FW" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/outside/lz2_south_cas)
"Jm" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/lz2_south_cas)
"Jy" = (
/obj/structure/surface/table/reinforced/prison,
@@ -381,32 +269,22 @@
},
/obj/item/clothing/mask/cigarette/cigar/havana,
/obj/item/shard,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"JV" = (
/turf/closed/wall/wood,
/area/bigredv2/outside/lz2_south_cas)
"JW" = (
/obj/structure/machinery/light/double,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/outside/lz2_south_cas)
"KI" = (
/obj/effect/landmark/corpsespawner/ua_riot,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"Le" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_research)
"MN" = (
/obj/structure/reagent_dispensers/peppertank{
@@ -419,16 +297,11 @@
icon_state = "grenade_custom";
name = "M55C Teargas grenade"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"Nu" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"OV" = (
/obj/structure/surface/rack,
@@ -440,58 +313,38 @@
/obj/item/clothing/head/helmet/riot{
pixel_y = 11
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"OY" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/outside/lz2_south_cas)
"Qn" = (
/obj/structure/window_frame/solaris/reinforced,
/obj/item/shard,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"QO" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_research)
"QS" = (
/obj/structure/machinery/door/poddoor/two_tile{
name = "\improper Eta Tunnel Lockdown"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/lz2_south_cas)
"QV" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/bigredv2/caves_sw)
"Rm" = (
/obj/item/shard{
icon_state = "small"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/bigredv2/outside/lz2_south_cas)
"Sy" = (
/obj/item/weapon/broken_bottle,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"Tm" = (
/obj/effect/decal/cleanable/blood{
@@ -501,10 +354,7 @@
icon_state = "grenade_custom";
name = "M55C Teargas grenade"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"Ue" = (
/obj/structure/surface/table/reinforced/prison,
@@ -512,91 +362,58 @@
/obj/item/restraint/handcuffs{
pixel_y = -3
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"Uh" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/bigredv2/caves_sw)
"UG" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_sw)
"UX" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_sw)
"VR" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/caves/mining)
"Wy" = (
/obj/structure/window/framed/solaris/reinforced,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"WV" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves_sw)
"Xl" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/outside/lz2_south_cas)
"Xm" = (
-/turf/open/floor/plating{
- burnt = 1;
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/burnt_platingdmg3/west,
/area/bigredv2/caves/mining)
"XE" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/cameras{
dir = 4
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"XV" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/door/window{
dir = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
"Yt" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/outside/lz2_south_cas)
"Zk" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/bigredv2/caves_sw)
"Zz" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/caves/mining)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm b/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm
index d148955c0c93..729d541cbc96 100644
--- a/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm
+++ b/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm
@@ -1,19 +1,12 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
- dir = 8;
- icon_state = "landingstripe"
- },
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
+ dir = 8
},
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port)
"ab" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"ac" = (
/turf/closed/wall/solaris/reinforced,
@@ -46,177 +39,113 @@
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/space_port)
"ak" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"al" = (
/obj/item/shard,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"am" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"an" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/bigredv2/outside/space_port)
"ao" = (
/obj/structure/machinery/disposal,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/bigredv2/outside/space_port)
"ap" = (
/obj/item/shard,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/bigredv2/outside/space_port)
"aq" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/bigredv2/outside/space_port)
"ar" = (
/obj/structure/noticeboard{
pixel_y = 30
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/bigredv2/outside/space_port)
"as" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/bigredv2/outside/space_port)
"at" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/space_port)
"au" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/space_port)
"av" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/space_port)
"aw" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"ax" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"ay" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"az" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aB" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/bigredv2/outside/space_port)
"aC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"aD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"aE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"aF" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"aG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"aI" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -226,23 +155,17 @@
dir = 1;
name = "\improper Spaceport"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aK" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aL" = (
/obj/structure/surface/table,
@@ -252,28 +175,18 @@
name = "Storm Shutters";
pixel_x = 32
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/bigredv2/outside/space_port)
"aM" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"aN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port)
"aO" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/space_port)
"aP" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -285,114 +198,76 @@
/turf/open/floor/plating,
/area/bigredv2/outside/space_port)
"aQ" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/bigredv2/outside/space_port)
"aR" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aS" = (
/obj/structure/bed/chair/office/dark{
dir = 4;
layer = 3.25
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aT" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/bigredv2/outside/space_port)
"aU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"aV" = (
/obj/structure/largecrate,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"aW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/space_port)
"aX" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/space_port)
"aY" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/bigredv2/outside/space_port)
"aZ" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/cameras{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"ba" = (
/obj/structure/surface/table,
/obj/item/device/radio,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"bb" = (
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"bc" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"bd" = (
/obj/structure/surface/table,
/obj/item/paper,
/obj/item/tool/pen,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"be" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/bigredv2/outside/space_port)
"bh" = (
/turf/closed/wall/solaris/rock,
@@ -401,97 +276,63 @@
/turf/open/mars,
/area/bigredv2/outside/nw)
"bj" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/nw)
"bk" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/nw)
"bl" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/nw)
"bm" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/nw)
"bn" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"bo" = (
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"bp" = (
/obj/item/stack/sheet/metal,
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"bq" = (
/obj/structure/lz_sign/solaris_sign,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"br" = (
/obj/item/stack/rods,
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"bs" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/nw)
"bt" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/nw)
"bu" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/nw)
"bv" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/nw)
"bw" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"bx" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/nw)
"by" = (
/obj/effect/decal/cleanable/dirt,
@@ -499,185 +340,117 @@
/area/bigredv2/outside/nw)
"bz" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"bA" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/nw)
"bB" = (
/obj/structure/fence,
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/nw)
"bC" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/nw)
"bD" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/largecrate,
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/nw)
"bE" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/nw)
"bF" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/nw)
"bG" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"bH" = (
/obj/structure/cargo_container/wy/left,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"bI" = (
/obj/structure/cargo_container/wy/mid,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"bJ" = (
/obj/structure/cargo_container/wy/right,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"bK" = (
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/nw)
"bL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"bM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"bN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"bP" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"bQ" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"bS" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"bT" = (
/obj/structure/fence,
/turf/open/mars,
/area/bigredv2/outside/nw)
"bU" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/nw)
"bV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/nw)
"bW" = (
/obj/structure/fence,
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/nw)
"bX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"bY" = (
/turf/template_noop,
/area/template_noop)
"bZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/nw)
"ca" = (
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/bigredv2/outside/nw)
"cb" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/nw)
"cc" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"Dc" = (
/obj/effect/decal/cleanable/dirt,
diff --git a/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm b/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm
index 15bfc057bae8..5285427c0079 100644
--- a/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm
+++ b/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm
@@ -5,63 +5,45 @@
"b" = (
/obj/structure/surface/rack,
/obj/item/tool/shovel,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"c" = (
/obj/structure/surface/rack,
/obj/item/tool/pickaxe,
/obj/item/tool/pickaxe,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"d" = (
/obj/structure/surface/rack,
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"e" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"f" = (
/obj/structure/surface/table,
/obj/item/storage/toolbox,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"g" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"h" = (
/obj/structure/surface/table,
/obj/item/tool/pickaxe,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"i" = (
/obj/item/ore,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"j" = (
/obj/effect/decal/remains/human,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"k" = (
/obj/structure/barricade/wooden{
@@ -69,9 +51,7 @@
dir = 4;
health = 25000
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"l" = (
/obj/structure/surface/rack,
@@ -81,61 +61,45 @@
/obj/item/lightstick/red,
/obj/item/storage/box/lightstick/red,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"m" = (
/obj/item/tool/shovel,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"n" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/space_port)
"o" = (
/obj/item/tool/pickaxe,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"p" = (
/obj/item/tool/warning_cone,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"q" = (
/obj/structure/surface/table,
/obj/item/clothing/mask/gas,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"r" = (
/obj/structure/surface/table,
/obj/item/pizzabox,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"s" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"t" = (
/obj/structure/ore_box,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"u" = (
/obj/structure/sign/safety/hazard,
@@ -150,16 +114,12 @@
/area/bigredv2/outside/space_port)
"A" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"P" = (
/obj/item/ore,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm
index 19f720daf929..af347ca1f772 100644
--- a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm
+++ b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm
@@ -15,58 +15,41 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Chapel"
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"ae" = (
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"af" = (
/obj/structure/closet/wardrobe/chaplain_black,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"ag" = (
/obj/item/tool/candle,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"ah" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/bigredv2/outside/chapel)
"ai" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"ak" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"al" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/item/tool/candle,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"an" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -76,9 +59,7 @@
layer = 3;
pixel_x = 24
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"ao" = (
/obj/structure/window/framed/solaris,
@@ -90,113 +71,76 @@
/turf/open/floor/plating,
/area/bigredv2/outside/chapel)
"ap" = (
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"aq" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/rampbottom/north,
/area/bigredv2/outside/chapel)
"as" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/bigredv2/outside/chapel)
"at" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
/obj/effect/decal/cleanable/ash,
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/bigredv2/outside/chapel)
"au" = (
/obj/effect/decal/cleanable/blood/gibs/body,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"av" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/bigredv2/outside/chapel)
"aw" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
/obj/effect/decal/cleanable/ash,
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/bigredv2/outside/chapel)
"ax" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/bigredv2/outside/chapel)
"ay" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/bigredv2/outside/chapel)
"az" = (
/obj/item/tool/candle,
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/bigredv2/outside/chapel)
"aA" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/bigredv2/outside/chapel)
"aB" = (
/obj/structure/surface/table/woodentable,
/obj/item/tool/candle,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"aC" = (
/obj/item/tool/candle{
icon_state = "candle2"
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"aD" = (
/obj/structure/surface/table/woodentable,
/obj/item/weapon/chainofcommand,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"aE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -205,66 +149,46 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"aF" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
/obj/effect/decal/cleanable/ash,
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/bigredv2/outside/chapel)
"aG" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
/obj/effect/decal/cleanable/ash,
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/bigredv2/outside/chapel)
"aH" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/bigredv2/outside/chapel)
"aI" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/bigredv2/outside/chapel)
"aJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/bigredv2/outside/chapel)
"aK" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/bigredv2/outside/chapel)
"aL" = (
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/bigredv2/outside/chapel)
"aN" = (
/obj/structure/pipes/vents/pump{
@@ -273,9 +197,7 @@
/obj/effect/decal/cleanable/ash,
/obj/effect/decal/cleanable/blood,
/obj/item/clothing/head/cardborg,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"aO" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -283,25 +205,19 @@
},
/obj/structure/surface/table/woodentable,
/obj/item/storage/bible,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"aP" = (
/obj/item/tool/candle{
icon_state = "candle3";
item_state = "candle3"
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"aR" = (
/obj/item/organ/heart,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"aS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -311,9 +227,7 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"aT" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -322,83 +236,58 @@
/obj/item/tool/candle{
icon_state = "candle3"
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"aU" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/item/tool/candle,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"aW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"aX" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"aZ" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"ba" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/bigredv2/outside/chapel)
"bc" = (
/obj/effect/decal/cleanable/blood{
layer = 3;
pixel_x = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/bigredv2/outside/chapel)
"be" = (
-/turf/open/floor{
- icon_state = "rampbottom"
- },
+/turf/open/floor/rampbottom,
/area/bigredv2/outside/chapel)
"bh" = (
/obj/item/tool/candle,
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/bigredv2/outside/chapel)
"bi" = (
/obj/item/tool/candle,
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/bigredv2/outside/chapel)
"bj" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"bk" = (
/obj/structure/machinery/door_control{
@@ -407,41 +296,31 @@
pixel_x = -32
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
"bl" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"bm" = (
/obj/structure/machinery/power/apc,
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"bp" = (
/obj/structure/machinery/alarm{
dir = 1;
pixel_y = -30
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/chapel)
"bq" = (
/obj/item/tool/candle{
icon_state = "candle4"
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/bigredv2/outside/chapel)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm b/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm
index bfce848e5656..215c6f874cb2 100644
--- a/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm
+++ b/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm
@@ -3,17 +3,11 @@
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/nw)
"c" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/bigredv2/outside/nw)
"d" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/bigredv2/outside/nw)
"e" = (
/obj/structure/largecrate/random/barrel/red,
@@ -21,8 +15,7 @@
/area/bigredv2/outside/nw)
"f" = (
/obj/structure/machinery/light{
- dir = 1;
- icon_state = "tube1"
+ dir = 1
},
/obj/structure/largecrate/random/case/small,
/turf/open/floor/plating,
@@ -54,33 +47,24 @@
/turf/open/floor/plating,
/area/bigredv2/outside/nw)
"n" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/bigredv2/outside/nw)
"p" = (
/obj/structure/pipes/standard/simple/hidden/green{
- dir = 4;
- layer = 2.4
- },
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
+ dir = 4
},
+/turf/open/floor/plating/warnplate/west,
/area/bigredv2/outside/nw)
"q" = (
/obj/structure/pipes/standard/simple/hidden/green{
- dir = 4;
- layer = 2.4
+ dir = 4
},
/turf/open/floor/plating,
/area/bigredv2/outside/nw)
"r" = (
/obj/effect/landmark/hunter_primary,
/obj/structure/pipes/standard/simple/hidden/green{
- dir = 4;
- layer = 2.4
+ dir = 4
},
/turf/open/floor/plating,
/area/bigredv2/outside/nw)
@@ -90,9 +74,7 @@
/area/bigredv2/outside/nw)
"u" = (
/obj/structure/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
+ dir = 8
},
/turf/open/floor/plating,
/area/bigredv2/outside/nw)
@@ -128,9 +110,7 @@
/area/bigredv2/outside/nw)
"D" = (
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/telecomm/warehouse)
"H" = (
/obj/effect/decal/warning_stripes{
@@ -138,25 +118,17 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/bigredv2/outside/telecomm/warehouse)
"K" = (
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/bigredv2/outside/telecomm/warehouse)
"O" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/bigredv2/outside/telecomm/warehouse)
"S" = (
/obj/structure/machinery/power/apc{
@@ -168,10 +140,7 @@
layer = 2.5;
pixel_x = -1
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/bigredv2/outside/telecomm/warehouse)
"T" = (
/obj/effect/decal/warning_stripes{
@@ -179,19 +148,14 @@
pixel_x = -1;
pixel_y = 1
},
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/bigredv2/outside/telecomm/warehouse)
"V" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/outside/telecomm/warehouse)
"Z" = (
/obj/effect/decal/warning_stripes{
@@ -199,10 +163,7 @@
layer = 2.5;
pixel_x = -1
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/bigredv2/outside/telecomm/warehouse)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm b/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm
index 0413441989ea..291b83899b4b 100644
--- a/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm
+++ b/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm
@@ -3,19 +3,14 @@
/turf/closed/wall/solaris/rock,
/area/bigredv2/caves)
"c" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"d" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/space_port)
"e" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/lz1_north_cas)
"f" = (
/obj/item/tool/warning_cone,
@@ -25,15 +20,11 @@
/turf/open/floor/plating,
/area/bigredv2/outside/space_port)
"i" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/outside/lz1_north_cas)
"j" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/lz1_north_cas)
"F" = (
/obj/structure/sign/safety/hazard,
diff --git a/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm b/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm
index 74be8d01d4ab..ba7296705642 100644
--- a/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm
+++ b/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm
@@ -1,9 +1,6 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"ab" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"ac" = (
/turf/open/floor/plating,
@@ -17,23 +14,14 @@
dir = 1;
name = "\improper Spaceport"
},
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"ah" = (
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"ai" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aj" = (
/obj/structure/surface/table,
@@ -42,10 +30,7 @@
/obj/structure/machinery/camera/autoname{
dir = 8
},
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"al" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -53,8 +38,7 @@
/area/bigredv2/outside/space_port)
"am" = (
/obj/structure/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/open/floor/plating,
/area/bigredv2/outside/space_port)
@@ -67,26 +51,17 @@
pixel_x = -32;
start_charge = 0
},
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"ap" = (
/obj/effect/decal/cleanable/blood/gibs/up,
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aq" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"ar" = (
/obj/structure/surface/table,
@@ -97,38 +72,25 @@
pixel_x = 32
},
/obj/item/tool/pen,
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"at" = (
/obj/structure/machinery/disposal,
/obj/structure/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
+ dir = 8
},
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"au" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"av" = (
/obj/structure/machinery/blackbox_recorder,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"ax" = (
/obj/structure/window/framed/solaris,
@@ -144,18 +106,12 @@
/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{
dir = 4
},
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/landing/console)
"az" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aA" = (
/obj/structure/cargo_container/watatsumi/leftmid,
@@ -173,27 +129,18 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aE" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/decal/cleanable/blood/gibs/core,
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aF" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- dir = 2;
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/space_port)
"aG" = (
/obj/effect/decal/cleanable/blood{
@@ -205,58 +152,37 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/bigredv2/outside/space_port)
"aI" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/bomb_supply,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 2;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"aJ" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 2;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"aK" = (
/obj/structure/machinery/computer/cameras,
-/turf/open/floor{
- dir = 2;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"aL" = (
/obj/item/shard,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 2;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"aM" = (
-/turf/open/floor{
- dir = 2;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/bigredv2/outside/space_port)
"aN" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/bigredv2/outside/space_port)
"aP" = (
/obj/structure/window/framed/solaris,
@@ -280,44 +206,28 @@
/area/bigredv2/outside/space_port)
"aT" = (
/obj/structure/machinery/light{
- dir = 1;
- icon_state = "tube1"
+ dir = 1
},
/turf/open/floor/plating,
/area/bigredv2/outside/space_port)
"aU" = (
/obj/structure/machinery/floodlight/landing,
-/turf/open/floor{
- dir = 2;
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/bigredv2/outside/space_port)
"aV" = (
-/turf/open/floor/plating{
- dir = 2;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/outside/space_port)
"aW" = (
/obj/structure/cargo_container/arious/leftmid,
-/turf/open/floor/plating{
- dir = 2;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/outside/space_port)
"aX" = (
/obj/structure/cargo_container/arious/rightmid,
-/turf/open/floor/plating{
- dir = 2;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/outside/space_port)
"aY" = (
/obj/structure/cargo_container/arious/right,
-/turf/open/floor/plating{
- dir = 2;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/bigredv2/outside/space_port)
"bd" = (
/obj/effect/decal/cleanable/blood,
@@ -329,10 +239,7 @@
/area/bigredv2/outside/space_port)
"bf" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/space_port)
"bg" = (
/obj/effect/landmark/crap_item,
diff --git a/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm b/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm
index f62f085e7ea2..5c1c05d3e258 100644
--- a/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm
+++ b/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm
@@ -5,25 +5,18 @@
pixel_x = -11;
pixel_y = 10
},
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/breakroom)
"ab" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_y = 6
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/breakroom)
"ac" = (
/obj/item/tool/pickaxe/drill,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"ad" = (
/obj/effect/glowshroom,
@@ -31,39 +24,26 @@
/area/bigredv2/caves_lambda)
"ae" = (
/obj/effect/glowshroom,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_lambda)
"af" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_lambda)
"ag" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/breakroom)
"ah" = (
/obj/effect/glowshroom,
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_lambda)
"ai" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_lambda)
"aj" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_lambda)
"ak" = (
/turf/closed/wall/solaris/rock,
@@ -74,10 +54,7 @@
pixel_y = -32
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/breakroom)
"am" = (
/obj/structure/machinery/door_control{
@@ -86,9 +63,7 @@
pixel_y = 28
},
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/breakroom)
"an" = (
/obj/effect/decal/cleanable/mucus,
@@ -99,28 +74,21 @@
},
/obj/effect/landmark/corpsespawner/pmc,
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/breakroom)
"ao" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -8;
pixel_y = 6
},
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/breakroom)
"ap" = (
/obj/structure/sign/safety/bulkhead_door,
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/caves/lambda/breakroom)
"aq" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "w-y0"
- },
+/turf/open/floor/almayer/w_y0/north,
/area/bigredv2/caves/lambda/breakroom)
"ar" = (
/obj/structure/filingcabinet{
@@ -134,10 +102,7 @@
pixel_x = -8;
pixel_y = 20
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/bigredv2/caves/lambda/breakroom)
"as" = (
/obj/structure/filingcabinet{
@@ -151,19 +116,13 @@
/obj/structure/filingcabinet{
pixel_x = -9
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/bigredv2/caves/lambda/breakroom)
"at" = (
/turf/open/floor/plating/almayer,
/area/bigredv2/caves/lambda/breakroom)
"au" = (
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/bigredv2/caves/lambda/breakroom)
"av" = (
/obj/structure/filingcabinet{
@@ -176,54 +135,35 @@
pixel_x = -8;
pixel_y = 16
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/bigredv2/caves/lambda/breakroom)
"aw" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/breakroom)
"ax" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/breakroom)
"aA" = (
/turf/template_noop,
/area/template_noop)
"aB" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "w-y1"
- },
+/turf/open/floor/almayer/w_y1/north,
/area/bigredv2/caves/lambda/breakroom)
"aC" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/breakroom)
"aD" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/breakroom)
"aE" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/bigredv2/caves/lambda/breakroom)
"aF" = (
/obj/structure/machinery/light{
@@ -244,10 +184,7 @@
/obj/item/clothing/accessory/medal/bronze/science{
pixel_x = -5
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/bigredv2/caves/lambda/breakroom)
"aG" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -262,19 +199,14 @@
dir = 1;
pixel_y = 7
},
-/turf/open/floor{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2,
/area/bigredv2/caves/lambda/breakroom)
"aI" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/caves/lambda/breakroom)
"aJ" = (
/obj/structure/machinery/light,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/bigredv2/caves/lambda/breakroom)
"aK" = (
/obj/structure/surface/table/reinforced/prison,
@@ -282,10 +214,7 @@
id = "vault";
name = "Vault Lockdown"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/bigredv2/caves/lambda/breakroom)
"aL" = (
/obj/structure/surface/table/reinforced/prison,
@@ -293,29 +222,19 @@
/obj/item/spacecash/c1000,
/obj/item/spacecash/c1000,
/obj/item/spacecash/c1000,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/bigredv2/caves/lambda/breakroom)
"aM" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "w-y2"
- },
+/turf/open/floor/almayer/w_y2/north,
/area/bigredv2/caves/lambda/breakroom)
"aN" = (
/turf/open/mars_cave,
/area/bigredv2/caves_lambda)
"aP" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_lambda)
"aQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_lambda)
"aR" = (
/obj/structure/filingcabinet{
@@ -328,27 +247,18 @@
pixel_x = -9;
pixel_y = 20
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/bigredv2/caves/lambda/breakroom)
"aS" = (
/obj/effect/glowshroom,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"aT" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_4"
- },
+/turf/open/mars_cave/mars_cave_4,
/area/bigredv2/caves_lambda)
"aV" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"aW" = (
/obj/structure/machinery/door/airlock/almayer/secure/reinforced/colony{
@@ -359,43 +269,29 @@
id = "vault";
name = "Vault Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/caves/lambda/breakroom)
"aX" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_8"
- },
+/turf/open/mars_cave/mars_cave_8,
/area/bigredv2/caves_lambda)
"aY" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_lambda)
"aZ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_lambda)
"ba" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"vm" = (
/obj/item/shard{
icon_state = "small"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_lambda)
"zP" = (
/obj/effect/glowshroom,
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/bigredv2/caves_lambda)
"EW" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -421,9 +317,7 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/bigredv2/caves_lambda)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm b/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm
index 5ff0d32f9e15..0b51c63b39be 100644
--- a/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm
+++ b/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm
@@ -8,9 +8,7 @@
/turf/open/floor/plating,
/area/bigredv2/outside/cargo)
"ab" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"ad" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -52,9 +50,7 @@
dir = 8;
health = 25000
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"am" = (
/obj/structure/largecrate/cow,
@@ -66,9 +62,7 @@
/area/bigredv2/outside/cargo)
"ao" = (
/obj/structure/largecrate/cow,
-/turf/open/floor{
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea,
/area/bigredv2/outside/cargo)
"ap" = (
/obj/structure/closet/emcloset,
@@ -145,18 +139,14 @@
/turf/open/floor,
/area/bigredv2/outside/cargo)
"aC" = (
-/turf/open/floor{
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea,
/area/bigredv2/outside/cargo)
"aD" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Cargo Offices"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"aE" = (
/obj/structure/window/framed/solaris,
@@ -169,30 +159,21 @@
/area/bigredv2/outside/cargo)
"aF" = (
/obj/structure/cargo_container/arious/leftmid,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/structure/cargo_container/arious/rightmid,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/cargo_container/arious/right,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aI" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -205,29 +186,20 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aN" = (
/obj/structure/machinery/light{
@@ -237,55 +209,34 @@
/area/bigredv2/outside/cargo)
"aO" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/largecrate,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate/trashcart,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aS" = (
/obj/structure/cargo_container/grant/left,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aT" = (
/obj/structure/cargo_container/grant/rightmid,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aU" = (
/obj/structure/cargo_container/grant/right,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aV" = (
/obj/effect/decal/cleanable/dirt,
@@ -301,23 +252,16 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Cargo Bay Security"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"aX" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"aY" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea,
/area/bigredv2/outside/cargo)
"aZ" = (
/obj/structure/surface/table,
@@ -339,38 +283,23 @@
"bc" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cargo_container/watatsumi/leftmid,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bd" = (
/obj/structure/cargo_container/watatsumi/rightmid,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"be" = (
/obj/structure/cargo_container/watatsumi/right,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bf" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bg" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bh" = (
/obj/structure/largecrate/random/barrel,
@@ -378,10 +307,7 @@
/area/bigredv2/outside/cargo)
"bj" = (
/obj/structure/largecrate,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bk" = (
/obj/structure/machinery/power/apc{
@@ -402,9 +328,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bs" = (
/obj/effect/decal/cleanable/dirt,
@@ -431,9 +355,7 @@
dir = 1;
name = "\improper Cargo Bay"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bz" = (
/obj/effect/landmark/corpsespawner/security/marshal,
@@ -474,34 +396,21 @@
"bI" = (
/obj/item/reagent_container/spray/cleaner,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "floor4"
- },
+/turf/open/floor/floor4,
/area/bigredv2/outside/cargo)
"bJ" = (
-/turf/open/floor{
- icon_state = "floor4"
- },
+/turf/open/floor/floor4,
/area/bigredv2/outside/cargo)
"bK" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/east,
/area/bigredv2/outside/cargo)
"bM" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/largecrate/random/barrel,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bN" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/west,
/area/bigredv2/outside/cargo)
"bO" = (
/obj/structure/machinery/door_control{
@@ -529,9 +438,7 @@
dir = 1;
name = "\improper Cargo Bay Quartermaster"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"bS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -543,20 +450,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/east,
/area/bigredv2/outside/cargo)
"bV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -564,10 +465,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -575,20 +473,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/cargo)
"bZ" = (
/obj/structure/reagent_dispensers/watertank,
@@ -615,9 +507,7 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Cargo Bay Quartermaster"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/cargo)
"cf" = (
/obj/structure/bed/chair/office/dark,
@@ -730,29 +620,21 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Engineering Complex"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/engineering)
"cx" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/engineering)
"zL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "floor4"
- },
+/turf/open/floor/floor4,
/area/bigredv2/outside/cargo)
"AS" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "floor4"
- },
+/turf/open/floor/floor4,
/area/bigredv2/outside/cargo)
"Gu" = (
/obj/effect/decal/cleanable/dirt,
diff --git a/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm b/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm
index 62d8c1f9d5ab..8f710225f0c5 100644
--- a/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm
+++ b/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm
@@ -13,65 +13,40 @@
/area/bigredv2/outside/nw)
"e" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/nw)
"f" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/nw)
"g" = (
/turf/open/mars,
/area/bigredv2/outside/w)
"h" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/w)
"i" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/nw)
"j" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/nw)
"k" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/nw)
"l" = (
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/bigredv2/outside/w)
"m" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/w)
"n" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/w)
"o" = (
-/turf/open/mars{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars/mars_dirt_6,
/area/bigredv2/outside/w)
"U" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/bigredv2/outside/w)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm b/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm
index adbdf51bd259..10252b55284c 100644
--- a/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm
+++ b/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm
@@ -7,9 +7,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"ad" = (
/obj/effect/decal/cleanable/dirt,
@@ -19,16 +17,12 @@
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"af" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"ah" = (
/obj/structure/window/framed/solaris,
@@ -42,100 +36,67 @@
/area/bigredv2/caves)
"ak" = (
/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"al" = (
/obj/structure/surface/table,
/obj/item/tool/lighter/random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"am" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/se)
"an" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"ap" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"aq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/filtration_plant)
"ar" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"as" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"at" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"au" = (
/obj/structure/machinery/computer/atmos_alert{
dir = 8
},
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/filtration_plant)
"av" = (
/obj/item/tool/warning_cone,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/se)
"aw" = (
-/turf/open/mars{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars/mars_dirt_6,
/area/bigredv2/outside/se)
"ax" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/se)
"ay" = (
/obj/effect/decal/cleanable/dirt,
@@ -151,27 +112,21 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Atmospherics Condenser Storage"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"aB" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 1;
name = "\improper Atmospherics Condenser"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"aC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"aD" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -179,126 +134,86 @@
name = "\improper Atmospherics Condenser"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"aE" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/radio/headset,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"aF" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan,
/turf/open/floor/plating,
/area/bigredv2/outside/filtration_plant)
"aG" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/se)
"aH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"aJ" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/se)
"aK" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/se)
"aL" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"aM" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"aN" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"aO" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"aP" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"aQ" = (
/obj/structure/surface/table,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"aR" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"aS" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/filtration_plant)
"aT" = (
/obj/structure/dispenser/oxygen,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"aV" = (
/obj/effect/decal/warning_stripes{
icon_state = "U-N"
},
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"aW" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"aX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"aY" = (
/turf/closed/wall/solaris/reinforced,
@@ -306,10 +221,7 @@
"aZ" = (
/obj/structure/machinery/computer/general_air_control,
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"bb" = (
/obj/structure/surface/table,
@@ -317,34 +229,23 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"bc" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bd" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/filtration_plant)
"be" = (
/obj/structure/surface/table,
/obj/item/circuitboard/solar_tracker,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/filtration_plant)
"bf" = (
/obj/structure/machinery/light{
@@ -357,36 +258,26 @@
/obj/effect/decal/warning_stripes{
icon_state = "U-S"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bh" = (
/obj/effect/decal/warning_stripes{
icon_state = "U-S"
},
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bj" = (
/obj/structure/surface/rack,
/obj/item/tank/air,
/obj/item/tool/pickaxe,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bk" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bl" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -402,9 +293,7 @@
icon_state = "NW-out";
pixel_y = 1
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"bm" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -412,42 +301,31 @@
name = "\improper Filtration Facility"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"bn" = (
/obj/structure/sign/safety/distribution_pipes{
pixel_x = 32
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/filtration_plant)
"bo" = (
/obj/item/tank/air,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bp" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bq" = (
/obj/effect/landmark/crap_item,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"br" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -456,9 +334,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"bt" = (
/obj/effect/decal/cleanable/dirt,
@@ -469,9 +345,7 @@
dir = 4
},
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bv" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan,
@@ -486,17 +360,12 @@
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/filtration_plant)
"bA" = (
/obj/effect/decal/cleanable/dirt,
@@ -508,10 +377,7 @@
/obj/structure/machinery/computer/atmos_alert{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bD" = (
/obj/structure/window/framed/solaris/reinforced/hull,
@@ -521,32 +387,22 @@
/obj/structure/cryofeed/right{
name = "\improper coolant feed"
},
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/outside/filtration_plant)
"bF" = (
/obj/structure/cryofeed,
-/turf/open/floor/bluegrid{
- icon_state = "bcircuitoff"
- },
+/turf/open/floor/bluegrid/bcircuitoff,
/area/bigredv2/outside/filtration_plant)
"bG" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"bH" = (
/obj/structure/machinery/computer/area_atmos/area{
dir = 8
},
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"bI" = (
/obj/structure/window_frame/solaris/reinforced,
@@ -557,10 +413,7 @@
/area/bigredv2/outside/filtration_plant)
"bJ" = (
/obj/item/weapon/twohanded/fireaxe,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/filtration_plant)
"bK" = (
/turf/open/mars,
@@ -568,57 +421,39 @@
"bN" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/filtration_plant)
"bO" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"bP" = (
/obj/item/tank/air,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"bQ" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bS" = (
/obj/item/frame/table,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"bT" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/frame/table,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"bW" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"bX" = (
/obj/structure/sign/safety/distribution_pipes{
@@ -627,10 +462,7 @@
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/filtration_plant)
"bZ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/filtration_plant)
"cb" = (
/obj/structure/machinery/door_control{
@@ -639,25 +471,18 @@
pixel_x = -32
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"ce" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/filtration_plant)
"cf" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "FiltrationShutters";
name = "\improper Airlock Shutters"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"cg" = (
/obj/structure/machinery/door_control{
@@ -669,80 +494,52 @@
/area/bigredv2/outside/filtration_plant)
"ch" = (
/obj/structure/dispenser/oxygen,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"ci" = (
/obj/item/tool/warning_cone,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"cj" = (
/obj/item/tool/pickaxe,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/filtration_plant)
"ck" = (
/obj/effect/decal/warning_stripes{
icon_state = "E-corner"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"cl" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/filtration_plant)
"cn" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/filtration_plant)
"cO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"et" = (
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"eL" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/bigredv2/outside/filtration_plant)
"ff" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"gt" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"hk" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"jh" = (
/obj/structure/machinery/light,
@@ -750,17 +547,11 @@
/area/bigredv2/outside/filtration_plant)
"ka" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"kE" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/filtration_plant)
"nk" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -782,103 +573,62 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"qi" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/closet/firecloset/full,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/filtration_plant)
"ti" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/filtration_plant)
"tp" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"tz" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/bigredv2/outside/filtration_plant)
"tB" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"vK" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"xd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"yi" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"yZ" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/bigredv2/outside/filtration_plant)
"zu" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/filtration_cave_cas)
"Ap" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/bigredv2/outside/filtration_plant)
"AD" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"Ee" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"FI" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/bigredv2/outside/filtration_plant)
"FK" = (
/obj/effect/decal/warning_stripes{
@@ -889,147 +639,95 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"Jy" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/filtration_plant)
"Kp" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/filtration_plant)
"Ms" = (
/obj/structure/machinery/computer3/server/rack,
/obj/effect/decal/warning_stripes{
icon_state = "U-N"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/bigredv2/outside/filtration_plant)
"Qx" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/filtration_plant)
"QJ" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/bigredv2/outside/filtration_plant)
"Rv" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/filtration_plant)
"Sj" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 1;
name = "\improper Filtration Facility"
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
+/turf/open/floor/almayer/test_floor4,
/area/bigredv2/outside/filtration_plant)
"Sk" = (
/obj/structure/machinery/light,
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/bigredv2/outside/filtration_plant)
"TC" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"TX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/filtration_plant)
"UH" = (
/obj/effect/decal/warning_stripes{
icon_state = "E-corner"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/filtration_cave_cas)
"US" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/filtration_plant)
"VW" = (
/obj/structure/cargo_container/grant/left,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/filtration_plant)
"Wc" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/bigredv2/outside/filtration_plant)
"Wz" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/bigredv2/outside/filtration_plant)
"WD" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"Xx" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/bigredv2/outside/filtration_plant)
"XC" = (
/obj/structure/cargo_container/grant/right,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/filtration_plant)
"Yg" = (
/obj/structure/cargo_container/grant/rightmid,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/bigredv2/outside/filtration_plant)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm
index 622e76848001..6e418ce24e08 100644
--- a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm
+++ b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm
@@ -12,31 +12,22 @@
"af" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/outside/admin_building)
"ag" = (
/obj/effect/spawner/random/toolbox,
/obj/structure/platform_decoration,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"ai" = (
/obj/effect/landmark/survivor_spawner,
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aj" = (
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/outside/admin_building)
"ak" = (
/obj/structure/window_frame/solaris,
@@ -48,25 +39,18 @@
dir = 1;
name = "\improper Operations Meeting Room"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/admin_building)
"am" = (
/obj/structure/platform,
/obj/structure/flora/jungle/planttop1{
pixel_y = 10
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"an" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"ap" = (
/obj/structure/flora/jungle/plantbot1{
@@ -81,9 +65,7 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"at" = (
/obj/structure/bed/chair/comfy/black,
@@ -98,29 +80,21 @@
dir = 4;
icon_state = "metal_2"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aw" = (
/obj/structure/platform_decoration{
dir = 8
},
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"ay" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aA" = (
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aB" = (
/obj/structure/surface/table,
@@ -141,18 +115,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/outside/admin_building)
"aH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/bigredv2/outside/admin_building)
"aJ" = (
/obj/structure/bed/chair/comfy/blue{
@@ -177,17 +147,11 @@
"aM" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/barricade/sandbags/wired,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"aN" = (
/obj/structure/barricade/sandbags/wired,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/outside/admin_building)
"aO" = (
/obj/item/storage/secure/briefcase,
@@ -197,9 +161,7 @@
/obj/structure/barricade/metal/wired{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"aQ" = (
/turf/open/floor/carpet,
@@ -214,19 +176,14 @@
/area/bigredv2/outside/admin_building)
"aT" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"aU" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/item/storage/toolbox/syndicate,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/outside/admin_building)
"aV" = (
/obj/structure/surface/table,
@@ -241,16 +198,10 @@
"aX" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"aY" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/outside/admin_building)
"aZ" = (
/obj/structure/machinery/light{
@@ -264,9 +215,7 @@
/obj/item/ammo_box/magazine/m4a3{
num_of_magazines = 2
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"ba" = (
/obj/structure/surface/table,
@@ -302,35 +251,25 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"be" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"bf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"bg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/outside/admin_building)
"bh" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -339,38 +278,26 @@
/obj/structure/machinery/door/airlock/almayer/command/colony{
name = "\improper Operations Office"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bi" = (
/obj/item/ammo_box/magazine/ext{
num_of_magazines = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bl" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"bm" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/outside/admin_building)
"bn" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/bigredv2/outside/admin_building)
"bo" = (
/obj/item/device/radio/intercom{
@@ -379,10 +306,7 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/bigredv2/outside/admin_building)
"bp" = (
/obj/structure/machinery/vending/coffee,
@@ -408,9 +332,7 @@
/obj/item/ammo_magazine/pistol/rubber{
current_rounds = 0
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"jq" = (
/obj/item/weapon/gun/rifle/m41a/corporate{
@@ -426,9 +348,7 @@
current_rounds = 0;
pixel_y = 11
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"mq" = (
/obj/structure/window/framed/solaris/reinforced,
@@ -443,9 +363,7 @@
/obj/item/ammo_magazine/rifle{
current_rounds = 0
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"si" = (
/obj/item/ammo_box/magazine{
@@ -461,9 +379,7 @@
pixel_x = 14;
pixel_y = 17
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"uv" = (
/obj/item/ammo_magazine/rifle{
@@ -471,33 +387,25 @@
pixel_x = -9;
pixel_y = 7
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"vH" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"vO" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"yf" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"za" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -524,17 +432,13 @@
/area/bigredv2/outside/admin_building)
"ND" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"Pk" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/admin_building)
"QR" = (
/obj/structure/barricade/metal/wired{
@@ -543,9 +447,7 @@
/obj/item/ammo_magazine/pistol/rubber{
current_rounds = 0
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/admin_building)
"Sz" = (
/obj/item/ammo_magazine/rifle/rubber{
diff --git a/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm b/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm
index 2c3f634a6502..c2336bae0b40 100644
--- a/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm
+++ b/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm
@@ -47,32 +47,24 @@
/turf/open/floor,
/area/bigredv2/outside/dorms)
"al" = (
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"an" = (
/obj/item/trash/chunk,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"ao" = (
/obj/item/trash/chunk{
pixel_x = 3;
pixel_y = -4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"ap" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -119,34 +111,26 @@
"ay" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"az" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/blood/gibs/limb,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aA" = (
/obj/effect/decal/cleanable/blood{
icon_state = "xgib4"
},
/obj/effect/landmark/corpsespawner/colonist/random,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aB" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/item/trash/chunk{
pixel_y = 5
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aC" = (
/obj/structure/machinery/camera/autoname{
@@ -193,16 +177,12 @@
/area/bigredv2/outside/dorms)
"aJ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aK" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aL" = (
/obj/effect/decal/cleanable/dirt,
@@ -211,17 +191,13 @@
pixel_y = 4
},
/obj/item/reagent_container/food/drinks/bottle/rum,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/item/trash/chunk,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aN" = (
/obj/item/trash/chunk,
@@ -246,18 +222,14 @@
/area/bigredv2/outside/dorms)
"aS" = (
/obj/item/device/megaphone,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aT" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
/obj/item/reagent_container/food/drinks/bottle/rum,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aU" = (
/obj/effect/decal/cleanable/dirt,
@@ -265,18 +237,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"aW" = (
/obj/item/device/radio/intercom{
@@ -297,9 +265,7 @@
/area/bigredv2/outside/dorms)
"ba" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"bb" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -404,17 +370,13 @@
/area/bigredv2/outside/dorms)
"dl" = (
/obj/item/reagent_container/food/drinks/bottle/rum,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"do" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/corpsespawner/colonist/random,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"el" = (
/obj/effect/landmark/corpsespawner/colonist/random,
@@ -429,9 +391,7 @@
/area/bigredv2/outside/dorms)
"lN" = (
/obj/structure/machinery/cm_vending/sorted/boozeomat,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/bigredv2/outside/dorms)
"zO" = (
/obj/structure/pipes/standard/simple/hidden/green{
diff --git a/maps/map_files/BigRed/sprinkles/40.viro_open.dmm b/maps/map_files/BigRed/sprinkles/40.viro_open.dmm
index f58cfc3b7977..3a06d7aae8d4 100644
--- a/maps/map_files/BigRed/sprinkles/40.viro_open.dmm
+++ b/maps/map_files/BigRed/sprinkles/40.viro_open.dmm
@@ -4,28 +4,19 @@
/area/bigredv2/caves)
"ab" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/outside/virology)
"ac" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 10
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/nw)
"ad" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"ae" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"af" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/body,
@@ -37,205 +28,131 @@
id = "viro";
name = "Virology Lockdown"
},
-/turf/open/floor{
- icon_state = "asteroidfloor";
- dir = 1
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"ag" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/virology)
"ah" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/virology)
"ai" = (
/turf/open/mars,
/area/bigredv2/outside/virology)
"ak" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/nw)
"al" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/virology)
"am" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/bigredv2/outside/virology)
"an" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/virology)
"ao" = (
/obj/structure/closet/bodybag{
icon_state = "bodybag_open"
},
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/virology)
"aq" = (
/obj/structure/inflatable,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/outside/virology)
"ar" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/outside/virology)
"as" = (
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 9
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/virology)
"at" = (
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 1
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/virology)
"au" = (
/obj/structure/inflatable,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/virology)
"av" = (
-/turf/open/floor{
- icon_state = "asteroidfloor";
- dir = 1
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"aw" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/inflatable,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 9
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/virology)
"ax" = (
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 1
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/nw)
"ay" = (
/obj/structure/closet/bodybag{
icon_state = "bodybag_open"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/outside/virology)
"az" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 8
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/virology)
"aA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "asteroidfloor";
- dir = 1
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"aE" = (
/obj/structure/inflatable,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 5
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/nw)
"aF" = (
/obj/structure/inflatable/door,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/virology)
"aG" = (
/obj/structure/inflatable/door,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 8
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/virology)
"aH" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/inflatable,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 4
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/virology)
"aI" = (
/obj/structure/inflatable/door,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 4
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/nw)
"aJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 8
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/virology)
"aK" = (
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 4
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/virology)
"aM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/inflatable/popped/door,
-/turf/open/floor{
- icon_state = "asteroidfloor";
- dir = 1
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"aN" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/outside/virology)
"aO" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- icon_state = "asteroidfloor";
- dir = 1
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"aR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -246,10 +163,7 @@
id = "viro";
name = "Virology Lockdown"
},
-/turf/open/floor{
- icon_state = "asteroidfloor";
- dir = 1
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"aU" = (
/turf/open/mars,
@@ -263,41 +177,27 @@
dir = 4
},
/obj/structure/inflatable/door,
-/turf/open/floor{
- icon_state = "asteroidfloor";
- dir = 1
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"aX" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 10
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/virology)
"aY" = (
/obj/structure/sign/safety/biohazard,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/virology)
"aZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/virology)
"ba" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/virology)
"bb" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/virology)
"bc" = (
/turf/closed/wall/solaris/rock,
@@ -311,10 +211,7 @@
dir = 1;
name = "\improper Virology Lab Decontamination"
},
-/turf/open/floor{
- icon_state = "warnwhite";
- dir = 1
- },
+/turf/open/floor/warnwhite/north,
/area/bigredv2/outside/virology)
"bf" = (
/obj/effect/decal/cleanable/blood{
@@ -324,73 +221,47 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "asteroidfloor";
- dir = 1
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/nw)
"bg" = (
/obj/structure/inflatable,
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/virology)
"bj" = (
/obj/structure/inflatable,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 6
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/nw)
"bk" = (
/obj/structure/inflatable/door,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 10
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/virology)
"bl" = (
/obj/structure/inflatable,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 9
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/virology)
"bm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/inflatable,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 1
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/virology)
"bn" = (
/obj/structure/inflatable,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 8
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/virology)
"bo" = (
/obj/structure/closet/bodybag{
icon_state = "bodybag_open"
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/virology)
"bp" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/outside/virology)
"bq" = (
/obj/structure/closet/bodybag{
icon_state = "bodybag_open"
},
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/virology)
"br" = (
/obj/structure/inflatable/popped,
@@ -400,86 +271,56 @@
/obj/structure/surface/table/almayer,
/obj/item/tool/surgery/scalpel,
/obj/item/device/autopsy_scanner,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/virology)
"bt" = (
/obj/structure/bed/roller,
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/virology)
"bu" = (
/obj/structure/bed/roller,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 9
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/virology)
"bv" = (
/obj/structure/inflatable/popped,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 1
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/virology)
"bw" = (
/obj/structure/bed/roller,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 1
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/virology)
"bx" = (
/obj/structure/inflatable/popped,
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/virology)
"by" = (
/obj/structure/inflatable/popped/door,
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 8
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/virology)
"bz" = (
/obj/structure/inflatable,
-/turf/open/floor{
- icon_state = "asteroidfloor";
- dir = 1
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"bA" = (
/obj/structure/inflatable/door,
-/turf/open/floor{
- icon_state = "asteroidfloor";
- dir = 1
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"bE" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "asteroidfloor";
- dir = 1
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
"bF" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/med_data/laptop{
dir = 8
},
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 5
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/virology)
"bG" = (
/obj/structure/surface/table/almayer,
@@ -487,39 +328,25 @@
/obj/item/storage/syringe_case/regular{
pixel_y = 10
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/virology)
"bH" = (
/obj/structure/surface/table/almayer,
/obj/item/restraint/handcuffs,
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/virology)
"lB" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/virology)
"qP" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"rG" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/nw)
"uN" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/outside/virology)
"zC" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -527,22 +354,14 @@
id = "viro";
name = "Virology Lockdown"
},
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 1
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/virology)
"FK" = (
/obj/structure/inflatable,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 4
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/virology)
"GE" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/virology)
"Kk" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -550,35 +369,23 @@
id = "viro";
name = "Virology Lockdown"
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/virology)
"Kv" = (
/obj/item/weapon/gun/flamer,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/virology)
"Po" = (
/obj/structure/inflatable,
-/turf/open/floor{
- icon_state = "asteroidwarning";
- dir = 5
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/virology)
"Ry" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/bigredv2/outside/virology)
"Vr" = (
/obj/structure/inflatable/popped,
-/turf/open/floor{
- icon_state = "asteroidfloor";
- dir = 1
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/virology)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm
index f3fa4dbcc6e9..51e1ab45af22 100644
--- a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm
+++ b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm
@@ -2,9 +2,7 @@
"a" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"b" = (
/turf/closed/wall/solaris/reinforced,
@@ -13,25 +11,18 @@
/turf/closed/wall/solaris,
/area/bigredv2/caves/eta/xenobiology)
"d" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/caves/eta/xenobiology)
"e" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"f" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/xenobiology)
"g" = (
/turf/open/mars,
@@ -48,31 +39,21 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/bigredv2/caves/eta/xenobiology)
"k" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"l" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/xenobiology)
"m" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/bigredv2/caves/eta/xenobiology)
"n" = (
/obj/item/toy/beach_ball,
@@ -91,20 +72,14 @@
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "\improper Eta Lab Cell"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"r" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"s" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/caves/eta/xenobiology)
"t" = (
/mob/living/simple_animal/hostile/carp{
@@ -124,10 +99,7 @@
dir = 8
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/bigredv2/caves/eta/xenobiology)
"w" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -143,59 +115,39 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/xenobiology)
"z" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/caves/eta/xenobiology)
"A" = (
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/bigredv2/caves/eta/xenobiology)
"B" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/bigredv2/caves/eta/xenobiology)
"C" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/caves/eta/xenobiology)
"D" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/caves/eta/xenobiology)
"E" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves/eta/xenobiology)
"F" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves/eta/xenobiology)
"G" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_22"
- },
+/turf/open/mars_cave/mars_cave_22,
/area/bigredv2/caves/eta/xenobiology)
"H" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves/eta/xenobiology)
"O" = (
/obj/effect/decal/cleanable/dirt,
diff --git a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm
index 7a3bdb9df798..16bdac130168 100644
--- a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm
+++ b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm
@@ -17,7 +17,6 @@
"bp" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
icon_state = "door_locked";
- locked = 0;
name = "\improper Checkpoint Office"
},
/turf/open/floor,
@@ -29,18 +28,12 @@
/area/bigred/ground/security)
"cO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_cave_cas)
"dz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/filtration_cave_cas)
"el" = (
/obj/structure/surface/table/almayer,
@@ -57,15 +50,11 @@
name = "\improper Checkpoint Office"
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigred/ground/security)
"ie" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/outside/filtration_cave_cas)
"kd" = (
/obj/structure/surface/table/almayer,
@@ -78,47 +67,32 @@
/area/bigred/ground/security)
"kG" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/filtration_cave_cas)
"kL" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/filtration_cave_cas)
"kX" = (
/turf/closed/wall/solaris/reinforced,
/area/bigred/ground/security)
"mp" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/filtration_cave_cas)
"oT" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/filtration_cave_cas)
"pb" = (
/obj/item/tool/warning_cone,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_cave_cas)
"pJ" = (
/obj/item/tool/warning_cone,
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/se)
"pV" = (
/obj/structure/surface/table/almayer,
@@ -127,9 +101,7 @@
/area/bigred/ground/security)
"qg" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/filtration_cave_cas)
"qy" = (
/obj/item/device/radio,
@@ -152,9 +124,7 @@
id = "filtration";
name = "Filtration Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/filtration_cave_cas)
"uk" = (
/obj/effect/decal/cleanable/dirt,
@@ -170,9 +140,7 @@
dir = 1;
name = "\improper Checkpoint Office"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigred/ground/security)
"vH" = (
/obj/effect/decal/cleanable/blood,
@@ -185,10 +153,7 @@
/area/bigred/ground/security)
"wi" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/filtration_cave_cas)
"xa" = (
/turf/open/floor/greengrid,
@@ -210,68 +175,42 @@
/area/bigred/ground/security)
"zE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/filtration_cave_cas)
"Aq" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/filtration_cave_cas)
"AY" = (
/turf/open/floor,
/area/bigred/ground/security)
"AZ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_cave_cas)
"EV" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/se)
"Ge" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/filtration_cave_cas)
"Gm" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_cave_cas)
"GJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/filtration_cave_cas)
"HH" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/filtration_cave_cas)
"Ih" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/filtration_cave_cas)
"IS" = (
/obj/structure/filingcabinet,
@@ -305,17 +244,11 @@
/turf/open/floor,
/area/bigred/ground/security)
"OD" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/se)
"OM" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/filtration_cave_cas)
"Pf" = (
/obj/effect/decal/cleanable/blood,
@@ -332,9 +265,7 @@
id = "filtration";
name = "Filtration Lockdown"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/filtration_cave_cas)
"Qo" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -354,16 +285,10 @@
/area/bigred/ground/security)
"Ue" = (
/obj/structure/machinery/camera/autoname,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/filtration_cave_cas)
"Vg" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/filtration_cave_cas)
"Vn" = (
/obj/structure/surface/table/almayer,
@@ -376,16 +301,10 @@
/turf/open/floor,
/area/bigred/ground/security)
"Wa" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/se)
"XU" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/filtration_cave_cas)
"Yo" = (
/obj/structure/surface/rack,
@@ -402,10 +321,7 @@
"Zu" = (
/obj/effect/landmark/hunter_primary,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/filtration_cave_cas)
"ZK" = (
/obj/effect/landmark/crap_item,
diff --git a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm
index ad059bf053f2..c473dc6b8580 100644
--- a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm
+++ b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm
@@ -18,9 +18,7 @@
/area/bigredv2/caves_north)
"av" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/caves_north)
"aw" = (
/turf/closed/shuttle/ert{
@@ -47,7 +45,7 @@
/area/bigredv2/outside/general_offices)
"aE" = (
/obj/structure/computerframe,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
"aF" = (
/turf/closed/shuttle/ert{
@@ -73,26 +71,18 @@
"aL" = (
/obj/structure/machinery/washing_machine,
/obj/item/clothing/under/darkred,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"aM" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"aN" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"aO" = (
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"aP" = (
/turf/closed/shuttle/ert{
@@ -116,7 +106,7 @@
"aU" = (
/obj/structure/surface/rack,
/obj/item/map/big_red_map,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
"aV" = (
/turf/closed/shuttle/ert{
@@ -124,20 +114,14 @@
},
/area/bigredv2/outside/general_offices)
"aW" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/general_offices)
"aX" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/general_offices)
"aY" = (
/obj/structure/machinery/suit_storage_unit/carbon_unit,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"aZ" = (
/obj/structure/window_frame/solaris,
@@ -149,32 +133,22 @@
/obj/item/stack/sheet/mineral/plastic,
/obj/item/stack/sheet/mineral/plastic,
/obj/item/stack/sheet/mineral/plastic,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"bb" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"bc" = (
/obj/structure/surface/rack,
/obj/item/device/mass_spectrometer/adv,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"bd" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"be" = (
/obj/item/clothing/under/darkred,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"bf" = (
/turf/open/floor/plating,
@@ -184,7 +158,7 @@
/turf/open/shuttle/dropship/can_surgery,
/area/bigredv2/outside/general_offices)
"bh" = (
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
"bi" = (
/obj/item/paper/crumpled/bloody,
@@ -195,32 +169,26 @@
/area/bigredv2/outside/general_offices)
"bj" = (
/obj/structure/bed/chair/dropship/passenger,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
"bk" = (
/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
"bl" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"bm" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Dormitories EVA"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"bo" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Dormitories Lavatory"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"bp" = (
/obj/structure/surface/table,
@@ -229,7 +197,7 @@
/area/bigredv2/outside/general_offices)
"bq" = (
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
"br" = (
/turf/closed/shuttle/ert{
@@ -240,7 +208,7 @@
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
"bt" = (
/obj/effect/decal/cleanable/blood,
@@ -249,7 +217,7 @@
/area/bigredv2/outside/general_offices)
"bu" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
"bv" = (
/obj/structure/bed/chair/dropship/passenger{
@@ -259,7 +227,7 @@
dir = 1;
icon_state = "gib6"
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
"bw" = (
/turf/closed/shuttle/ert{
@@ -271,33 +239,25 @@
/obj/item/stack/sheet/mineral/phoron{
amount = 25
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"by" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/uranium{
amount = 50
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"bz" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/caves_north)
"bA" = (
/obj/structure/surface/table,
/turf/open/floor,
/area/bigredv2/outside/general_offices)
"bD" = (
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/general_offices)
"bE" = (
/turf/closed/shuttle/ert{
@@ -318,29 +278,21 @@
/area/bigredv2/outside/general_offices)
"bH" = (
/obj/structure/dispenser/oxygen,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"bI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"bK" = (
/obj/structure/machinery/washing_machine,
/obj/item/clothing/under/lightbrown,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"bL" = (
/obj/structure/machinery/washing_machine,
/obj/item/clothing/under/brown,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/bigredv2/outside/general_offices)
"bM" = (
/turf/closed/shuttle/ert{
@@ -354,15 +306,11 @@
/area/bigredv2/outside/general_offices)
"bO" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"bP" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"bQ" = (
/obj/effect/decal/cleanable/dirt,
@@ -370,15 +318,11 @@
/obj/item/stack/sheet/mineral/uranium{
amount = 50
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"bR" = (
/obj/item/stack/sheet/plasteel,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"bS" = (
/obj/structure/machinery/light{
@@ -392,21 +336,15 @@
/obj/item/stack/sheet/mineral/phoron{
amount = 25
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"bT" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"bU" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/general_offices)
"bV" = (
/obj/structure/surface/rack,
@@ -419,27 +357,19 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"bX" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"bY" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"bZ" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"ca" = (
/turf/closed/shuttle/ert{
@@ -449,7 +379,7 @@
"cb" = (
/obj/structure/surface/rack,
/obj/item/xeno_restraints,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
"cc" = (
/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left,
@@ -459,7 +389,7 @@
/area/bigredv2/outside/general_offices)
"ce" = (
/obj/structure/surface/rack,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
"cf" = (
/turf/closed/shuttle/ert{
@@ -468,15 +398,11 @@
/area/bigredv2/outside/general_offices)
"cg" = (
/obj/effect/spawner/gibspawner/human,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"ch" = (
/obj/structure/closet/l3closet,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"ci" = (
/obj/structure/surface/rack,
@@ -486,9 +412,7 @@
pixel_x = 4;
pixel_y = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"cj" = (
/obj/effect/decal/cleanable/dirt,
@@ -531,9 +455,7 @@
"cr" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"cs" = (
/turf/closed/shuttle/ert{
@@ -544,7 +466,7 @@
"cu" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/remains,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
"cv" = (
/turf/closed/shuttle/ert{
@@ -555,23 +477,17 @@
"cw" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/gold,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"cx" = (
/obj/structure/machinery/camera/autoname,
/obj/item/stack/sheet/plasteel,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"cy" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/diamond,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"cA" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -581,9 +497,7 @@
/area/bigredv2/outside/general_offices)
"cB" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/general_offices)
"cC" = (
/turf/closed/shuttle/ert{
@@ -645,15 +559,11 @@
dir = 8;
health = 25000
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/general_offices)
"cN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/ne)
"cO" = (
/obj/structure/window/framed/solaris,
@@ -674,9 +584,7 @@
/area/bigredv2/outside/general_offices)
"cU" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/bigredv2/caves_north)
"cV" = (
/obj/item/stack/sheet/metal,
@@ -684,45 +592,32 @@
/area/bigredv2/caves_north)
"cW" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/general_offices)
"cX" = (
/obj/effect/decal/cleanable/blood{
dir = 1;
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"cY" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/outside/general_offices)
"cZ" = (
/obj/effect/decal/cleanable/blood{
dir = 1;
icon_state = "gib6"
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/general_offices)
"dc" = (
/obj/item/stack/rods,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"dd" = (
/obj/structure/machinery/light,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/general_offices)
"de" = (
/obj/effect/decal/cleanable/dirt,
@@ -730,15 +625,11 @@
dir = 1;
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"df" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"di" = (
/obj/structure/bed/chair{
@@ -751,77 +642,53 @@
dir = 1;
name = "\improper Dormitories Bedroom"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/general_offices)
"dk" = (
/obj/effect/decal/cleanable/blood{
dir = 1;
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/general_offices)
"dl" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"dm" = (
-/turf/open/floor/plating{
- icon_state = "wood"
- },
+/turf/open/floor/plating/wood,
/area/bigredv2/outside/general_offices)
"dn" = (
/obj/structure/surface/table,
-/turf/open/floor/plating{
- icon_state = "wood"
- },
+/turf/open/floor/plating/wood,
/area/bigredv2/outside/general_offices)
"do" = (
-/turf/open/floor/plating{
- icon_state = "wood-broken5"
- },
+/turf/open/floor/plating/wood_broken5,
/area/bigredv2/outside/general_offices)
"dp" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/general_offices)
"dq" = (
-/turf/open/floor/plating{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/plating/wood_broken6,
/area/bigredv2/outside/general_offices)
"dr" = (
-/turf/open/floor/plating{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/plating/wood_broken3,
/area/bigredv2/outside/general_offices)
"ds" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/gibspawner/human,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"dt" = (
/obj/effect/decal/cleanable/blood{
dir = 1;
icon_state = "gib6"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/ne)
"du" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/ne)
"dx" = (
/turf/closed/wall/solaris,
@@ -830,176 +697,125 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "wood"
- },
+/turf/open/floor/plating/wood,
/area/bigredv2/outside/general_offices)
"dz" = (
/obj/structure/bed,
-/turf/open/floor/plating{
- icon_state = "wood"
- },
+/turf/open/floor/plating/wood,
/area/bigredv2/outside/general_offices)
"dA" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "wood-broken2"
- },
+/turf/open/floor/plating/wood_broken2,
/area/bigredv2/outside/general_offices)
"dB" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/bigredv2/outside/general_offices)
"dC" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/plating/wood_broken3,
/area/bigredv2/outside/general_offices)
"dD" = (
-/turf/open/floor/plating{
- icon_state = "wood-broken4"
- },
+/turf/open/floor/plating/wood_broken4,
/area/bigredv2/outside/general_offices)
"dE" = (
/obj/effect/decal/cleanable/blood{
dir = 1;
icon_state = "gib6"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/outside/ne)
"dS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/ne)
"dT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/ne)
"dU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/ne)
"dV" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/ne)
"eb" = (
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/hydroponics)
"ec" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/hydroponics)
"ed" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/hydroponics)
"ee" = (
/obj/effect/decal/cleanable/blood{
dir = 1;
icon_state = "gib6"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/hydroponics)
"ef" = (
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/hydroponics)
"eg" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/general_offices)
"em" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/hydroponics)
"en" = (
/obj/effect/spawner/gibspawner/human,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/hydroponics)
"eA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/hydroponics)
"eB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/hydroponics)
"eC" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/hydroponics)
"eF" = (
/turf/template_noop,
/area/template_noop)
"eI" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/hydroponics)
"eJ" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"eK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/rods,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/general_offices)
"eL" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -1009,34 +825,23 @@
/area/bigredv2/outside/general_offices)
"eM" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/bigredv2/outside/general_offices)
"eN" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/ne)
"eO" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/hydroponics)
"oB" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/general_offices)
"xT" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/bigredv2/caves_north)
"EO" = (
/turf/closed/shuttle/ert{
@@ -1045,20 +850,16 @@
/area/bigredv2/outside/general_offices)
"IB" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/general_offices)
"Kf" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/general_offices)
"Zt" = (
/obj/structure/bed/chair/dropship/passenger,
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/general_offices)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm
index 0a52f3f9d17d..783caff03343 100644
--- a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm
+++ b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm
@@ -1,73 +1,43 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"ab" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/bigredv2/outside/e)
"ac" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/c)
"ad" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/c)
"ae" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"ag" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/e)
"ah" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/c)
"ai" = (
/turf/open/mars,
/area/bigredv2/outside/e)
"aj" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/e)
"ak" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/e)
"al" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/e)
"am" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/e)
"an" = (
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/bigredv2/outside/c)
"ao" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/bigredv2/outside/c)
"ap" = (
/turf/closed/wall/solaris,
@@ -77,14 +47,10 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Office Complex"
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/office_complex)
"ar" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/office_complex)
"as" = (
/obj/structure/window/framed/solaris,
@@ -95,30 +61,21 @@
/turf/open/floor/plating,
/area/bigredv2/outside/office_complex)
"at" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/bigredv2/outside/e)
"au" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/c)
"av" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/office_complex)
"aw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/office_complex)
"ax" = (
/obj/structure/window_frame/solaris,
@@ -127,9 +84,7 @@
/area/bigredv2/outside/office_complex)
"ay" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/office_complex)
"az" = (
/obj/structure/bed/chair/comfy/black{
@@ -142,22 +97,14 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/office_complex)
"aA" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/e)
"aB" = (
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"aC" = (
/turf/closed/shuttle/ert{
@@ -175,38 +122,24 @@
},
/area/bigredv2/outside/office_complex)
"aF" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/office_complex)
"aG" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"aH" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"aI" = (
/obj/structure/machinery/robotic_fabricator,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"aJ" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"aK" = (
/obj/structure/machinery/mech_bay_recharge_port,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"aL" = (
/obj/effect/decal/mecha_wreckage/ripley/firefighter,
@@ -214,9 +147,7 @@
/area/bigredv2/outside/office_complex)
"aM" = (
/obj/structure/machinery/mecha_part_fabricator,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"aN" = (
/turf/closed/shuttle/ert{
@@ -230,7 +161,7 @@
/area/bigredv2/outside/office_complex)
"aP" = (
/obj/structure/computerframe,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"aQ" = (
/turf/closed/shuttle/ert{
@@ -238,14 +169,10 @@
},
/area/bigredv2/outside/office_complex)
"aR" = (
-/turf/open/floor{
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite,
/area/bigredv2/outside/office_complex)
"aS" = (
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"aT" = (
/turf/closed/shuttle/ert{
@@ -255,10 +182,10 @@
"aU" = (
/obj/structure/surface/rack,
/obj/item/xeno_restraints,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"aV" = (
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"aW" = (
/obj/structure/bed/chair/dropship/pilot{
@@ -282,9 +209,7 @@
/area/bigredv2/outside/office_complex)
"aZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"ba" = (
/obj/structure/window_frame/solaris,
@@ -298,18 +223,14 @@
dir = 8
},
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/office_complex)
"bc" = (
/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"bd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"be" = (
/turf/open/floor,
@@ -322,23 +243,17 @@
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bh" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/hotdog,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bi" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/folder/black,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bj" = (
/turf/closed/shuttle/ert{
@@ -361,7 +276,7 @@
/obj/structure/bed/chair/dropship/passenger{
dir = 8
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"bq" = (
/turf/closed/shuttle/ert{
@@ -372,9 +287,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/office_complex)
"bs" = (
/obj/structure/machinery/light{
@@ -388,36 +301,25 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/office_complex)
"bu" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/office_complex)
"bw" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bx" = (
/obj/item/shard,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"by" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"bz" = (
/turf/closed/shuttle/ert{
@@ -431,29 +333,21 @@
/area/bigredv2/outside/office_complex)
"bB" = (
/obj/item/clothing/head/welding,
-/turf/open/floor{
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite,
/area/bigredv2/outside/office_complex)
"bC" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bD" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/office_complex)
"bF" = (
/turf/closed/shuttle/ert{
@@ -474,9 +368,7 @@
/area/bigredv2/outside/office_complex)
"bI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/office_complex)
"bJ" = (
/obj/structure/machinery/door/airlock/almayer/generic,
@@ -489,16 +381,12 @@
/area/bigredv2/outside/office_complex)
"bL" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bM" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bN" = (
/obj/structure/window_frame/solaris,
@@ -508,16 +396,12 @@
"bO" = (
/obj/item/device/analyzer,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"bQ" = (
/obj/effect/decal/cleanable/dirt,
@@ -525,27 +409,20 @@
/area/bigredv2/outside/office_complex)
"bR" = (
/obj/item/shard,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"bS" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/office_complex)
"bT" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"bU" = (
/obj/structure/bed/chair{
@@ -555,28 +432,19 @@
/area/bigredv2/outside/office_complex)
"bV" = (
/obj/structure/machinery/autolathe,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"bX" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/office_complex)
"bY" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/office_complex)
"bZ" = (
/obj/structure/surface/table,
@@ -584,37 +452,27 @@
/obj/structure/machinery/camera/autoname{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"ca" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"cb" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"cc" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"cd" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/mass_spectrometer/adv,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"ce" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -623,127 +481,89 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Office Complex Storage"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"cf" = (
/obj/effect/landmark/crap_item,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/office_complex)
"cg" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"ch" = (
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/bigredv2/outside/office_complex)
"ci" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"cj" = (
/obj/item/trash/raisins,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"ck" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"cl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"cm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"cn" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/office_complex)
"co" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Office Complex Janitor Room"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"cp" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"cq" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"cr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"cs" = (
/obj/effect/decal/cleanable/blood/gibs/down,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"cu" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"cv" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin10";
- supports_surgery = 1
- },
+/turf/open/shuttle/dropship/can_surgery/light_grey_top,
/area/bigredv2/outside/office_complex)
"cw" = (
/obj/item/weapon/gun/rifle/nsg23/no_lock/stripped{
desc = "A rare sight, this rifle is seen most commonly in the hands of Weyland-Yutani PMCs. Compared to the M41A MK2, it has noticeably improved handling and vastly improved performance at long and medium range, but compares similarly up close. This one seems to have been heavily damaged from impact, you can still see some debris that resembles a scope and underbarrel attachment point on it.";
name = "smashed NSG 23 assault rifle"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin12";
- supports_surgery = 1
- },
+/turf/open/shuttle/dropship/can_surgery/dark_grey_bottom,
/area/bigredv2/outside/office_complex)
"cx" = (
/obj/effect/spawner/gibspawner/human,
@@ -755,36 +575,25 @@
"cy" = (
/obj/structure/janitorialcart,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"cz" = (
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"cA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"cB" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/taperecorder,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"cC" = (
/obj/effect/spawner/random/tech_supply,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"cD" = (
/turf/closed/shuttle/ert{
@@ -812,9 +621,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"cI" = (
/obj/structure/surface/table,
@@ -823,24 +630,18 @@
dir = 4
},
/obj/item/device/healthanalyzer,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"cJ" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"cK" = (
/obj/item/frame/table,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/office_complex)
"cL" = (
/turf/closed/shuttle/ert{
@@ -867,16 +668,11 @@
"cP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"cQ" = (
/obj/item/stack/rods,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"cR" = (
/obj/structure/window_frame/solaris,
@@ -885,9 +681,7 @@
"cS" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"cT" = (
/turf/closed/shuttle/ert{
@@ -903,40 +697,25 @@
/area/bigredv2/outside/office_complex)
"cV" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/bigredv2/outside/office_complex)
"cW" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/paper,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"cX" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"cY" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"cZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"da" = (
/obj/effect/decal/cleanable/dirt,
@@ -945,9 +724,7 @@
"db" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/office_complex)
"dc" = (
/turf/closed/shuttle/ert{
@@ -967,17 +744,12 @@
pixel_y = -27
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"df" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/office_complex)
"dg" = (
/turf/closed/shuttle/ert{
@@ -995,9 +767,7 @@
},
/area/bigredv2/outside/office_complex)
"dj" = (
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/office_complex)
"dk" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -1007,9 +777,7 @@
/area/bigredv2/outside/office_complex)
"dl" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/office_complex)
"dm" = (
/turf/closed/shuttle/ert{
@@ -1029,22 +797,15 @@
/area/bigredv2/outside/se)
"dp" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/se)
"dq" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/se)
"dr" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/bigredv2/outside/office_complex)
"ds" = (
/obj/effect/decal/cleanable/dirt,
@@ -1053,34 +814,22 @@
"dt" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/se)
"du" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/outside/se)
"dv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/se)
"dw" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southwest,
/area/bigredv2/outside/se)
"dx" = (
/obj/item/tool/warning_cone,
-/turf/open/floor{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/southeast,
/area/bigredv2/outside/se)
"dz" = (
/obj/effect/spawner/gibspawner/human,
@@ -1091,7 +840,7 @@
dir = 8
},
/obj/effect/decal/cleanable/blood,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"dB" = (
/obj/effect/decal/cleanable/blood,
@@ -1099,16 +848,12 @@
/area/bigredv2/outside/office_complex)
"dC" = (
/obj/effect/spawner/gibspawner/human,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/office_complex)
"dD" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/gibspawner/human,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"dE" = (
/obj/effect/decal/cleanable/blood{
@@ -1129,10 +874,7 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin10";
- supports_surgery = 1
- },
+/turf/open/shuttle/dropship/can_surgery/light_grey_top,
/area/bigredv2/outside/office_complex)
"dH" = (
/obj/effect/decal/cleanable/blood,
@@ -1143,7 +885,7 @@
/obj/structure/surface/rack,
/obj/item/ammo_magazine/rifle/nsg23,
/obj/item/ammo_magazine/rifle/nsg23/extended,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"dJ" = (
/obj/effect/decal/cleanable/blood{
@@ -1153,18 +895,16 @@
/area/bigredv2/outside/office_complex)
"dK" = (
/obj/effect/spawner/gibspawner/human,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"dL" = (
/obj/structure/surface/rack,
/obj/item/device/binoculars,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"dM" = (
/obj/structure/surface/rack,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"dN" = (
/obj/structure/surface/rack,
@@ -1172,19 +912,17 @@
/obj/item/ammo_magazine/pistol/rubber,
/obj/item/ammo_magazine/pistol/rubber,
/obj/item/ammo_magazine/pistol/rubber,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"dO" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"dP" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"dQ" = (
/obj/structure/bed/chair/dropship/passenger{
@@ -1192,188 +930,145 @@
},
/obj/effect/decal/cleanable/blood,
/obj/effect/spawner/gibspawner/human,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"dR" = (
/obj/structure/surface/rack,
/obj/item/map/big_red_map,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"dS" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"dT" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"dU" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/rods,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"dV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/rods,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"dW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/se)
"dX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/e)
"dY" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/office_complex)
"dZ" = (
/obj/structure/girder,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/office_complex)
"ea" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"eb" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"ec" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"ed" = (
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"ee" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"ef" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"eg" = (
/obj/item/stack/rods,
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/bigredv2/outside/c)
"eh" = (
/obj/item/device/multitool,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"ei" = (
/obj/structure/janitorialcart,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"ej" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/syndi_cakes,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/bigredv2/outside/office_complex)
"ek" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"el" = (
/obj/item/clothing/shoes/galoshes,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/bigredv2/outside/office_complex)
"em" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/lighter/random,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/office_complex)
"fv" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 8
},
/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"fG" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 8
},
/obj/item/device/radio/headset/distress/pmc/hvh,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"hN" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_medic,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"id" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"jx" = (
/obj/effect/decal/cleanable/blood{
@@ -1386,22 +1081,20 @@
"nE" = (
/obj/structure/surface/rack,
/obj/effect/landmark/crap_item,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"oF" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
/obj/item/clothing/under/marine/veteran/pmc,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"qX" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/pmc,
/obj/item/weapon/gun/rifle/nsg23/no_lock,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"rF" = (
/obj/structure/bed/chair/dropship/passenger{
@@ -1412,7 +1105,7 @@
/obj/item/clothing/head/helmet/marine/veteran/pmc,
/obj/item/clothing/under/marine/veteran/pmc,
/obj/item/clothing/head/helmet/marine/veteran/pmc,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"rK" = (
/obj/structure/bed/chair/dropship/passenger{
@@ -1420,7 +1113,7 @@
},
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"si" = (
/obj/item/clothing/head/helmet/marine/veteran/pmc,
@@ -1450,7 +1143,7 @@
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"AB" = (
/obj/structure/bed/chair/dropship/passenger{
@@ -1462,7 +1155,7 @@
name = "dented M4A3 service pistol"
},
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"Bu" = (
/obj/effect/decal/cleanable/blood,
@@ -1477,7 +1170,7 @@
dir = 8
},
/obj/item/limb/hand/l_hand,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"GG" = (
/obj/item/weapon/gun/rifle/m41a/corporate/no_lock{
@@ -1488,37 +1181,31 @@
/area/bigredv2/outside/office_complex)
"Ha" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/se)
"Lk" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
/obj/item/device/radio/headset/distress/pmc/hvh,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"NK" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/rifle/rubber,
/obj/item/ammo_magazine/rifle/rubber,
/obj/item/ammo_magazine/rifle/rubber,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"PR" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/se)
"Qc" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 8
},
/obj/effect/landmark/survivor_spawner/bigred_crashed_cl,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
"Vg" = (
/obj/effect/landmark/objective_landmark/medium,
@@ -1529,7 +1216,7 @@
dir = 4
},
/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_engineer,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/bigredv2/outside/office_complex)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm b/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm
index 104546cbd8ed..d191e7b68068 100644
--- a/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm
+++ b/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm
@@ -1,76 +1,49 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/bigredv2/caves_lambda)
"b" = (
/turf/closed/wall/solaris/rock,
/area/bigredv2/caves)
"c" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_lambda)
"d" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2/west,
/area/bigredv2/caves/lambda/virology)
"e" = (
-/turf/open/floor/bluegrid{
- icon_state = "damaged3"
- },
+/turf/open/floor/bluegrid/damaged3,
/area/bigredv2/caves/lambda/virology)
"f" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/bigredv2/caves/lambda/virology)
"g" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/bigredv2/caves/lambda/virology)
"h" = (
/turf/open/mars_cave,
/area/bigredv2/caves_lambda)
"i" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/caves/lambda/virology)
"j" = (
-/turf/open/floor/bluegrid{
- icon_state = "damaged5"
- },
+/turf/open/floor/bluegrid/damaged5,
/area/bigredv2/caves/lambda/virology)
"k" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/bigredv2/caves/lambda/virology)
"l" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_lambda)
"m" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/bigredv2/caves_lambda)
"n" = (
/turf/closed/wall/solaris/reinforced,
@@ -81,72 +54,45 @@
dir = 1;
pixel_y = -30
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/caves/lambda/virology)
"p" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/bigredv2/caves/lambda/virology)
"q" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/microwave,
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/bigredv2/caves/lambda/virology)
"r" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/bigredv2/caves_lambda)
"w" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_lambda)
"F" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_8"
- },
+/turf/open/mars_cave/mars_cave_8,
/area/bigredv2/caves_lambda)
"H" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_3"
- },
+/turf/open/mars_cave/mars_cave_3,
/area/bigredv2/caves_lambda)
"I" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_12"
- },
+/turf/open/mars_cave/mars_cave_12,
/area/bigredv2/caves_lambda)
"K" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/bigredv2/caves_lambda)
"O" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/bigredv2/caves_lambda)
"P" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"X" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_8"
- },
+/turf/open/mars_cave/mars_cave_8,
/area/bigredv2/caves_lambda)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm b/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm
index d7710b7a0bed..8bf2e282de1f 100644
--- a/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm
+++ b/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm
@@ -1,23 +1,17 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"b" = (
/turf/closed/wall/solaris/rock,
/area/bigredv2/caves)
"c" = (
/obj/effect/glowshroom,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
"g" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/bigredv2/caves_lambda)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/standalone/lambda-graveyard.dmm b/maps/map_files/BigRed/standalone/lambda-graveyard.dmm
index 8dc12acf8d53..47964ff5ea79 100644
--- a/maps/map_files/BigRed/standalone/lambda-graveyard.dmm
+++ b/maps/map_files/BigRed/standalone/lambda-graveyard.dmm
@@ -3,33 +3,23 @@
/turf/open/mars,
/area/bigredv2/outside/se)
"e" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/se)
"f" = (
/obj/item/stool,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/se)
"g" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/bigredv2/outside/se)
"h" = (
/obj/structure/flora/bush/ausbushes{
cut_level = 1
},
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/bigredv2/outside/se)
"i" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/bigredv2/outside/se)
"j" = (
/obj/item/trash/cigbutt{
@@ -50,19 +40,13 @@
/turf/open/mars,
/area/bigredv2/outside/se)
"l" = (
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/bigredv2/outside/se)
"m" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/bigredv2/outside/se)
"n" = (
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/bigredv2/outside/se)
"o" = (
/turf/closed/wall/solaris/rock,
diff --git a/maps/map_files/BigRed/standalone/medbay-passage.dmm b/maps/map_files/BigRed/standalone/medbay-passage.dmm
index d5b7db11d82b..9dc1327ab65c 100644
--- a/maps/map_files/BigRed/standalone/medbay-passage.dmm
+++ b/maps/map_files/BigRed/standalone/medbay-passage.dmm
@@ -4,59 +4,36 @@
/area/template_noop)
"c" = (
/obj/structure/sign/safety/medical{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"d" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"e" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"f" = (
/obj/structure/sign/safety/medical{
- pixel_x = 0;
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"h" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"i" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"l" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"m" = (
/obj/effect/decal/cleanable/dirt,
@@ -65,20 +42,14 @@
dir = 5;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"n" = (
/obj/structure/stairs/perspective{
dir = 9;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"w" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -86,10 +57,7 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
"R" = (
/turf/closed/wall/solaris/reinforced,
@@ -99,24 +67,17 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "\improper Operations"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"T" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/admin_building)
"X" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/c)
(1,1,1) = {"
diff --git a/maps/map_files/BigRed/standalone/medbay-v3.dmm b/maps/map_files/BigRed/standalone/medbay-v3.dmm
index 80397d168ba7..8f90727068d6 100644
--- a/maps/map_files/BigRed/standalone/medbay-v3.dmm
+++ b/maps/map_files/BigRed/standalone/medbay-v3.dmm
@@ -4,9 +4,7 @@
/area/bigredv2/outside/medical)
"ab" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/medical)
"ac" = (
/obj/structure/window_frame/solaris,
@@ -19,39 +17,26 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Medical Clinic"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/north,
/area/bigredv2/outside/medical)
"ae" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/north,
/area/bigredv2/outside/medical)
"af" = (
/turf/closed/wall/solaris/reinforced,
/area/bigredv2/outside/medical)
"ag" = (
/obj/structure/closet/secure_closet/chemical,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"ah" = (
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ai" = (
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"aj" = (
/obj/structure/window_frame/solaris,
@@ -59,36 +44,23 @@
/turf/open/floor/plating,
/area/bigredv2/outside/medical)
"ak" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"al" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"am" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"an" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"ao" = (
/obj/structure/machinery/chem_master,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"ap" = (
/obj/structure/window/framed/solaris,
@@ -97,76 +69,49 @@
"aq" = (
/obj/structure/closet/secure_closet/CMO,
/obj/item/device/healthanalyzer,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"ar" = (
/obj/structure/machinery/computer/crew,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"as" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"aw" = (
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"ax" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"ay" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/item/trash/chips,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"az" = (
/obj/structure/bed,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"aA" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"aB" = (
/obj/structure/bed/roller,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aC" = (
/obj/structure/bed/chair/office/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aD" = (
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aE" = (
/obj/structure/surface/table,
@@ -175,22 +120,15 @@
},
/obj/item/storage/box/beakers,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"aF" = (
/obj/structure/machinery/computer/med_data,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"aH" = (
/obj/effect/spawner/gibspawner/human,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"aI" = (
/obj/structure/bed/roller,
@@ -198,122 +136,79 @@
dir = 1
},
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aJ" = (
/obj/item/device/defibrillator,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aK" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/bomb_supply,
-/obj/item/stack/sheet/metal{
- amount = 1
- },
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/obj/item/stack/sheet/metal,
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"aL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aM" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"aN" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"aO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"aP" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
/obj/structure/bed/roller,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"aQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"aR" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"aS" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"aT" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"aU" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"aV" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"aX" = (
/obj/structure/window_frame/solaris,
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"aY" = (
/obj/item/shard,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"aZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/explosive/grenade/custom/large,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"ba" = (
/obj/structure/surface/table,
@@ -321,90 +216,60 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"bb" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bc" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"bd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bf" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"bg" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"bh" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/bigredv2/outside/n)
"bi" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"bj" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bk" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/frame/table,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"bl" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bm" = (
/obj/item/shard,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bn" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bo" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -412,98 +277,66 @@
dir = 1;
name = "\improper Medical Clinic"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"bp" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/gloves/latex,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bq" = (
/obj/effect/landmark/crap_item,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"br" = (
/obj/item/ammo_casing/shell,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"bs" = (
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bt" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"bu" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"bv" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"bw" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/bigredv2/outside/n)
"bx" = (
/obj/item/stack/rods,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"by" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/shard,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bz" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/bigredv2/outside/medical)
"bA" = (
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bB" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bC" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -512,65 +345,45 @@
icon_state = "coil2"
},
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bD" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"bE" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bG" = (
/obj/item/ammo_casing/bullet,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"bH" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"bI" = (
/obj/item/shard,
/obj/item/frame/table,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"bJ" = (
/obj/structure/bed/roller,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bK" = (
/obj/item/stack/rods,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bL" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"bM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -580,61 +393,42 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"bN" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"bO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/n)
"bP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bQ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"bR" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/shard,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"bS" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Medical Clinic Scanner Room"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"bT" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"bV" = (
/obj/effect/decal/cleanable/dirt,
@@ -645,41 +439,29 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"bX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/bigredv2/outside/medical)
"bY" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"bZ" = (
/obj/structure/window_frame/solaris,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"ca" = (
/obj/structure/window_frame/solaris,
/obj/item/shard,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"cb" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"cc" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -687,21 +469,15 @@
dir = 1;
name = "\improper Medical Clinic CMO's Office"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"cd" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ce" = (
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/medical)
"cf" = (
/obj/effect/decal/cleanable/blood{
@@ -711,36 +487,25 @@
name = "\improper Medical Clinic"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"cg" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"ch" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/ammo_casing/shell,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"ci" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"cj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"ck" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -748,31 +513,22 @@
amount = 1;
icon_state = "coil2"
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"cl" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"cm" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"cn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"co" = (
/obj/structure/window_frame/solaris,
@@ -782,81 +538,52 @@
"cp" = (
/obj/structure/surface/table/reinforced,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"cq" = (
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"cr" = (
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"cs" = (
/obj/item/ammo_casing/bullet,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"ct" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"cu" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"cv" = (
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"cw" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"cx" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"cy" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"cz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
/obj/item/shard,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"cA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -866,9 +593,7 @@
amount = 1;
icon_state = "coil2"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"cB" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -878,20 +603,14 @@
amount = 1;
icon_state = "coil2"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"cC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"cD" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -902,10 +621,7 @@
amount = 1;
icon_state = "coil2"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"cE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -916,16 +632,11 @@
amount = 1;
icon_state = "coil2"
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"cF" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/bigredv2/outside/medical)
"cH" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -933,10 +644,7 @@
amount = 1;
icon_state = "coil2"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"cI" = (
/obj/effect/decal/cleanable/blood,
@@ -947,10 +655,7 @@
amount = 1;
icon_state = "coil2"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"cJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -960,10 +665,7 @@
amount = 1;
icon_state = "coil2"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"cK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -976,10 +678,7 @@
icon_state = "coil2"
},
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"cL" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -987,17 +686,13 @@
amount = 1;
icon_state = "coil2"
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"cM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"cN" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1007,38 +702,26 @@
amount = 1;
icon_state = "coil2"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"cQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/shard,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"cR" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"cS" = (
/obj/structure/surface/table,
/obj/item/storage/pill_bottle/tramadol,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"cT" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"cU" = (
/obj/effect/decal/cleanable/blood,
@@ -1046,55 +729,38 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"cV" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"cW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"cX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"cY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"cZ" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"db" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dc" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1103,33 +769,23 @@
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dd" = (
/obj/item/stack/rods,
/obj/item/shard,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"df" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/medical)
"dg" = (
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/medical)
"dh" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"di" = (
/obj/effect/decal/cleanable/dirt,
@@ -1139,32 +795,23 @@
/area/bigredv2/outside/medical)
"dj" = (
/obj/item/shard,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"dk" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dl" = (
/obj/structure/bed/chair,
/obj/structure/sign/nosmoking_2{
pixel_x = -28
},
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/medical)
"dm" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"dn" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1175,51 +822,37 @@
icon_state = "coil2"
},
/obj/item/ammo_casing/shell,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"do" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dp" = (
/obj/structure/sign/safety/autodoc{
pixel_x = 32
},
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"dq" = (
/obj/structure/sign/safety/autodoc{
pixel_x = -32
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"dr" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"ds" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dt" = (
/obj/effect/decal/cleanable/dirt,
@@ -1232,72 +865,50 @@
name = "General Listening Channel";
pixel_x = 30
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"du" = (
/obj/item/ammo_casing/shell,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"dv" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"dw" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/obj/item/stack/sheet/metal{
- amount = 1
- },
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/obj/item/stack/sheet/metal,
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"dy" = (
/obj/structure/bed/roller,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dz" = (
/obj/structure/machinery/camera/autoname{
network = list("interrogation")
},
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"dA" = (
/obj/structure/bed/roller,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"dB" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"dC" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1305,53 +916,39 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"dD" = (
/obj/structure/surface/table,
/obj/item/device/autopsy_scanner,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"dE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dF" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dI" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1359,141 +956,97 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"dL" = (
/obj/item/stack/sheet/metal,
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dM" = (
/obj/item/clothing/gloves/latex,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dN" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dP" = (
/obj/item/ammo_casing/shell,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"dR" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"dS" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"dT" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dU" = (
/obj/structure/bed/chair,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"dV" = (
/obj/structure/machinery/medical_pod/bodyscanner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"dW" = (
/obj/structure/machinery/body_scanconsole,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/bigredv2/outside/medical)
"dX" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"dY" = (
/obj/item/shard,
-/turf/open/floor{
- icon_state = "darkish"
- },
+/turf/open/floor/darkish,
/area/bigredv2/outside/medical)
"dZ" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"ea" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"eb" = (
/obj/structure/machinery/medical_pod/sleeper,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ec" = (
/obj/structure/closet/secure_closet/medical1,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"ed" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"ee" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/corpsespawner/doctor,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ef" = (
/obj/structure/sink{
@@ -1503,39 +1056,28 @@
pixel_y = 2
},
/obj/item/tool/surgery/scalpel/manager,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"eg" = (
/obj/item/device/healthanalyzer,
/obj/structure/pipes/vents/pump,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"eh" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/bigredv2/outside/medical)
"ei" = (
/obj/structure/machinery/sleep_console,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ej" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
/obj/item/ammo_casing/bullet,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"ek" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1544,9 +1086,7 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Medical Clinic Storage"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"el" = (
/obj/item/clothing/glasses/meson,
@@ -1554,26 +1094,20 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"em" = (
/obj/item/reagent_container/pill/happy,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"en" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Medical Clinic Storage"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"eo" = (
/obj/structure/machinery/vending/snack,
@@ -1581,46 +1115,32 @@
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"ep" = (
/obj/structure/bed/chair,
/obj/item/ammo_casing/shell,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"eq" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"er" = (
/obj/structure/bed/chair,
/obj/item/shard,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"es" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"et" = (
/obj/item/reagent_container/spray/cleaner{
desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
name = "Surgery Cleaner"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"eu" = (
/obj/effect/decal/cleanable/dirt,
@@ -1629,48 +1149,32 @@
name = "Storm Shutters";
pixel_y = -32
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"ev" = (
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/dirt,
/obj/item/shard,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"ew" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"ex" = (
/obj/structure/surface/table,
/obj/item/storage/box/masks,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"ey" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/frame/table,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/north,
/area/bigredv2/outside/medical)
"ez" = (
/obj/item/device/healthanalyzer,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"eA" = (
/obj/structure/sign/safety/medical{
@@ -1678,25 +1182,19 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/head/surgery/blue,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"eB" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/extinguisher,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"eC" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/item/trash/kepler,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"eD" = (
/obj/structure/surface/table/reinforced,
@@ -1704,180 +1202,123 @@
phone_category = "Solaris Ridge";
phone_id = "Clinic Reception"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"eE" = (
/obj/structure/closet/secure_closet/medical2,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"eF" = (
/obj/structure/closet/secure_closet/medical1,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"eG" = (
/obj/structure/machinery/bioprinter{
stored_metal = 1000
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"eH" = (
/obj/structure/machinery/optable,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/corpsespawner/wygoon,
/obj/item/reagent_container/food/snacks/margheritaslice,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"eI" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"eJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/ammo_casing/shell,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"eK" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/surgery/bonesetter,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"eL" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/item/shard,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"eM" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"eN" = (
/obj/effect/decal/cleanable/blood,
/obj/item/reagent_container/food/snacks/margheritaslice,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"eO" = (
/obj/effect/decal/cleanable/blood/gibs/body,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"eP" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"eQ" = (
/obj/structure/surface/table,
/obj/item/trash/burger,
/obj/effect/decal/cleanable/dirt,
/obj/item/frame/table,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/bigredv2/outside/medical)
"eR" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"eS" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"eT" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"eU" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/medical)
"eV" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Medical Clinic"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"eW" = (
/obj/effect/landmark/corpsespawner/doctor,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"eX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"eY" = (
/obj/structure/bed,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/bigredv2/outside/medical)
"eZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"fa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1886,32 +1327,23 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Medical Clinic Operating Theatre"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
"fb" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
/obj/item/ammo_casing/bullet,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"fc" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/ammo_casing/shell,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"fd" = (
/obj/item/reagent_container/pill/happy,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"fe" = (
/obj/structure/sink{
@@ -1919,37 +1351,26 @@
icon_state = "sink";
pixel_x = 11
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"ff" = (
/obj/item/clothing/mask/breath/medical,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"fg" = (
/obj/item/stack/sheet/metal,
/obj/item/ammo_casing/bullet,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/bigredv2/outside/medical)
"fh" = (
/obj/structure/surface/table/reinforced,
/obj/item/trash/buritto,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/bigredv2/outside/medical)
"fj" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4/west,
/area/bigredv2/outside/medical)
"fk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1957,111 +1378,74 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/ammo_casing/shell,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"fl" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"fm" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/c)
"fn" = (
/obj/structure/bed,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"fo" = (
/obj/structure/machinery/light,
/obj/item/tool/surgery/cautery,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull/northeast,
/area/bigredv2/outside/medical)
"fp" = (
/obj/structure/machinery/medical_pod/bodyscanner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"fq" = (
/obj/structure/bed,
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"fr" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/bigredv2/outside/medical)
"fs" = (
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/bigredv2/outside/medical)
"gS" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/bigredv2/outside/n)
"hn" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/bigredv2/outside/medical)
"om" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/bigredv2/outside/n)
"CW" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/bigredv2/outside/medical)
"DL" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/bigredv2/outside/medical)
"GP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/bigredv2/outside/medical)
"MK" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/bigredv2/outside/medical)
"Xh" = (
/obj/structure/transmitter/colony_net{
@@ -2070,10 +1454,7 @@
phone_id = "Clinic Labs";
pixel_y = 24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2/west,
/area/bigredv2/outside/medical)
(1,1,1) = {"
diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm
index 01777db10275..ea56dacf0fa3 100644
--- a/maps/map_files/CORSAT/Corsat.dmm
+++ b/maps/map_files/CORSAT/Corsat.dmm
@@ -30,27 +30,19 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/east)
"aag" = (
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"aah" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "1"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"aai" = (
/obj/structure/noticeboard{
pixel_y = 30
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"aaj" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -63,10 +55,7 @@
/turf/open/floor/plating,
/area/corsat/gamma/residential/east)
"aam" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/office)
"aan" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -91,50 +80,35 @@
/turf/open/floor/plating,
/area/corsat/gamma/sigmaremote)
"aas" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/sigmaremote)
"aat" = (
/obj/structure/surface/rack,
/obj/structure/prop/mech/drill,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"aau" = (
/obj/structure/machinery/power/smes/buildable{
capacity = 1e+006;
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/core)
"aav" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/sigmaremote)
"aaw" = (
/obj/structure/machinery/power/smes/buildable{
capacity = 1e+006;
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/generator)
"aax" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/gamma/sigmaremote)
"aay" = (
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/gamma/sigmaremote)
"aaz" = (
/obj/structure/window/framed/corsat/research,
@@ -144,10 +118,7 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "2"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"aaB" = (
/obj/structure/surface/table/woodentable,
@@ -163,14 +134,10 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/security)
"aaD" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar)
"aaE" = (
/obj/structure/window/framed/corsat/hull,
@@ -182,17 +149,13 @@
name = "CORSAT Armory";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security/armory)
"aaG" = (
/turf/open/floor/plating,
/area/corsat/gamma/hangar)
"aaH" = (
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/office)
"aaI" = (
/obj/structure/machinery/landinglight/ds1/delaytwo,
@@ -203,79 +166,47 @@
/turf/open/floor/plating,
/area/corsat/gamma/hangar)
"aaK" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "plating_striped"
- },
+/turf/open/floor/almayer/plating_striped/north,
/area/corsat/gamma/sigmaremote)
"aaL" = (
-/turf/open/floor/almayer{
- icon_state = "plating_striped"
- },
+/turf/open/floor/almayer/plating_striped,
/area/corsat/gamma/sigmaremote)
"aaM" = (
/obj/structure/machinery/landinglight/ds1,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/gamma/hangar)
"aaN" = (
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/corsat/gamma/hangar)
"aaO" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/gamma/hangar)
"aaP" = (
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/corsat/gamma/hangar)
"aaQ" = (
/obj/structure/machinery/landinglight/ds1/delaythree,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/gamma/hangar)
"aaR" = (
/obj/structure/machinery/landinglight/ds1,
/turf/open/floor/plating,
/area/corsat/gamma/hangar)
"aaS" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/gamma/hangar)
"aaU" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/gamma/hangar)
"aaV" = (
/obj/structure/machinery/landinglight/ds1/delaythree,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/gamma/hangar)
"aaW" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "3"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"aaX" = (
/obj/structure/machinery/camera/autoname/lz_camera,
@@ -283,10 +214,7 @@
/area/corsat/gamma/hangar)
"aaY" = (
/obj/structure/machinery/landinglight/ds1/delaytwo,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/gamma/hangar)
"aaZ" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
@@ -339,35 +267,25 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/corsat/gamma/hangar)
"abk" = (
/obj/structure/machinery/landinglight/ds1{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/corsat/gamma/hangar)
"abl" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/gamma/hangar)
"abm" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/gamma/hangar)
"abn" = (
/obj/structure/surface/rack,
@@ -377,33 +295,21 @@
/obj/item/ammo_magazine/pistol/mod88,
/obj/item/ammo_magazine/pistol/mod88,
/obj/item/ammo_magazine/pistol/mod88,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/gamma/security/armory)
"abo" = (
/obj/structure/machinery/camera/autoname/lz_camera,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/gamma/hangar)
"abp" = (
/obj/structure/machinery/camera/autoname/lz_camera,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/gamma/hangar)
"abq" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "4"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"abr" = (
/obj/structure/bed/chair/wood/normal{
@@ -435,9 +341,7 @@
/obj/structure/surface/rack,
/obj/item/cell/hyper,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"abx" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -447,17 +351,13 @@
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/corsat/gamma/hangar)
"abz" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/corsat/gamma/hangar)
"abA" = (
/turf/closed/wall/r_wall/biodome,
@@ -466,19 +366,13 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 4
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/gamma/hangar)
"abC" = (
/obj/structure/machinery/landinglight/ds1{
dir = 8
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/gamma/hangar)
"abD" = (
/turf/closed/wall/biodome,
@@ -517,10 +411,7 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "7"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"abL" = (
/obj/structure/bookcase{
@@ -547,16 +438,10 @@
/turf/closed/wall/biodome,
/area/corsat/gamma/residential/researcher)
"abQ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/gamma/residential/researcher)
"abR" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/researcher)
"abS" = (
/obj/structure/window/framed/corsat,
@@ -573,43 +458,28 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/east)
"abU" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"abV" = (
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/corsat/gamma/hangar)
"abX" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/corsat/gamma/hangar)
"abY" = (
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/corsat/gamma/hangar)
"abZ" = (
/obj/structure/machinery/landinglight/ds1{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/corsat/gamma/hangar)
"aca" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/corsat/gamma/hangar)
"acc" = (
/obj/structure/closet/cabinet,
@@ -630,29 +500,20 @@
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/gamma/hangar)
"acf" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/gamma/hangar)
"acg" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "Bathroom"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"ach" = (
/obj/structure/bed,
@@ -669,25 +530,17 @@
dir = 1
},
/obj/item/tool/soap,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"acj" = (
/obj/structure/sink{
dir = 8;
pixel_x = -11
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"ack" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential/east)
"acl" = (
/obj/structure/machinery/light{
@@ -696,10 +549,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"acm" = (
/obj/structure/machinery/shower{
@@ -709,10 +559,7 @@
dir = 1;
layer = 2.8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"acn" = (
/obj/structure/machinery/landinglight/ds1{
@@ -730,19 +577,13 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 1
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/gamma/hangar)
"acq" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/gamma/hangar)
"acr" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
@@ -754,19 +595,13 @@
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 1
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/gamma/hangar)
"act" = (
/obj/structure/machinery/landinglight/ds1{
dir = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/gamma/hangar)
"acu" = (
/obj/structure/bookcase/manuals/research_and_development,
@@ -786,29 +621,20 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Bathroom"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"acx" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"acy" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "8"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"acz" = (
/obj/structure/coatrack,
@@ -829,35 +655,22 @@
/obj/structure/machinery/shower{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"acC" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/foyer)
"acD" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/foyer)
"acE" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/gamma/foyer)
"acF" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/gamma/hangar)
"acG" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar)
"acH" = (
/obj/structure/bed/chair/office/dark,
@@ -874,18 +687,13 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "5"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"acK" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"acL" = (
/obj/structure/window/framed/corsat/hull,
@@ -898,56 +706,38 @@
/turf/closed/wall/biodome,
/area/corsat/gamma/residential/lounge)
"acO" = (
-/turf/open/floor/corsat{
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner,
/area/corsat/gamma/residential/east)
"acP" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/hallwaysouth)
"acQ" = (
/obj/structure/bed/sofa/vert/grey/top,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/monorail)
"acR" = (
/obj/structure/machinery/light,
/obj/structure/bed/sofa/vert/grey/bot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/monorail)
"acS" = (
/obj/effect/landmark/crap_item,
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential)
"acT" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"acU" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "6"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"acV" = (
/obj/structure/window/framed/corsat,
@@ -962,19 +752,13 @@
dir = 1
},
/obj/item/tool/soap,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"acX" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "10"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"acY" = (
/obj/structure/surface/rack,
@@ -986,19 +770,13 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "11"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"ada" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "12"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"adb" = (
/turf/closed/wall/r_wall/biodome,
@@ -1011,44 +789,29 @@
/obj/item/ammo_magazine/pistol/mod88,
/obj/item/ammo_magazine/pistol/mod88,
/obj/item/ammo_magazine/pistol/mod88,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/security/armory)
"add" = (
/turf/closed/wall/biodome,
/area/corsat/sigma/cafe)
"ade" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"adf" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "13"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"adg" = (
/obj/effect/landmark/crap_item,
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"adh" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northwest,
/area/corsat/gamma/residential/east)
"adi" = (
/obj/structure/surface/table/woodentable,
@@ -1066,18 +829,12 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "14"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"adl" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential)
"adm" = (
/obj/structure/bed/chair/wood/normal,
@@ -1093,16 +850,10 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southwest,
/area/corsat/gamma/residential/east)
"adp" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/engineering)
"adq" = (
/obj/structure/window/framed/corsat/hull/security,
@@ -1124,9 +875,7 @@
/area/corsat/sigma/cafe)
"adu" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/security)
"adv" = (
/obj/structure/surface/table/woodentable,
@@ -1139,10 +888,7 @@
/obj/item/ammo_magazine/smg/mp5,
/obj/item/weapon/gun/smg/mp5,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/security/armory)
"adx" = (
/obj/structure/surface/table/woodentable,
@@ -1151,14 +897,10 @@
/area/corsat/gamma/residential/east)
"ady" = (
/obj/structure/fence,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/checkpoint)
"adz" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/checkpoint)
"adA" = (
/obj/structure/surface/table/reinforced,
@@ -1168,26 +910,19 @@
/obj/structure/machinery/door/window/brigdoor/eastleft{
name = "Identification Desk"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/checkpoint)
"adB" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_18"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"adC" = (
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor/corsat{
- icon_state = "spiralwoodalt"
- },
+/turf/open/floor/corsat/spiralwoodalt,
/area/corsat/gamma/residential/lounge)
"adD" = (
/obj/structure/coatrack,
@@ -1208,10 +943,7 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/east)
"adH" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"adI" = (
/turf/closed/wall/r_wall/biodome,
@@ -1223,10 +955,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northeast,
/area/corsat/gamma/residential/west)
"adL" = (
/obj/structure/window/framed/corsat,
@@ -1249,16 +978,10 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"adP" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"adQ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -1280,20 +1003,13 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"adT" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/foyer)
"adU" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"adV" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -1304,10 +1020,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar)
"adX" = (
/obj/structure/fence,
@@ -1320,24 +1033,16 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/east)
"adZ" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/north,
/area/corsat/gamma/residential)
"aea" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential)
"aeb" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/gamma/hangar/cargo)
"aec" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"aed" = (
/obj/structure/surface/table/woodentable,
@@ -1358,10 +1063,7 @@
/area/corsat/gamma/residential/east)
"aeg" = (
/obj/structure/bed/chair/comfy/beige,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet6-2"
- },
+/turf/open/floor/carpet6_2/west,
/area/corsat/gamma/residential/lounge)
"aei" = (
/obj/structure/bed,
@@ -1385,10 +1087,7 @@
/turf/open/floor/plating,
/area/corsat/gamma/hangar/cargo)
"aem" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/gamma/residential)
"aen" = (
/turf/open/mars,
@@ -1398,36 +1097,25 @@
/area/corsat/gamma/biodome)
"aep" = (
/obj/structure/bed/chair/comfy/beige,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/corsat/gamma/residential/lounge)
"aeq" = (
/obj/structure/bed/chair/comfy/beige,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet10-8"
- },
+/turf/open/floor/carpet10_8/west,
/area/corsat/gamma/residential/lounge)
"aer" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/gamma/residential/lounge)
"aes" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/arrivals)
"aet" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/gamma/cargo)
"aeu" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"aev" = (
/obj/structure/window/reinforced{
@@ -1444,10 +1132,7 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "15"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"aex" = (
/obj/structure/window/framed/corsat/hull,
@@ -1456,10 +1141,7 @@
"aey" = (
/obj/structure/bed/chair/comfy/beige,
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/corsat/gamma/residential/lounge)
"aez" = (
/obj/structure/surface/rack,
@@ -1468,10 +1150,7 @@
/obj/item/weapon/gun/shotgun/combat,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/security/armory)
"aeA" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -1480,67 +1159,37 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security/cells)
"aeB" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"aeC" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar/arrivals)
"aeD" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/sigma/hangar/arrivals)
"aeE" = (
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/corsat/sigma/hangar)
"aeF" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/sigma/hangar)
"aeG" = (
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/corsat/sigma/hangar)
"aeH" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"aeI" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar)
"aeJ" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/sigma/hangar)
"aeL" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/sigma/hangar)
"aeM" = (
/turf/closed/wall/r_wall/biodome,
@@ -1552,62 +1201,40 @@
"aeO" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/airlock/south/id)
"aeP" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/corsat/gamma/sigmaremote)
"aeQ" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northwest,
/area/corsat/sigma/hangar)
"aeR" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar)
"aeS" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential)
"aeT" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"aeU" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/sigma/hangar)
"aeV" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"aeW" = (
/obj/effect/landmark/crap_item,
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential)
"aeX" = (
/obj/structure/surface/table/woodentable,
@@ -1623,34 +1250,23 @@
},
/obj/structure/machinery/faxmachine,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/security)
"aeZ" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/airlock/south)
"afa" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/gamma/cargo/disposal)
"afb" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"afc" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/hallwaysouth)
"afd" = (
/obj/structure/window/framed/corsat/hull,
@@ -1661,24 +1277,16 @@
/turf/open/floor/plating,
/area/corsat/sigma/hangar/office)
"aff" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/hangar)
"afg" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/foyer)
"afh" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "16"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"afi" = (
/turf/open/floor/plating,
@@ -1687,10 +1295,7 @@
/obj/structure/bed/chair/comfy/beige{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet5-1"
- },
+/turf/open/floor/carpet5_1/west,
/area/corsat/gamma/residential/lounge)
"afk" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
@@ -1702,31 +1307,19 @@
/area/corsat/sigma/hangar)
"afm" = (
/obj/structure/machinery/landinglight/ds2,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/sigma/hangar)
"afn" = (
/obj/structure/machinery/camera/autoname/lz_camera,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/sigma/hangar)
"afo" = (
/obj/structure/machinery/camera/autoname/lz_camera,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/sigma/hangar)
"afp" = (
/obj/structure/machinery/landinglight/ds2/delaythree,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/sigma/hangar)
"afq" = (
/obj/structure/machinery/landinglight/ds2,
@@ -1736,33 +1329,21 @@
/obj/structure/bed/chair/comfy/beige{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/corsat/gamma/residential/lounge)
"afs" = (
/obj/structure/machinery/landinglight/ds2/delaythree,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/sigma/hangar)
"aft" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/sigma/hangar)
"afu" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "17"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"afv" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
@@ -1774,10 +1355,7 @@
/obj/structure/bed/chair/comfy/beige{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet9-4"
- },
+/turf/open/floor/carpet9_4/west,
/area/corsat/gamma/residential/lounge)
"afy" = (
/obj/structure/surface/table/woodentable,
@@ -1787,17 +1365,11 @@
/area/corsat/gamma/residential/east)
"afz" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/north/id)
"afA" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"afB" = (
/obj/structure/machinery/landinglight/ds2/delayone{
@@ -1821,43 +1393,30 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/corsat/sigma/hangar)
"afF" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/corsat/sigma/hangar)
"afG" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 4
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/sigma/hangar)
"afH" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/sigma/hangar)
"afI" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/gamma/hangar/office)
"afJ" = (
/turf/closed/wall/r_wall/biodome,
@@ -1865,9 +1424,7 @@
"afK" = (
/obj/structure/window/reinforced,
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/hangar/office)
"afL" = (
/obj/structure/machinery/landinglight/ds2/delayone{
@@ -1882,26 +1439,16 @@
/turf/open/floor/plating,
/area/corsat/sigma/hangar)
"afN" = (
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/corsat/sigma/hangar)
"afP" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/corsat/sigma/hangar)
"afQ" = (
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/corsat/sigma/hangar)
"afR" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/north)
"afS" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
@@ -1919,53 +1466,37 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "18"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"afV" = (
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/corsat/sigma/hangar)
"afW" = (
/obj/structure/machinery/landinglight/ds2{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/corsat/sigma/hangar)
"afX" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/sigma/hangar)
"afY" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/sigma/hangar)
"afZ" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/hangar)
"aga" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -1977,22 +1508,15 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "19"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"agd" = (
/obj/structure/window/reinforced,
/obj/structure/platform,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"age" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/south/id)
"agf" = (
/obj/structure/machinery/light{
@@ -2001,9 +1525,7 @@
/obj/structure/machinery/medical_pod/sleeper{
flags_atom = 18
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"agg" = (
/obj/structure/window/framed/corsat/security,
@@ -2013,19 +1535,13 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "20"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"agi" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "21"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"agj" = (
/turf/closed/wall/r_wall/biodome,
@@ -2041,78 +1557,51 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"agm" = (
/obj/structure/surface/table,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"agn" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/hangar)
"ago" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "22"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"agp" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "23"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"agq" = (
/obj/structure/machinery/atm{
pixel_x = -30
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"agr" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "24"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"ags" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/hangar/security)
"agt" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/security)
"agu" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -2120,21 +1609,13 @@
name = "Laundry Unit"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/laundry)
"agv" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/security)
"agw" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"agx" = (
/obj/structure/window/framed/corsat,
@@ -2144,40 +1625,27 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "25"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"agz" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"agA" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"agB" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "1"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"agC" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/north)
"agD" = (
/obj/structure/window/framed/corsat/hull,
@@ -2187,27 +1655,16 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "2"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"agF" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/gamma/hallwaysouth)
"agG" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/south)
"agH" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"agI" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -2218,9 +1675,7 @@
name = "Airlock Control"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/airlock/north)
"agK" = (
/turf/closed/wall/biodome,
@@ -2232,59 +1687,37 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/gamma/residential)
"agN" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hallways)
"agO" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"agP" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "3"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"agQ" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"agR" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/checkpoint)
"agS" = (
/obj/structure/machinery/computer/teleporter_console/corsat{
dir = 8
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"agT" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northwest,
/area/corsat/gamma/residential)
"agU" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -2292,9 +1725,7 @@
"agV" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/security)
"agW" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -2303,9 +1734,7 @@
name = "Hangar Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/hangar)
"agX" = (
/mob/living/simple_animal/hostile/carp{
@@ -2315,17 +1744,13 @@
melee_damage_lower = 0;
melee_damage_upper = 0
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"agY" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"agZ" = (
/turf/closed/wall/r_wall/biodome,
@@ -2336,18 +1761,13 @@
name = "Gamma Checkpoint";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"ahb" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "4"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ahc" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -2357,82 +1777,55 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"ahd" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"ahe" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "5"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ahf" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/hangar/checkpoint)
"ahg" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/id)
"ahh" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "6"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ahi" = (
/obj/structure/machinery/vending/shared_vending,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"ahj" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "7"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ahk" = (
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/sigmaremote)
"ahl" = (
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/security)
"ahm" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"ahn" = (
/turf/closed/wall/biodome,
@@ -2441,27 +1834,19 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/checkpoint)
"ahp" = (
/obj/structure/bed/chair/comfy/black{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"ahq" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"ahr" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/sigma/north)
"ahs" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -2470,9 +1855,7 @@
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/gamma/engineering/atmos)
"ahu" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"ahv" = (
/obj/structure/window/reinforced{
@@ -2494,9 +1877,7 @@
"ahx" = (
/obj/structure/computerframe,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"ahy" = (
/obj/structure/window/reinforced{
@@ -2526,18 +1907,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"ahD" = (
/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{
name = "Cargo Bay";
req_one_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"ahE" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -2546,14 +1923,10 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"ahG" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/airlock/south)
"ahH" = (
/obj/structure/surface/table/reinforced,
@@ -2578,66 +1951,44 @@
pixel_y = 2;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/cargo)
"ahI" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "8"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ahJ" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/checkpoint)
"ahK" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "9"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ahL" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/cargo)
"ahM" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/id)
"ahN" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"ahO" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/arrivals)
"ahP" = (
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/residential)
"ahQ" = (
/turf/closed/wall/r_wall/biodome,
@@ -2651,10 +2002,7 @@
pixel_y = 2;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/hangar/office)
"ahS" = (
/obj/structure/window/framed/corsat,
@@ -2664,19 +2012,13 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "10"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ahU" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "11"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ahV" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -2685,9 +2027,7 @@
name = "Hangar Security";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"ahW" = (
/turf/open/floor/plating,
@@ -2704,15 +2044,10 @@
},
/obj/item/weapon/gun/flamer,
/obj/item/explosive/grenade/incendiary,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/hangar/security)
"ahZ" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar)
"aia" = (
/turf/closed/shuttle/ert{
@@ -2720,9 +2055,7 @@
},
/area/prison/hangar_storage/research/shuttle)
"aib" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"aic" = (
/obj/structure/surface/table/reinforced,
@@ -2731,15 +2064,10 @@
name = "Checkpoint Control";
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar/security)
"aid" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/hangar/security)
"aie" = (
/turf/closed/shuttle/ert{
@@ -2750,16 +2078,11 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "12"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"aig" = (
/obj/structure/machinery/computer3,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"aih" = (
/obj/structure/machinery/light,
@@ -2774,49 +2097,34 @@
},
/area/prison/hangar_storage/research/shuttle)
"aij" = (
-/turf/open/shuttle/dropship{
- icon_state = "floor8"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right,
/area/prison/hangar_storage/research/shuttle)
"aik" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin7"
- },
+/turf/open/shuttle/dropship/light_grey_top_right,
/area/prison/hangar_storage/research/shuttle)
"ail" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/west)
"aim" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"ain" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin6"
- },
+/turf/open/shuttle/dropship/light_grey_top_left,
/area/prison/hangar_storage/research/shuttle)
"aio" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/security)
"aip" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"aiq" = (
/turf/closed/shuttle/ert{
@@ -2827,19 +2135,13 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "13"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ais" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "14"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ait" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
@@ -2852,17 +2154,13 @@
name = "Identification Desk";
req_access_txt = "104"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"aiu" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 8
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"aiv" = (
/turf/closed/shuttle/ert{
@@ -2875,18 +2173,13 @@
},
/area/prison/hangar_storage/research/shuttle)
"aix" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin8"
- },
+/turf/open/shuttle/dropship/light_grey_bottom_right,
/area/prison/hangar_storage/research/shuttle)
"aiy" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "15"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"aiz" = (
/turf/closed/shuttle/ert{
@@ -2906,10 +2199,7 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "16"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"aiD" = (
/obj/structure/window/framed/corsat/hull/security,
@@ -2921,9 +2211,7 @@
},
/area/prison/hangar_storage/research/shuttle)
"aiF" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"aiG" = (
/turf/closed/shuttle/ert{
@@ -2952,10 +2240,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"aiL" = (
/turf/closed/wall/biodome,
@@ -2964,19 +2249,13 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "17"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"aiN" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "18"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"aiO" = (
/turf/closed/wall/r_wall/biodome,
@@ -2985,10 +2264,7 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "19"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"aiQ" = (
/obj/structure/window/framed/corsat,
@@ -2998,21 +2274,13 @@
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/card,
/obj/structure/machinery/computer/guestpass,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/hangar/security)
"aiS" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet6-2"
- },
+/turf/open/floor/carpet6_2/west,
/area/corsat/gamma/administration)
"aiT" = (
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/airlock/north)
"aiU" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -3021,85 +2289,60 @@
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"aiX" = (
/obj/structure/sign/safety/airlock{
pixel_y = -32
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/sigma/north)
"aiY" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/westleft,
/obj/structure/machinery/door/window/brigdoor/eastleft,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"aiZ" = (
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/gamma/hallwaysouth)
"aja" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/gamma/airlock/south/id)
"ajb" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/gamma/airlock/north)
"ajc" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south)
"ajd" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/airlock/north)
"aje" = (
-/turf/open/floor/corsat{
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple,
/area/corsat/sigma/south)
"ajf" = (
/obj/structure/window/framed/corsat/security,
/turf/open/floor/plating,
/area/corsat/omega/security)
"ajg" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/corsat/gamma/cargo)
"ajh" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/corsat/sigma/hangar)
"aji" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/corsat/sigma/hangar)
"ajj" = (
/turf/closed/wall/biodome,
@@ -3111,30 +2354,21 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "20"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ajm" = (
/obj/structure/window/framed/corsat,
/turf/open/floor/plating,
/area/corsat/sigma/airlock/south)
"ajn" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/south)
"ajo" = (
/obj/structure/window/framed/corsat,
/turf/open/floor/plating,
/area/corsat/sigma/cargo)
"ajp" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/omega/control)
"ajq" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -3144,58 +2378,36 @@
/turf/open/floor/plating,
/area/corsat/sigma/laundry)
"ajs" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/laundry)
"ajt" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/laundry)
"aju" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/north)
"ajv" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/sigma/cargo)
"ajw" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/corsat/sigma/cargo)
"ajx" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"ajy" = (
/obj/structure/window/framed/corsat,
/turf/open/floor/plating,
/area/corsat/sigma/laundry)
"ajz" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/north)
"ajA" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/checkpoint)
"ajB" = (
/turf/closed/wall/biodome,
@@ -3203,68 +2415,46 @@
"ajC" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/communications,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"ajD" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/gamma/hangar/monorail/control)
"ajE" = (
/obj/structure/curtain,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"ajF" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "21"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ajG" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/east)
"ajH" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/checkpoint)
"ajI" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/checkpoint)
"ajJ" = (
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/sigma/hangar)
"ajK" = (
/obj/structure/machinery/landinglight/ds2{
dir = 8
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/sigma/hangar)
"ajL" = (
/obj/structure/window/framed/corsat/security,
@@ -3278,26 +2468,17 @@
"ajM" = (
/obj/structure/surface/table,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"ajN" = (
/obj/item/clothing/mask/breath,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/omega/control)
"ajO" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "22"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ajP" = (
/obj/structure/machinery/door_control{
@@ -3309,37 +2490,26 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/gamma/hangar/security)
"ajQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/east/id)
"ajR" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/omega/control)
"ajS" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/sigmaremote)
"ajT" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
@@ -3357,19 +2527,13 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 1
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/sigma/hangar)
"ajW" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "23"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ajX" = (
/turf/closed/wall/biodome,
@@ -3378,10 +2542,7 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "24"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"ajZ" = (
/obj/structure/foamed_metal,
@@ -3391,19 +2552,13 @@
/obj/effect/landmark/teleporter_loc/corsat_sigma_local{
index = "25"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/sigma/south/complex/teleporter)
"akb" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/sigma/hangar)
"akc" = (
/obj/structure/machinery/landinglight/ds2/delayone{
@@ -3416,10 +2571,7 @@
/turf/open/floor/plating,
/area/corsat/sigma/south/complex)
"ake" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"akf" = (
/obj/structure/machinery/light{
@@ -3427,10 +2579,7 @@
},
/obj/structure/surface/table/reinforced,
/obj/item/paper,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/gamma/sigmaremote)
"akg" = (
/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{
@@ -3440,18 +2589,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"akh" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/hangar/flightcontrol)
"aki" = (
/obj/structure/window/framed/corsat/hull,
@@ -3462,10 +2606,7 @@
/area/corsat/sigma/hangar/monorail)
"akk" = (
/obj/structure/stairs,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"akl" = (
/turf/closed/wall/biodome,
@@ -3479,10 +2620,7 @@
"akn" = (
/obj/structure/stairs,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"ako" = (
/obj/structure/machinery/light{
@@ -3490,14 +2628,10 @@
},
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"akp" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/arrivals)
"akq" = (
/turf/closed/wall/biodome,
@@ -3506,42 +2640,30 @@
/obj/structure/computer3frame/server{
icon_state = "4"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/sigma/south/complex)
"aks" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"akt" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/gamma/rnr/library)
"aku" = (
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"akv" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/sigma/south/complex)
"akw" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"akx" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/item/clothing/head/welding,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/control)
"aky" = (
/obj/structure/window/framed/corsat/hull,
@@ -3555,41 +2677,27 @@
/area/corsat/theta/airlock/east)
"akC" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/sigmaremote)
"akD" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"akE" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/sigmaremote)
"akG" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/sigmaremote)
"akH" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential)
"akI" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -3598,40 +2706,26 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"akJ" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northeast,
/area/corsat/gamma/residential)
"akK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar)
"akL" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/cargo)
"akM" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/hangar/flightcontrol)
"akN" = (
/obj/item/device/flashlight/lamp,
@@ -3639,34 +2733,24 @@
dir = 1
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"akP" = (
/obj/item/paper_bin,
/obj/item/tool/pen,
/obj/item/tool/stamp/hos,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security)
"akQ" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"akR" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southeast,
/area/corsat/gamma/residential)
"akS" = (
/obj/structure/surface/table/woodentable,
@@ -3674,33 +2758,23 @@
/area/corsat/gamma/residential/east)
"akT" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/morgue)
"akU" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/airlock/control)
"akV" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/sigma/airlock/south)
"akW" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/southeast/datalab)
"akX" = (
/obj/structure/surface/table/woodentable,
@@ -3713,18 +2787,13 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/airlock/south/id)
"akZ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/monorail/control)
"ala" = (
/obj/structure/surface/table/woodentable,
@@ -3741,10 +2810,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"ald" = (
/turf/closed/wall/r_wall/biodome,
@@ -3755,10 +2821,7 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/east)
"alh" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/gamma/cargo)
"ali" = (
/obj/structure/pipes/vents/pump{
@@ -3766,15 +2829,10 @@
},
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/keycard_auth/lockdown/corsat,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/administration)
"alj" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"alk" = (
/obj/structure/machinery/light{
@@ -3784,18 +2842,13 @@
/obj/structure/machinery/computer/skills{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/administration)
"all" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"alp" = (
/obj/structure/machinery/door_control{
@@ -3808,10 +2861,7 @@
/obj/structure/machinery/computer/secure_data{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/administration)
"alr" = (
/obj/structure/surface/table/woodentable,
@@ -3824,33 +2874,22 @@
dir = 4;
layer = 2
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"alt" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/gamma/residential)
"alu" = (
/obj/structure/surface/table,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"alv" = (
/obj/structure/stairs,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"alw" = (
/turf/closed/wall/r_wall/biodome,
@@ -3867,15 +2906,10 @@
dir = 1
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"alA" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/north,
/area/corsat/gamma/airlock/north)
"alB" = (
/obj/structure/surface/table/reinforced,
@@ -3884,26 +2918,19 @@
name = "Security Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/south/id)
"alC" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"alD" = (
/obj/item/clothing/head/beret/sec/warden,
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security)
"alE" = (
/obj/structure/bed/chair{
@@ -3912,19 +2939,14 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"alF" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/corsat/gamma/cargo)
"alG" = (
/obj/structure/platform{
@@ -3933,10 +2955,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northwest,
/area/corsat/sigma/dorms)
"alH" = (
/obj/structure/surface/rack,
@@ -3959,10 +2978,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northeast,
/area/corsat/sigma/dorms)
"alM" = (
/obj/structure/bed/chair{
@@ -3971,9 +2987,7 @@
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"alN" = (
/obj/structure/surface/table/woodentable,
@@ -3985,22 +2999,14 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"alP" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/gamma/hangar/office)
"alQ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/south/id)
"alR" = (
/obj/structure/bed,
@@ -4010,10 +3016,7 @@
/area/corsat/gamma/residential/east)
"alS" = (
/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/corsat/gamma/sigmaremote)
"alU" = (
/obj/structure/bookcase/manuals/research_and_development,
@@ -4040,46 +3043,32 @@
name = "Cargo Desk";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/cargo/lobby)
"alX" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/gamma/hangar)
"alY" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"alZ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"ama" = (
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/dorms)
"amb" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/gamma/residential)
"amc" = (
/obj/structure/machinery/power/apc/high{
@@ -4088,19 +3077,13 @@
start_charge = 0
},
/obj/structure/closet/crate/trashcart,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/residential/maint)
"amd" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/sigma/dorms)
"ame" = (
/obj/structure/surface/table/woodentable,
@@ -4115,10 +3098,7 @@
dir = 4;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/sigma/dorms)
"amg" = (
/obj/structure/machinery/power/apc/high{
@@ -4126,29 +3106,19 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"amh" = (
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/dorms)
"ami" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/bar)
"amj" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/monorail/control)
"amk" = (
/turf/open/floor/wood,
@@ -4161,9 +3131,7 @@
/area/corsat/gamma/residential/east)
"amm" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/dorms)
"amn" = (
/obj/structure/bed/chair/wood/normal,
@@ -4183,9 +3151,7 @@
req_one_access_txt = "100"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"amq" = (
/obj/structure/surface/table/woodentable,
@@ -4225,21 +3191,13 @@
/turf/open/floor/wood,
/area/corsat/sigma/dorms)
"amx" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/sigma/dorms)
"amy" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/sigma/dorms)
"amz" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"amA" = (
/obj/structure/surface/table/woodentable,
@@ -4273,10 +3231,7 @@
/turf/open/floor/wood,
/area/corsat/sigma/dorms)
"amG" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"amH" = (
/obj/structure/flora/pottedplant{
@@ -4296,9 +3251,7 @@
/turf/open/floor/wood,
/area/corsat/sigma/dorms)
"amK" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/dorms)
"amL" = (
/obj/structure/surface/table/woodentable,
@@ -4317,50 +3270,35 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/residential)
"amP" = (
/obj/structure/surface/table/woodentable,
/turf/open/floor/wood,
/area/corsat/sigma/dorms)
"amQ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/sigma/dorms)
"amR" = (
/obj/structure/window/reinforced,
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/foyer)
"amS" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/checkpoint)
"amT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"amU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/sigma/dorms)
"amV" = (
/obj/structure/barricade/handrail{
@@ -4372,14 +3310,10 @@
/obj/structure/barricade/handrail{
layer = 3
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"amW" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/checkpoint)
"amX" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -4389,9 +3323,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo/disposal)
"amY" = (
/obj/structure/barricade/handrail{
@@ -4403,9 +3335,7 @@
/obj/structure/barricade/handrail{
layer = 3
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"amZ" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
@@ -4418,19 +3348,14 @@
name = "Engineering Desk";
req_access_txt = "13"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering/lobby)
"ana" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/checkpoint)
"anb" = (
/obj/structure/stairs{
@@ -4439,9 +3364,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"anc" = (
/obj/structure/surface/table/reinforced,
@@ -4449,9 +3372,7 @@
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"and" = (
/obj/structure/platform{
@@ -4459,17 +3380,11 @@
layer = 2.7
},
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/sigma/dorms)
"ane" = (
/obj/structure/stairs,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/sigma/dorms)
"anf" = (
/obj/structure/flora/pottedplant,
@@ -4483,28 +3398,19 @@
dir = 1;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/sigma/dorms)
"ani" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 1
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/sigma/hangar)
"anj" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/sigma/hangar)
"ank" = (
/obj/structure/bed/chair/office/dark{
@@ -4518,10 +3424,7 @@
dir = 4;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/north,
/area/corsat/sigma/dorms)
"anm" = (
/obj/structure/platform{
@@ -4529,10 +3432,7 @@
dir = 8;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/sigma/dorms)
"ann" = (
/turf/closed/wall/biodome,
@@ -4543,10 +3443,7 @@
layer = 2.7
},
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northeast,
/area/corsat/sigma/dorms)
"anp" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -4555,24 +3452,17 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/monorail/control)
"anq" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/tool,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/gamma/engineering/atmos)
"anr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/airlock/north)
"ans" = (
/obj/structure/surface/table/woodentable,
@@ -4584,37 +3474,26 @@
/obj/structure/stairs{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"anu" = (
/obj/structure/stairs{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"anv" = (
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/airlock/east)
"anw" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/gamma/hallwaysouth)
"anx" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "tcomms"
- },
+/turf/open/floor/corsat/tcomms/southwest,
/area/corsat/sigma/south/complex)
"any" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"anz" = (
/obj/structure/bookcase/manuals/research_and_development,
@@ -4622,10 +3501,7 @@
/turf/open/floor/wood,
/area/corsat/sigma/dorms)
"anA" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/omega/hallways)
"anB" = (
/obj/structure/surface/table/woodentable,
@@ -4637,9 +3513,7 @@
id = "GammaEastW";
name = "Gamma East Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/control)
"anD" = (
/obj/structure/window/framed/corsat/hull,
@@ -4653,44 +3527,31 @@
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/south/id)
"anG" = (
-/turf/open/floor/corsat{
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple,
/area/corsat/omega/hallways)
"anH" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar)
"anI" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"anJ" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/hangar/monorail)
"anK" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"anL" = (
/obj/effect/landmark/xeno_spawn,
@@ -4705,9 +3566,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/checkpoint)
"anN" = (
/obj/structure/surface/table/almayer,
@@ -4715,25 +3574,17 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"anO" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/omega/containment)
"anP" = (
/obj/effect/landmark/monkey_spawn,
/turf/open/floor/almayer/research/containment/floor2,
/area/corsat/inaccessible)
"anQ" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/containment)
"anR" = (
/turf/open/floor/almayer/research/containment/corner1,
@@ -4745,46 +3596,30 @@
/turf/closed/wall/r_wall/biodome,
/area/corsat/omega/airlocknorth/id)
"anU" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/sigma/airlock/south)
"anV" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/scalpel,
/obj/item/tool/surgery/retractor,
/obj/item/tool/surgery/bonegel,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/sigmaremote)
"anW" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/gamma/cargo/disposal)
"anX" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/gamma/residential)
"anY" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/id)
"anZ" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"aoa" = (
/obj/structure/window/framed/corsat/security,
@@ -4800,10 +3635,7 @@
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/gamma/cargo/lobby)
"aoc" = (
/turf/closed/wall/biodome,
@@ -4812,10 +3644,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/hallwaysouth)
"aoe" = (
/turf/closed/wall/r_wall/biodome,
@@ -4825,51 +3654,32 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"aog" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/sigma/hangar/checkpoint)
"aoh" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/checkpoint)
"aoi" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_west"
- },
+/turf/open/floor/corsat/arrow_west,
/area/corsat/sigma/cargo)
"aoj" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/sigma/dorms)
"aok" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/omega/complex)
"aol" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"aom" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/north)
"aon" = (
/obj/structure/shuttle/diagonal{
@@ -4882,28 +3692,18 @@
"aoo" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/checkpoint)
"aop" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/gamma/airlock/north)
"aoq" = (
/obj/structure/surface/table/almayer,
/obj/item/restraint/handcuffs,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"aor" = (
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/sigma/cargo)
"aos" = (
/turf/open/floor/almayer/research/containment/corner2,
@@ -4912,30 +3712,20 @@
/turf/open/floor/almayer/research/containment/corner3,
/area/corsat/inaccessible)
"aou" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo/disposal)
"aov" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/airlock/south)
"aow" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/theta/airlock/west)
"aox" = (
/obj/structure/sink,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"aoy" = (
/obj/structure/machinery/door/window/southleft{
@@ -4945,35 +3735,22 @@
/obj/structure/machinery/shower{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"aoz" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/south)
"aoA" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/omega/airlocknorth)
"aoB" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/airlocknorth)
"aoC" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/airlocknorth)
"aoD" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/dorms)
"aoE" = (
/turf/closed/wall/r_wall/biodome,
@@ -4992,14 +3769,10 @@
name = "Omega Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/airlocknorth/id)
"aoG" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/airlocknorth)
"aoH" = (
/obj/structure/window/framed/corsat/security,
@@ -5009,9 +3782,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/sigma/dorms)
"aoJ" = (
/obj/structure/window/framed/corsat/security,
@@ -5021,27 +3792,20 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/omega/hallways)
"aoL" = (
/obj/structure/window/reinforced,
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/crap_item,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/foyer)
"aoM" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"aoN" = (
/obj/structure/window/framed/corsat/research,
@@ -5051,20 +3815,14 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/checkpoint)
"aoP" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/west/id)
"aoQ" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"aoR" = (
/obj/structure/window/framed/corsat/hull/security,
@@ -5074,28 +3832,19 @@
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/westleft,
/obj/structure/machinery/door/window/brigdoor/eastleft,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"aoT" = (
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/checkpoint)
"aoU" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/security/cells)
"aoV" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/security)
"aoW" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -5107,35 +3856,22 @@
/turf/closed/wall/biodome,
/area/corsat/omega/maint)
"aoZ" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/maint)
"apa" = (
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/omega/maint)
"apb" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southeast,
/area/corsat/sigma/dorms)
"apc" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/omega/hallways)
"apd" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"ape" = (
/obj/structure/window/framed/corsat/research,
@@ -5151,10 +3887,7 @@
/obj/structure/sink{
pixel_y = 24
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"apg" = (
/turf/closed/wall/r_wall/biodome,
@@ -5166,9 +3899,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"apj" = (
/turf/closed/shuttle/ert{
@@ -5193,10 +3924,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/hangar/security)
"apo" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -5213,15 +3941,10 @@
"apq" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/red,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar/security)
"apr" = (
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/residential)
"aps" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -5229,18 +3952,13 @@
name = "Security Office";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/id)
"apt" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/sigma/southeast/generator)
"apu" = (
/turf/closed/wall/r_wall/biodome,
@@ -5249,52 +3967,35 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/residential)
"apw" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/north/id)
"apx" = (
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/residential/maint)
"apy" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/residential/maint)
"apz" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/southeast/generator)
"apA" = (
/obj/structure/fence,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/checkpoint)
"apB" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/cargo/lobby)
"apC" = (
/obj/structure/surface/table/reinforced,
@@ -5309,26 +4010,19 @@
id = "GammaSecC";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/security)
"apD" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/sigma/southeast/generator)
"apE" = (
/obj/effect/landmark/corpsespawner/engineer,
/obj/effect/decal/cleanable/blood/splatter,
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/generator)
"apF" = (
/obj/structure/machinery/computer3/laptop/secure_data,
@@ -5336,10 +4030,7 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/researcher)
"apG" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/corsat/omega/cargo)
"apH" = (
/obj/structure/machinery/computer/telecomms/monitor{
@@ -5348,9 +4039,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"apI" = (
/turf/closed/wall/r_wall/biodome,
@@ -5362,47 +4051,31 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/researcher)
"apL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/generator)
"apM" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/residential/maint)
"apN" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/generator)
"apO" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/gamma/engineering/core)
"apP" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Toilet Unit"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"apQ" = (
/turf/closed/wall/r_wall/biodome,
@@ -5411,9 +4084,7 @@
/turf/closed/wall/biodome,
/area/corsat/gamma/residential/maint)
"apS" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/maint)
"apT" = (
/turf/closed/wall/biodome,
@@ -5425,46 +4096,32 @@
start_charge = 0
},
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/gamma/airlock/north)
"apV" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/sigma/dorms)
"apW" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/generator)
"apX" = (
/obj/effect/decal/cleanable/cobweb{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"apY" = (
/obj/structure/stairs{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"apZ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/gamma/engineering/core)
"aqa" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/core)
"aqb" = (
/obj/structure/bed/chair/office/dark{
@@ -5473,68 +4130,43 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/researcher)
"aqc" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/residential/maint)
"aqd" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/residential/maint)
"aqe" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/airlock/north)
"aqf" = (
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/airlock/north)
"aqg" = (
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/omega/cargo)
"aqh" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/airlock/north)
"aqi" = (
/turf/closed/wall/biodome,
/area/corsat/gamma/engineering)
"aqj" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"aqk" = (
/obj/structure/window/framed/corsat/hull,
/turf/open/floor/plating,
/area/corsat/gamma/airlock/north)
"aql" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering)
"aqm" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/engineering)
"aqn" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"aqo" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -5542,16 +4174,12 @@
"aqp" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/southeast/generator)
"aqq" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"aqr" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -5563,25 +4191,17 @@
/turf/closed/wall/biodome,
/area/corsat/gamma/engineering/atmos)
"aqu" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/engineering/atmos)
"aqv" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/gamma/engineering/atmos)
"aqw" = (
/obj/structure/window/framed/corsat/hull,
/turf/open/floor/plating,
/area/corsat/gamma/residential/maint)
"aqx" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"aqy" = (
/turf/closed/wall/biodome,
@@ -5593,79 +4213,53 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"aqA" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering/lobby)
"aqB" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/lobby)
"aqC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/southeast/generator)
"aqD" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/atmos)
"aqE" = (
/obj/structure/machinery/meter,
/obj/structure/pipes/standard/simple/visible{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"aqF" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/hallwaysouth)
"aqG" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/hallwaysouth)
"aqH" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"aqI" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"aqJ" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/gamma/hallwaysouth)
"aqK" = (
/obj/structure/window/framed/corsat/hull,
@@ -5675,10 +4269,7 @@
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/theta/biodome)
"aqM" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/corsat/greencorner/west,
/area/corsat/gamma/hallwaysouth)
"aqN" = (
/turf/closed/wall/almayer/white,
@@ -5687,48 +4278,32 @@
/turf/closed/wall/almayer/white,
/area/corsat/gamma/medbay)
"aqP" = (
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay)
"aqQ" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"aqR" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northwest,
/area/corsat/gamma/medbay/morgue)
"aqS" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/med_data/laptop,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/morgue)
"aqT" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"aqU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/southeast/generator)
"aqV" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -5738,45 +4313,31 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/generator)
"aqW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/morgue)
"aqX" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"aqY" = (
/turf/closed/wall/almayer/white,
/area/corsat/gamma/medbay/lobby)
"aqZ" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay/lobby)
"ara" = (
-/turf/open/floor/corsat{
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner,
/area/corsat/gamma/medbay/lobby)
"arb" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/west,
/area/corsat/gamma/medbay/lobby)
"arc" = (
/turf/closed/shuttle,
@@ -5786,18 +4347,14 @@
icon_state = "broadcast receiver";
name = "Subspace Receiver"
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"are" = (
/obj/structure/showcase{
icon_state = "processor";
name = "Processor Unit"
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"arf" = (
/turf/closed/wall/almayer/white,
@@ -5807,27 +4364,19 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay/surgery)
"arh" = (
/turf/closed/wall/almayer/white,
/area/corsat/gamma/medbay/chemistry)
"ari" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"arj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay/surgery)
"ark" = (
/obj/structure/showcase{
@@ -5835,9 +4384,7 @@
name = "Communications Server"
},
/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"arl" = (
/obj/structure/closet/crate/freezer,
@@ -5848,21 +4395,13 @@
/obj/item/organ/lungs,
/obj/item/organ/brain,
/obj/item/organ/eyes,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northwest,
/area/corsat/gamma/medbay)
"arm" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/corsat/sigma/north)
"aro" = (
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/gamma/hallwaysouth)
"arp" = (
/turf/closed/wall/biodome,
@@ -5871,10 +4410,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/security/armory)
"arr" = (
/obj/structure/window/framed/corsat,
@@ -5884,19 +4420,14 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security/armory)
"art" = (
/obj/structure/computerframe,
/obj/effect/decal/cleanable/cobweb{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"aru" = (
/obj/structure/flora/pottedplant{
@@ -5906,9 +4437,7 @@
dir = 4;
layer = 2
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"arv" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -5917,9 +4446,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"arx" = (
/turf/closed/wall/biodome,
@@ -5958,22 +4485,16 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"arG" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/sigma/north)
"arH" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"arI" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hydroponics)
"arJ" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -5983,10 +4504,7 @@
/obj/structure/machinery/computer/secure_data{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/hangar/security)
"arL" = (
/turf/closed/wall/biodome,
@@ -6002,30 +4520,18 @@
/turf/closed/wall/biodome,
/area/corsat/gamma/residential/laundry)
"arO" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/laundry)
"arP" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/corsat/gamma/cargo/disposal)
"arQ" = (
/obj/structure/bedsheetbin,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/laundry)
"arR" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"arT" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -6034,10 +4540,7 @@
/area/corsat/sigma/north)
"arU" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/laundry)
"arV" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -6046,9 +4549,7 @@
/turf/closed/wall/biodome,
/area/corsat/gamma/residential/lavatory)
"arY" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"arZ" = (
/obj/structure/window/reinforced{
@@ -6060,10 +4561,7 @@
/turf/open/gm/grass/grass1/weedable,
/area/corsat/sigma/north)
"asa" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/rnr)
"asb" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -6071,23 +4569,16 @@
name = "Reactor Core";
req_one_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/core)
"asc" = (
/turf/closed/wall/biodome,
/area/corsat/gamma/kitchen)
"asd" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/corsat/sigma/cargo)
"ase" = (
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"asf" = (
/obj/structure/machinery/light{
@@ -6098,10 +4589,7 @@
/turf/open/floor/corsat,
/area/corsat/gamma/sigmaremote)
"asg" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"ash" = (
/obj/structure/window/reinforced{
@@ -6125,10 +4613,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/hangar/flightcontrol)
"ask" = (
/obj/structure/closet/crate/trashcart,
@@ -6143,10 +4628,7 @@
/turf/open/gm/grass/grass1/weedable,
/area/corsat/sigma/north)
"aso" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"asp" = (
/turf/closed/wall/biodome,
@@ -6156,10 +4638,7 @@
/turf/open/floor/plating,
/area/corsat/gamma/rnr/library)
"asr" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"ass" = (
/obj/structure/window/framed/corsat/hull,
@@ -6178,10 +4657,7 @@
/area/corsat/gamma/residential/east)
"asv" = (
/obj/structure/curtain/shower,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"asw" = (
/obj/structure/machinery/light/small{
@@ -6202,9 +4678,7 @@
/area/corsat/gamma/hangar/monorail/railcart)
"asB" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"asC" = (
/turf/closed/wall/biodome,
@@ -6213,22 +4687,13 @@
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/sigma/airlock/south)
"asE" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/canteen)
"asF" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/canteen)
"asG" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"asH" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -6281,18 +4746,13 @@
},
/obj/item/weapon/shield/riot,
/obj/item/weapon/shield/riot,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/gamma/security/armory)
"asP" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"asQ" = (
/obj/structure/flora/pottedplant{
@@ -6305,9 +4765,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"asS" = (
/obj/structure/surface/table/woodentable,
@@ -6340,15 +4798,10 @@
/turf/open/floor/corsat,
/area/corsat/sigma/southeast/generator)
"asY" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/southeast)
"asZ" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/southeast)
"atb" = (
/obj/structure/surface/rack,
@@ -6360,9 +4813,7 @@
/obj/item/paper,
/obj/item/tool/pen,
/obj/item/tool/stamp,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/cargo/lobby)
"atd" = (
/obj/structure/window/framed/corsat/hull,
@@ -6370,36 +4821,26 @@
/area/corsat/sigma/southeast)
"ate" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/sigma/north)
"atf" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"atg" = (
/obj/structure/window/framed/corsat/hull,
/turf/open/floor/plating,
/area/corsat/sigma/southeast/dataoffice)
"ath" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/corsat/gamma/administration)
"ati" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/sigma/southeast/generator)
"atj" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet10-8"
- },
+/turf/open/floor/carpet10_8/west,
/area/corsat/gamma/administration)
"atk" = (
/turf/closed/wall/biodome,
@@ -6408,19 +4849,13 @@
/turf/closed/wall/r_wall/biodome,
/area/corsat/sigma/southeast/generator)
"atm" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/sigma/southeast)
"atn" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/sigmaremote)
"ato" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -6433,26 +4868,18 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"ats" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/sigma/dorms)
"att" = (
/turf/closed/wall/biodome,
/area/corsat/sigma/southeast/datalab)
"atu" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/researcher)
"atv" = (
/obj/structure/window/framed/corsat,
@@ -6466,16 +4893,10 @@
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/gamma/residential)
"aty" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet5-1"
- },
+/turf/open/floor/carpet5_1/west,
/area/corsat/gamma/administration)
"atz" = (
/turf/closed/wall/r_wall/biodome,
@@ -6512,26 +4933,17 @@
/area/corsat/sigma/airlock/east/id)
"atK" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/airlock/north)
"atL" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/gamma/security/armory)
"atM" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/gamma/security/armory)
"atN" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/generator)
"atO" = (
/obj/structure/machinery/light/small{
@@ -6544,22 +4956,16 @@
/turf/open/floor/corsat,
/area/corsat/sigma/hangar/id)
"atQ" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/airlock/east)
"atR" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"atS" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/generator)
"atT" = (
/obj/structure/window/framed/corsat/security,
@@ -6574,15 +4980,10 @@
/obj/structure/surface/rack,
/obj/item/storage/box/handcuffs,
/obj/item/storage/box/handcuffs,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/gamma/security/armory)
"atV" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/south)
"atW" = (
/obj/structure/bed/chair/office/light{
@@ -6591,26 +4992,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/checkpoint)
"atX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/checkpoint)
"atY" = (
/obj/structure/surface/table/reinforced,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/airlock/north)
"atZ" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -6620,14 +5014,10 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"aua" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/north/id)
"aub" = (
/obj/structure/bed/chair/wood/normal{
@@ -6651,21 +5041,13 @@
/turf/closed/wall/biodome,
/area/corsat/sigma/airlock/east)
"aue" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/south/security)
"auf" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/south/security)
"aug" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"auh" = (
/turf/closed/wall/r_wall/biodome,
@@ -6680,10 +5062,7 @@
"auk" = (
/obj/structure/window/reinforced,
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/airlock/south)
"aul" = (
/obj/structure/flora/pottedplant{
@@ -6692,9 +5071,7 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"aum" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -6705,9 +5082,7 @@
id = "GammaAdmin";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"aun" = (
/obj/structure/window/reinforced,
@@ -6715,9 +5090,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"auo" = (
/obj/structure/machinery/constructable_frame{
@@ -6733,66 +5106,47 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"auq" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/gamma/security)
"aur" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/theta/airlock/east)
"aus" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"aut" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{
id = "SigmaSouthN";
name = "Sigma South Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/south)
"auu" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/checkpoint)
"auv" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/sigma/south)
"auw" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"aux" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"auy" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"auz" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -6801,19 +5155,14 @@
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/corsat/gamma/administration)
"auB" = (
/turf/closed/wall/biodome,
/area/corsat/sigma/south/offices)
"auC" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"auD" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -6822,19 +5171,14 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/south/id)
"auE" = (
/obj/structure/window/framed/corsat/hull,
/turf/open/floor/plating,
/area/corsat/sigma/south/offices)
"auF" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south)
"auG" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -6853,25 +5197,18 @@
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/omega/airlocknorth)
"auN" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/sigma/south/engineering)
"auO" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner,
/area/corsat/sigma/dorms)
"auP" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/generator)
"auQ" = (
/obj/structure/window/framed/corsat/hull,
@@ -6895,10 +5232,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/south)
"auW" = (
/obj/structure/machinery/power/smes,
@@ -6908,17 +5242,13 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/airlock/north)
"auY" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/airlock/north)
"auZ" = (
/obj/structure/surface/table/reinforced,
@@ -6936,20 +5266,14 @@
pixel_y = -3;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/airlock/north)
"ava" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/atmos_alert{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/airlock/north)
"avb" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -6957,21 +5281,14 @@
name = "\improper Bar Rear"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/bar)
"avc" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/airlock/north)
"avd" = (
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/gamma/airlock/north)
"ave" = (
/obj/structure/machinery/power/apc/hyper{
@@ -6983,10 +5300,7 @@
/obj/item/evidencebag,
/obj/item/evidencebag,
/obj/item/evidencebag,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/security/cells)
"avf" = (
/obj/item/cell/crap,
@@ -6998,10 +5312,7 @@
"avg" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/checkpoint)
"avh" = (
/obj/structure/machinery/power/apc/hyper{
@@ -7009,40 +5320,26 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/gamma/engineering/core)
"avj" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/sigma/hangar/checkpoint)
"avl" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/checkpoint)
"avm" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/sigma/south/offices)
"avn" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/checkpoint)
"avo" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/hangar/checkpoint)
"avp" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/security)
"avq" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -7051,14 +5348,10 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"avr" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/south)
"avs" = (
/obj/structure/machinery/light/small{
@@ -7071,17 +5364,13 @@
id = "SigmaEastW";
name = "Sigma East Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/east)
"avu" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/south/id)
"avv" = (
/obj/structure/machinery/door_control{
@@ -7090,10 +5379,7 @@
pixel_x = 25;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/security)
"avx" = (
/obj/structure/machinery/power/apc/high{
@@ -7101,10 +5387,7 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"avy" = (
/obj/structure/machinery/power/apc/high{
@@ -7112,22 +5395,14 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/omega/cargo)
"avz" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet9-4"
- },
+/turf/open/floor/carpet9_4/west,
/area/corsat/gamma/administration)
"avA" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/airlock/south/id)
"avD" = (
/obj/structure/surface/table/woodentable,
@@ -7140,14 +5415,10 @@
/area/corsat/gamma/residential/researcher)
"avE" = (
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/omega/hangar)
"avF" = (
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/airlock/north)
"avG" = (
/obj/structure/machinery/door/window/brigdoor/southleft{
@@ -7155,40 +5426,26 @@
name = "Cell 1"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security/cells)
"avH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/east/id)
"avI" = (
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/omega/hangar)
"avJ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/hangar)
"avK" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/corsat/omega/cargo)
"avL" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/cargo)
"avM" = (
/obj/structure/machinery/power/apc/high{
@@ -7196,26 +5453,16 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/southeast)
"avN" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"avO" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/gamma/residential)
"avP" = (
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/gamma/residential)
"avQ" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -7225,17 +5472,13 @@
name = "Security Office";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/checkpoint)
"avS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"avT" = (
/obj/structure/window/framed/corsat/cell/research,
@@ -7249,90 +5492,58 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/medbay/morgue)
"avV" = (
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/gamma/residential)
"avW" = (
/obj/structure/sign/safety/airlock{
pixel_y = -32
},
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/gamma/residential)
"avX" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"avY" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/residential)
"avZ" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/residential/west)
"awa" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/gamma/residential)
"awb" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/gamma/airlock/north)
"awc" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/residential)
"awd" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/residential)
"awe" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/gamma/residential)
"awf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/gamma/residential/maint)
"awg" = (
/obj/structure/machinery/bot/medbot/mysterious,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"awh" = (
/obj/structure/surface/table/almayer,
/obj/item/roller,
/obj/item/roller,
/obj/item/roller,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"awi" = (
/obj/structure/surface/table/reinforced,
@@ -7347,42 +5558,29 @@
id = "GammaHangarCargoC";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/cargo)
"awj" = (
/obj/structure/surface/table/reinforced,
/obj/item/ashtray/bronze,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/checkpoint)
"awk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"awl" = (
/obj/structure/surface/rack,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northwest,
/area/corsat/gamma/medbay/chemistry)
"awm" = (
/obj/structure/closet/secure_closet/chemical{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/chemistry)
"awn" = (
/obj/structure/machinery/power/apc/high{
@@ -7390,29 +5588,19 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/north,
/area/corsat/gamma/medbay/chemistry)
"awo" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/chemistry)
"awp" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/id)
"awq" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/north,
/area/corsat/gamma/hallwaysouth)
"awr" = (
/obj/structure/shuttle/diagonal{
@@ -7426,33 +5614,23 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"awt" = (
/obj/structure/noticeboard{
pixel_y = 32
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/gamma/administration)
"awu" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/foyer)
"awv" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/administration)
"aww" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -7460,9 +5638,7 @@
name = "Administration Desk";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"awx" = (
/obj/structure/window/framed/corsat/security,
@@ -7491,9 +5667,7 @@
id = "GammaDSC";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/north/id)
"awA" = (
/obj/structure/machinery/light{
@@ -7507,18 +5681,13 @@
dir = 4
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/gamma/airlock/north/id)
"awC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"awD" = (
/obj/structure/machinery/door/window/brigdoor/southleft{
@@ -7526,45 +5695,33 @@
name = "Cell 2"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security/cells)
"awE" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"awF" = (
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"awG" = (
/obj/structure/bed/chair/comfy/black{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/north/id)
"awH" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/airlock/north)
"awJ" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"awK" = (
/obj/structure/surface/table/reinforced,
@@ -7573,46 +5730,31 @@
name = "Security Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/airlock/north/id)
"awL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"awM" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/airlock/south/id)
"awN" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/north/id)
"awO" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"awP" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/checkpoint)
"awQ" = (
/turf/closed/wall/r_wall/biodome,
@@ -7621,9 +5763,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/gamma/airlock/north/id)
"awS" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -7633,23 +5773,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/morgue)
"awT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo/disposal)
"awU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"awV" = (
/obj/structure/surface/table/reinforced,
@@ -7657,10 +5791,7 @@
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/gamma/airlock/north/id)
"awW" = (
/obj/structure/surface/table/reinforced,
@@ -7669,9 +5800,7 @@
name = "Security Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/airlock/north/id)
"awX" = (
/obj/structure/closet/wardrobe/white,
@@ -7685,10 +5814,7 @@
/obj/item/clothing/head/ushanka,
/obj/item/clothing/suit/storage/snow_suit,
/obj/item/clothing/suit/storage/snow_suit,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/gamma/airlock/north/id)
"awY" = (
/turf/closed/wall/r_wall/biodome,
@@ -7699,10 +5825,7 @@
dir = 1
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"axa" = (
/obj/structure/bed/chair{
@@ -7711,18 +5834,13 @@
/obj/structure/barricade/handrail{
layer = 3
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"axb" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/checkpoint)
"axc" = (
/obj/structure/machinery/vending/coffee,
@@ -7730,64 +5848,43 @@
dir = 1;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northwest,
/area/corsat/gamma/hallwaysouth)
"axd" = (
/obj/structure/bed,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/security/cells)
"axe" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"axf" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southwest,
/area/corsat/gamma/hallwaysouth)
"axg" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/south/id)
"axh" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/gamma/administration)
"axi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"axj" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"axk" = (
/obj/structure/machinery/light{
@@ -7797,9 +5894,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/gamma/administration)
"axl" = (
/obj/structure/bed/chair{
@@ -7808,28 +5903,19 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"axm" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security)
"axn" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/administration)
"axo" = (
/obj/structure/machinery/camera/autoname{
@@ -7837,24 +5923,16 @@
network = list("gamma")
},
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/gamma/airlock/north/id)
"axp" = (
/obj/structure/machinery/power/terminal{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering/core)
"axq" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/north/id)
"axr" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -7863,50 +5941,35 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/maint)
"axs" = (
/obj/structure/janitorialcart,
/obj/item/tool/mop,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/residential/maint)
"axt" = (
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/residential/maint)
"axu" = (
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/administration)
"axv" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/airlock/north/id)
"axw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"axx" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/administration)
"axy" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -7915,66 +5978,46 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"axz" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"axB" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/core)
"axC" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/administration)
"axD" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"axE" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/gamma/administration)
"axF" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southeast,
/area/corsat/gamma/administration)
"axG" = (
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/omega/checkpoint)
"axH" = (
/obj/structure/machinery/constructable_frame{
@@ -7984,39 +6027,27 @@
/turf/open/floor/corsat,
/area/corsat/emergency_access)
"axI" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/hangar/checkpoint)
"axJ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Laundry"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/laundry)
"axK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/hangar/checkpoint)
"axL" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/checkpoint)
"axM" = (
/obj/structure/surface/table/reinforced,
@@ -8024,60 +6055,38 @@
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/airlock/north)
"axN" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southeast,
/area/corsat/gamma/airlock/north)
"axO" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"axP" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/airlock/east/id)
"axQ" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"axR" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/airlock/east/id)
"axS" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/airlock/east/id)
"axT" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/airlock/east/id)
"axV" = (
/obj/structure/surface/table/woodentable,
@@ -8089,31 +6098,22 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/east/id)
"axX" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/east/id)
"axY" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Bar"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr/bar)
"axZ" = (
/obj/structure/bed/chair/comfy/black{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/east/id)
"aya" = (
/obj/structure/surface/table/reinforced,
@@ -8122,15 +6122,10 @@
name = "Security Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/airlock/east/id)
"ayb" = (
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/hangar/office)
"ayc" = (
/obj/structure/window/framed/corsat/security,
@@ -8146,36 +6141,24 @@
name = "Hangar Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/hangar/id)
"aye" = (
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/north)
"ayf" = (
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/north)
"ayg" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/hangar/id)
"ayh" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"ayi" = (
/obj/structure/machinery/power/apc/high{
@@ -8183,66 +6166,42 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/hangar/id)
"ayj" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/id)
"ayk" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"ayl" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/checkpoint)
"aym" = (
/obj/structure/bed,
/obj/item/bedsheet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"ayn" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/plastic,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/id)
"ayo" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"ayp" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/id)
"ayq" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/hangar/id)
"ayr" = (
/obj/structure/surface/table/reinforced,
@@ -8250,10 +6209,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/hangar/id)
"ays" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -8263,41 +6219,27 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"ayt" = (
/obj/structure/sign/safety/airlock{
pixel_y = -32
},
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/north)
"ayu" = (
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/sigma/north)
"ayv" = (
/obj/structure/machinery/optable,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"ayw" = (
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/north)
"ayx" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/id)
"ayy" = (
/obj/structure/surface/table/almayer,
@@ -8305,10 +6247,7 @@
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/hangar/id)
"ayz" = (
/obj/structure/bed,
@@ -8316,18 +6255,12 @@
dir = 1
},
/obj/item/bedsheet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"ayA" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/hangar/id)
"ayB" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -8336,34 +6269,22 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"ayC" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/gamma/cargo)
"ayD" = (
/obj/structure/bed,
/obj/item/bedsheet,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northeast,
/area/corsat/gamma/medbay)
"ayE" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/hangar/id)
"ayF" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar/id)
"ayG" = (
/obj/structure/machinery/power/apc/high{
@@ -8372,16 +6293,10 @@
start_charge = 0
},
/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/airlock/control)
"ayH" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/east,
/area/corsat/omega/airlocknorth)
"ayI" = (
/obj/structure/surface/table/reinforced,
@@ -8403,10 +6318,7 @@
pixel_x = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/hangar/id)
"ayJ" = (
/obj/structure/machinery/door_control{
@@ -8422,10 +6334,7 @@
use_power = 0
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/sigma/airlock/east)
"ayK" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -8433,45 +6342,33 @@
name = "Hangar Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/hangar/id)
"ayL" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/airlock/east)
"ayM" = (
/obj/structure/surface/rack,
/obj/item/storage/box/chemimp,
/obj/item/storage/box/trackimp,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/sigmaremote)
"ayN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/north)
"ayO" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar)
"ayP" = (
/obj/structure/surface/table/reinforced,
@@ -8481,28 +6378,17 @@
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/airlock/east)
"ayQ" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/airlock/east)
"ayR" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/administration)
"ayS" = (
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"ayT" = (
/obj/structure/surface/table/reinforced,
@@ -8511,34 +6397,23 @@
health = 250
},
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/airlock/east)
"ayU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"ayV" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/airlock/east)
"ayW" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/airlock/east)
"ayX" = (
/obj/structure/machinery/power/apc/hyper{
@@ -8547,41 +6422,28 @@
start_charge = 0
},
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/sigma/airlock/east)
"ayY" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/sigma/airlock/east)
"ayZ" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/sigma/airlock/east)
"aza" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{
id = "GammaNorthN";
name = "Gamma North Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/north)
"azb" = (
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/airlock/east)
"azc" = (
/obj/structure/surface/table/reinforced,
@@ -8589,96 +6451,67 @@
dir = 8;
health = 250
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/airlock/east)
"azd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"aze" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/airlock/east)
"azf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"azg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/checkpoint)
"azh" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/sigma/airlock/east)
"azi" = (
/obj/structure/pipes/binary/pump/on{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"azj" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/airlock/east)
"azk" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"azl" = (
/obj/structure/stairs{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"azm" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"azn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/airlock/east)
"azo" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/security)
"azp" = (
/obj/structure/surface/table/almayer,
@@ -8686,61 +6519,43 @@
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"azq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/airlock/east)
"azr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"azs" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/checkpoint)
"azt" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/airlock/east)
"azu" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/security)
"azv" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/security)
"azw" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"azx" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -8748,124 +6563,85 @@
name = "Airlock Control";
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/airlock/east)
"azy" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome)
"azz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"azA" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"azB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"azC" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/gamma/administration)
"azD" = (
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/sigma/airlock/east)
"azE" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"azF" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/airlock/east)
"azG" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"azH" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/airlock/east)
"azI" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/airlock/east)
"azJ" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/airlock/east)
"azK" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"azL" = (
/obj/structure/machinery/light,
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/airlock/east)
"azM" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/airlock/east)
"azN" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/east)
"azO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"azP" = (
/obj/structure/machinery/light{
@@ -8874,10 +6650,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/south)
"azQ" = (
/obj/structure/machinery/power/apc/hyper{
@@ -8890,39 +6663,29 @@
name = "secure evidence locker";
req_access_txt = "104"
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security)
"azR" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/south)
"azS" = (
/obj/structure/closet/secure_closet{
name = "secure evidence locker";
req_access_txt = "104"
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security)
"azT" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"azU" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"azV" = (
/obj/structure/window/framed/corsat/security,
@@ -8935,10 +6698,7 @@
/area/corsat/sigma/airlock/south/id)
"azW" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/biodome/toxins)
"azX" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -8946,9 +6706,7 @@
"azY" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"azZ" = (
/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{
@@ -8956,9 +6714,7 @@
name = "Cargo Bay";
req_one_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"aAa" = (
/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{
@@ -8967,57 +6723,38 @@
req_one_access_txt = "100"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"aAb" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aAc" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aAd" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"aAe" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"aAf" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/airlock/south)
"aAg" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/hangar/security)
"aAh" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar/security)
"aAi" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -9028,15 +6765,10 @@
/obj/item/ammo_magazine/pistol/mod88,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hangar/security)
"aAj" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"aAk" = (
/obj/structure/surface/table/reinforced,
@@ -9052,24 +6784,17 @@
pixel_x = -5;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aAl" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aAm" = (
/obj/structure/pipes/standard/simple/visible{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering/atmos)
"aAo" = (
/obj/structure/pipes/unary/outlet_injector{
@@ -9080,17 +6805,12 @@
/area/space)
"aAp" = (
/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering/atmos)
"aAq" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/airlock/south)
"aAr" = (
/obj/structure/machinery/power/apc/high{
@@ -9098,68 +6818,46 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/canteen)
"aAs" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aAt" = (
/obj/structure/pipes/standard/simple/hidden/universal,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"aAu" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 32
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/security)
"aAv" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/engineering/lobby)
"aAw" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"aAx" = (
/obj/structure/sign/safety/airlock{
pixel_x = 32
},
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/south)
"aAy" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/cargo)
"aAz" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/airlock/south)
"aAA" = (
/obj/structure/surface/table/almayer,
@@ -9167,89 +6865,61 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aAB" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aAC" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"aAD" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/airlock/south)
"aAE" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/medbay/morgue)
"aAF" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/atmos_alert{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aAG" = (
/obj/effect/decal/mecha_wreckage/hoverpod,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"aAH" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/sigma/airlock/south)
"aAI" = (
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/sigma/airlock/south)
"aAJ" = (
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/airlock/south)
"aAK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/north,
/area/corsat/sigma/airlock/south)
"aAL" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"aAM" = (
/obj/structure/machinery/power/apc/high{
@@ -9257,10 +6927,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/west,
/area/corsat/gamma/medbay/surgery)
"aAN" = (
/obj/structure/machinery/light,
@@ -9269,9 +6936,7 @@
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/hangar/checkpoint)
"aAO" = (
/obj/structure/machinery/power/apc/high{
@@ -9279,24 +6944,16 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northwest,
/area/corsat/gamma/medbay/lobby)
"aAP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/airlock/south)
"aAQ" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/hangar/checkpoint)
"aAR" = (
/obj/structure/machinery/power/apc/hyper{
@@ -9304,22 +6961,15 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aAS" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/guestpass,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/security)
"aAT" = (
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/airlock/south)
"aAU" = (
/obj/item/tool/pen,
@@ -9327,93 +6977,61 @@
network = list("gamma")
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"aAV" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/sigma/south)
"aAW" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/sigma/south)
"aAX" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/south)
"aAY" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/airlock/south)
"aAZ" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
id = "GammaAdmin";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"aBa" = (
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/airlock/south)
"aBb" = (
/obj/structure/machinery/conveyor,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/cargo)
"aBc" = (
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aBe" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/hallways)
"aBf" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_east"
- },
+/turf/open/floor/corsat/arrow_east,
/area/corsat/omega/cargo)
"aBg" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"aBh" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"aBi" = (
/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{
@@ -9423,192 +7041,128 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"aBj" = (
-/turf/open/floor/almayer/research/containment/corner_var1{
- icon_state = "containment_corner_variant_2"
- },
+/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2,
/area/corsat/inaccessible)
"aBk" = (
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 1
- },
+/turf/open/floor/almayer/research/containment/floor2/north,
/area/corsat/inaccessible)
"aBl" = (
-/turf/open/floor/almayer/research/containment/corner_var1{
- dir = 4
- },
+/turf/open/floor/almayer/research/containment/corner_var1/east,
/area/corsat/inaccessible)
"aBm" = (
/obj/item/clothing/mask/gas,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/toxins)
"aBn" = (
-/turf/open/floor/almayer/research/containment/entrance{
- dir = 8
- },
+/turf/open/floor/almayer/research/containment/entrance/west,
/area/corsat/inaccessible)
"aBo" = (
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 8
- },
+/turf/open/floor/almayer/research/containment/floor2/west,
/area/corsat/inaccessible)
"aBq" = (
-/turf/open/floor/almayer/research/containment/corner{
- dir = 4
- },
+/turf/open/floor/almayer/research/containment/corner/east,
/area/corsat/inaccessible)
"aBr" = (
-/turf/open/floor/almayer/research/containment/corner{
- dir = 1
- },
+/turf/open/floor/almayer/research/containment/corner/north,
/area/corsat/inaccessible)
"aBs" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/airlock/south)
"aBt" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/airlock/south)
"aBu" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security)
"aBv" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/airlock/south)
"aBw" = (
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/airlock/south)
"aBx" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/researcher)
"aBy" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aBz" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/donut_box,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aBD" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/bronze,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aBE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/west/id)
"aBF" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{
id = "SigmaEastE";
name = "Sigma East Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/east)
"aBG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/west)
"aBH" = (
/obj/structure/bed/chair/comfy/black{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/airlock/south/id)
"aBJ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"aBK" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/sigma/airlock/south)
"aBL" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/airlock/south)
"aBM" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"aBO" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/hangar/office)
"aBP" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/office)
"aBQ" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aBR" = (
/obj/structure/machinery/door_control{
@@ -9624,50 +7178,35 @@
pixel_x = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"aBS" = (
/obj/structure/bed/chair/office/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/airlock/south)
"aBT" = (
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/south)
"aBU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southeast,
/area/corsat/sigma/airlock/south)
"aBV" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hallways)
"aBW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aBX" = (
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/theta/airlock/east)
"aBY" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -9678,9 +7217,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/airlock/south)
"aBZ" = (
/obj/structure/machinery/power/apc/high{
@@ -9688,10 +7225,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/omega/maint)
"aCa" = (
/obj/structure/machinery/portable_atmospherics/canister/empty,
@@ -9700,55 +7234,39 @@
"aCb" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aCc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"aCd" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aCe" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/airlocknorth/id)
"aCf" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aCg" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/robotics)
"aCh" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"aCi" = (
/obj/structure/surface/table/almayer,
@@ -9757,16 +7275,11 @@
dir = 8;
health = 250
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aCj" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/security)
"aCk" = (
/obj/structure/surface/table/almayer,
@@ -9774,9 +7287,7 @@
dir = 4
},
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"aCl" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -9784,15 +7295,10 @@
name = "Airlock Control Office";
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/theta/airlock/east)
"aCm" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/theta/airlock/east)
"aCn" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -9801,9 +7307,7 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"aCo" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -9811,44 +7315,31 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/south)
"aCp" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"aCq" = (
/obj/structure/showcase{
icon_state = "processor";
name = "Processor Unit"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/inaccessible)
"aCr" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"aCs" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"aCt" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/gamma/engineering)
"aCu" = (
/turf/open/floor/corsat,
@@ -9859,69 +7350,49 @@
/obj/item/implantcase,
/obj/item/implantcase,
/obj/item/implantpad,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"aCw" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"aCx" = (
/obj/structure/prop/almayer/cannon_cables{
color = "#55BBFF";
name = "\improper Cables"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/inaccessible)
"aCy" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/southeast)
"aCz" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/generator)
"aCA" = (
/obj/structure/machinery/power/terminal{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/southeast/generator)
"aCB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/southeast)
"aCC" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/southeast)
"aCD" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/southeast)
"aCE" = (
/obj/structure/machinery/light{
@@ -9929,31 +7400,21 @@
},
/obj/structure/surface/table/almayer,
/obj/item/pamphlet/skill/powerloader,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/corsat/gamma/cargo/lobby)
"aCF" = (
/obj/structure/machinery/cm_vending/sorted/boozeomat,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/bar)
"aCG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/southeast)
"aCH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"aCI" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -9963,17 +7424,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"aCJ" = (
/obj/structure/prop/almayer/cannon_cable_connector{
name = "\improper Cable connector"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/inaccessible)
"aCK" = (
/obj/structure/machinery/light/small{
@@ -9991,10 +7448,7 @@
dir = 8
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/gamma/engineering/lobby)
"aCM" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -10004,17 +7458,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"aCN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"aCO" = (
/obj/structure/machinery/light/small{
@@ -10026,15 +7476,10 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"aCQ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/theta/airlock/east)
"aCS" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -10044,33 +7489,25 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/lobby)
"aCT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"aCU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"aCV" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/checkpoint)
"aCW" = (
/obj/structure/machinery/power/apc/high{
@@ -10078,10 +7515,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/checkpoint)
"aCX" = (
/turf/open/floor/corsat,
@@ -10095,81 +7529,55 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"aCZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/dorms)
"aDa" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"aDb" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/theta/airlock/east)
"aDc" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"aDd" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southwest,
/area/corsat/sigma/south)
"aDe" = (
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/south)
"aDf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"aDg" = (
/obj/structure/closet/crate/science,
/obj/item/cell/hyper/empty,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/sigma/south/complex)
"aDh" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"aDi" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/gamma/residential)
"aDj" = (
/obj/structure/surface/table/reinforced,
@@ -10179,38 +7587,27 @@
/obj/structure/machinery/door/window/eastright{
name = "Medical Desk"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/lobby)
"aDk" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/theta/airlock/east)
"aDl" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"aDm" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/theta/airlock/east)
"aDn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"aDo" = (
/obj/structure/machinery/power/apc/high{
@@ -10218,48 +7615,32 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/laundry)
"aDp" = (
/obj/structure/surface/rack,
/obj/item/storage/bag/trash,
/obj/item/storage/bag/trash,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/sigma/north)
"aDq" = (
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/theta/airlock/east)
"aDr" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/theta/airlock/east)
"aDs" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/laundry)
"aDt" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/laundry)
"aDu" = (
/obj/structure/machinery/power/apc/high{
@@ -10267,23 +7648,16 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/corsat/sigma/cargo)
"aDv" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"aDw" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/theta/airlock/east)
"aDx" = (
/obj/structure/surface/table/reinforced,
@@ -10291,9 +7665,7 @@
dir = 1;
network = list("theta")
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/theta/airlock/east)
"aDy" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -10323,24 +7695,18 @@
pixel_x = -5;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/theta/airlock/east)
"aDB" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"aDC" = (
/obj/structure/showcase{
icon_state = "broadcast receiver";
name = "Subspace Receiver"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/inaccessible)
"aDD" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -10349,18 +7715,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"aDE" = (
/obj/structure/surface/table/reinforced,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/theta/airlock/east)
"aDF" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -10368,9 +7729,7 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/east)
"aDG" = (
/obj/structure/machinery/power/apc/high{
@@ -10378,19 +7737,14 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"aDH" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/atmos_alert{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/theta/airlock/east)
"aDI" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -10399,9 +7753,7 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/hangar/id)
"aDJ" = (
/obj/structure/machinery/door_control{
@@ -10411,16 +7763,11 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"aDK" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/sigma/hangar)
"aDL" = (
/obj/structure/machinery/camera/autoname{
@@ -10428,36 +7775,26 @@
network = list("sigma")
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"aDM" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"aDN" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/arrivals)
"aDO" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/administration)
"aDP" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/arrivals)
"aDQ" = (
/obj/structure/machinery/power/apc/hyper{
@@ -10465,25 +7802,17 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/sigma/hangar)
"aDR" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/arrivals)
"aDS" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/northwest,
/area/corsat/gamma/hangar/arrivals)
"aDT" = (
/obj/structure/machinery/power/apc/high{
@@ -10495,9 +7824,7 @@
dir = 8
},
/obj/structure/machinery/chem_master/condimaster,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"aDU" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -10507,9 +7834,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"aDV" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -10518,17 +7843,11 @@
req_access_txt = "106";
use_power = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"aDX" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar/arrivals)
"aDY" = (
/turf/closed/shuttle/ert{
@@ -10540,9 +7859,7 @@
name = "Control Room";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"aEa" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -10551,19 +7868,14 @@
req_access_txt = "103";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/sigmaremote)
"aEb" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/gamma/hangar/checkpoint)
"aEc" = (
/turf/closed/shuttle/ert{
@@ -10592,49 +7904,32 @@
"aEg" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/gamma/hangar/checkpoint)
"aEh" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar)
"aEi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hallways)
"aEj" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/prison/hangar_storage/research/shuttle)
"aEk" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/east,
/area/corsat/omega/airlocknorth)
"aEl" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/omega/airlocknorth)
"aEn" = (
/obj/effect/decal/cleanable/blood/xtracks,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/airlocknorth)
"aEq" = (
/obj/structure/window/framed/corsat,
@@ -10645,22 +7940,16 @@
/turf/open/floor/plating,
/area/corsat/gamma/cargo/lobby)
"aEt" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_west"
- },
+/turf/open/floor/corsat/arrow_west,
/area/corsat/gamma/engineering/core)
"aEu" = (
/obj/structure/sign/safety/airlock{
pixel_x = 32
},
-/turf/open/floor/corsat{
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner,
/area/corsat/omega/airlocknorth)
"aEv" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_north"
- },
+/turf/open/floor/corsat/arrow_north,
/area/corsat/sigma/southeast/generator)
"aEw" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -10673,30 +7962,20 @@
/area/corsat/omega/hangar)
"aEz" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/hangar/monorail)
"aEC" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/airlocknorth)
"aED" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/airlocknorth)
"aEE" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/airlocknorth)
"aEF" = (
/obj/structure/surface/table/reinforced,
@@ -10705,44 +7984,29 @@
name = "Dome Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/airlocknorth)
"aEG" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/airlocknorth)
"aEH" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/airlocknorth)
"aEJ" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"aEK" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/generator)
"aEL" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/omega/complex)
"aEM" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -10752,18 +8016,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/generator)
"aEN" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"aEP" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -10773,9 +8033,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"aER" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10787,43 +8045,29 @@
"aES" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"aET" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
name = "Administration";
req_access_txt = "106"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"aEU" = (
/obj/structure/closet/secure_closet/engineering_chief{
req_access_txt = "101"
},
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/gamma/engineering)
"aEV" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/gamma/cargo/disposal)
"aEW" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"aEX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10836,9 +8080,7 @@
/obj/structure/bed,
/obj/structure/machinery/light,
/obj/item/bedsheet,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"aEZ" = (
/obj/effect/alien/weeds/node,
@@ -10848,16 +8090,11 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/checkpoint)
"aFc" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"aFd" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -10866,16 +8103,12 @@
/area/corsat/gamma/biodome)
"aFe" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"aFf" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"aFg" = (
/obj/structure/bed/chair/wood/normal{
@@ -10894,10 +8127,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"aFj" = (
/obj/structure/toilet{
@@ -10906,19 +8136,13 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"aFk" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/researcher)
"aFl" = (
/obj/structure/barricade/handrail{
@@ -10939,10 +8163,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential)
"aFn" = (
/obj/structure/filingcabinet/filingcabinet,
@@ -10959,10 +8180,7 @@
/area/corsat/gamma/residential/researcher)
"aFp" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/gamma/engineering)
"aFq" = (
/obj/structure/barricade/handrail{
@@ -10978,15 +8196,11 @@
/area/corsat/gamma/residential/east)
"aFr" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/hangar/checkpoint)
"aFs" = (
/obj/structure/bed/chair/comfy,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/corsat/gamma/hangar/monorail/railcart)
"aFt" = (
/obj/structure/closet/cabinet,
@@ -10998,9 +8212,7 @@
"aFu" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/electrical,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"aFv" = (
/obj/structure/surface/table/woodentable,
@@ -11011,9 +8223,7 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/researcher)
"aFw" = (
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/corsat/gamma/hangar/monorail/railcart)
"aFx" = (
/obj/structure/surface/table/woodentable,
@@ -11028,38 +8238,27 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar)
"aFz" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/foyer)
"aFA" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/sigma/south/complex)
"aFB" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar)
"aFC" = (
/obj/structure/surface/table/woodentable,
@@ -11073,9 +8272,7 @@
"aFD" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"aFE" = (
/obj/structure/machinery/light,
@@ -11086,26 +8283,17 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/foyer)
"aFG" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/monorail/control)
"aFH" = (
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"aFI" = (
/obj/structure/bed{
@@ -11118,17 +8306,11 @@
/area/corsat/gamma/residential/researcher)
"aFJ" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/theta/airlock/east)
"aFK" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/gamma/foyer)
"aFL" = (
/obj/structure/machinery/power/apc/hyper{
@@ -11136,10 +8318,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/north,
/area/corsat/theta/airlock/east)
"aFM" = (
/obj/structure/machinery/light{
@@ -11152,27 +8331,18 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"aFO" = (
/obj/item/paper,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"aFP" = (
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/theta/airlock/east)
"aFR" = (
/obj/structure/bed,
@@ -11184,19 +8354,13 @@
/area/corsat/gamma/residential/east)
"aFS" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/theta/airlock/east)
"aFT" = (
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "Waste Tank Control"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/sigma/airlock/control)
"aFU" = (
/obj/structure/bed/chair{
@@ -11206,9 +8370,7 @@
/area/corsat/gamma/residential/east)
"aFV" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/hangar/cargo)
"aFW" = (
/obj/structure/toilet{
@@ -11217,10 +8379,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"aFX" = (
/obj/structure/bed/chair{
@@ -11235,10 +8394,7 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/core)
"aGb" = (
/obj/structure/surface/table/woodentable,
@@ -11260,10 +8416,7 @@
/obj/item/ammo_magazine/pistol/mod88,
/obj/item/ammo_magazine/pistol/mod88,
/obj/item/ammo_magazine/pistol/mod88,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/south/security)
"aGd" = (
/obj/structure/surface/table,
@@ -11275,19 +8428,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"aGe" = (
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/sigma/south/complex)
"aGf" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -11298,27 +8445,19 @@
dir = 8
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"aGh" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/gamma/cargo)
"aGi" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/theta/airlock/east)
"aGj" = (
/obj/structure/filingcabinet/filingcabinet,
@@ -11331,10 +8470,7 @@
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/cargo)
"aGl" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -11342,27 +8478,19 @@
name = "Hangar Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar)
"aGm" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/gamma/cargo)
"aGn" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/corsat/gamma/cargo)
"aGo" = (
/obj/structure/machinery/power/apc/high{
@@ -11371,41 +8499,29 @@
start_charge = 0
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"aGp" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth/id)
"aGq" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth/id)
"aGr" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/south)
"aGs" = (
/obj/structure/toilet,
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"aGt" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -11414,30 +8530,22 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/surgery)
"aGu" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/theta/airlock/east)
"aGv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/theta/airlock/east)
"aGw" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/east)
"aGx" = (
/obj/structure/window/framed/corsat,
@@ -11452,57 +8560,38 @@
id = "OmegaN";
name = "Omega Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/airlocknorth)
"aGz" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"aGA" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/gamma/residential)
"aGB" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/airlocknorth)
"aGC" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/corsat/gamma/cargo)
"aGD" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/cargo)
"aGE" = (
/obj/structure/stairs{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"aGF" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/theta/airlock/east)
"aGG" = (
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/theta/airlock/east)
"aGI" = (
/obj/structure/toilet{
@@ -11511,37 +8600,26 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"aGJ" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"aGK" = (
/obj/structure/bedsheetbin,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/laundry)
"aGL" = (
/obj/structure/machinery/washing_machine,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/laundry)
"aGM" = (
/obj/structure/surface/rack,
@@ -11551,26 +8629,17 @@
/obj/item/ammo_magazine/smg/mp27,
/obj/item/ammo_magazine/smg/mp27,
/obj/item/ammo_magazine/smg/mp27,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/south/security)
"aGN" = (
/obj/structure/machinery/bioprinter{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"aGO" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/south/security)
"aGP" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -11579,9 +8648,7 @@
req_access_txt = "106;102;103"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"aGQ" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -11590,18 +8657,14 @@
req_one_access_txt = "103"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/chemistry)
"aGR" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Engineering";
req_one_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"aGS" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -11610,24 +8673,16 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/generator)
"aGT" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/southeast/datalab)
"aGU" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/south/security)
"aGV" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -11636,16 +8691,10 @@
},
/obj/item/weapon/shield/riot,
/obj/item/weapon/shield/riot,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/south/security)
"aGW" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/southeast/datalab)
"aGX" = (
/obj/structure/machinery/power/apc/high{
@@ -11653,33 +8702,23 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/southeast/datalab)
"aGY" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"aHa" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/emergency,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"aHb" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/gamma/cargo)
"aHc" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -11687,9 +8726,7 @@
name = "Administration";
req_access_txt = "106"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"aHd" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -11698,23 +8735,16 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/east/id)
"aHe" = (
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"aHf" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Toilet Unit"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"aHg" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -11731,9 +8761,7 @@
name = "Administration";
req_access_txt = "106"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"aHi" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -11743,9 +8771,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"aHj" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -11754,9 +8780,7 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"aHk" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -11766,33 +8790,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"aHm" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/corsat/gamma/cargo)
"aHn" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/hallways)
"aHo" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"aHp" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -11802,9 +8816,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/west/id)
"aHq" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -11814,9 +8826,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/west)
"aHr" = (
/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{
@@ -11826,15 +8836,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"aHs" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar)
"aHt" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -11842,33 +8848,20 @@
/obj/item/clothing/accessory/storage/holster/armpit,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/south/security)
"aHu" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/omega/offices)
"aHv" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"aHw" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/omega/offices)
"aHx" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/south/security)
"aHy" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -11877,9 +8870,7 @@
req_one_access_txt = "103"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"aHz" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -11889,9 +8880,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"aHA" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -11901,17 +8890,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"aHB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"aHC" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -11920,9 +8905,7 @@
req_one_access_txt = "103"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"aHD" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -11936,16 +8919,12 @@
name = "Virology Lockdown"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/virology)
"aHE" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/juicer,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"aHF" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -11960,9 +8939,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/virology)
"aHG" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -11972,17 +8949,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"aHH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/corsat/omega/cargo)
"aHI" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -11992,23 +8965,16 @@
dir = 1;
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/omega/cargo)
"aHJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"aHK" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/south/security)
"aHL" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -12019,19 +8985,14 @@
name = "Omega Airlock"
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/airlocknorth)
"aHN" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southeast,
/area/corsat/theta/airlock/east)
"aHO" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -12041,9 +9002,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hydroponics)
"aHP" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -12052,9 +9011,7 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"aHQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -12063,9 +9020,7 @@
name = "Food Storage";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hydroponics)
"aHR" = (
/obj/structure/machinery/power/apc/high{
@@ -12073,27 +9028,20 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/freezer)
"aHS" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/theta/airlock/east)
"aHT" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"aHU" = (
/obj/structure/machinery/light{
@@ -12103,9 +9051,7 @@
/obj/structure/machinery/computer/station_alert{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/theta/airlock/east)
"aHV" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -12115,9 +9061,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"aHW" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -12127,17 +9071,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"aHX" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"aHY" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -12147,15 +9085,10 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"aHZ" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"aIa" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -12164,9 +9097,7 @@
req_one_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"aIb" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -12175,9 +9106,7 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/maint)
"aIc" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -12187,22 +9116,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"aId" = (
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/corsat/gamma/sigmaremote)
"aIe" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/gamma/security)
"aIf" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -12211,9 +9132,7 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/east/id)
"aIg" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
@@ -12230,22 +9149,14 @@
id = "GammaAdmin";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/administration)
"aIh" = (
/obj/structure/closet/crate/science,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"aIi" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/airlocknorth)
"aIj" = (
/obj/effect/landmark/survivor_spawner,
@@ -12269,55 +9180,37 @@
/turf/open/floor/plating,
/area/corsat/gamma/biodome/virology)
"aIo" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/gamma/biodome/virology)
"aIp" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/virology)
"aIq" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"aIr" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/virology)
"aIs" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/virology)
"aIt" = (
/turf/closed/wall/biodome,
/area/corsat/gamma/biodome/complex)
"aIu" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/gamma/biodome/complex)
"aIv" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/omega/hangar/office)
"aIw" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/complex)
"aIx" = (
/turf/closed/wall/r_wall/biodome,
@@ -12332,85 +9225,53 @@
name = "Gamma Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/north)
"aIz" = (
/obj/structure/closet/crate/science,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/sigma/south/complex)
"aIA" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/sigma/airlock/control)
"aIB" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/gamma/biodome/complex)
"aIC" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/gamma/airlock/control)
"aID" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/airlock/control)
"aIE" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/airlock/control)
"aIF" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/airlock/control)
"aIG" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"aIH" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/complex)
"aII" = (
/obj/structure/window/framed/corsat/research,
/turf/open/floor/plating,
/area/corsat/gamma/biodome/complex)
"aIJ" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/northwest,
/area/corsat/gamma/biodome/complex)
"aIK" = (
/obj/structure/window/framed/corsat/security,
/turf/open/floor/plating,
/area/corsat/gamma/airlock/control)
"aIL" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"aIM" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"aIN" = (
/obj/structure/surface/table/reinforced,
@@ -12418,23 +9279,16 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/south/security)
"aIO" = (
/turf/closed/wall/biodome,
/area/corsat/gamma/biodome)
"aIP" = (
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/biodome/complex)
"aIQ" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/control)
"aIR" = (
/obj/structure/closet/secure_closet/brig{
@@ -12445,20 +9299,13 @@
name = "Cell 1";
pixel_x = -32
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/security/cells)
"aIS" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"aIT" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"aIU" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -12467,9 +9314,7 @@
req_one_access_txt = "103"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/sigmaremote)
"aIV" = (
/obj/structure/closet/secure_closet/brig{
@@ -12480,18 +9325,13 @@
name = "Cell 2";
pixel_x = 32
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security/cells)
"aIW" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"aIX" = (
/turf/open/floor/wood,
@@ -12501,9 +9341,7 @@
/turf/open/floor/plating,
/area/corsat/gamma/biodome/toxins)
"aIZ" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"aJa" = (
/turf/closed/wall/biodome,
@@ -12515,10 +9353,7 @@
req_access_txt = "100";
req_one_access_txt = "0"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/biodome/complex)
"aJc" = (
/obj/structure/window/framed/corsat,
@@ -12526,21 +9361,13 @@
/area/corsat/gamma/airlock/control)
"aJd" = (
/obj/structure/coatrack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"aJe" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/toxins)
"aJf" = (
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/toxins)
"aJg" = (
/obj/structure/sink{
@@ -12550,19 +9377,13 @@
/obj/structure/mirror{
pixel_y = 24
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/biodome/complex)
"aJh" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/gamma/cargo)
"aJi" = (
/obj/structure/sink{
@@ -12572,23 +9393,15 @@
/obj/structure/mirror{
pixel_y = 24
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/biodome/complex)
"aJj" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/theta/airlock/east)
"aJk" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/airlock/control)
"aJl" = (
/obj/structure/window/framed/corsat,
@@ -12598,83 +9411,48 @@
/turf/closed/wall/r_wall,
/area/corsat/sigma/biodome/gunrange)
"aJn" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/corsat/sigma/biodome)
"aJo" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet6-2"
- },
+/turf/open/floor/carpet6_2/west,
/area/corsat/gamma/biodome/complex)
"aJp" = (
/obj/structure/bed/chair/comfy/beige,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/corsat/gamma/biodome/complex)
"aJq" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet10-8"
- },
+/turf/open/floor/carpet10_8/west,
/area/corsat/gamma/biodome/complex)
"aJr" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/toxins)
"aJs" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/biodome/complex)
"aJt" = (
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/airlock/control)
"aJu" = (
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/hallwaysouth)
"aJv" = (
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/airlock/control)
"aJw" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/corsat/sigma/biodome)
"aJx" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome)
"aJy" = (
/obj/structure/bed/sofa/south/grey/left,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/foyer)
"aJz" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/south)
"aJA" = (
/obj/structure/machinery/power/apc/high{
@@ -12685,71 +9463,42 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/corsat/gamma/cargo/disposal)
"aJB" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet5-1"
- },
+/turf/open/floor/carpet5_1/west,
/area/corsat/gamma/biodome/complex)
"aJC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/corsat/gamma/biodome/complex)
"aJD" = (
/obj/structure/bed/chair/comfy/beige{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/corsat/gamma/biodome/complex)
"aJE" = (
/obj/structure/disposaloutlet,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/corsat/gamma/cargo/disposal)
"aJF" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"aJG" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/gamma/airlock/control)
"aJH" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/airlock/control)
"aJI" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/corsat/sigma/biodome)
"aJJ" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/corsat/sigma/biodome)
"aJK" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/control)
"aJL" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -12759,22 +9508,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"aJM" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/south/security)
"aJN" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/security)
"aJO" = (
/obj/structure/window/framed/corsat/security,
@@ -12782,9 +9523,7 @@
/area/corsat/sigma/airlock/control)
"aJP" = (
/obj/vehicle/train/cargo/engine,
-/turf/open/floor/corsat{
- icon_state = "arrow_east"
- },
+/turf/open/floor/corsat/arrow_east,
/area/corsat/gamma/cargo)
"aJQ" = (
/obj/structure/machinery/power/apc/high{
@@ -12792,10 +9531,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/south/security)
"aJR" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -12803,46 +9539,29 @@
req_access_txt = "103"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"aJS" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"aJT" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/south/security)
"aJU" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/theta/airlock/control)
"aJV" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/theta/airlock/control)
"aJW" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/theta/airlock/control)
"aJX" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"aJY" = (
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/theta/airlock/control)
"aJZ" = (
/turf/open/gm/grass/grass1/weedable,
@@ -12859,9 +9578,7 @@
dir = 1;
layer = 2.7
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"aKc" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -12869,20 +9586,13 @@
name = "Hangar Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/hangar/id)
"aKe" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northwest,
/area/corsat/gamma/airlock/control)
"aKf" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/control)
"aKg" = (
/obj/structure/window/framed/corsat,
@@ -12932,94 +9642,63 @@
"aKv" = (
/obj/structure/closet/crate/science,
/obj/item/ore/diamond,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/sigma/south/complex)
"aKw" = (
/obj/structure/closet/secure_closet/security,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/south/security)
"aKx" = (
/obj/structure/sign/safety/airlock{
pixel_y = 32
},
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/sigma/south)
"aKy" = (
/obj/structure/window/framed/corsat,
/turf/open/floor/plating,
/area/corsat/theta/biodome/hydroeast)
"aKz" = (
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydrowest)
"aKA" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/sigma/south)
"aKB" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/south)
"aKC" = (
/obj/structure/sink{
pixel_y = 24
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/theta/biodome/complex)
"aKD" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Bathroom"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/theta/biodome/complex)
"aKE" = (
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"aKF" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/south)
"aKG" = (
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydroeast)
"aKH" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/theta/biodome/complex)
"aKI" = (
/obj/structure/machinery/door_control{
@@ -13035,20 +9714,14 @@
pixel_x = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/gamma/airlock/control)
"aKJ" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("theta")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/west,
/area/corsat/theta/biodome/complex)
"aKK" = (
/turf/closed/wall/biodome,
@@ -13057,115 +9730,74 @@
/turf/closed/wall/biodome,
/area/corsat/theta/biodome/hydroeast)
"aKM" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/hydrowest)
"aKN" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/hydrowest)
"aKO" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/hydrowest)
"aKP" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/theta/biodome/hydrowest)
"aKQ" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/hydroeast)
"aKR" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/theta/biodome/hydroeast)
"aKS" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/hydroeast)
"aKT" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/hydroeast)
"aKV" = (
/obj/structure/prop/almayer/particle_cannon/corsat,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/inaccessible)
"aKW" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/south/security)
"aKX" = (
/obj/structure/closet/crate/freezer,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"aKY" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/biodome/complex)
"aKZ" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/biodome/complex)
"aLa" = (
/obj/structure/closet/crate/trashcart,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/gamma/cargo/disposal)
"aLb" = (
/obj/structure/closet/secure_closet{
name = "secure evidence locker";
req_access_txt = "104"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/south/security)
"aLc" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aLd" = (
/obj/structure/closet/secure_closet{
@@ -13175,10 +9807,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/south/security)
"aLe" = (
/obj/structure/machinery/light{
@@ -13186,26 +9815,18 @@
},
/obj/structure/surface/table/almayer,
/obj/item/storage/box/donkpockets,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/sigma/south/complex)
"aLf" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
name = "Hangar Office"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/hangar/office)
"aLg" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/sigma/south/complex)
"aLh" = (
/turf/closed/wall/r_wall/biodome,
@@ -13220,41 +9841,25 @@
name = "Virology Wing";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"aLj" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/control)
"aLk" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/control)
"aLl" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"aLm" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/sigma/south/complex)
"aLn" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/gamma/airlock/control)
"aLo" = (
/obj/structure/window/framed/corsat/security,
@@ -13272,39 +9877,25 @@
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/airlocknorth)
"aLq" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"aLs" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/control)
"aLt" = (
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/control)
"aLu" = (
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/hallways)
"aLv" = (
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/omega/control)
"aLw" = (
/obj/structure/machinery/power/apc/high{
@@ -13312,38 +9903,25 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/airlock/south/id)
"aLx" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/theta/airlock/east/id)
"aLy" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/sigma/south)
"aLA" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/south/id)
"aLB" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/south/id)
"aLC" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/southeast/dataoffice)
"aLD" = (
/obj/structure/machinery/power/apc/high{
@@ -13351,15 +9929,10 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/omega/cargo)
"aLE" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/south)
"aLH" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -13367,9 +9940,7 @@
name = "Gamma Cargo Bay";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/cargo)
"aLI" = (
/obj/structure/machinery/door_control{
@@ -13378,60 +9949,40 @@
pixel_x = -24;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "arrow_north"
- },
+/turf/open/floor/corsat/arrow_north,
/area/corsat/gamma/cargo)
"aLK" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/security)
"aLL" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hallways)
"aLM" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hallways)
"aLN" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hallways)
"aLO" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hallways)
"aLP" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/south)
"aLQ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/south)
"aLR" = (
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"aLS" = (
/obj/structure/surface/table/reinforced,
@@ -13439,19 +9990,13 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/theta/airlock/east/id)
"aLT" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/sigma/south/complex)
"aLU" = (
/obj/structure/window/framed/corsat/security,
@@ -13467,14 +10012,10 @@
"aLW" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"aLX" = (
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/omega/complex)
"aLY" = (
/obj/structure/window/framed/corsat/security,
@@ -13485,26 +10026,17 @@
/turf/open/floor/plating,
/area/corsat/theta/airlock/east/id)
"aLZ" = (
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/theta/airlock/west)
"aMa" = (
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/theta/airlock/east)
"aMb" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/sigma/south/complex)
"aMc" = (
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/airlocknorth)
"aMd" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
@@ -13517,16 +10049,11 @@
name = "Identification Desk";
req_access_txt = "104"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/west/id)
"aMf" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/south/security)
"aMg" = (
/obj/structure/surface/table/reinforced,
@@ -13535,97 +10062,65 @@
name = "Security Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/theta/airlock/east/id)
"aMh" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/mask/cigarette/cigar/cohiba,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/theta/airlock/east/id)
"aMi" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"aMj" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/theta/airlock/east/id)
"aMk" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/theta/airlock/east/id)
"aMl" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/theta/airlock/east/id)
"aMm" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/theta/airlock/east/id)
"aMn" = (
/obj/effect/landmark/survivor_spawner,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"aMo" = (
/obj/item/device/assembly/voice,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"aMp" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"aMq" = (
/obj/structure/machinery/autolathe,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"aMr" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/security)
"aMs" = (
/obj/structure/machinery/power/apc/hyper{
@@ -13634,10 +10129,7 @@
start_charge = 0
},
/obj/structure/closet/wardrobe/medic_white,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"aMt" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -13647,16 +10139,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth/id)
"aMu" = (
/obj/structure/machinery/r_n_d/organic_analyzer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"aMv" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -13665,15 +10152,11 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth/id)
"aMw" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth/id)
"aMx" = (
/obj/structure/surface/table/reinforced,
@@ -13683,32 +10166,24 @@
start_charge = 0
},
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/airlocknorth/id)
"aMy" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/east/id)
"aMz" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth/id)
"aMA" = (
/obj/structure/surface/table/reinforced,
/obj/item/xeno_restraints,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/airlocknorth/id)
"aMB" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -13719,76 +10194,51 @@
/obj/item/ammo_magazine/pistol/mod88,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/airlocknorth)
"aMC" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth)
"aMD" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/airlocknorth)
"aME" = (
/obj/structure/bedsheetbin,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/laundry)
"aMF" = (
/obj/structure/machinery/light,
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/bar)
"aMG" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_south"
- },
+/turf/open/floor/corsat/arrow_south,
/area/corsat/gamma/cargo)
"aMH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "arrow_west"
- },
+/turf/open/floor/corsat/arrow_west,
/area/corsat/gamma/cargo)
"aMI" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/theta/airlock/east/id)
"aMJ" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_north"
- },
+/turf/open/floor/corsat/arrow_north,
/area/corsat/gamma/cargo)
"aMK" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/cargo/disposal)
"aML" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"aMM" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -13797,23 +10247,17 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datamaint)
"aMN" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/theta/airlock/east/id)
"aMO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datamaint)
"aMP" = (
/obj/structure/bed{
@@ -13825,9 +10269,7 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/researcher)
"aMR" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/theta/airlock/east/id)
"aMS" = (
/obj/structure/surface/table/reinforced,
@@ -13836,44 +10278,28 @@
name = "Security Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/theta/airlock/east/id)
"aMT" = (
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/sigma/south)
"aMU" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/south)
"aMV" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"aMW" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/southeast/datamaint)
"aMX" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datamaint)
"aMY" = (
/obj/structure/closet/crate,
@@ -13885,40 +10311,26 @@
/obj/item/stack/rods{
amount = 25
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/residential/maint)
"aMZ" = (
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"aNa" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"aNb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
name = "Administration Office"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/omega/offices)
"aNc" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/southeast/dataoffice)
"aNe" = (
/obj/structure/machinery/power/apc/high{
@@ -13926,32 +10338,22 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/southeast/dataoffice)
"aNg" = (
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/dataoffice)
"aNh" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/northeast,
/area/corsat/sigma/south)
"aNi" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/arrivals)
"aNj" = (
/obj/structure/surface/rack,
@@ -13961,10 +10363,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/theta/airlock/east/id)
"aNk" = (
/obj/structure/machinery/computer/cameras{
@@ -13975,10 +10374,7 @@
/area/corsat/gamma/administration)
"aNl" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/theta/airlock/east/id)
"aNm" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -13989,17 +10385,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/dataoffice)
"aNn" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"aNo" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -14008,9 +10400,7 @@
req_access_txt = "106"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"aNp" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -14018,28 +10408,19 @@
name = "Administration";
req_access_txt = "106"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"aNq" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/sigma/south/offices)
"aNr" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/sigma/southeast/datalab)
"aNs" = (
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/datalab)
"aNt" = (
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/southeast/datalab)
"aNu" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -14049,35 +10430,24 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/datalab)
"aNv" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/south/offices)
"aNw" = (
/obj/structure/window/framed/corsat/hull/security,
/turf/open/floor/plating,
/area/corsat/theta/airlock/east/id)
"aNx" = (
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"aNy" = (
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/south/offices)
"aNz" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"aNB" = (
/obj/structure/machinery/power/apc/high{
@@ -14086,34 +10456,23 @@
start_charge = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"aNC" = (
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/surgery)
"aND" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/chemistry)
"aNE" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/south/security)
"aNF" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/chemistry)
"aNG" = (
/obj/structure/surface/rack,
@@ -14126,9 +10485,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"aNH" = (
/obj/structure/window/framed/corsat/security,
@@ -14146,9 +10503,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"aNJ" = (
/obj/structure/machinery/door_control{
@@ -14157,9 +10512,7 @@
pixel_x = 24;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "arrow_north"
- },
+/turf/open/floor/corsat/arrow_north,
/area/corsat/gamma/cargo)
"aNK" = (
/turf/closed/wall/r_wall/biodome,
@@ -14169,10 +10522,7 @@
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security/cells)
"aNM" = (
/obj/structure/surface/rack,
@@ -14182,125 +10532,77 @@
req_access_txt = "103"
},
/obj/structure/window/reinforced/toughened,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"aNN" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/security)
"aNO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"aNP" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/gamma/security/cells)
"aNQ" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security/cells)
"aNR" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/security/armory)
"aNS" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/security/cells)
"aNT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security/cells)
"aNU" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/security)
"aNV" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/security)
"aNW" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"aNX" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/security)
"aNY" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/gamma/hangar/arrivals)
"aNZ" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"aOa" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/checkpoint)
"aOb" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/checkpoint)
"aOc" = (
/obj/structure/fence,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/checkpoint)
"aOd" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/checkpoint)
"aOe" = (
-/turf/open/shuttle/dropship{
- icon_state = "floor8"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right,
/area/corsat/gamma/hangar/monorail/railcart)
"aOf" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/gamma/hangar/checkpoint)
"aOg" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/east,
/area/corsat/sigma/south)
"aOh" = (
/obj/structure/machinery/power/apc/high{
@@ -14308,39 +10610,26 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/foyer)
"aOi" = (
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"aOj" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/south/security)
"aOk" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/south/security)
"aOl" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/monorail/control)
"aOm" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
@@ -14351,22 +10640,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"aOn" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/south/security)
"aOo" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/south)
"aOp" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -14375,88 +10656,55 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/security)
"aOq" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/north,
/area/corsat/gamma/hangar/office)
"aOr" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northwest,
/area/corsat/gamma/hangar)
"aOs" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/hangar)
"aOt" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/gamma/hangar)
"aOu" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/gamma/hangar/arrivals)
"aOv" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/south/security)
"aOw" = (
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/hangar)
"aOx" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_west"
- },
+/turf/open/floor/corsat/arrow_west,
/area/corsat/gamma/hangar)
"aOy" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/south/security)
"aOz" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/cargo)
"aOA" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/hangar/cargo)
"aOB" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/south/security)
"aOC" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -14469,9 +10717,7 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"aOE" = (
/obj/structure/showcase,
@@ -14486,71 +10732,44 @@
dir = 1;
layer = 2.9
},
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/south)
"aOF" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/sigma/south/complex)
"aOG" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/gamma/hangar/monorail/control)
"aOH" = (
/obj/structure/prop/almayer/computers/sensor_computer3,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"aOI" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/sigma/south/complex)
"aOJ" = (
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/hangar)
"aOK" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"aOL" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/sigma/south/complex)
"aOM" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_south"
- },
+/turf/open/floor/corsat/arrow_south,
/area/corsat/sigma/hangar)
"aON" = (
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/hangar/id)
"aOP" = (
/obj/structure/reagent_dispensers/water_cooler/stacks,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/sigma/south/complex)
"aOQ" = (
/obj/structure/pipes/standard/simple/visible{
@@ -14565,9 +10784,7 @@
dir = 1;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"aOS" = (
/obj/structure/showcase{
@@ -14579,35 +10796,26 @@
dir = 4;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"aOT" = (
/turf/closed/wall/biodome,
/area/corsat/emergency_access)
"aOU" = (
-/turf/open/floor/corsat{
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner,
/area/corsat/theta/biodome/complex)
"aOW" = (
/obj/structure/bed/chair,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/sigma/south/complex)
"aOX" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/office)
"aOY" = (
/obj/structure/machinery/power/apc/hyper{
@@ -14615,24 +10823,17 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/hangar/office)
"aOZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/office)
"aPa" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"aPb" = (
/obj/structure/computerframe,
@@ -14648,36 +10849,25 @@
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"aPd" = (
/obj/structure/machinery/power/apc/hyper{
dir = 1;
pixel_y = 25
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/security/armory)
"aPe" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security/armory)
"aPf" = (
/obj/effect/alien/weeds/node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/corsat/sigma/biodome)
"aPg" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security)
"aPh" = (
/obj/structure/machinery/power/apc/hyper{
@@ -14685,33 +10875,23 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/security)
"aPj" = (
/obj/item/paper,
/obj/item/tool/pen,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"aPk" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/security)
"aPl" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"aPm" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -14719,93 +10899,67 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering/atmos)
"aPn" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"aPo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/security)
"aPp" = (
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock/master,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"aPq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"aPr" = (
-/turf/open/floor/corsat{
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner,
/area/corsat/gamma/residential/researcher)
"aPs" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aPt" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Maintainence";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"aPu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/checkpoint)
"aPv" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/sigma/airlock/south)
"aPw" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/checkpoint)
"aPx" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/checkpoint)
"aPy" = (
/obj/structure/window/framed/corsat,
@@ -14823,54 +10977,38 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/checkpoint)
"aPA" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/checkpoint)
"aPB" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/corsat/gamma/hangar/monorail/railcart)
"aPC" = (
/obj/effect/landmark/yautja_teleport,
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"aPD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/foyer)
"aPE" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_south"
- },
+/turf/open/floor/corsat/arrow_south,
/area/corsat/gamma/hangar)
"aPF" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/crap_item,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/foyer)
"aPG" = (
/obj/structure/flora/bush/ausbushes/var3/sunnybush,
@@ -14881,9 +11019,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Arrivals"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/checkpoint)
"aPJ" = (
/obj/structure/flora/jungle/alienplant1,
@@ -14895,10 +11031,7 @@
/obj/structure/machinery/computer/cameras{
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/hangar/monorail/control)
"aPL" = (
/obj/structure/shuttle/diagonal{
@@ -14914,9 +11047,7 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/checkpoint)
"aPN" = (
/obj/effect/landmark/yautja_teleport,
@@ -14935,21 +11066,14 @@
/obj/structure/machinery/door/airlock/dropship_hatch/monorail{
dir = 1
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/corsat/gamma/hangar/monorail/railcart)
"aPR" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/sigma/airlock/south)
"aPS" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_east"
- },
+/turf/open/floor/corsat/arrow_east,
/area/corsat/gamma/engineering/core)
"aPT" = (
/obj/structure/window/framed/corsat,
@@ -14970,16 +11094,11 @@
id = "ThetaIDEC";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/east/id)
"aPV" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/foyer)
"aPW" = (
/obj/structure/window/framed/corsat,
@@ -14990,49 +11109,32 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/core)
"aPY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"aPZ" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"aQa" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/cargo)
"aQb" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/secure_data{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"aQc" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"aQd" = (
/obj/structure/closet/jcloset,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/residential/maint)
"aQe" = (
/turf/closed/shuttle/ert{
@@ -15056,10 +11158,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/hangar/office)
"aQi" = (
/obj/structure/window/framed/corsat/hull/security,
@@ -15083,18 +11182,13 @@
pixel_y = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/theta/airlock/control)
"aQm" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/omega/hangar/office)
"aQn" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin4"
- },
+/turf/open/shuttle/dropship/light_grey_bottom_left,
/area/prison/hangar_storage/research/shuttle)
"aQo" = (
/obj/structure/window/framed/corsat/security,
@@ -15104,106 +11198,71 @@
/obj/structure/surface/table/almayer,
/obj/item/trash/raisins,
/obj/effect/spawner/random/tool,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"aQq" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/core)
"aQr" = (
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/hangar)
"aQs" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/hangar)
"aQt" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar)
"aQu" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_west"
- },
+/turf/open/floor/corsat/arrow_west,
/area/corsat/omega/hangar)
"aQv" = (
/obj/structure/surface/table/woodentable,
/obj/item/ashtray/glass,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"aQw" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering/core)
"aQx" = (
/obj/effect/alien/weeds/node,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"aQy" = (
/obj/structure/tunnel{
id = "hole4"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"aQz" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/emergency_access)
"aQA" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/office)
"aQB" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/office)
"aQC" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/emergency_access)
"aQD" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/omega/hangar/security)
"aQE" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/hangar/office)
"aQF" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"aQG" = (
/obj/structure/bookcase/manuals/research_and_development,
@@ -15214,15 +11273,11 @@
/area/corsat/gamma/residential/researcher)
"aQH" = (
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"aQI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"aQJ" = (
/obj/effect/decal/cleanable/dirt,
@@ -15231,9 +11286,7 @@
"aQK" = (
/obj/item/tool/wet_sign,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/residential/maint)
"aQL" = (
/obj/structure/machinery/light{
@@ -15242,19 +11295,13 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/security/cells)
"aQM" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/rnr)
"aQN" = (
/obj/structure/closet/crate,
@@ -15264,10 +11311,7 @@
/obj/item/stack/sheet/glass{
amount = 30
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/residential/maint)
"aQO" = (
/turf/open/floor/corsat,
@@ -15276,45 +11320,30 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/rnr)
"aQQ" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"aQR" = (
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"aQS" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/engineering)
"aQT" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering)
"aQU" = (
/obj/effect/decal/cleanable/cobweb{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"aQV" = (
/obj/structure/computerframe,
@@ -15329,9 +11358,7 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/researcher)
"aQY" = (
/obj/structure/sink{
@@ -15339,25 +11366,17 @@
pixel_y = -10
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"aQZ" = (
/obj/item/paper_bin,
/obj/structure/surface/table/woodentable/fancy,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/corsat/gamma/residential/lounge)
"aRa" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"aRb" = (
/obj/structure/computerframe,
@@ -15371,42 +11390,29 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"aRd" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering)
"aRe" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"aRf" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"aRg" = (
/obj/item/tool/pen,
/obj/structure/surface/table/woodentable/fancy,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/residential/lounge)
"aRh" = (
/obj/item/reagent_container/food/snacks/grown/tomato,
@@ -15420,27 +11426,19 @@
/obj/item/reagent_container/food/snacks/grown/tomato,
/obj/item/reagent_container/food/snacks/grown/tomato,
/obj/structure/closet/crate/freezer,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"aRj" = (
/obj/item/paper,
/obj/structure/surface/table/woodentable/fancy,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/residential/lounge)
"aRk" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/gamma/engineering)
"aRl" = (
/obj/structure/surface/table/woodentable,
@@ -15456,9 +11454,7 @@
/obj/structure/surface/table/almayer,
/obj/item/folder/yellow,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"aRn" = (
/obj/structure/window/framed/corsat,
@@ -15473,9 +11469,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"aRp" = (
/turf/open/floor/plating,
@@ -15484,24 +11478,16 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/virology)
"aRr" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/arrivals)
"aRs" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/residential/lounge)
"aRt" = (
/obj/structure/sign/safety/airlock,
@@ -15511,9 +11497,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/arrivals)
"aRv" = (
/obj/structure/window/framed/corsat,
@@ -15523,113 +11507,76 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"aRx" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/hangar)
"aRy" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"aRz" = (
/obj/structure/bed/chair/wood/normal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"aRA" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/canteen)
"aRB" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/virology)
"aRD" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/hallwaysouth)
"aRE" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/hallwaysouth)
"aRF" = (
/obj/item/paper,
/obj/item/tool/pen,
/obj/structure/surface/table/woodentable/fancy,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet11-12"
- },
+/turf/open/floor/carpet11_12/west,
/area/corsat/gamma/residential/lounge)
"aRG" = (
/obj/item/tool/pen,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"aRH" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/office)
"aRJ" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/hangar)
"aRK" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/virology)
"aRM" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -15637,34 +11584,23 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/freezer)
"aRN" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/hangar/monorail)
"aRO" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/gamma/biodome/virology)
"aRP" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/morgue)
"aRQ" = (
/obj/structure/machinery/light,
@@ -15672,84 +11608,60 @@
dir = 1
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"aRS" = (
/obj/structure/machinery/computer/emails{
dir = 1
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"aRT" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southeast,
/area/corsat/gamma/medbay)
"aRU" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"aRV" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"aRW" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/virology)
"aRX" = (
/obj/structure/machinery/conveyor,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/gamma/cargo/disposal)
"aRY" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential)
"aRZ" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"aSa" = (
/obj/structure/lattice,
/turf/open/space,
/area/space)
"aSb" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"aSc" = (
/obj/structure/machinery/light{
@@ -15757,49 +11669,34 @@
},
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential)
"aSd" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/rnr)
"aSe" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"aSf" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"aSg" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/rnr)
"aSh" = (
/obj/structure/machinery/light,
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar)
"aSi" = (
/obj/structure/surface/table/almayer,
@@ -15807,37 +11704,25 @@
/obj/item/bodybag,
/obj/item/bodybag,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northwest,
/area/corsat/gamma/medbay)
"aSj" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/complex)
"aSk" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/complex)
"aSl" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/west,
/area/corsat/gamma/medbay)
"aSm" = (
/obj/structure/window/framed/almayer/white,
@@ -15851,10 +11736,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"aSp" = (
/obj/structure/window/framed/almayer/white,
@@ -15871,25 +11753,16 @@
/obj/structure/closet/secure_closet/medical2{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"aSs" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/hangar/checkpoint)
"aSt" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/airlock/control)
"aSu" = (
/obj/structure/machinery/light{
@@ -15897,26 +11770,18 @@
},
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/rnr)
"aSv" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/airlock/control)
"aSw" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"aSx" = (
/obj/structure/surface/table/reinforced,
@@ -15931,60 +11796,43 @@
id = "SigmaHangarC";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/checkpoint)
"aSy" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/complex)
"aSz" = (
/obj/effect/landmark/crap_item,
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/monorail)
"aSA" = (
/obj/structure/machinery/light,
/obj/structure/surface/rack,
/obj/item/device/lightreplacer,
/obj/item/storage/box/lights,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"aSB" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/monorail)
"aSC" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/complex)
"aSD" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/gamma/biodome/complex)
"aSE" = (
/obj/structure/machinery/light{
@@ -15993,50 +11841,36 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/east,
/area/corsat/gamma/biodome/complex)
"aSF" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"aSG" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"aSH" = (
/obj/effect/landmark/crap_item,
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"aSJ" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar/security)
"aSL" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/biodome/complex)
"aSM" = (
/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{
@@ -16046,65 +11880,47 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo/lobby)
"aSN" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/complex)
"aSO" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple,
/area/corsat/gamma/biodome/complex)
"aSP" = (
/obj/structure/bed/sofa/vert/grey/top,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"aSQ" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"aSR" = (
/obj/item/trash/chips,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"aSS" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"aST" = (
/obj/item/trash/candy,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"aSU" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"aSV" = (
/obj/structure/pipes/vents/pump/siphon/on{
@@ -16122,93 +11938,65 @@
/area/corsat/inaccessible)
"aSX" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/hydrowest)
"aSY" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/closet/wardrobe/toxins_white,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/toxins)
"aSZ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/toxins)
"aTa" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/gamma/airlock/control)
"aTb" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/gamma/airlock/control)
"aTc" = (
/obj/structure/barricade/handrail{
layer = 3
},
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"aTd" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"aTe" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/airlock/control)
"aTf" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"aTg" = (
/obj/effect/landmark/crap_item,
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"aTi" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/hangar/security)
"aTj" = (
/obj/structure/surface/table/woodentable,
@@ -16217,87 +12005,60 @@
/area/corsat/gamma/rnr/bar)
"aTk" = (
/obj/item/trash/burger,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"aTl" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"aTm" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"aTn" = (
/obj/structure/machinery/light,
/obj/structure/surface/rack,
/obj/item/reagent_container/glass/bottle/capsaicin,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/gamma/biodome/toxins)
"aTo" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/gamma/airlock/control)
"aTp" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/hallwaysouth)
"aTq" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"aTr" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/id)
"aTs" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/id)
"aTt" = (
/obj/item/trash/buritto,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"aTu" = (
/obj/item/device/camera,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"aTv" = (
/obj/structure/pipes/vents/pump/siphon/on{
@@ -16309,84 +12070,58 @@
"aTw" = (
/obj/item/storage/fancy/cigar,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"aTx" = (
/obj/structure/machinery/light,
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"aTy" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/monorail)
"aTz" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"aTA" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/toxins)
"aTB" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/toxins)
"aTC" = (
/obj/item/device/flashlight/lamp/green,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/corsat/gamma/biodome/complex)
"aTD" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/airlock/control)
"aTE" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/sigma/north)
"aTF" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/north)
"aTG" = (
/obj/structure/machinery/light{
@@ -16404,17 +12139,11 @@
/obj/item/phone,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/biodome/complex)
"aTK" = (
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/biodome/complex)
"aTL" = (
/obj/structure/sign/safety/airlock,
@@ -16423,19 +12152,13 @@
"aTM" = (
/obj/structure/machinery/faxmachine,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet11-12"
- },
+/turf/open/floor/carpet11_12/west,
/area/corsat/gamma/biodome/complex)
"aTN" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/sigma/north)
"aTO" = (
/obj/structure/machinery/light{
@@ -16445,15 +12168,10 @@
dir = 4
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"aTP" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/biodome)
"aTQ" = (
/obj/structure/machinery/light{
@@ -16463,10 +12181,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/biodome/toxins)
"aTR" = (
/obj/structure/machinery/light{
@@ -16475,29 +12190,20 @@
/obj/structure/surface/rack,
/obj/item/reagent_container/ld50_syringe/choral,
/obj/item/reagent_container/ld50_syringe,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/biodome/toxins)
"aTS" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/space_heater,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/toxins)
"aTT" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/administration)
"aTU" = (
/obj/structure/machinery/door_control{
@@ -16519,30 +12225,21 @@
use_power = 0
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet9-4"
- },
+/turf/open/floor/carpet9_4/west,
/area/corsat/gamma/biodome/complex)
"aTV" = (
/obj/structure/machinery/computer/skills{
dir = 4
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"aTW" = (
/obj/structure/machinery/washing_machine,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/laundry)
"aTX" = (
/obj/item/storage/box/monkeycubes,
@@ -16550,10 +12247,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/containment)
"aTY" = (
/obj/structure/machinery/light{
@@ -16562,63 +12256,43 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/canteen)
"aTZ" = (
/obj/structure/lamarr,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"aUa" = (
/obj/item/tool/stamp/rd,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"aUb" = (
/obj/structure/largecrate/supply/floodlights,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"aUc" = (
/obj/item/paper_bin,
/obj/item/tool/pen,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"aUd" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/north)
"aUe" = (
/obj/structure/machinery/light,
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar)
"aUf" = (
/obj/structure/machinery/light,
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/toxins)
"aUg" = (
/obj/structure/machinery/light,
@@ -16627,35 +12301,25 @@
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security)
"aUh" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"aUi" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/sigma/north)
"aUj" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/sigma/cargo)
"aUk" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"aUl" = (
/obj/structure/surface/table/almayer,
@@ -16664,16 +12328,12 @@
health = 250
},
/obj/item/ashtray/bronze,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"aUm" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/donut_box,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"aUn" = (
/obj/structure/sign/safety/airlock,
@@ -16688,19 +12348,13 @@
"aUp" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/gamma/hangar/cargo)
"aUq" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/sigma/cargo)
"aUr" = (
/obj/item/storage/fancy/cigar,
@@ -16721,28 +12375,19 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/corsat/gamma/foyer)
"aUw" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/west,
/area/corsat/gamma/hallwaysouth)
"aUx" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"aUy" = (
/obj/item/disk/botany,
@@ -16753,25 +12398,17 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/sigma/cargo)
"aUA" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar)
"aUB" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/sigma/dorms)
"aUC" = (
/obj/item/toy/prize/ripley{
@@ -16824,10 +12461,7 @@
dir = 8
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet10-8"
- },
+/turf/open/floor/carpet10_8/west,
/area/corsat/gamma/administration)
"aUL" = (
/obj/structure/surface/table/woodentable,
@@ -16842,10 +12476,7 @@
/obj/item/tank/air,
/obj/item/tank/air,
/obj/item/clothing/mask/breath,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"aUN" = (
/obj/structure/pipes/vents/pump/siphon/on{
@@ -16858,26 +12489,17 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/sigma/dorms)
"aUP" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"aUQ" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"aUR" = (
/obj/effect/decal/cleanable/cobweb{
@@ -16893,26 +12515,18 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"aUT" = (
/obj/structure/surface/rack,
/obj/item/tank/oxygen,
/obj/item/tank/oxygen,
/obj/item/clothing/mask/breath,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"aUU" = (
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet6-2"
- },
+/turf/open/floor/carpet6_2/west,
/area/corsat/gamma/administration)
"aUV" = (
/obj/structure/machinery/light{
@@ -16921,19 +12535,13 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/dorms)
"aUW" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/checkpoint)
"aUX" = (
/obj/structure/machinery/light{
@@ -16942,51 +12550,36 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/dorms)
"aUY" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/sigma/dorms)
"aUZ" = (
/obj/structure/machinery/computer/emails{
dir = 4
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet6-2"
- },
+/turf/open/floor/carpet6_2/west,
/area/corsat/gamma/administration)
"aVa" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/omega/cargo)
"aVb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/checkpoint)
"aVc" = (
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/theta/airlock/control)
"aVd" = (
/obj/structure/flora/pottedplant,
@@ -17021,17 +12614,13 @@
/area/corsat/sigma/dorms)
"aVh" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/sigma/dorms)
"aVi" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"aVj" = (
/obj/structure/surface/table/woodentable,
@@ -17044,10 +12633,7 @@
"aVl" = (
/obj/item/folder/blue,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/corsat/gamma/administration)
"aVm" = (
/obj/item/paper,
@@ -17055,18 +12641,12 @@
/obj/item/tool/stamp/rd,
/obj/structure/pipes/vents/pump,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/administration)
"aVn" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/tool/stamp/rd,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/omega/offices)
"aVo" = (
/obj/structure/shuttle/diagonal{
@@ -17080,68 +12660,45 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/theta/airlock/control)
"aVq" = (
/obj/structure/closet/secure_closet/CMO,
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northeast,
/area/corsat/gamma/medbay)
"aVr" = (
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/administration)
"aVs" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/omega/cargo)
"aVt" = (
/obj/item/device/flashlight/lamp,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet11-12"
- },
+/turf/open/floor/carpet11_12/west,
/area/corsat/gamma/administration)
"aVu" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/omega/hallways)
"aVv" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/checkpoint)
"aVw" = (
/obj/item/folder/black,
/obj/item/tool/stamp/rd,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/corsat/gamma/administration)
"aVx" = (
/obj/structure/machinery/light{
@@ -17150,19 +12707,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/south/id)
"aVy" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/administration)
"aVz" = (
/obj/item/device/flashlight/lamp,
@@ -17170,10 +12722,7 @@
dir = 10
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet11-12"
- },
+/turf/open/floor/carpet11_12/west,
/area/corsat/gamma/administration)
"aVA" = (
/obj/item/folder/white,
@@ -17182,10 +12731,7 @@
dir = 6
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/corsat/gamma/administration)
"aVB" = (
/obj/structure/toilet{
@@ -17194,101 +12740,70 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/theta/biodome/complex)
"aVC" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/administration)
"aVD" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south)
"aVE" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/southeast)
"aVF" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/omega/offices)
"aVG" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/north)
"aVH" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/theta/airlock/control)
"aVI" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/theta/airlock/control)
"aVJ" = (
/obj/item/paper,
/obj/item/tool/pen/red,
/obj/item/tool/stamp/rd,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/corsat/gamma/administration)
"aVK" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/south)
"aVL" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/omega/cargo)
"aVM" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"aVO" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -17296,44 +12811,30 @@
name = "Security Armory";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"aVP" = (
/obj/structure/noticeboard{
pixel_y = 32
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"aVQ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/sigma/southeast/dataoffice)
"aVT" = (
/obj/item/folder/yellow,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/administration)
"aVU" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/omega/cargo)
"aVV" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -17345,52 +12846,37 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/hangar/arrivals)
"aVW" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"aVX" = (
/obj/item/storage/fancy/cigarettes/lucky_strikes,
/obj/structure/pipes/vents/pump,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/administration)
"aVY" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/monorail)
"aVZ" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/airlock/south)
"aWa" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/security)
"aWb" = (
/obj/structure/machinery/light{
@@ -17398,43 +12884,29 @@
},
/obj/structure/surface/rack,
/obj/item/storage/firstaid/rad,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"aWc" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/security)
"aWd" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_north"
- },
+/turf/open/floor/corsat/arrow_north,
/area/corsat/sigma/cargo)
"aWf" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"aWh" = (
/obj/structure/largecrate/cow,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"aWi" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/omega/cargo)
"aWj" = (
/obj/structure/surface/table/woodentable,
@@ -17443,9 +12915,7 @@
layer = 2.8
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"aWk" = (
/obj/structure/machinery/light{
@@ -17456,10 +12926,7 @@
},
/obj/item/clothing/head/beret/sec/warden,
/obj/item/clothing/mask/fakemoustache,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/security)
"aWl" = (
/obj/structure/surface/table/woodentable,
@@ -17469,9 +12936,7 @@
layer = 2.8
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"aWm" = (
/obj/item/paper_bin,
@@ -17481,112 +12946,76 @@
/area/corsat/gamma/administration)
"aWn" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/sigma/south/complex)
"aWo" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/airlocknorth/id)
"aWp" = (
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/sigma/hangar/office)
"aWq" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/omega/hallways)
"aWr" = (
/obj/structure/machinery/conveyor{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"aWs" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/south)
"aWt" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/southeast)
"aWu" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/cargo)
"aWv" = (
/obj/structure/machinery/conveyor_switch,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/corsat/gamma/cargo/disposal)
"aWw" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/southeast)
"aWx" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hallways)
"aWy" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple,
/area/corsat/omega/hallways)
"aWz" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/south/id)
"aWA" = (
/obj/structure/machinery/conveyor,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"aWB" = (
/obj/structure/machinery/light,
/obj/structure/surface/rack,
/obj/item/storage/firstaid/rad,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"aWC" = (
/obj/structure/machinery/power/apc/hyper{
@@ -17594,9 +13023,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"aWD" = (
/obj/structure/machinery/light{
@@ -17604,43 +13031,29 @@
},
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"aWF" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/southeast/datalab)
"aWG" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/sigma/southeast/datalab)
"aWH" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple,
/area/corsat/sigma/south)
"aWI" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/southeast/datalab)
"aWK" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -17649,59 +13062,40 @@
"aWM" = (
/obj/item/tool/stamp/hop,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/administration)
"aWN" = (
/obj/item/ashtray/bronze,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/administration)
"aWO" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/south/security)
"aWP" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/southeast/datalab)
"aWQ" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/airlocknorth/id)
"aWR" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/omega/containment)
"aWS" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/omega/hallways)
"aWT" = (
/obj/structure/machinery/faxmachine{
@@ -17709,38 +13103,26 @@
req_one_access_txt = "106"
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/gamma/administration)
"aWW" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/closet/radiation,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/sigma/south/complex)
"aWY" = (
/obj/structure/surface/rack,
/obj/item/device/toner,
/obj/item/device/toner,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/residential/maint)
"aWZ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/southeast/datalab)
"aXa" = (
/obj/structure/surface/table/woodentable,
@@ -17752,9 +13134,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/datalab)
"aXc" = (
/obj/structure/machinery/light{
@@ -17763,41 +13143,28 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth/id)
"aXd" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/airlock/south)
"aXe" = (
/obj/structure/machinery/faxmachine,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/security)
"aXg" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/south/security)
"aXh" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/southeast/datalab)
"aXi" = (
/obj/structure/machinery/light{
@@ -17806,28 +13173,20 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/canteen)
"aXj" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/omega/complex)
"aXk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/checkpoint)
"aXl" = (
/obj/structure/machinery/light{
@@ -17835,52 +13194,39 @@
},
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"aXm" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/cargo)
"aXn" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/airlocknorth)
"aXo" = (
/obj/structure/machinery/computer/telecomms/server{
req_one_access_txt = "19;106;102"
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"aXp" = (
/obj/structure/showcase{
icon_state = "broadcaster_send"
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"aXq" = (
/obj/structure/showcase{
icon_state = "relay";
name = "Telecommunication Relay"
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"aXr" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -17890,9 +13236,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/telecomm)
"aXs" = (
/obj/structure/machinery/door_control{
@@ -17908,34 +13252,23 @@
use_power = 0
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/security)
"aXt" = (
/obj/structure/machinery/recycler,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/corsat/gamma/cargo/disposal)
"aXu" = (
/obj/item/folder/black_random,
/obj/item/clothing/mask/cigarette/cigar/havana,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/security)
"aXv" = (
/obj/item/storage/fancy/cigarettes/lucky_strikes,
/obj/item/tool/lighter/random,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"aXw" = (
/obj/structure/window/framed/corsat/hull,
@@ -17947,21 +13280,14 @@
},
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"aXy" = (
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"aXz" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/sigma/southeast/datalab)
"aXB" = (
/obj/structure/barricade/handrail{
@@ -17970,9 +13296,7 @@
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"aXC" = (
/obj/structure/barricade/handrail{
@@ -17980,24 +13304,17 @@
},
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"aXD" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/airlocknorth)
"aXE" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/omega/airlocknorth)
"aXF" = (
/obj/structure/surface/table/almayer,
@@ -18006,9 +13323,7 @@
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/virology)
"aXG" = (
/obj/structure/reagent_dispensers/virusfood{
@@ -18016,41 +13331,30 @@
},
/obj/structure/surface/rack,
/obj/item/reagent_container/glass/bottle/random,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/virology)
"aXH" = (
/obj/structure/closet/wardrobe/science_white,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/omega/complex)
"aXJ" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/id)
"aXM" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/gamma/hangar/monorail)
"aXN" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/south/offices)
"aXO" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -18060,49 +13364,37 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"aXP" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/hangar/monorail)
"aXQ" = (
/obj/structure/machinery/light,
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/hangar/monorail)
"aXR" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/theta/biodome/complex)
"aXS" = (
/obj/effect/landmark/crap_item,
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"aXT" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"aXU" = (
/turf/open/floor/wood,
@@ -18111,42 +13403,30 @@
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/security)
"aXW" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor1"
- },
+/turf/open/shuttle/escapepod/floor1,
/area/corsat/theta/biodome/complex)
"aXX" = (
/obj/item/toy/deck,
/obj/structure/machinery/light,
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/sigma/dorms)
"aXY" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/complex)
"aXZ" = (
/obj/item/folder/black_random,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"aYa" = (
/obj/structure/surface/table/almayer,
@@ -18158,26 +13438,19 @@
/obj/item/ammo_magazine/smg/nailgun,
/obj/item/ammo_magazine/smg/nailgun,
/obj/item/ammo_magazine/smg/nailgun,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering)
"aYb" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/atmos)
"aYc" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/bot/cleanbot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/hydrowest)
"aYd" = (
/obj/structure/machinery/shower,
@@ -18188,10 +13461,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"aYe" = (
/obj/structure/machinery/shower,
@@ -18201,39 +13471,28 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"aYf" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/hydroeast)
"aYg" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/theta/biodome/hydrowest)
"aYh" = (
/obj/structure/machinery/light,
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/monorail)
"aYi" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/complex)
"aYj" = (
/obj/structure/sink{
@@ -18244,10 +13503,7 @@
dir = 4;
pixel_x = -32
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"aYk" = (
/obj/structure/toilet{
@@ -18256,64 +13512,43 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"aYl" = (
/obj/item/clothing/mask/cigarette/cigar/cohiba,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/south/security)
"aYn" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/theta/biodome/hydroeast)
"aYp" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"aYq" = (
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "Waste Tank Control"
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/gamma/engineering/atmos)
"aYr" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"aYs" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"aYt" = (
/obj/structure/machinery/light,
/obj/item/clothing/mask/gas,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/toxins)
"aYu" = (
/obj/structure/machinery/light{
@@ -18321,18 +13556,13 @@
},
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"aYv" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/hangar/monorail/control)
"aYw" = (
/obj/structure/machinery/light,
@@ -18342,71 +13572,49 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south)
"aYz" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/closet/wardrobe/virology_white,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/virology)
"aYA" = (
/obj/structure/surface/rack,
/obj/item/reagent_container/glass/bottle/random,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/virology)
"aYB" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar)
"aYC" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/hangar/monorail/control)
"aYD" = (
/obj/structure/cargo_container/arious/leftmid,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"aYE" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/robotics)
"aYF" = (
/obj/effect/decal/mecha_wreckage/ripley/firefighter,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"aYG" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"aYH" = (
/obj/structure/machinery/light{
@@ -18415,124 +13623,85 @@
/obj/effect/landmark/crap_item,
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"aYI" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/hangar)
"aYJ" = (
/obj/structure/cargo_container/arious/rightmid,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"aYK" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"aYL" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/east,
/area/corsat/gamma/medbay/chemistry)
"aYM" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar)
"aYN" = (
/obj/structure/machinery/pipedispenser,
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"aYO" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"aYP" = (
/obj/structure/cargo_container/arious/right,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"aYQ" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hangar/security)
"aYR" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/theta/biodome)
"aYS" = (
/obj/structure/machinery/processor,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"aYT" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/engineering)
"aYV" = (
/obj/structure/cargo_container/watatsumi/leftmid,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"aYW" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/airlock/south)
"aYX" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"aYY" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northeast,
/area/corsat/gamma/residential/researcher)
"aYZ" = (
/obj/structure/surface/table/almayer,
@@ -18541,10 +13710,7 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/sigma/south/complex)
"aZa" = (
/obj/structure/window/framed/corsat/hull/security,
@@ -18554,10 +13720,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/hangar/security)
"aZc" = (
/obj/structure/surface/table/reinforced,
@@ -18567,18 +13730,13 @@
pixel_y = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"aZd" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar)
"aZe" = (
/turf/closed/wall/r_wall/biodome,
@@ -18587,57 +13745,39 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar/office)
"aZg" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hangar/office)
"aZh" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"aZi" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar)
"aZj" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering)
"aZk" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/morgue)
"aZl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/checkpoint)
"aZm" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -18650,10 +13790,7 @@
dir = 8;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"aZo" = (
/obj/structure/machinery/power/apc/hyper{
@@ -18661,16 +13798,11 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"aZp" = (
/obj/structure/cargo_container/watatsumi/rightmid,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"aZq" = (
/obj/structure/bed/chair/wood/normal,
@@ -18690,9 +13822,7 @@
/area/corsat/sigma/dorms)
"aZs" = (
/obj/structure/cargo_container/watatsumi/right,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"aZt" = (
/obj/structure/platform{
@@ -18700,17 +13830,11 @@
layer = 2.7
},
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"aZu" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/hangar/security)
"aZv" = (
/obj/structure/pipes/vents/pump{
@@ -18721,10 +13845,7 @@
layer = 2.7
},
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"aZw" = (
/obj/structure/bed/chair/wood/normal,
@@ -18753,9 +13874,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"aZA" = (
/obj/structure/surface/table/almayer,
@@ -18764,9 +13883,7 @@
health = 80
},
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"aZB" = (
/obj/structure/bed/chair/wood/normal{
@@ -18789,28 +13906,21 @@
pixel_x = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"aZD" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{
id = "SigmaSouthS";
name = "Sigma South Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/south)
"aZE" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/generator)
"aZF" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18821,10 +13931,7 @@
layer = 2.7
},
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"aZG" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18835,33 +13942,23 @@
layer = 2.7
},
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"aZH" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/southeast/generator)
"aZI" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"aZJ" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"aZK" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -18870,19 +13967,13 @@
dir = 4;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"aZL" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "tcomms"
- },
+/turf/open/floor/corsat/tcomms/southwest,
/area/corsat/sigma/south/complex)
"aZM" = (
/obj/structure/stairs,
@@ -18890,43 +13981,31 @@
dir = 4;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"aZN" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "tcomms"
- },
+/turf/open/floor/corsat/tcomms/southwest,
/area/corsat/sigma/south/complex)
"aZQ" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/almayer/research/containment/entrance{
- dir = 8
- },
+/turf/open/floor/almayer/research/containment/entrance/west,
/area/corsat/inaccessible)
"aZR" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 8
- },
+/turf/open/floor/almayer/research/containment/floor2/west,
/area/corsat/inaccessible)
"aZS" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datamaint)
"aZT" = (
/obj/structure/platform{
@@ -18934,10 +14013,7 @@
dir = 4;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"aZV" = (
/obj/structure/machinery/light{
@@ -18946,40 +14022,28 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"aZW" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/robotics)
"aZX" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/engineering)
"aZY" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"aZZ" = (
/obj/structure/surface/table,
/obj/item/folder/black,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"baa" = (
/obj/structure/machinery/light{
@@ -18988,29 +14052,20 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/control)
"bab" = (
/obj/structure/platform{
dir = 1;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"bac" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/control)
"bad" = (
/obj/structure/surface/table/almayer,
@@ -19020,18 +14075,13 @@
dir = 8
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"bae" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/omega/control)
"baf" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -19042,17 +14092,12 @@
/obj/item/ammo_magazine/pistol/mod88,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/control)
"bag" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tool,
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/gamma/engineering)
"bah" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -19063,28 +14108,21 @@
/obj/item/ammo_magazine/pistol/mod88,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/control)
"bai" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{
id = "OmegaHangarN";
name = "Landing Bay Omega"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/hangar/security)
"baj" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{
id = "OmegaHangarNE";
name = "Landing Bay Omega"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/hangar/security)
"bak" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -19092,38 +14130,27 @@
dir = 1;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"bal" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar/security)
"bam" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"ban" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "ID Checkpoint";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"bao" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -19133,27 +14160,21 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/omega/control)
"bap" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{
id = "OmegaHangarW";
name = "Landing Bay Omega"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/hangar/security)
"baq" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{
id = "OmegaHangarE";
name = "Landing Bay Omega"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/hangar/security)
"bar" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -19162,9 +14183,7 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"bas" = (
/obj/structure/surface/table/almayer,
@@ -19173,19 +14192,13 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"bat" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/donut_box,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/airlock/control)
"bau" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -19194,9 +14207,7 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/office)
"bav" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -19204,26 +14215,18 @@
name = "ID Checkpoint";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/control)
"baw" = (
/obj/structure/closet/emcloset,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/control)
"bax" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/control)
"bay" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -19234,9 +14237,7 @@
dir = 4
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"baz" = (
/obj/effect/decal/cleanable/cobweb{
@@ -19247,30 +14248,19 @@
"baA" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/checkpoint)
"baB" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/checkpoint)
"baC" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/checkpoint)
"baD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"baE" = (
/obj/structure/surface/table/reinforced,
@@ -19278,24 +14268,16 @@
dir = 4;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/checkpoint)
"baF" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"baG" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/checkpoint)
"baH" = (
/obj/structure/surface/table/reinforced,
@@ -19311,9 +14293,7 @@
name = "Security Shutters"
},
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"baI" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{
@@ -19321,9 +14301,7 @@
name = "Gamma Emergency Access";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"baJ" = (
/obj/structure/sign/safety/airlock,
@@ -19331,9 +14309,7 @@
/area/corsat/gamma/hangar/checkpoint)
"baK" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"baL" = (
/obj/structure/machinery/power/apc/hyper{
@@ -19341,27 +14317,20 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/control)
"baM" = (
/obj/structure/machinery/disposal,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/omega/control)
"baN" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/omega/control)
"baO" = (
/obj/structure/surface/table/reinforced,
@@ -19376,9 +14345,7 @@
id = "OmegaAccessC";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"baR" = (
/obj/structure/surface/table/reinforced,
@@ -19394,15 +14361,10 @@
pixel_x = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/checkpoint)
"baT" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/hallways)
"baU" = (
/obj/structure/window/framed/corsat/hull,
@@ -19420,9 +14382,7 @@
network = list("omega")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/checkpoint)
"baY" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -19431,18 +14391,14 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"baZ" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Engineering";
req_one_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/engineering)
"bba" = (
/obj/structure/window/framed/corsat/security,
@@ -19454,9 +14410,7 @@
/area/corsat/omega/control)
"bbb" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/control)
"bbc" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
@@ -19473,9 +14427,7 @@
id = "OmegaCSC";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/control)
"bbd" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -19483,10 +14435,7 @@
name = "Sigma Dome Control";
req_one_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/airlock/control)
"bbe" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -19495,19 +14444,14 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/north)
"bbf" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/checkpoint)
"bbg" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -19515,18 +14459,13 @@
name = "ID Checkpoint";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bbh" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
name = "Theta Dome Control"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/theta/airlock/control)
"bbi" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -19536,26 +14475,18 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/theta/airlock/control)
"bbj" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Theta Dome Control";
req_one_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/theta/airlock/control)
"bbk" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"bbl" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
@@ -19568,46 +14499,31 @@
name = "Identification Desk";
req_access_txt = "104"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"bbm" = (
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/omega/checkpoint)
"bbn" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/checkpoint)
"bbo" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile{
id = "ThetaNorthS";
name = "Theta North Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/control)
"bbp" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"bbr" = (
/obj/structure/closet/secure_closet/guncabinet/riot_control,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"bbs" = (
/obj/structure/surface/table/reinforced,
@@ -19623,10 +14539,7 @@
pixel_x = -5;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/theta/airlock/west)
"bbt" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{
@@ -19638,60 +14551,42 @@
name = "Theta Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/east)
"bbu" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{
id = "ThetaEastE";
name = "Theta East Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/east)
"bbv" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"bbx" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Hangar Security";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"bby" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"bbz" = (
/obj/structure/closet/secure_closet/engineering_electrical{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/hangar/monorail/control)
"bbA" = (
/obj/structure/closet/secure_closet/engineering_welding{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/hangar/monorail/control)
"bbB" = (
/obj/structure/window/framed/corsat/research,
@@ -19708,15 +14603,11 @@
name = "Research Complex Gamma";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"bbD" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"bbE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -19726,9 +14617,7 @@
name = "Maintainence";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"bbF" = (
/obj/structure/surface/table/almayer,
@@ -19738,10 +14627,7 @@
pixel_y = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/checkpoint)
"bbG" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
@@ -19749,19 +14635,13 @@
name = "Research Desk"
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/complex)
"bbH" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"bbI" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/biodome/complex)
"bbJ" = (
/obj/structure/window/framed/corsat/research,
@@ -19780,18 +14660,14 @@
/obj/structure/machinery/computer/secure_data{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/security)
"bbL" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "Research Complex Gamma"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/biodome/complex)
"bbM" = (
/obj/structure/window/framed/corsat/research,
@@ -19806,24 +14682,15 @@
/obj/structure/closet/secure_closet/engineering_electrical{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"bbO" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/checkpoint)
"bbP" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/checkpoint)
"bbQ" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -19845,10 +14712,7 @@
name = "Toxins Lockdown"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/toxins)
"bbS" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -19857,9 +14721,7 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/monorail/control)
"bbT" = (
/obj/structure/machinery/door_control{
@@ -19868,32 +14730,21 @@
pixel_y = 24;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/gamma/biodome/toxins)
"bbU" = (
/obj/structure/closet/secure_closet/engineering_welding{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/engineering)
"bbV" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/biodome/complex)
"bbW" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/containment)
"bbX" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -19901,9 +14752,7 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"bbZ" = (
/obj/structure/machinery/light{
@@ -19912,10 +14761,7 @@
/obj/structure/sink{
pixel_y = 25
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bca" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -19924,18 +14770,14 @@
req_one_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydrowest)
"bcb" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Maintainence";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/hydrowest)
"bcc" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -19947,19 +14789,14 @@
name = "Toxins Lab";
req_one_access_txt = "103"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/toxins)
"bcd" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Maintainence";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/hydroeast)
"bce" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -19968,9 +14805,7 @@
req_one_access_txt = "103"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"bcf" = (
/obj/structure/window/framed/corsat/research,
@@ -20092,24 +14927,17 @@
pixel_x = -24;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/gamma/security)
"bct" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/checkpoint)
"bcu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"bcv" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -20117,9 +14945,7 @@
name = "Hangar Security";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"bcw" = (
/obj/structure/surface/table/reinforced,
@@ -20127,9 +14953,7 @@
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/hangar/checkpoint)
"bcx" = (
/obj/effect/decal/cleanable/cobweb{
@@ -20150,9 +14974,7 @@
id = "SigmaHCargoC";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/id)
"bcz" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -20160,9 +14982,7 @@
name = "Gamma Dome Control";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bcA" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -20172,9 +14992,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bcB" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -20182,9 +15000,7 @@
name = "Gamma Dome Control";
req_one_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bcC" = (
/obj/structure/surface/table/reinforced,
@@ -20195,9 +15011,7 @@
name = "Research Desk"
},
/obj/structure/machinery/bot/medbot,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"bcD" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -20251,9 +15065,7 @@
/obj/structure/sign/safety/airlock{
pixel_x = 32
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"bcP" = (
/obj/structure/sign/safety/storage,
@@ -20271,9 +15083,7 @@
/obj/item/reagent_container/food/snacks/grown/potato,
/obj/item/reagent_container/food/snacks/grown/potato,
/obj/structure/closet/crate/freezer,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"bcR" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -20330,117 +15140,75 @@
/area/corsat/theta/biodome)
"bdc" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/corsat/sigma/biodome/gunrange)
"bdd" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/corsat/sigma/biodome/gunrange)
"bde" = (
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/corsat/sigma/biodome)
"bdf" = (
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/corsat/sigma/biodome)
"bdg" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/corsat/sigma/biodome/gunrange)
"bdh" = (
/obj/structure/target/syndicate,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/corsat/sigma/biodome/gunrange)
"bdi" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/corsat/sigma/biodome/gunrange)
"bdj" = (
/obj/structure/target,
/obj/item/clothing/suit/storage/militia,
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/corsat/sigma/biodome/gunrange)
"bdk" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/corsat/sigma/biodome/gunrange)
"bdl" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/corsat/sigma/biodome/gunrange)
"bdm" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/gunrange)
"bdn" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/corsat/sigma/biodome)
"bdo" = (
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/corsat/sigma/biodome)
"bdp" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/corsat/sigma/biodome/gunrange)
"bdq" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/corsat/sigma/biodome)
"bdr" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/gunrange)
"bds" = (
/obj/structure/target,
/obj/item/clothing/suit/storage/militia,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/gunrange)
"bdt" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/corsat/sigma/biodome/gunrange)
"bdu" = (
/obj/structure/target/syndicate,
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/corsat/sigma/biodome/gunrange)
"bdv" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_22"
- },
+/turf/open/mars_cave/mars_cave_22,
/area/corsat/sigma/biodome/gunrange)
"bdw" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/corsat/sigma/biodome/gunrange)
"bdx" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west,
@@ -20557,9 +15325,7 @@
/turf/open/gm/dirtgrassborder/south,
/area/corsat/theta/biodome)
"bef" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_4"
- },
+/turf/open/mars_cave/mars_cave_4,
/area/corsat/sigma/biodome/gunrange)
"beg" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -20578,9 +15344,7 @@
name = "Research Complex Sigma";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"bek" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{
@@ -20588,9 +15352,7 @@
name = "Omega Checkpoint";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"bel" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -20614,9 +15376,7 @@
/turf/closed/gm/dense,
/area/corsat/theta/biodome)
"beq" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/corsat/sigma/biodome/gunrange)
"ber" = (
/obj/structure/flora/jungle/alienplant1,
@@ -20634,15 +15394,11 @@
use_power = 0
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"beu" = (
/obj/structure/target/syndicate,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/gunrange)
"bev" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -20705,24 +15461,16 @@
/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east,
/area/corsat/theta/biodome)
"beK" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_12"
- },
+/turf/open/mars_cave/mars_cave_12,
/area/corsat/sigma/biodome/gunrange)
"beL" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_8"
- },
+/turf/open/mars_cave/mars_cave_8,
/area/corsat/sigma/biodome/gunrange)
"beM" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/corsat/sigma/biodome/gunrange)
"beN" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/corsat/sigma/biodome/gunrange)
"beO" = (
/turf/open/auto_turf/snow/layer3,
@@ -20753,19 +15501,13 @@
"beU" = (
/obj/structure/target,
/obj/item/clothing/suit/storage/militia,
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/corsat/sigma/biodome/gunrange)
"beV" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/corsat/sigma/biodome/gunrange)
"beW" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/corsat/sigma/biodome/gunrange)
"beX" = (
/turf/open/auto_turf/snow/layer1,
@@ -20917,9 +15659,7 @@
/area/corsat/gamma/biodome)
"bfw" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/corsat/sigma/biodome/gunrange)
"bfx" = (
/obj/structure/ice/ice_rock/cornerOverlay{
@@ -21044,17 +15784,13 @@
/turf/closed/ice_rock/corners,
/area/corsat/gamma/biodome)
"bfO" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/corsat/sigma/biodome/gunrange)
"bfP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"bfQ" = (
/turf/closed/ice,
@@ -21150,81 +15886,51 @@
/turf/open/ice,
/area/corsat/gamma/biodome)
"bgj" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/corsat/sigma/biodome/gunrange)
"bgk" = (
/turf/closed/ice_rock/singleEnd,
/area/corsat/gamma/biodome)
"bgl" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/corsat/sigma/biodome/gunrange)
"bgm" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"bgn" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/corsat/sigma/biodome)
"bgo" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/corsat/sigma/biodome/gunrange)
"bgp" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/corsat/sigma/biodome/gunrange)
"bgq" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/corsat/sigma/biodome/gunrange)
"bgr" = (
/turf/closed/wall,
/area/corsat/sigma/biodome/gunrange)
"bgs" = (
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bgt" = (
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"bgu" = (
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/corsat/sigma/biodome)
"bgv" = (
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/corsat/sigma/biodome)
"bgw" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Research Complex Gamma";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bgx" = (
/obj/structure/machinery/constructable_frame{
@@ -21239,9 +15945,7 @@
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/high_explosive,
/obj/item/explosive/grenade/high_explosive,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bgz" = (
/obj/structure/machinery/m56d_hmg{
@@ -21251,167 +15955,104 @@
name = "Firing Lane"
},
/obj/structure/surface/table/almayer,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/corsat/sigma/biodome/gunrange)
"bgB" = (
/turf/closed/wall,
/area/corsat/sigma/biodome/scrapyard)
"bgC" = (
/obj/structure/fence,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/corsat/sigma/biodome/scrapyard)
"bgD" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/corsat/sigma/biodome/scrapyard)
"bgE" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/scrapyard)
"bgF" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/corsat/sigma/biodome/scrapyard)
"bgG" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_19"
- },
+/turf/open/mars_cave/mars_cave_19,
/area/corsat/sigma/biodome/scrapyard)
"bgH" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/corsat/sigma/biodome/scrapyard)
"bgI" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"bgJ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_20"
- },
+/turf/open/mars_cave/mars_cave_20,
/area/corsat/sigma/biodome/scrapyard)
"bgK" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_16"
- },
+/turf/open/mars_cave/mars_cave_16,
/area/corsat/sigma/biodome/scrapyard)
"bgL" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/corsat/sigma/biodome/scrapyard)
"bgM" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/corsat/sigma/biodome/scrapyard)
"bgN" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/corsat/sigma/biodome/scrapyard)
"bgO" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_22"
- },
+/turf/open/mars_cave/mars_cave_22,
/area/corsat/sigma/biodome/scrapyard)
"bgP" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/corsat/sigma/biodome/scrapyard)
"bgQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_4"
- },
+/turf/open/mars_cave/mars_cave_4,
/area/corsat/sigma/biodome/scrapyard)
"bgR" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_12"
- },
+/turf/open/mars_cave/mars_cave_12,
/area/corsat/sigma/biodome/scrapyard)
"bgS" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/corsat/sigma/biodome/scrapyard)
"bgT" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_8"
- },
+/turf/open/mars_cave/mars_cave_8,
/area/corsat/sigma/biodome/scrapyard)
"bgU" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/corsat/sigma/biodome/scrapyard)
"bgV" = (
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/corsat/sigma/biodome)
"bgW" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/corsat/sigma/biodome/scrapyard)
"bgX" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/corsat/sigma/biodome/scrapyard)
"bgY" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/corsat/sigma/biodome/scrapyard)
"bgZ" = (
/turf/closed/wall/r_wall,
/area/corsat/sigma/biodome/testgrounds)
"bha" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/testgrounds)
"bhb" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/testgrounds)
"bhc" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"bhd" = (
/obj/structure/largecrate/supply/ammo/m39/half,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bhe" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/corsat/sigma/biodome)
"bhf" = (
/obj/structure/surface/rack,
@@ -21422,27 +16063,19 @@
dir = 1
},
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bhg" = (
/turf/open/floor/plating,
/area/corsat/sigma/biodome/testgrounds)
"bhh" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/corsat/sigma/biodome/testgrounds)
"bhi" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/gamma/residential)
"bhj" = (
/obj/structure/surface/rack,
@@ -21453,15 +16086,11 @@
dir = 1
},
/obj/item/weapon/gun/rifle/m41a,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bhk" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"bhl" = (
/obj/structure/foamed_metal,
@@ -21469,9 +16098,7 @@
/area/corsat/sigma/biodome/testgrounds)
"bhm" = (
/obj/structure/largecrate/supply/ammo/pistol/half,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bhn" = (
/turf/closed/mineral{
@@ -21479,52 +16106,34 @@
},
/area/corsat/sigma/biodome)
"bho" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/corsat/sigma/biodome)
"bhp" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_22"
- },
+/turf/open/mars_cave/mars_cave_22,
/area/corsat/sigma/biodome)
"bhq" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_12"
- },
+/turf/open/mars_cave/mars_cave_12,
/area/corsat/sigma/biodome)
"bhr" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/corsat/sigma/biodome)
"bhs" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/corsat/sigma/biodome)
"bht" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/corsat/sigma/biodome)
"bhu" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_13"
- },
+/turf/open/mars_cave/mars_cave_13,
/area/corsat/sigma/biodome)
"bhv" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/corsat/sigma/biodome)
"bhw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_14"
- },
+/turf/open/mars_cave/mars_cave_14,
/area/corsat/sigma/biodome)
"bhx" = (
/obj/structure/bed/chair/wood/wings{
@@ -21534,15 +16143,11 @@
/area/corsat/gamma/rnr/bar)
"bhy" = (
/obj/structure/machinery/botany/editor,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hydroponics)
"bhz" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/rnr)
"bhA" = (
/obj/structure/machinery/light{
@@ -21551,69 +16156,47 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security/cells)
"bhB" = (
/obj/structure/machinery/seed_extractor,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hydroponics)
"bhC" = (
/obj/structure/machinery/computer/shuttle_control/monorail{
dir = 8
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/monorail/control)
"bhD" = (
/obj/structure/sink{
dir = 8;
pixel_x = -11
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hydroponics)
"bhE" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"bhF" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/rnr)
"bhI" = (
/obj/structure/machinery/vending/hydronutrients,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hydroponics)
"bhJ" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/gamma/security/cells)
"bhK" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/gamma/cargo/lobby)
"bhL" = (
/obj/structure/machinery/light{
@@ -21622,163 +16205,107 @@
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "Mixed Air Control"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"bhM" = (
/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/atmos)
"bhN" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/gamma/engineering)
"bhO" = (
/obj/structure/machinery/power/port_gen/pacman/super,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering)
"bhP" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"bhQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"bhR" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Atmospherics";
req_one_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"bhS" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/hallways)
"bhT" = (
/obj/structure/machinery/power/monitor{
name = "Core Power Monitoring"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"bhU" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering/atmos)
"bhV" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering)
"bhW" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/door/window/northright{
name = "Firing Lane"
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/corsat/sigma/biodome/gunrange)
"bhX" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/theta/airlock/control)
"bhY" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/theta/airlock/control)
"bhZ" = (
/obj/structure/machinery/portable_atmospherics/canister/empty,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering/atmos)
"bia" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering)
"bib" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"bic" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/corsat/gamma/cargo/lobby)
"bid" = (
/obj/structure/pipes/standard/simple/visible{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"bie" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/engineering)
"bif" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/gamma/engineering/atmos)
"big" = (
/obj/structure/machinery/light{
@@ -21787,25 +16314,17 @@
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering)
"bih" = (
/obj/structure/closet/secure_closet/engineering_personal{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering)
"bii" = (
/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"bij" = (
/obj/structure/machinery/floodlight{
@@ -21815,26 +16334,17 @@
/area/corsat/gamma/biodome)
"bik" = (
/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/gamma/engineering/atmos)
"bil" = (
/obj/structure/pipes/binary/pump/high_power/on{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"bim" = (
/obj/structure/machinery/portable_atmospherics/canister/empty,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/engineering/atmos)
"bin" = (
/obj/structure/machinery/light{
@@ -21843,88 +16353,55 @@
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "Nitrogen Control Console"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"bio" = (
/obj/structure/dispenser/phoron,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/atmos)
"bip" = (
/obj/structure/dispenser/oxygen,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/atmos)
"biq" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/virology)
"bir" = (
/obj/structure/bed/stool,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay/chemistry)
"bis" = (
/obj/structure/powerloader_wreckage,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"biu" = (
/obj/structure/machinery/computer/crew,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay)
"biv" = (
/obj/structure/closet/crate/internals,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"biw" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple,
/area/corsat/omega/hallways)
"bix" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay)
"biy" = (
/obj/structure/surface/table/woodentable,
/obj/item/toy/dice,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"biz" = (
/obj/structure/pipes/vents/pump{
dir = 8;
id_tag = "mining_outpost_pump"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/security)
"biA" = (
/obj/structure/machinery/light{
@@ -21933,104 +16410,64 @@
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay)
"biB" = (
/obj/structure/largecrate/supply/ammo/m41a/half,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"biC" = (
/obj/structure/pipes/trinary/mixer{
dir = 4;
name = "Gas mixer N2/O2"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"biE" = (
/obj/structure/machinery/medical_pod/bodyscanner,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"biF" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"biG" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/complex)
"biH" = (
/obj/structure/machinery/optable,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/surgery)
"biI" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay/surgery)
"biJ" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northeast,
/area/corsat/gamma/medbay/morgue)
"biK" = (
/obj/structure/largecrate/supply/medicine/blood,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southwest,
/area/corsat/gamma/medbay)
"biL" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/toxin,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/west,
/area/corsat/gamma/medbay)
"biM" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southeast,
/area/corsat/gamma/medbay/chemistry)
"biO" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"biP" = (
/obj/structure/machinery/cm_vending/sorted/tech/science,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/biodome/toxins)
"biQ" = (
/obj/structure/machinery/smartfridge/chemistry{
@@ -22041,10 +16478,7 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/toxins)
"biR" = (
/obj/structure/surface/table/woodentable,
@@ -22053,28 +16487,19 @@
pixel_x = 15
},
/obj/item/reagent_container/food/drinks/drinkingglass,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/bar)
"biS" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/airlocknorth)
"biT" = (
/obj/structure/machinery/constructable_frame,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"biU" = (
/obj/structure/machinery/constructable_frame,
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/corsat/sigma/biodome/scrapyard)
"biV" = (
/obj/structure/surface/table/woodentable,
@@ -22083,17 +16508,11 @@
pixel_x = 15
},
/obj/item/reagent_container/food/drinks/shaker,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/bar)
"biW" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/hallways)
"biX" = (
/obj/structure/machinery/light{
@@ -22101,19 +16520,14 @@
},
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering)
"biY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"biZ" = (
/obj/structure/reagent_dispensers/watertank,
@@ -22122,92 +16536,60 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hydroponics)
"bja" = (
/obj/structure/machinery/message_server,
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"bjb" = (
/obj/structure/showcase{
icon_state = "hub";
name = "Telecommunication Hub"
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"bjc" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay)
"bjd" = (
/obj/structure/machinery/seed_extractor,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/complex)
"bje" = (
/obj/structure/machinery/botany/extractor,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/complex)
"bjf" = (
/obj/structure/machinery/r_n_d/bioprinter,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/theta/biodome/complex)
"bjg" = (
/obj/structure/machinery/vending/hydronutrients,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/theta/biodome/complex)
"bjh" = (
/obj/structure/machinery/biogenerator,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/theta/biodome/complex)
"bji" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/smartfridge/seeds,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"bjj" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/hangar/flightcontrol)
"bjk" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/gamma/engineering/atmos)
"bjl" = (
/obj/structure/surface/table/almayer,
@@ -22218,10 +16600,7 @@
pixel_y = 6;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bjm" = (
/obj/structure/bed,
@@ -22236,17 +16615,11 @@
/obj/item/implanter/adrenalin,
/obj/item/implanter/loyalty,
/obj/item/implanter/loyalty,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"bjp" = (
/obj/structure/machinery/r_n_d/circuit_imprinter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/engineering)
"bjq" = (
/obj/structure/bed,
@@ -22256,49 +16629,33 @@
/area/corsat/sigma/dorms)
"bjr" = (
/obj/item/broken_device,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"bjs" = (
/obj/structure/machinery/mech_bay_recharge_port,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"bjt" = (
/obj/structure/machinery/mecha_part_fabricator,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/robotics)
"bju" = (
/obj/item/cell/crap,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"bjv" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"bjw" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bjx" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/hallways)
"bjy" = (
/obj/structure/sink{
@@ -22314,9 +16671,7 @@
/obj/item/reagent_container/glass/rag{
pixel_y = 10
},
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"bjz" = (
/obj/structure/machinery/light{
@@ -22324,9 +16679,7 @@
},
/obj/structure/machinery/microwave,
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"bjA" = (
/obj/item/reagent_container/food/snacks/meat/monkey,
@@ -22340,9 +16693,7 @@
/obj/item/reagent_container/food/snacks/flour,
/obj/item/reagent_container/food/snacks/flour,
/obj/structure/closet/crate/freezer,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"bjB" = (
/obj/structure/surface/table/almayer,
@@ -22350,10 +16701,7 @@
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/north,
/area/corsat/gamma/administration)
"bjC" = (
/obj/structure/surface/table/almayer,
@@ -22363,9 +16711,7 @@
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"bjD" = (
/obj/structure/bed/chair/wood/wings{
@@ -22378,9 +16724,7 @@
dir = 4
},
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"bjG" = (
/obj/structure/closet/crate/medical,
@@ -22389,52 +16733,36 @@
network = list("gamma")
},
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"bjH" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/adv,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"bjI" = (
/obj/structure/pipes/standard/simple/visible,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"bjJ" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hallways)
"bjK" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/freezer)
"bjM" = (
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/incendiary,
/obj/item/explosive/grenade/incendiary,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bjN" = (
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/smokebomb,
/obj/item/explosive/grenade/smokebomb,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bjO" = (
/obj/structure/surface/rack,
@@ -22446,9 +16774,7 @@
},
/obj/item/weapon/gun/pistol/m4a3,
/obj/item/weapon/gun/pistol/m4a3,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bjP" = (
/obj/structure/surface/rack,
@@ -22459,9 +16785,7 @@
name = "Weapon Rack"
},
/obj/item/weapon/gun/smg/mp5,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bjQ" = (
/obj/structure/machinery/power/apc/high{
@@ -22471,27 +16795,19 @@
},
/obj/structure/surface/table/almayer,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/containment)
"bjR" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/bronze,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bjU" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "CORSAT Library"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"bjV" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -22501,10 +16817,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"bjW" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -22512,9 +16825,7 @@
name = "Sigma Cargo Bay";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/cargo)
"bjY" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -22522,9 +16833,7 @@
name = "Security Armory";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"bjZ" = (
/obj/structure/machinery/door_control{
@@ -22533,10 +16842,7 @@
pixel_x = -24;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/omega/cargo)
"bka" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -22545,9 +16851,7 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/cargo)
"bkb" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -22555,25 +16859,19 @@
name = "Omega Cargo Bay";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/cargo)
"bkc" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/south/id)
"bkd" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Research Complex Theta"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/biodome/complex)
"bke" = (
/obj/structure/machinery/light{
@@ -22594,10 +16892,7 @@
pixel_y = 24;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/sigmaremote)
"bki" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -22606,9 +16901,7 @@
name = "Gate Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/sigmaremote)
"bko" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -22617,18 +16910,14 @@
req_one_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydroeast)
"bkp" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
name = "Research Complex";
req_one_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"bkq" = (
/obj/structure/surface/rack{
@@ -22636,10 +16925,7 @@
unacidable = 1
},
/obj/item/weed_extract,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/omega/complex)
"bkr" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -22649,36 +16935,27 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"bks" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/hangar/monorail/control)
"bku" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
name = "Hangar Office"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/office)
"bkv" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
name = "Flight Control"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"bkx" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -22686,9 +16963,7 @@
name = "Hangar Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar/cargo)
"bky" = (
/obj/structure/window/framed/corsat/hull,
@@ -22700,9 +16975,7 @@
name = "Gamma Cargo Checkpoint";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar/cargo)
"bkB" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -22711,9 +16984,7 @@
name = "Gamma Cargo Checkpoint";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar/cargo)
"bkC" = (
/obj/structure/surface/table/reinforced,
@@ -22722,10 +16993,7 @@
name = "Security Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/checkpoint)
"bkD" = (
/obj/structure/surface/table/reinforced,
@@ -22734,10 +17002,7 @@
name = "Security Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/airlock/south/id)
"bkE" = (
/obj/structure/window/framed/corsat/security,
@@ -22762,9 +17027,7 @@
id = "SigmaIDSC";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/south/id)
"bkJ" = (
/obj/structure/window/framed/corsat/security,
@@ -22782,16 +17045,11 @@
pixel_x = -24;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/south/security)
"bkL" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"bkM" = (
/obj/structure/window/framed/corsat/security,
@@ -22814,18 +17072,14 @@
name = "Privacy Shutters"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"bkO" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{
id = "OmegaO";
name = "Omega Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/biodome)
"bkP" = (
/obj/structure/window/framed/corsat/cell/security,
@@ -22838,10 +17092,7 @@
/obj/structure/machinery/camera/autoname{
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/containment)
"bkS" = (
/obj/structure/machinery/light{
@@ -22850,10 +17101,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/omega/complex)
"bkT" = (
/obj/structure/closet/crate/science{
@@ -22862,9 +17110,7 @@
opened = 1
},
/obj/item/organ/lungs,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"bkU" = (
/obj/structure/closet/crate/science{
@@ -22873,24 +17119,17 @@
opened = 1
},
/obj/item/organ/heart,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"bkV" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/containment)
"bkW" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/stamp/ce,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"bkX" = (
/obj/structure/surface/table/almayer,
@@ -22899,9 +17138,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"bkY" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -22911,9 +17148,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"bkZ" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -22922,25 +17157,19 @@
name = "Omega Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"blb" = (
/obj/structure/janitorialcart,
/obj/item/tool/mop,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/gamma/engineering)
"blc" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering)
"bld" = (
/obj/structure/target/syndicate,
@@ -22952,40 +17181,29 @@
desc = "A rectangular steel crate containing firing targets.";
name = "target crate"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"blg" = (
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/flashbang,
/obj/item/explosive/grenade/flashbang,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"blh" = (
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/high_explosive/training,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"blj" = (
/obj/structure/machinery/pipedispenser,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"blk" = (
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/sigma/cargo)
"bll" = (
/obj/structure/surface/table/almayer,
@@ -22993,76 +17211,47 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"blm" = (
/obj/structure/closet/wardrobe/chemistry_white,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/chemistry)
"bln" = (
/obj/structure/machinery/door/airlock/dropship_hatch/monorail{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/monorail)
"blo" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/hangar/monorail)
"blp" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/gamma/hangar/monorail)
"blr" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/hangar/monorail)
"bls" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/gamma/hangar/monorail)
"blt" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/monorail)
"bly" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/monorail)
"blz" = (
/obj/structure/machinery/light,
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/gamma/hangar/monorail)
"blA" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security)
"blB" = (
/turf/closed/wall/r_wall/biodome,
@@ -23070,9 +17259,7 @@
"blC" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar)
"blD" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -23081,23 +17268,16 @@
name = "Hangar Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar)
"blF" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"blG" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/hangar)
"blH" = (
/obj/structure/machinery/light{
@@ -23105,24 +17285,17 @@
},
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar)
"blI" = (
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/hangar)
"blJ" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/hangar)
"blK" = (
/turf/closed/wall/biodome,
@@ -23134,9 +17307,7 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"blM" = (
/turf/closed/wall/r_wall/biodome,
@@ -23151,10 +17322,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/cargo)
"blP" = (
/obj/structure/machinery/power/apc/hyper{
@@ -23162,32 +17330,21 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/gamma/hangar/arrivals)
"blQ" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/hangar/office)
"blS" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/hangar/monorail/control)
"blT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"blU" = (
/obj/structure/monorail,
@@ -23213,10 +17370,7 @@
/area/space)
"blZ" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/hangar/monorail/control)
"bma" = (
/obj/structure/machinery/power/apc/high{
@@ -23224,46 +17378,29 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/sigma/hangar/monorail/control)
"bmb" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/monorail/control)
"bmc" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/sigma/hangar)
"bmd" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/recharge_station,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/northwest,
/area/corsat/sigma/hangar)
"bme" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar)
"bmh" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/monorail/control)
"bmi" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -23275,9 +17412,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bmj" = (
/obj/structure/window/framed/corsat/hull,
@@ -23287,50 +17422,33 @@
/obj/structure/machinery/door/airlock/dropship_hatch/monorail{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"bml" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/structure/bed/sofa/vert/grey/top,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/monorail)
"bmm" = (
/obj/structure/window/framed/corsat/security,
/turf/open/floor/plating,
/area/corsat/sigma/hangar/monorail/control)
"bmn" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/sigma/hangar/monorail)
"bmo" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/northwest,
/area/corsat/sigma/hangar/monorail)
"bmp" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"bmq" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/hangar/monorail)
"bmr" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/monorail)
"bms" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -23338,17 +17456,12 @@
name = "Hangar Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/hangar/monorail)
"bmu" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/monorail/control)
"bmv" = (
/obj/structure/monorail,
@@ -23360,33 +17473,22 @@
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/monorail/control)
"bmx" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/sigma/hangar/monorail)
"bmz" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/hangar/monorail)
"bmA" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/sigma/hangar/monorail)
"bmB" = (
/obj/structure/monorail{
@@ -23416,17 +17518,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"bmI" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"bmJ" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -23435,40 +17533,28 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/office)
"bmL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"bmM" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/hangar/office)
"bmN" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"bmO" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/arrivals)
"bmS" = (
/obj/structure/window/framed/corsat,
@@ -23489,9 +17575,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bmW" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile{
@@ -23499,20 +17583,14 @@
name = "Gamma Checkpoint";
unacidable = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar/checkpoint)
"bmX" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar/checkpoint)
"bmY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar/checkpoint)
"bmZ" = (
/obj/structure/window/framed/corsat/hull/security,
@@ -23523,29 +17601,20 @@
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"bnb" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/gamma/hangar/arrivals)
"bnd" = (
/obj/structure/fence,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"bne" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/monorail/control)
"bnf" = (
/obj/structure/sign/safety/fridge,
@@ -23557,17 +17626,12 @@
/obj/item/storage/bag/trash,
/obj/item/storage/bag/trash,
/obj/item/storage/bag/trash,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/gamma/residential/maint)
"bnj" = (
/obj/structure/machinery/cryo_cell,
/obj/structure/pipes/standard/cap/hidden,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay)
"bnk" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -23576,9 +17640,7 @@
req_access_txt = "103";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"bnl" = (
/obj/structure/sign/safety/high_voltage,
@@ -23590,15 +17652,10 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/corsat/gamma/cargo)
"bnn" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/hallwaysouth)
"bno" = (
/obj/structure/sign/safety/airlock{
@@ -23611,19 +17668,13 @@
/area/corsat/gamma/biodome)
"bnp" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/canteen)
"bnq" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"bnr" = (
/obj/structure/sign/safety/galley,
@@ -23631,10 +17682,7 @@
/area/corsat/gamma/canteen)
"bns" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering)
"bnw" = (
/obj/structure/sign/safety/airlock,
@@ -23642,24 +17690,18 @@
/area/corsat/sigma/hangar/monorail)
"bnx" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/canteen)
"bny" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/canteen)
"bnz" = (
/obj/structure/sign/safety/biohazard,
/obj/structure/surface/table/almayer,
/obj/structure/machinery/reagentgrinder,
/obj/item/stack/sheet/mineral/phoron/small_stack,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/virology)
"bnA" = (
/obj/structure/surface/rack{
@@ -23667,30 +17709,19 @@
unacidable = 1
},
/obj/item/xenos_claw,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/omega/complex)
"bnB" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/biodome/virology)
"bnC" = (
/obj/structure/sign/safety/biohazard,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/virology)
"bnD" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/biodome/virology)
"bnE" = (
/obj/structure/machinery/light{
@@ -23700,16 +17731,11 @@
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "Oxygen Supply Console"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"bnF" = (
/obj/structure/pipes/standard/tank/oxygen,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay)
"bnH" = (
/obj/structure/sign/safety/biohazard,
@@ -23718,10 +17744,7 @@
"bnI" = (
/obj/structure/sign/safety/biohazard,
/obj/structure/machinery/space_heater,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/virology)
"bnJ" = (
/obj/structure/sign/nosmoking_1,
@@ -23741,9 +17764,7 @@
/area/corsat/gamma/medbay)
"bnN" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"bnO" = (
/obj/structure/sign/safety/medical,
@@ -23757,17 +17778,13 @@
/obj/structure/sign/safety/chem_lab{
pixel_y = -30
},
-/turf/open/floor/corsat{
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner,
/area/corsat/gamma/medbay)
"bnR" = (
/obj/structure/sign/safety/airlock{
pixel_y = 32
},
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/airlock/control)
"bnU" = (
/obj/structure/sign/safety/airlock,
@@ -23777,18 +17794,13 @@
/obj/structure/sign/safety/airlock{
pixel_y = 32
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/id)
"bnW" = (
/obj/structure/sign/safety/airlock{
pixel_x = 32
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/corsat/sigma/biodome)
"bnY" = (
/obj/structure/safe,
@@ -23800,9 +17812,7 @@
/area/corsat/sigma/hangar/id)
"boc" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/sigma/north)
"boe" = (
/obj/structure/sign/safety/airlock,
@@ -23816,28 +17826,19 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/sigma/cargo)
"boh" = (
/obj/structure/cargo_container/grant/left,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"boi" = (
/obj/structure/cargo_container/grant/rightmid,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"boj" = (
/obj/structure/cargo_container/grant/right,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"bon" = (
/obj/structure/fence,
@@ -23850,18 +17851,13 @@
/obj/structure/sign/safety/airlock{
pixel_y = -32
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/corsat/sigma/biodome)
"bop" = (
/obj/structure/sign/safety/airlock{
pixel_x = -32
},
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/theta/airlock/control)
"boq" = (
/obj/structure/sign/safety/storage,
@@ -23879,9 +17875,7 @@
/obj/structure/sign/safety/storage{
pixel_y = 32
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hallways)
"bow" = (
/obj/structure/sign/safety/airlock,
@@ -23905,9 +17899,7 @@
/obj/structure/sign/safety/airlock{
pixel_x = 32
},
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/hallways)
"boB" = (
/obj/structure/sign/safety/airlock{
@@ -23920,44 +17912,31 @@
/area/corsat/theta/biodome)
"boD" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/security)
"boE" = (
/obj/structure/sign/safety/biolab{
pixel_y = 32
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/hydrowest)
"boF" = (
/obj/structure/sign/safety/biolab{
pixel_y = 32
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/hydroeast)
"boG" = (
/obj/structure/sign/safety/biolab{
pixel_y = -32
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/hydrowest)
"boH" = (
/obj/structure/sign/safety/biolab{
pixel_y = -32
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/hydroeast)
"boJ" = (
/obj/structure/sign/safety/airlock,
@@ -23969,22 +17948,14 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar)
"boL" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/corsat/gamma/cargo)
"boM" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/corsat/gamma/cargo/lobby)
"boN" = (
/obj/structure/surface/table/almayer,
@@ -23995,129 +17966,90 @@
dir = 8
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/north,
/area/corsat/gamma/medbay)
"boP" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/gamma/cargo)
"boQ" = (
/obj/vehicle/train/cargo/engine{
dir = 2
},
-/turf/open/floor/corsat{
- icon_state = "arrow_west"
- },
+/turf/open/floor/corsat/arrow_west,
/area/corsat/sigma/cargo)
"boR" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/sigma/cargo)
"boT" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/hangar/cargo)
"boU" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/corsat/gamma/cargo)
"boV" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/chips,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"boW" = (
/obj/item/bananapeel,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"boX" = (
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"boY" = (
/obj/structure/surface/rack,
/obj/item/reagent_container/food/condiment/sugar,
/obj/item/reagent_container/food/condiment/sugar,
/obj/item/reagent_container/food/condiment/sugar,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"bpa" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"bpb" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/north,
/area/corsat/gamma/residential)
"bpd" = (
/obj/structure/surface/rack,
/obj/item/reagent_container/food/condiment/enzyme,
/obj/item/reagent_container/food/condiment/enzyme,
/obj/item/reagent_container/food/condiment/enzyme,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"bpe" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/gamma/residential/east)
"bph" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/gm/river/desert/shallow{
- name = "pool"
- },
+/turf/open/gm/river/desert/shallow/pool,
/area/corsat/gamma/residential/showers)
"bpi" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"bpj" = (
/obj/structure/surface/rack,
@@ -24126,23 +18058,16 @@
/obj/item/reagent_container/food/snacks/chocolatebar,
/obj/item/reagent_container/food/snacks/chocolatebar,
/obj/item/reagent_container/food/snacks/chocolatebar,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"bpl" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hydroponics)
"bpn" = (
/obj/structure/surface/table/almayer,
/obj/item/light_bulb/tube/large,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering)
"bpq" = (
/obj/structure/surface/table/almayer,
@@ -24150,71 +18075,49 @@
/obj/item/paper,
/obj/item/tool/pen,
/obj/item/tool/stamp/cmo,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"bpr" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/southeast,
/area/corsat/gamma/rnr)
"bps" = (
/obj/structure/machinery/disposal,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/monorail)
"bpt" = (
/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"bpv" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/monorail/control)
"bpz" = (
/obj/structure/machinery/botany/editor,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"bpA" = (
/obj/item/tool/minihoe,
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/glass/bucket,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hydroponics)
"bpB" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/closet/wardrobe/science_white,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/omega/complex)
"bpC" = (
/obj/structure/surface/table/almayer,
/obj/item/book/manual/chef_recipes,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"bpD" = (
/obj/structure/surface/table/almayer,
@@ -24223,9 +18126,7 @@
},
/obj/item/tool/kitchen/tray,
/obj/item/tool/kitchen/knife,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"bpE" = (
/obj/structure/surface/table/almayer,
@@ -24235,103 +18136,69 @@
dir = 1
},
/obj/item/tool/kitchen/rollingpin,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"bpF" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"bpG" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/microwave,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"bpH" = (
/obj/structure/machinery/meter,
/obj/structure/pipes/standard/simple/visible{
dir = 9
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"bpK" = (
/obj/structure/surface/table,
/obj/item/storage/donut_box,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"bpL" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/engineering/atmos)
"bpM" = (
/obj/structure/surface/rack,
/obj/item/device/transfer_valve,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"bpN" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"bpO" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southwest,
/area/corsat/gamma/canteen)
"bpP" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar)
"bpR" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"bpS" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/sigma/north)
"bpT" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/surgery/scalpel,
/obj/item/tool/surgery/retractor,
/obj/item/tool/surgery/circular_saw,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/east,
/area/corsat/gamma/medbay/morgue)
"bpU" = (
/obj/structure/barricade/handrail{
@@ -24344,100 +18211,65 @@
/area/corsat/gamma/residential/east)
"bpW" = (
/obj/structure/machinery/medical_pod/bodyscanner,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay)
"bpX" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"bqa" = (
/obj/structure/pipes/standard/manifold/visible,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay)
"bqb" = (
/obj/structure/pipes/standard/simple/visible{
dir = 9
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"bqd" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/gamma/biodome/complex)
"bqe" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/biodome/complex)
"bqf" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay)
"bqg" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northeast,
/area/corsat/gamma/medbay/chemistry)
"bqh" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/lobby)
"bqi" = (
/obj/item/cell/super/empty,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"bqj" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/fire,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"bqk" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/regular,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"bqm" = (
/obj/structure/closet/secure_closet/medical2{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"bqn" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/lobby)
"bqo" = (
/obj/structure/pipes/vents/pump/siphon/on{
@@ -24454,10 +18286,7 @@
/area/corsat/inaccessible)
"bqq" = (
/obj/structure/bed/chair/comfy/orange,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/corsat/gamma/administration)
"bqr" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -24472,16 +18301,11 @@
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/hallwaysouth)
"bqw" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/administration)
"bqx" = (
/obj/structure/surface/table/almayer,
@@ -24489,49 +18313,35 @@
dir = 4
},
/obj/item/storage/donut_box,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"bqy" = (
/obj/structure/surface/table/almayer,
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"bqz" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/administration)
"bqA" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/gamma/administration)
"bqC" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"bqD" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/administration)
"bqE" = (
/obj/structure/surface/table/almayer,
@@ -24542,18 +18352,13 @@
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"bqG" = (
/obj/structure/pipes/binary/pump/on{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/theta/airlock/control)
"bqI" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -24561,91 +18366,59 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/west/id)
"bqJ" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/cargo)
"bqK" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"bqL" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering)
"bqM" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"bqO" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar/monorail)
"bqR" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/sigma/hangar/monorail)
"bqS" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/sigma/hangar/monorail)
"bqU" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/hangar/office)
"bqV" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/sigma/hangar/office)
"bqW" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/hangar/office)
"bqY" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/hangar/office)
"bqZ" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/gamma/engineering)
"brd" = (
/obj/structure/bed/chair{
@@ -24655,10 +18428,7 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/gamma/security/cells)
"brf" = (
/obj/structure/pipes/vents/pump{
@@ -24668,38 +18438,24 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential)
"brg" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/southeast/dataoffice)
"brj" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/hangar/office)
"brm" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/complex)
"brn" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/complex)
"bro" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -24709,24 +18465,18 @@
/area/corsat/gamma/biodome)
"brq" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/administration)
"brr" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"brs" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/sigma/cargo)
"brt" = (
/obj/structure/machinery/disposal,
@@ -24734,48 +18484,33 @@
/area/corsat/sigma/cafe)
"bru" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"brw" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"brx" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bry" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"brz" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/checkpoint)
"brB" = (
/obj/structure/bed/chair/comfy/beige,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/corsat/omega/offices)
"brD" = (
/obj/structure/surface/table/almayer,
@@ -24785,15 +18520,11 @@
},
/obj/structure/window/reinforced,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"brE" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"brF" = (
/obj/structure/flora/pottedplant{
@@ -24802,147 +18533,99 @@
/obj/structure/barricade/handrail{
layer = 3
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"brI" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/omega/offices)
"brN" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/security)
"brO" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"brP" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"brQ" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"brR" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/omega/offices)
"brT" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/omega/offices)
"brU" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"brX" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"brY" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/bronze,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"brZ" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/omega/cargo)
"bsa" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/microwave,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/omega/offices)
"bsb" = (
/obj/structure/noticeboard{
pixel_y = 32
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/gamma/administration)
"bsd" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southeast,
/area/corsat/sigma/southeast/dataoffice)
"bse" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/microwave,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/security)
"bsf" = (
/obj/structure/machinery/vending/coffee,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/security)
"bsg" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/security)
"bsi" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/security)
"bsl" = (
/obj/structure/surface/table/almayer,
@@ -24950,71 +18633,50 @@
dir = 4;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/security)
"bsm" = (
/obj/structure/sign/safety/airlock{
pixel_y = 32
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hallways)
"bsn" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"bso" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/checkpoint)
"bsp" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"bsq" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/security)
"bsr" = (
/obj/structure/surface/rack,
/obj/item/evidencebag,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/security)
"bss" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/security)
"bsx" = (
/obj/structure/barricade/handrail{
@@ -25023,81 +18685,56 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"bsy" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/scalpel/laser{
pixel_y = 10
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/omega/complex)
"bsz" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/omega/complex)
"bsB" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"bsD" = (
/obj/structure/machinery/computer/cameras{
network = list("omega")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/airlocknorth)
"bsE" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"bsG" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"bsI" = (
/obj/structure/surface/table/woodentable,
/obj/structure/machinery/chem_dispenser/soda{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"bsJ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/south/offices)
"bsK" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/omega/complex)
"bsL" = (
/obj/structure/machinery/vending/cigarette/colony,
@@ -25107,155 +18744,107 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/sigma/south/offices)
"bsN" = (
/obj/structure/surface/table/woodentable,
/obj/structure/machinery/chem_dispenser/soda/beer{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"bsO" = (
/obj/structure/machinery/botany{
name = "hydroponics tray"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydrowest)
"bsP" = (
/obj/structure/machinery/botany{
name = "hydroponics tray"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydroeast)
"bsQ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/south/offices)
"bsR" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/south/offices)
"bsS" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/bronze,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bsT" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/south/security)
"bsU" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/south/security)
"bsW" = (
/obj/structure/machinery/light,
/obj/structure/machinery/botany{
name = "hydroponics tray"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydrowest)
"bsX" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/theta/biodome/complex)
"bsY" = (
/obj/structure/machinery/light,
/obj/structure/machinery/botany{
name = "hydroponics tray"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydroeast)
"bsZ" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"bta" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"btb" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/south/offices)
"btf" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/south/offices)
"btg" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"bth" = (
/obj/structure/machinery/lapvend,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"bti" = (
/obj/structure/machinery/light,
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/theta/biodome/hydrowest)
"btj" = (
/obj/structure/machinery/light,
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/theta/biodome/hydroeast)
"btk" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -25265,10 +18854,7 @@
/area/corsat/theta/biodome)
"btl" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/theta/biodome/complex)
"btn" = (
/obj/structure/machinery/light{
@@ -25277,9 +18863,7 @@
/obj/structure/machinery/botany{
name = "hydroponics tray"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydrowest)
"bto" = (
/obj/structure/machinery/light{
@@ -25288,22 +18872,15 @@
/obj/structure/machinery/botany{
name = "hydroponics tray"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydroeast)
"btq" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/south/offices)
"bts" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/hallways)
"btt" = (
/obj/structure/surface/table/reinforced,
@@ -25311,17 +18888,12 @@
name = "Acid Resistant Hemostat";
unacidable = 1
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/omega/complex)
"btv" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/botanydisk,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/theta/biodome/complex)
"btw" = (
/obj/structure/surface/rack,
@@ -25330,38 +18902,26 @@
maxcharge = 3000;
name = "overpowered potato"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/engineering)
"btx" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"btz" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/apc,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/engineering)
"btB" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hangar/security)
"btC" = (
/obj/structure/machinery/light{
@@ -25370,17 +18930,13 @@
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"btD" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"btE" = (
/obj/structure/machinery/light{
@@ -25390,9 +18946,7 @@
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"btF" = (
/obj/structure/machinery/light{
@@ -25401,9 +18955,7 @@
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"btG" = (
/obj/structure/surface/table/almayer,
@@ -25411,19 +18963,13 @@
/obj/structure/machinery/computer/atmos_alert{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/hangar/flightcontrol)
"btH" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"btI" = (
/obj/structure/machinery/vending/cola,
@@ -25432,36 +18978,25 @@
"btJ" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/gamma/hangar/flightcontrol)
"btK" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"btL" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"btM" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"btN" = (
/obj/structure/window/framed/corsat,
@@ -25469,66 +19004,44 @@
/area/corsat/gamma/hangar/flightcontrol)
"btO" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"btQ" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/hangar/flightcontrol)
"btR" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/gamma/hangar/flightcontrol)
"btS" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/hangar/office)
"btT" = (
/obj/structure/sign/safety/biohazard,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/biodome/virology)
"btU" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/communications,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"btV" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/southeast/dataoffice)
"btW" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/southeast/dataoffice)
"btX" = (
/obj/structure/surface/table/almayer,
@@ -25537,17 +19050,13 @@
health = 80
},
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"btY" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/dataoffice)
"btZ" = (
/obj/structure/surface/table/almayer,
@@ -25557,18 +19066,13 @@
},
/obj/item/clipboard,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bua" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/sigma/southeast/dataoffice)
"bub" = (
/obj/structure/machinery/light{
@@ -25578,67 +19082,46 @@
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/southeast/dataoffice)
"buc" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/dataoffice)
"bud" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/dataoffice)
"bue" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bug" = (
/obj/structure/surface/table/almayer,
/obj/item/phone,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/southeast/datalab)
"buh" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/datalab)
"bui" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/datalab)
"buj" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/southeast/datalab)
"bum" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"bun" = (
/obj/structure/bed/chair/wood/wings{
@@ -25689,38 +19172,27 @@
dir = 1
},
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/south/security)
"bux" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"buy" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"buz" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/cargo)
"buA" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/cargo)
"buB" = (
/obj/structure/sign/safety/distribution_pipes{
@@ -25735,69 +19207,47 @@
pixel_y = 7
},
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/omega/complex)
"buD" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering)
"buE" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/tool/pen,
/obj/item/tool/stamp,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/lobby)
"buF" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/gamma/engineering)
"buG" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/plastic,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"buI" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering)
"buJ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar)
"buK" = (
/obj/structure/machinery/light,
/obj/structure/surface/rack,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar)
"buL" = (
/obj/structure/machinery/power/apc/high{
@@ -25806,45 +19256,30 @@
start_charge = 0
},
/obj/structure/closet/wardrobe/virology_white,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/virology)
"buM" = (
/obj/structure/machinery/light,
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southeast,
/area/corsat/sigma/hangar/office)
"buN" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/cargo)
"buO" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/gamma/hallwaysouth)
"buP" = (
/obj/structure/closet/secure_closet/engineering_personal{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/engineering)
"buQ" = (
/obj/item/alien_embryo,
@@ -25858,18 +19293,14 @@
icon_state = "open_science";
opened = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"buR" = (
/obj/structure/machinery/vending/dinnerware,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"buS" = (
/obj/structure/machinery/light{
@@ -25880,16 +19311,10 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/control)
"buT" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/gamma/hallwaysouth)
"buU" = (
/obj/structure/window/framed/corsat/hull,
@@ -25903,28 +19328,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/sigma/dorms)
"buW" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/checkpoint)
"buX" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/containment)
"buY" = (
/obj/structure/prop/mech/drill,
@@ -25945,9 +19361,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bvh" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -25956,18 +19370,13 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bvi" = (
/obj/structure/surface/rack,
/obj/item/tool/soap/deluxe,
/obj/item/tool/soap/deluxe,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/residential/maint)
"bvj" = (
/turf/open/floor/mech_bay_recharge_floor,
@@ -25980,67 +19389,44 @@
/area/corsat/sigma/south/robotics)
"bvm" = (
/obj/structure/machinery/bioprinter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/robotics)
"bvn" = (
/obj/structure/surface/table/almayer,
/obj/item/circuitboard/robot_module/engineering,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/south/robotics)
"bvo" = (
/obj/structure/surface/table/almayer,
/obj/item/circuitboard/robot_module/butler,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/robotics)
"bvp" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/robotic_fabricator,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/robotics)
"bvq" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/head/welding,
/obj/item/tool/weldingtool,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/south/robotics)
"bvs" = (
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_17"
- },
+/turf/open/mars_cave/mars_cave_17,
/area/corsat/sigma/biodome/scrapyard)
"bvt" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/south/offices)
"bvw" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/south/engineering)
"bvx" = (
/obj/structure/bed,
@@ -26050,34 +19436,25 @@
/area/corsat/sigma/dorms)
"bvy" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/sigma/south/engineering)
"bvB" = (
/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bvC" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bvD" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/gold{
amount = 10
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bvE" = (
/obj/structure/surface/rack,
@@ -26087,18 +19464,13 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/engineering)
"bvF" = (
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"bvJ" = (
/obj/structure/bed,
@@ -26113,19 +19485,14 @@
/obj/item/paper,
/obj/item/tool/pen,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bvL" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/powercell,
/obj/effect/spawner/random/powercell,
/obj/effect/spawner/random/powercell,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/south/robotics)
"bvM" = (
/obj/structure/machinery/light{
@@ -26135,36 +19502,26 @@
/obj/item/stack/sheet/metal{
amount = 30
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/engineering)
"bvN" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/silver{
amount = 10
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bvO" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/metal{
amount = 30
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/sigma/south/robotics)
"bvP" = (
/obj/structure/surface/table/almayer,
/obj/item/stock_parts/smes_coil,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bvQ" = (
/obj/structure/bed,
@@ -26197,130 +19554,87 @@
"bvX" = (
/obj/item/tool/weldingtool/experimental,
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bvY" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/glass{
amount = 30
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/sigma/south/engineering)
"bvZ" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/platinum{
amount = 10
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/sigma/south/engineering)
"bwa" = (
/obj/structure/machinery/smartfridge/secure/virology{
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/gamma/biodome/virology)
"bwb" = (
/obj/structure/machinery/smartfridge/chemistry/virology{
req_access_txt = "103";
req_one_access = null
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/virology)
"bwc" = (
/obj/structure/surface/rack,
/obj/item/device/chameleon,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"bwe" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/engineering)
"bwg" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/bookcase/manuals/engineering,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/engineering)
"bwh" = (
/obj/structure/bookcase/manuals/engineering,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/south/engineering)
"bwi" = (
/obj/structure/surface/table/almayer,
/obj/item/circuitboard/robot_module/medic,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/robotics)
"bwk" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/engineering)
"bwm" = (
/obj/structure/machinery/autolathe,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/engineering)
"bwn" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/phoron{
amount = 15
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/engineering)
"bwo" = (
/obj/structure/bed/chair,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bwp" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/engineering)
"bwq" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -26329,15 +19643,11 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"bwr" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bwt" = (
/obj/structure/machinery/light{
@@ -26345,16 +19655,11 @@
},
/obj/structure/surface/table/almayer,
/obj/item/device/analyzer,
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/south/engineering)
"bwu" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/south/engineering)
"bww" = (
/obj/structure/machinery/power/apc/hyper{
@@ -26362,9 +19667,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/generator)
"bwx" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -26372,9 +19675,7 @@
name = "Robotics";
req_one_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"bwz" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -26383,64 +19684,45 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"bwA" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bwB" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bwC" = (
/obj/structure/surface/table/almayer,
/obj/item/device/t_scanner,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/engineering)
"bwD" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/engineering)
"bwE" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bwG" = (
/obj/structure/surface/rack,
/obj/item/tool/crowbar,
/obj/item/tool/wirecutters,
/obj/item/tool/screwdriver,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/residential/maint)
"bwH" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/engineering)
"bwI" = (
/obj/structure/surface/table/almayer,
@@ -26448,42 +19730,30 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bwJ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/engineering)
"bwK" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bwN" = (
/obj/structure/machinery/power/monitor{
name = "Main Power Grid Monitoring"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bwO" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/engineering)
"bwP" = (
/turf/open/floor/corsat,
@@ -26492,16 +19762,12 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bwR" = (
/obj/structure/surface/rack,
/obj/item/tool/weldingtool,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"bwS" = (
/obj/structure/machinery/light,
@@ -26509,48 +19775,34 @@
/area/corsat/sigma/south/engineering)
"bwT" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/sigma/south/engineering)
"bwU" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/plasteel{
amount = 10
},
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/sigma/south/engineering)
"bwV" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/robotics)
"bwW" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"bwZ" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/screwdriver,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/south/robotics)
"bxa" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"bxb" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -26559,9 +19811,7 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bxe" = (
/obj/structure/machinery/light{
@@ -26570,26 +19820,17 @@
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/surgicaldrill,
/obj/item/tool/surgery/circular_saw,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/sigmaremote)
"bxf" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/cautery,
/obj/item/tool/surgery/hemostat,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/sigmaremote)
"bxg" = (
/obj/structure/closet/secure_closet/medical2,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/sigmaremote)
"bxh" = (
/obj/item/implant/neurostim,
@@ -26597,9 +19838,7 @@
/obj/item/implant/adrenalin,
/obj/item/implant/adrenalin,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"bxi" = (
/obj/item/implant/loyalty,
@@ -26607,9 +19846,7 @@
/obj/item/implant/compressed,
/obj/item/implant/compressed,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"bxj" = (
/obj/item/implant/death_alarm,
@@ -26617,83 +19854,54 @@
/obj/item/implant/tracking,
/obj/item/implant/tracking,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"bxm" = (
/obj/structure/surface/table/almayer,
/obj/structure/prop/mech/tesla_energy_relay,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/robotics)
"bxn" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/robotics)
"bxo" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/wirecutters,
/obj/item/stack/cable_coil,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/robotics)
"bxp" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/weldingtool,
/obj/item/tool/screwdriver,
/obj/item/tool/wrench,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/south/robotics)
"bxs" = (
/obj/structure/surface/table/almayer,
/obj/item/book/manual/ripley_build_and_repair,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/robotics)
"bxt" = (
/obj/structure/surface/table/almayer,
/obj/structure/prop/mech/armor_booster,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/robotics)
"bxw" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_east"
- },
+/turf/open/floor/corsat/arrow_east,
/area/corsat/sigma/south/robotics)
"bxx" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/south/robotics)
"bxy" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_west"
- },
+/turf/open/floor/corsat/arrow_west,
/area/corsat/sigma/south/robotics)
"bxz" = (
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/sigma/south/robotics)
"bxB" = (
/obj/structure/girder/displaced,
@@ -26702,55 +19910,36 @@
"bxC" = (
/obj/structure/surface/rack,
/obj/structure/prop/mech/hydralic_clamp,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/south/robotics)
"bxF" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/south/robotics)
"bxH" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/yellow,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bxI" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/sigma/south/robotics)
"bxJ" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/robotics)
"bxK" = (
/obj/structure/surface/rack,
/obj/item/holder/drone,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/south/robotics)
"bxL" = (
/obj/structure/surface/rack,
/obj/item/device/lightreplacer,
/obj/item/light_bulb/tube/large,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/south/engineering)
"bxM" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -26759,9 +19948,7 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bxN" = (
/obj/structure/machinery/power/apc/high{
@@ -26771,10 +19958,7 @@
},
/obj/structure/surface/rack,
/obj/item/powerloader_clamp,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/robotics)
"bxO" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -26785,9 +19969,7 @@
name = "Containment Cell 1";
req_one_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/inaccessible)
"bxP" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -26797,27 +19979,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"bxQ" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/r_n_d/protolathe,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/engineering)
"bxR" = (
/obj/structure/surface/table/almayer,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southwest,
/area/corsat/gamma/airlock/control)
"bxS" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -26828,9 +20002,7 @@
name = "Containment Cell 4";
req_one_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/inaccessible)
"bxT" = (
/obj/structure/machinery/light{
@@ -26838,17 +20010,11 @@
},
/obj/structure/surface/rack,
/obj/item/cell/secborg,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/robotics)
"bxU" = (
/obj/structure/machinery/r_n_d/server,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"bxV" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -26857,9 +20023,7 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"bxW" = (
/obj/structure/closet/crate,
@@ -26869,18 +20033,13 @@
/obj/item/organ/kidneys/prosthetic,
/obj/item/organ/liver/prosthetic,
/obj/item/organ/lungs/prosthetic,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/robotics)
"bxX" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bxY" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -26891,9 +20050,7 @@
name = "Containment Cell 4";
req_one_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/inaccessible)
"bxZ" = (
/obj/structure/closet/crate,
@@ -26901,10 +20058,7 @@
/obj/item/robot_parts/robot_component/armour,
/obj/item/robot_parts/robot_component/camera,
/obj/item/robot_parts/robot_component/diagnosis_unit,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/robotics)
"bya" = (
/obj/structure/machinery/light{
@@ -26915,32 +20069,22 @@
/obj/item/tool/screwdriver,
/obj/item/tool/wrench,
/obj/item/stack/nanopaste,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/robotics)
"byb" = (
/obj/structure/machinery/optable,
/obj/item/robot_parts/robot_suit,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"byc" = (
/obj/structure/surface/rack,
/obj/item/frame/firstaid_arm_assembly,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/south/robotics)
"byd" = (
/obj/structure/surface/rack,
/obj/item/frame/bucket_sensor,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"bye" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -26953,18 +20097,13 @@
/area/corsat/gamma/administration)
"byg" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"byh" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/south/robotics)
"byi" = (
/obj/structure/closet/crate,
@@ -26973,42 +20112,31 @@
pixel_x = 2;
pixel_y = 2
},
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/sigma/south/engineering)
"byj" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/sigma/south/robotics)
"byk" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"byl" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/plastic,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"bym" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"byn" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -27039,9 +20167,7 @@
/area/corsat/gamma/administration)
"byr" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"bys" = (
/obj/structure/machinery/microwave,
@@ -27049,18 +20175,12 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"byt" = (
/obj/structure/machinery/juicer,
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"byu" = (
/obj/structure/surface/table/woodentable,
@@ -27071,64 +20191,43 @@
"byv" = (
/obj/structure/surface/table/woodentable,
/obj/item/storage/box/drinkingglasses,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"byw" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"byy" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"byz" = (
/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"byB" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/masks,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/omega/complex)
"byE" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"byF" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"byG" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"byH" = (
/obj/structure/closet/crate/science{
@@ -27137,9 +20236,7 @@
opened = 1
},
/obj/item/organ/liver,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"byI" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
@@ -27148,24 +20245,17 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"byJ" = (
/obj/structure/surface/rack,
/obj/item/xeno_restraints,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"byL" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"byM" = (
/obj/structure/machinery/light{
@@ -27175,32 +20265,22 @@
/area/corsat/omega/complex)
"byN" = (
/obj/structure/machinery/shower,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"byO" = (
/obj/structure/surface/table/reinforced,
/obj/item/paper,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"byP" = (
/obj/structure/machinery/optable,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"byQ" = (
/obj/structure/surface/table/reinforced,
/obj/item/form_printer,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/omega/complex)
"byR" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -27210,26 +20290,18 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"byS" = (
/obj/structure/sink{
pixel_y = 25
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"byT" = (
/obj/item/storage/box/masks,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"byU" = (
/obj/structure/machinery/light{
@@ -27237,10 +20309,7 @@
},
/obj/structure/surface/rack,
/obj/item/storage/box/gloves,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"byV" = (
/obj/structure/closet/crate/science{
@@ -27249,16 +20318,11 @@
opened = 1
},
/obj/item/organ/eyes,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"byW" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/omega/complex)
"byX" = (
/obj/item/xeno_egg,
@@ -27269,91 +20333,65 @@
icon_state = "open_science";
opened = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"byY" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"byZ" = (
/obj/structure/surface/rack,
/obj/item/stock_parts/console_screen,
/obj/item/stock_parts/console_screen,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/south/engineering)
"bzb" = (
/obj/structure/surface/table/almayer,
/obj/item/stock_parts/matter_bin/super,
/obj/item/stock_parts/capacitor/super,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/engineering)
"bzc" = (
/obj/structure/surface/table/almayer,
/obj/item/device/assembly/igniter,
/obj/item/device/assembly/voice,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bzd" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/glasses/meson,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"bze" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/powercell,
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"bzf" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"bzg" = (
/obj/structure/surface/table/almayer,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/omega/complex)
"bzj" = (
/obj/structure/surface/table/almayer,
/obj/item/form_printer,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bzk" = (
/obj/structure/surface/table/almayer,
/obj/item/form_printer,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"bzl" = (
/obj/structure/machinery/power/apc/hyper{
@@ -27361,10 +20399,7 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/omega/complex)
"bzm" = (
/obj/structure/window/framed/corsat/hull/research,
@@ -27379,9 +20414,7 @@
name = "Containment Cell 3";
req_one_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/inaccessible)
"bzo" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
@@ -27398,27 +20431,21 @@
id = "SigmaIDSC";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/omega/complex)
"bzp" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bzq" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Research Complex Theta";
req_one_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"bzr" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -27426,44 +20453,34 @@
req_access_txt = "103";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bzs" = (
/obj/structure/machinery/door/airlock/almayer/research{
name = "\improper Containment Chambers";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bzt" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/omega/complex)
"bzu" = (
/obj/structure/machinery/door/airlock/almayer/research{
name = "\improper Xeno Autopsy";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bzv" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/omega/complex)
"bzw" = (
/obj/structure/machinery/door/airlock/almayer/research{
@@ -27472,9 +20489,7 @@
name = "\improper Decontamination Chamber";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bzx" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -27482,17 +20497,12 @@
name = "Xenobiology Reception Desk";
req_one_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bzy" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bzz" = (
/obj/structure/surface/rack,
@@ -27500,10 +20510,7 @@
/obj/item/tool/extinguisher,
/obj/item/tool/extinguisher,
/obj/item/clothing/glasses/welding,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/residential/maint)
"bzA" = (
/obj/structure/surface/rack,
@@ -27521,24 +20528,15 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bzB" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/omega/complex)
"bzC" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/omega/complex)
"bzD" = (
/obj/structure/surface/rack,
@@ -27550,143 +20548,99 @@
name = "Secure Racks";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bzE" = (
/obj/structure/surface/table/almayer,
/obj/item/circuitboard/machine/clonescanner,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bzF" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bzG" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bzH" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/lighter/random,
/obj/item/clothing/glasses/meson,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bzI" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer3/laptop/secure_data,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bzJ" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/robotics)
"bzK" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bzL" = (
/obj/structure/machinery/light,
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bzM" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/wirecutters,
/obj/item/stack/cable_coil,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/sigma/south/robotics)
"bzN" = (
/obj/structure/surface/table/almayer,
/obj/item/device/assembly/infra,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/engineering)
"bzP" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/omega/complex)
"bzQ" = (
/obj/structure/machinery/computer/pandemic,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/omega/complex)
"bzS" = (
/obj/structure/surface/table/almayer,
/obj/item/book/manual/engineering_guide,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"bzT" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/omega/complex)
"bzV" = (
/obj/structure/surface/table/almayer,
/obj/item/device/robotanalyzer,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"bzW" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/regular,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"bzY" = (
/obj/structure/surface/table/almayer,
/obj/item/device/mmi/radio_enabled,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/sigma/south/robotics)
"bzZ" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bAa" = (
/obj/structure/surface/table/almayer,
@@ -27694,115 +20648,77 @@
dir = 8
},
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/omega/complex)
"bAb" = (
/obj/structure/machinery/optable,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/morgue)
"bAd" = (
/obj/structure/curtain/open/medical,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"bAe" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"bAf" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"bAg" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
/obj/structure/medical_supply_link,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northeast,
/area/corsat/gamma/medbay)
"bAh" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/omega/complex)
"bAi" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/omega/complex)
"bAj" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/syringe_case/regular,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/omega/complex)
"bAk" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/east,
/area/corsat/gamma/medbay)
"bAl" = (
/obj/structure/machinery/chem_dispenser{
req_access_txt = "100"
},
/obj/item/reagent_container/glass/beaker/bluespace,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay/chemistry)
"bAm" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"bAn" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/omega/complex)
"bAo" = (
/obj/structure/bed/chair/wheelchair,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/lobby)
"bAp" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/bed/chair/wheelchair,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/lobby)
"bAq" = (
/obj/structure/surface/rack,
@@ -27814,55 +20730,39 @@
name = "Secure Racks";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"bAr" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/o2,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"bAs" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/fire,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"bAu" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/lobby)
"bAv" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/lobby)
"bAw" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Hydroponics Lab";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"bAx" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Laboratory";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bAy" = (
/obj/structure/surface/rack,
@@ -27875,41 +20775,28 @@
name = "Secure Racks";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/omega/complex)
"bAz" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/omega/complex)
"bAA" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay/lobby)
"bAB" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"bAC" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/hemostat,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay/surgery)
"bAD" = (
/obj/structure/machinery/light,
@@ -27922,9 +20809,7 @@
pixel_x = 12;
pixel_y = 2
},
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/surgery)
"bAE" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
@@ -27932,146 +20817,96 @@
name = "Genetics Lab";
req_one_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"bAF" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/omega/complex)
"bAG" = (
/obj/structure/closet/l3closet/virology,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/omega/complex)
"bAH" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay)
"bAI" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
name = "Emergency NanoMed";
pixel_x = 30
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay)
"bAJ" = (
/obj/structure/closet/l3closet/virology,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bAK" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/med_data/laptop{
pixel_y = 3
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bAL" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bAO" = (
/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"bAP" = (
/obj/structure/machinery/sleep_console,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/north,
/area/corsat/gamma/medbay)
"bAR" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/omega/complex)
"bAS" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/rad,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"bAT" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northeast,
/area/corsat/gamma/medbay)
"bAV" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"bAW" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/omega/complex)
"bAX" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southwest,
/area/corsat/gamma/medbay/surgery)
"bAY" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/retractor,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southeast,
/area/corsat/gamma/medbay/surgery)
"bAZ" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/regular,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southwest,
/area/corsat/gamma/medbay/lobby)
"bBa" = (
/obj/structure/machinery/light{
@@ -28083,10 +20918,7 @@
/obj/structure/surface/table/almayer,
/obj/item/device/defibrillator,
/obj/item/device/defibrillator,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay)
"bBc" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -28095,42 +20927,30 @@
req_one_access_txt = "103"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"bBd" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/med_data/laptop,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay)
"bBe" = (
/obj/structure/surface/table/almayer,
/obj/item/bodybag/cryobag,
/obj/item/bodybag/cryobag,
/obj/item/bodybag/cryobag,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"bBf" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"bBh" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay/surgery)
"bBj" = (
/obj/structure/surface/rack,
@@ -28141,19 +20961,14 @@
/obj/item/storage/pill_bottle/antitox{
pixel_x = -5
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay/chemistry)
"bBk" = (
/obj/structure/machinery/smartfridge/chemistry{
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/chemistry)
"bBl" = (
/obj/structure/surface/rack,
@@ -28168,50 +20983,36 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay/chemistry)
"bBm" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/syringes,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southwest,
/area/corsat/gamma/medbay/chemistry)
"bBn" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/almayer,
/obj/item/storage/box/pillbottles,
/obj/item/storage/box/pillbottles,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/chemistry)
"bBo" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/reagentgrinder,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/chemistry)
"bBp" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/beakers,
/obj/item/storage/box/beakers,
/obj/item/tool/hand_labeler,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/chemistry)
"bBq" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/regular,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/lobby)
"bBr" = (
/obj/structure/surface/table/almayer,
@@ -28219,9 +21020,7 @@
/obj/item/paper,
/obj/item/paper,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/lobby)
"bBs" = (
/obj/structure/machinery/light,
@@ -28229,48 +21028,34 @@
/obj/item/clipboard,
/obj/item/clipboard,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/lobby)
"bBt" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/lobby)
"bBu" = (
/obj/structure/machinery/light,
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"bBw" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bBx" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/omega/complex)
"bBy" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/adv,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/omega/complex)
"bBz" = (
/obj/structure/surface/table/almayer,
@@ -28279,60 +21064,39 @@
dir = 1;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/omega/complex)
"bBA" = (
/obj/structure/machinery/photocopier,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/omega/complex)
"bBB" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"bBC" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"bBD" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/gamma/residential/researcher)
"bBE" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/gloves,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/omega/complex)
"bBF" = (
/obj/item/storage/box/masks,
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/omega/complex)
"bBG" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bBH" = (
/obj/structure/surface/rack,
@@ -28345,16 +21109,11 @@
req_access_txt = "103"
},
/obj/item/oldresearch/Blood,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bBI" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"bBJ" = (
/obj/structure/surface/rack,
@@ -28367,9 +21126,7 @@
name = "Secure Racks";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"bBL" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -28383,27 +21140,20 @@
name = "Containment";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bBM" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/omega/complex)
"bBN" = (
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/omega/complex)
"bBO" = (
/obj/structure/window/reinforced{
@@ -28424,34 +21174,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"bBT" = (
/obj/structure/machinery/door/window/eastright,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"bBW" = (
/obj/structure/surface/table/almayer,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bBX" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/corsat/gamma/hangar)
"bBY" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/omega/complex)
"bBZ" = (
/obj/structure/surface/table/woodentable,
@@ -28465,10 +21204,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"bCb" = (
/obj/structure/bed/chair/wood/normal{
@@ -28483,19 +21219,13 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"bCd" = (
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"bCe" = (
/obj/structure/bookcase/manuals/medical,
@@ -28516,17 +21246,11 @@
icon_state = "book-5";
name = "\improper Mentor's Guide Bookcase"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"bCi" = (
/obj/structure/bookcase/manuals/research_and_development,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"bCj" = (
/obj/structure/surface/rack,
@@ -28536,9 +21260,7 @@
req_access_txt = "103"
},
/obj/structure/window/reinforced/toughened,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"bCk" = (
/obj/structure/bookcase/manuals/research_and_development,
@@ -28550,10 +21272,7 @@
/area/corsat/gamma/rnr/library)
"bCn" = (
/obj/structure/bookcase,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"bCo" = (
/obj/structure/bed/chair/wood/normal,
@@ -28568,20 +21287,14 @@
/obj/structure/bed/chair/wood/normal{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"bCr" = (
/obj/structure/machinery/light,
/obj/structure/bed/chair/wood/normal{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"bCu" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -28589,44 +21302,30 @@
req_access_txt = "103"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bCv" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bCw" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/gamma/security)
"bCx" = (
/obj/structure/bed/chair/comfy/beige,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/security)
"bCy" = (
/obj/structure/bed/chair/comfy/beige,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"bCB" = (
/obj/structure/machinery/vending/cigarette/colony,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security)
"bCD" = (
/obj/item/storage/belt/gun/m4a3/vp78{
@@ -28639,18 +21338,13 @@
/obj/item/device/flash,
/obj/item/device/hailer,
/obj/item/device/megaphone,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/security)
"bCE" = (
/obj/structure/bed/chair/comfy/lime{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/security)
"bCF" = (
/obj/structure/closet/secure_closet/security_empty{
@@ -28666,10 +21360,7 @@
/obj/item/clothing/accessory/storage/holster/armpit,
/obj/item/device/binoculars,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/gamma/security)
"bCG" = (
/obj/structure/machinery/door_control{
@@ -28685,17 +21376,12 @@
pixel_y = -24;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security)
"bCH" = (
/obj/item/storage/toolbox/mechanical,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security)
"bCI" = (
/obj/structure/window/framed/corsat/security,
@@ -28709,50 +21395,35 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/cargo)
"bCL" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/checkpoint)
"bCM" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"bCN" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/id)
"bCQ" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"bCR" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"bCS" = (
/obj/structure/window/framed/corsat/security,
@@ -28776,10 +21447,7 @@
/obj/structure/machinery/computer/secure_data{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/airlock/south/id)
"bCX" = (
/obj/structure/window/framed/corsat/security,
@@ -28792,17 +21460,11 @@
/area/corsat/gamma/airlock/south)
"bCZ" = (
/obj/structure/machinery/r_n_d/destructive_analyzer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"bDa" = (
/obj/structure/machinery/computer/rdservercontrol,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"bDd" = (
/obj/item/storage/belt/security/MP/full,
@@ -28813,33 +21475,22 @@
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/security)
"bDe" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/security)
"bDf" = (
/obj/structure/closet/secure_closet/guncabinet{
name = "riot cabinet";
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"bDg" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"bDk" = (
/obj/item/storage/belt/security/MP/full,
@@ -28850,17 +21501,11 @@
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"bDl" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/security)
"bDn" = (
/obj/structure/machinery/light{
@@ -28878,34 +21523,23 @@
/area/corsat/omega/security)
"bDs" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/south/security)
"bDt" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/south/security)
"bDu" = (
/obj/structure/surface/table/almayer,
/obj/item/restraint/handcuffs,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/checkpoint)
"bDv" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Security Armory";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"bDw" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -28915,9 +21549,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"bDy" = (
/obj/structure/machinery/light{
@@ -28926,43 +21558,31 @@
/obj/structure/bed/chair/comfy/black{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/south/security)
"bDz" = (
/obj/structure/window/reinforced{
dir = 4;
health = 80
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/security)
"bDC" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"bDD" = (
/obj/structure/bed/chair,
/obj/structure/machinery/flasher{
pixel_y = 24
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/south/security)
"bDF" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/south/security)
"bDH" = (
/obj/structure/window/framed/corsat/cell/security,
@@ -28978,10 +21598,7 @@
/obj/structure/machinery/computer/secure_data{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/theta/airlock/west/id)
"bDJ" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -28996,9 +21613,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"bDM" = (
/obj/structure/pipes/vents/pump/siphon/on{
@@ -29012,33 +21627,21 @@
dir = 5
},
/obj/structure/machinery/meter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/airlock/control)
"bDO" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/skills,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/gamma/administration)
"bDP" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/keycard_auth/lockdown/corsat,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/administration)
"bDT" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/gamma/airlock/control)
"bDU" = (
/obj/structure/surface/table/reinforced,
@@ -29046,57 +21649,37 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/checkpoint)
"bDX" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/airlock/south/id)
"bDY" = (
/obj/item/device/taperecorder,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/security)
"bDZ" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/mechanical,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"bEb" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/southeast/datalab)
"bEf" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/complex)
"bEg" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/robotics)
"bEi" = (
/obj/structure/surface/table/reinforced,
@@ -29105,63 +21688,45 @@
name = "Checkpoint Control";
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/hangar/security)
"bEj" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/control)
"bEk" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/control)
"bEl" = (
/obj/structure/machinery/light,
/obj/structure/machinery/cm_vending/sorted/medical/no_access{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/chemistry)
"bEm" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"bEn" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/control)
"bEo" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar/security)
"bEp" = (
/obj/structure/surface/table/reinforced,
@@ -29177,40 +21742,27 @@
pixel_x = -7;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/hangar/security)
"bEq" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hangar/security)
"bEr" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"bEs" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"bEt" = (
/obj/structure/surface/table/reinforced,
/obj/item/phone,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hangar/security)
"bEv" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -29218,25 +21770,18 @@
name = "Research Complex Omega";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"bEy" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Laboratory";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"bEC" = (
/obj/structure/machinery/lapvend,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/administration)
"bED" = (
/obj/structure/machinery/power/apc/high{
@@ -29247,10 +21792,7 @@
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/administration)
"bEE" = (
/obj/structure/machinery/light{
@@ -29261,10 +21803,7 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/administration)
"bEF" = (
/obj/structure/machinery/disposal,
@@ -29283,24 +21822,16 @@
"bEI" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/communications,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/administration)
"bEK" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/corsat/gamma/administration)
"bEM" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bEN" = (
/obj/structure/surface/table/almayer,
@@ -29308,21 +21839,13 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"bEO" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/corsat/gamma/administration)
"bES" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet11-12"
- },
+/turf/open/floor/carpet11_12/west,
/area/corsat/gamma/administration)
"bET" = (
/obj/structure/machinery/photocopier,
@@ -29337,9 +21860,7 @@
/obj/structure/machinery/computer/med_data/laptop{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/administration)
"bEV" = (
/obj/structure/surface/table/almayer,
@@ -29349,38 +21870,27 @@
/obj/structure/machinery/computer/station_alert{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/administration)
"bEW" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/corsat/gamma/administration)
"bEX" = (
/obj/structure/machinery/light,
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/corsat/gamma/administration)
"bFc" = (
/obj/structure/machinery/vending/cola,
/turf/open/floor/wood,
/area/corsat/sigma/cafe)
"bFf" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet6-2"
- },
+/turf/open/floor/carpet6_2/west,
/area/corsat/omega/offices)
"bFg" = (
/obj/structure/surface/table/almayer,
@@ -29390,9 +21900,7 @@
},
/obj/structure/window/reinforced,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bFi" = (
/obj/structure/machinery/light{
@@ -29402,30 +21910,20 @@
/obj/structure/window/reinforced,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bFj" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bFm" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/corsat/omega/offices)
"bFn" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/device/flashlight/lamp/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/omega/offices)
"bFo" = (
/obj/structure/surface/table/almayer,
@@ -29435,23 +21933,16 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bFp" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/south/offices)
"bFq" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/security)
"bFr" = (
/obj/structure/window/reinforced{
@@ -29461,16 +21952,11 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/security)
"bFs" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security)
"bFt" = (
/obj/structure/machinery/light{
@@ -29478,141 +21964,99 @@
},
/obj/structure/window/reinforced,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/security)
"bFu" = (
/obj/structure/window/reinforced,
/obj/structure/machinery/door/window/brigdoor/eastleft{
name = "Forensics"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/security)
"bFv" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/security)
"bFw" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security)
"bFx" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/gamma/security)
"bFy" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/gamma/security)
"bFz" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Holding Cell 1";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"bFA" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/bronze,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security)
"bFB" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/gamma/security)
"bFC" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security)
"bFD" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/gamma/security)
"bFF" = (
/obj/structure/surface/table/almayer,
/obj/item/restraint/handcuffs,
/obj/item/restraint/handcuffs,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/security)
"bFG" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security)
"bFH" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/gloves/latex,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/security)
"bFI" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/taperecorder,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/security)
"bFK" = (
/obj/structure/surface/table/almayer,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/security)
"bFL" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/gamma/residential/maint)
"bFM" = (
/obj/structure/surface/table/almayer,
@@ -29622,10 +22066,7 @@
/obj/structure/machinery/computer/station_alert{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"bFN" = (
/obj/structure/surface/table/almayer,
@@ -29637,17 +22078,11 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"bFO" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/gamma/hangar/flightcontrol)
"bFP" = (
/obj/structure/surface/table/almayer,
@@ -29657,9 +22092,7 @@
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"bFQ" = (
/obj/structure/surface/table/almayer,
@@ -29668,71 +22101,48 @@
health = 250
},
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"bFR" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/hangar/flightcontrol)
"bFT" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"bFU" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/gamma/hangar/flightcontrol)
"bFV" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"bFW" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"bFX" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/gamma/hangar/flightcontrol)
"bFY" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"bFZ" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"bGa" = (
/obj/structure/surface/table/almayer,
@@ -29740,23 +22150,15 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bGc" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/hangar/flightcontrol)
"bGd" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/hangar/flightcontrol)
"bGe" = (
/obj/structure/surface/table/almayer,
@@ -29765,9 +22167,7 @@
health = 80
},
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"bGf" = (
/obj/structure/surface/table/almayer,
@@ -29777,9 +22177,7 @@
},
/obj/item/clipboard,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"bGg" = (
/obj/structure/surface/table/almayer,
@@ -29787,9 +22185,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bGh" = (
/obj/structure/surface/table/almayer,
@@ -29797,9 +22193,7 @@
dir = 4
},
/obj/item/storage/donut_box,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"bGi" = (
/obj/structure/surface/table/almayer,
@@ -29808,22 +22202,15 @@
health = 80
},
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"bGj" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/residential/maint)
"bGn" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/residential/maint)
"bGp" = (
/obj/structure/machinery/power/apc/hyper{
@@ -29831,16 +22218,11 @@
start_charge = 0
},
/obj/structure/bed/sofa/vert/grey/bot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/monorail)
"bGq" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/hangar/monorail/control)
"bGr" = (
/obj/structure/machinery/power/apc/hyper{
@@ -29849,27 +22231,18 @@
start_charge = 0
},
/obj/structure/closet/jcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/hangar/monorail/control)
"bGs" = (
/obj/structure/surface/table/reinforced,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/monorail/control)
"bGt" = (
/obj/structure/janitorialcart,
/obj/item/tool/mop,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/hangar/monorail/control)
"bGu" = (
/obj/structure/machinery/power/apc/hyper{
@@ -29877,10 +22250,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar/monorail)
"bGy" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -29889,53 +22259,37 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/monorail/control)
"bGB" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/sigma/hangar/arrivals)
"bGE" = (
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
/obj/structure/bed/sofa/vert/grey/bot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar/arrivals)
"bGH" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/office)
"bGI" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/landing/console)
"bGJ" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/hangar/office)
"bGL" = (
/obj/structure/flora/pottedplant,
@@ -29943,29 +22297,21 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/hangar/office)
"bGM" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/hangar/office)
"bGN" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/office)
"bGO" = (
/obj/structure/surface/table/almayer,
@@ -29973,118 +22319,81 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/hangar/office)
"bGP" = (
/obj/structure/prop/dam/crane,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"bGQ" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/gamma/foyer)
"bGR" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/foyer)
"bGT" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/foyer)
"bGW" = (
/obj/structure/pipes/standard/simple/visible{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay)
"bGZ" = (
/obj/structure/bed/chair,
/obj/item/bananapeel,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"bHa" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet9-4"
- },
+/turf/open/floor/carpet9_4/west,
/area/corsat/gamma/administration)
"bHb" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet5-1"
- },
+/turf/open/floor/carpet5_1/west,
/area/corsat/gamma/administration)
"bHc" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/security)
"bHd" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/gamma/residential/researcher)
"bHe" = (
/obj/structure/surface/table,
/obj/item/book,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"bHf" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/foyer)
"bHg" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"bHi" = (
/obj/structure/machinery/light{
@@ -30093,10 +22402,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/researcher)
"bHj" = (
/obj/structure/machinery/light{
@@ -30105,70 +22411,48 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/researcher)
"bHk" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/rnr)
"bHl" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/gamma/residential/east)
"bHy" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/plastic,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"bHz" = (
/obj/structure/showcase{
icon_state = "bus"
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"bHA" = (
/obj/structure/surface/table,
/obj/item/trash/plate,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"bHB" = (
/obj/structure/surface/table,
/obj/item/trash/plate,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/canteen)
"bHC" = (
/obj/structure/machinery/botany{
name = "hydroponics tray"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hydroponics)
"bHL" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar/arrivals)
"bHR" = (
/obj/structure/surface/table/woodentable,
@@ -30179,24 +22463,18 @@
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/hangar/office)
"bIe" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"bIk" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/sigma/hangar/arrivals)
"bIU" = (
/obj/structure/surface/table/reinforced,
@@ -30204,96 +22482,63 @@
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/south/id)
"bIX" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/south/offices)
"bJa" = (
/obj/structure/machinery/conveyor_switch,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/cargo)
"bJc" = (
/obj/structure/machinery/conveyor_switch,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"bJf" = (
/obj/structure/surface/table,
/obj/item/tool/kitchen/utensil/fork,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"bJg" = (
/obj/structure/surface/table,
/obj/item/tool/kitchen/utensil/fork,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/canteen)
"bJh" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/omega/offices)
"bJi" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/donkpockets,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/security)
"bJj" = (
/obj/vehicle/powerloader,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"bJk" = (
/obj/vehicle/powerloader,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/sigma/cargo)
"bJl" = (
/obj/vehicle/powerloader,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/omega/cargo)
"bJm" = (
/obj/structure/powerloader_wreckage,
-/turf/open/mars_cave{
- icon_state = "mars_cave_22"
- },
+/turf/open/mars_cave/mars_cave_22,
/area/corsat/sigma/biodome/scrapyard)
"bJq" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/theta/airlock/west)
"bJr" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/west)
"bJu" = (
/obj/structure/machinery/light,
@@ -30301,59 +22546,39 @@
/obj/structure/machinery/computer/station_alert{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/theta/airlock/west)
"bJw" = (
/obj/structure/surface/table/almayer,
/obj/item/device/assembly/infra,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/gamma/engineering)
"bJx" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/guestpass,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/hangar/cargo)
"bJA" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northeast,
/area/corsat/gamma/airlock/control)
"bJB" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northwest,
/area/corsat/sigma/airlock/control)
"bJC" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"bJD" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northwest,
/area/corsat/gamma/airlock/control)
"bJE" = (
/obj/structure/machinery/floodlight{
@@ -30365,81 +22590,59 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"bJG" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"bJH" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/donut_box,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/theta/airlock/control)
"bJI" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bJJ" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bJK" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"bJL" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"bJM" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"bJN" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/gamma/airlock/control)
"bJO" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/atmos_alert{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southeast,
/area/corsat/gamma/airlock/control)
"bJP" = (
/obj/structure/surface/table/reinforced,
@@ -30447,10 +22650,7 @@
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southwest,
/area/corsat/sigma/airlock/control)
"bJQ" = (
/obj/structure/surface/table/reinforced,
@@ -30458,67 +22658,46 @@
dir = 4;
network = list("theta")
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northwest,
/area/corsat/theta/airlock/control)
"bJR" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/atmos_alert{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northeast,
/area/corsat/theta/airlock/control)
"bJS" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"bJT" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"bJU" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/theta/airlock/control)
"bJV" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"bJW" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"bJX" = (
/obj/structure/surface/table/almayer,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southeast,
/area/corsat/sigma/airlock/control)
"bJY" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -30533,16 +22712,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bJZ" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"bKa" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -30555,24 +22729,16 @@
name = "Access Shutter"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bKb" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/theta/airlock/control)
"bKc" = (
/obj/structure/surface/table/almayer,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southwest,
/area/corsat/theta/airlock/control)
"bKd" = (
/obj/structure/surface/table/reinforced,
@@ -30581,45 +22747,29 @@
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"bKe" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"bKf" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northeast,
/area/corsat/sigma/airlock/control)
"bKg" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southwest,
/area/corsat/gamma/airlock/control)
"bKh" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/gamma/airlock/control)
"bKi" = (
/obj/structure/surface/table/reinforced,
/obj/item/paper_bin,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/gamma/airlock/control)
"bKj" = (
/obj/structure/surface/table/reinforced,
@@ -30629,157 +22779,104 @@
dir = 8;
network = list("theta")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/theta/airlock/control)
"bKk" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/theta/airlock/control)
"bKl" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southeast,
/area/corsat/theta/airlock/control)
"bKm" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northeast,
/area/corsat/sigma/airlock/control)
"bKn" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/gamma/airlock/control)
"bKo" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bKp" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"bKq" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bKr" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/gamma/airlock/control)
"bKs" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"bKt" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/theta/airlock/control)
"bKv" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/theta/airlock/control)
"bKw" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/theta/airlock/control)
"bKx" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southeast,
/area/corsat/theta/airlock/control)
"bKy" = (
/obj/structure/machinery/computer3,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/gamma/airlock/control)
"bKz" = (
/obj/structure/machinery/computer3,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"bKA" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southeast,
/area/corsat/sigma/airlock/control)
"bKB" = (
/obj/structure/machinery/computer3,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/theta/airlock/control)
"bKC" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southwest,
/area/corsat/theta/airlock/control)
"bKD" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northeast,
/area/corsat/sigma/dorms)
"bKE" = (
/obj/structure/machinery/light{
@@ -30788,10 +22885,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/sigma/dorms)
"bKF" = (
/obj/structure/machinery/light{
@@ -30800,99 +22894,65 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/sigma/dorms)
"bKG" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/sigma/dorms)
"bKH" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/sigma/dorms)
"bKI" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/sigma/dorms)
"bKJ" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/sigma/dorms)
"bKK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"bKL" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southwest,
/area/corsat/sigma/dorms)
"bKM" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/sigma/dorms)
"bKN" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/gamma/administration)
"bKQ" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/monorail/control)
"bKR" = (
/obj/structure/bed/chair/comfy/black{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/monorail/control)
"bKS" = (
/obj/structure/surface/table/reinforced,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/monorail/control)
"bKT" = (
/obj/structure/machinery/light{
@@ -30900,29 +22960,18 @@
},
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/monorail/control)
"bKU" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/sigma/hangar/monorail)
"bKX" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/hangar/monorail)
"bKY" = (
/obj/structure/closet/jcloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/omega/maint)
"bKZ" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -30931,257 +22980,169 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/monorail/control)
"bLc" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/hangar/monorail)
"bLd" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/monorail/control)
"bLg" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/hangar/monorail/control)
"bLh" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/monorail/control)
"bLi" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/monorail/control)
"bLk" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/airlock,
/obj/item/circuitboard/airlock,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/gamma/residential/maint)
"bLl" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/omega/maint)
"bLm" = (
/obj/structure/closet/jcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/monorail/control)
"bLn" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/shuttle_control/monorail{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/monorail/control)
"bLq" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/closet/jcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/monorail/control)
"bLr" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/hangar/monorail/control)
"bLs" = (
/obj/structure/closet/secure_closet/engineering_welding{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/maint)
"bLu" = (
/obj/structure/janitorialcart,
/obj/item/tool/mop,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/monorail/control)
"bLw" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/hangar/office)
"bLx" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"bLy" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/omega/maint)
"bLz" = (
/obj/structure/closet/secure_closet/engineering_electrical{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/maint)
"bLA" = (
/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering)
"bLB" = (
/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/gamma/engineering)
"bLC" = (
/obj/structure/janitorialcart,
/obj/item/tool/mop,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/omega/maint)
"bLD" = (
/obj/structure/closet/l3closet/janitor,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/omega/maint)
"bLE" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/omega/maint)
"bLF" = (
/obj/structure/machinery/power/monitor{
name = "Main Power Grid Monitoring"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/omega/maint)
"bLG" = (
/obj/structure/surface/rack,
/obj/item/stock_parts/capacitor/super,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/omega/maint)
"bLI" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Custodial Closet";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"bLL" = (
/obj/structure/surface/rack,
/obj/item/device/lightreplacer,
/obj/item/storage/box/lights,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/omega/maint)
"bLM" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/omega/maint)
"bLO" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer3/laptop/secure_data,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/maint)
"bLQ" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/omega/maint)
"bLR" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/omega/maint)
"bLS" = (
/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/omega/maint)
"bLT" = (
/obj/structure/surface/table/almayer,
@@ -31192,50 +23153,32 @@
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/maint)
"bLW" = (
/obj/structure/surface/table/almayer,
/obj/item/stock_parts/matter_bin/super,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/maint)
"bLY" = (
/obj/structure/closet/secure_closet/engineering_personal{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/omega/maint)
"bMb" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/omega/maint)
"bMc" = (
/obj/structure/closet/secure_closet/engineering_personal{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/engineering)
"bMf" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/omega/maint)
"bMh" = (
/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{
@@ -31244,31 +23187,20 @@
req_one_access_txt = "100"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"bMi" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/omega/maint)
"bMj" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/maint)
"bMk" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/omega/maint)
"bMm" = (
/obj/structure/surface/rack,
@@ -31280,52 +23212,35 @@
/obj/item/stack/sheet/plasteel{
amount = 10
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/omega/maint)
"bMo" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/omega/maint)
"bMp" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/glasses/meson,
/obj/effect/spawner/random/tool,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/omega/maint)
"bMu" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"bMv" = (
/obj/structure/surface/table/almayer,
/obj/item/device/assembly/timer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering)
"bMw" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/gamma/engineering/lobby)
"bMA" = (
/obj/structure/machinery/light,
@@ -31333,9 +23248,7 @@
/obj/structure/machinery/computer/communications{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"bMB" = (
/obj/structure/machinery/light,
@@ -31343,9 +23256,7 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"bMC" = (
/obj/structure/surface/table/almayer,
@@ -31355,10 +23266,7 @@
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"bMD" = (
/obj/structure/surface/table/almayer,
@@ -31367,9 +23275,7 @@
health = 80
},
/obj/item/ashtray/bronze,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"bME" = (
/obj/structure/surface/table/almayer,
@@ -31378,9 +23284,7 @@
health = 80
},
/obj/item/paper,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"bMI" = (
/obj/structure/surface/table/almayer,
@@ -31388,79 +23292,52 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bMM" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/omega/offices)
"bMN" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/omega/offices)
"bMO" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/omega/offices)
"bMP" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/donut_box,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/omega/offices)
"bMQ" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/omega/offices)
"bMR" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/southeast/dataoffice)
"bMS" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/southeast/dataoffice)
"bMT" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/plastic,
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/sigma/southeast/dataoffice)
"bMU" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/sigma/southeast/dataoffice)
"bMX" = (
/obj/structure/machinery/light{
@@ -31468,10 +23345,7 @@
},
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/southeast/dataoffice)
"bMY" = (
/obj/structure/surface/table/almayer,
@@ -31479,41 +23353,29 @@
/obj/item/paper,
/obj/item/tool/pen/blue,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/southeast/dataoffice)
"bNb" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/donut_box,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bNc" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bNd" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/omega/offices)
"bNe" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"bNh" = (
/obj/structure/surface/table/almayer,
@@ -31522,9 +23384,7 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/southeast/dataoffice)
"bNi" = (
/obj/structure/surface/table/almayer,
@@ -31533,39 +23393,29 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/southeast/dataoffice)
"bNj" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bNk" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"bNl" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bNm" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bNo" = (
/obj/structure/surface/table/almayer,
@@ -31573,10 +23423,7 @@
pixel_y = 32
},
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/omega/offices)
"bNp" = (
/obj/structure/surface/table/almayer,
@@ -31586,35 +23433,24 @@
/obj/structure/noticeboard{
pixel_y = 32
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/omega/offices)
"bNq" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/southeast/dataoffice)
"bNr" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/sigma/southeast/dataoffice)
"bNs" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/southeast/dataoffice)
"bNt" = (
/obj/structure/surface/table/almayer,
@@ -31623,40 +23459,27 @@
},
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/southeast/dataoffice)
"bNu" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/southeast/dataoffice)
"bNv" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southeast,
/area/corsat/omega/offices)
"bNw" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/sigma/south/offices)
"bNx" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/south/offices)
"bNy" = (
/obj/structure/surface/table/almayer,
@@ -31664,10 +23487,7 @@
/obj/item/paper,
/obj/item/tool/pen/blue,
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/sigma/south/offices)
"bNz" = (
/obj/structure/machinery/light{
@@ -31676,10 +23496,7 @@
/obj/structure/surface/table/almayer,
/obj/structure/window/reinforced,
/obj/item/storage/donut_box,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/south/offices)
"bNA" = (
/obj/structure/machinery/light{
@@ -31687,33 +23504,24 @@
},
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/south/offices)
"bNB" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/bronze,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/south/offices)
"bNC" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/south/offices)
"bND" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/south/offices)
"bNE" = (
/obj/structure/surface/table/almayer,
@@ -31721,18 +23529,13 @@
/obj/item/paper,
/obj/item/tool/pen/blue,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/south/offices)
"bNF" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/south/offices)
"bNI" = (
/obj/structure/machinery/light{
@@ -31740,38 +23543,25 @@
},
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/south/offices)
"bNJ" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/sigma/south/offices)
"bNK" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southeast,
/area/corsat/sigma/south/offices)
"bNM" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"bNN" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering/lobby)
"bNO" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -31780,31 +23570,21 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"bNP" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/corsat/sigma/cargo)
"bNQ" = (
/obj/structure/machinery/autolathe,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering)
"bNR" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/apc,
/obj/item/circuitboard/apc,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/residential/maint)
"bNS" = (
/obj/structure/machinery/light{
@@ -31813,64 +23593,41 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/gamma/engineering)
"bNT" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/gamma/engineering)
"bNW" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/gamma/engineering)
"bNX" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/engineering)
"bNY" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/gamma/engineering)
"bNZ" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/extinguisher,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/engineering)
"bOa" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northwest,
/area/corsat/omega/control)
"bOb" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/almayer,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering)
"bOc" = (
/obj/structure/surface/table/almayer,
@@ -31881,56 +23638,37 @@
},
/obj/item/pamphlet/skill/powerloader,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/cargo)
"bOd" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/lighter/random,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/cargo)
"bOe" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northeast,
/area/corsat/omega/control)
"bOf" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/sigma/cargo)
"bOg" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/sigma/cargo)
"bOh" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/corsat/sigma/cargo)
"bOi" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/sigma/cargo)
"bOj" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -31939,162 +23677,109 @@
name = "Virology Lockdown"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"bOl" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/sigma/cargo)
"bOm" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"bOn" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/corsat/sigma/cargo)
"bOo" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/sigma/cargo)
"bOp" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/corsat/sigma/cargo)
"bOq" = (
/obj/structure/machinery/light,
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/sigma/cargo)
"bOr" = (
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/omega/cargo)
"bOs" = (
/obj/structure/largecrate/lisa,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/omega/cargo)
"bOt" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/omega/cargo)
"bOu" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/omega/cargo)
"bOw" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/omega/cargo)
"bOx" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/omega/cargo)
"bOy" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/omega/cargo)
"bOA" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/omega/cargo)
"bOB" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/omega/cargo)
"bOC" = (
/obj/structure/surface/table/almayer,
/obj/item/pamphlet/skill/powerloader,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"bOD" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/omega/cargo)
"bOE" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/almayer,
/obj/item/trash/popcorn,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/omega/cargo)
"bOF" = (
/obj/structure/machinery/light,
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/omega/cargo)
"bOG" = (
/obj/structure/surface/rack,
/obj/item/cell/high,
/obj/item/cell/high,
/obj/item/cell/high,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/residential/maint)
"bOH" = (
/obj/structure/machinery/power/apc/high{
@@ -32104,200 +23789,133 @@
},
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/corsat/gamma/cargo/lobby)
"bOI" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/gamma/cargo/lobby)
"bOJ" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/omega/maint)
"bOK" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/maint)
"bOL" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"bON" = (
/obj/structure/machinery/autolathe,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/omega/maint)
"bOP" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/omega/maint)
"bOQ" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"bOR" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/bronze,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"bOS" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
/obj/item/tool/crowbar,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/gamma/hangar/cargo)
"bOT" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/gamma/hangar/cargo)
"bOU" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/rnr)
"bOV" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/gamma/hangar/arrivals)
"bOW" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/gamma/hangar/arrivals)
"bOX" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/hangar/checkpoint)
"bOY" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/hangar/checkpoint)
"bOZ" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/checkpoint)
"bPa" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/checkpoint)
"bPb" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"bPe" = (
/obj/structure/surface/table/almayer,
/obj/item/robot_parts/robot_component/radio,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/south/robotics)
"bPf" = (
/obj/structure/machinery/light,
/obj/structure/surface/rack,
/obj/item/device/radio,
/obj/item/device/radio,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/residential/maint)
"bPg" = (
/obj/structure/surface/rack,
/obj/item/device/lightreplacer,
/obj/item/storage/box/lights,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/residential/maint)
"bPh" = (
/obj/structure/surface/rack,
/obj/item/tool/wet_sign,
/obj/item/tool/wet_sign,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/hangar/monorail/control)
"bPi" = (
/obj/structure/surface/table,
/obj/item/corncob,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"bPj" = (
/obj/structure/surface/table/almayer,
/obj/item/device/assembly/mousetrap,
/obj/item/device/assembly/mousetrap,
/obj/item/clothing/glasses/welding,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/gamma/engineering)
"bPk" = (
/obj/structure/machinery/light{
@@ -32307,33 +23925,21 @@
/obj/item/reagent_container/glass/bucket,
/obj/item/storage/bag/trash,
/obj/item/storage/bag/trash,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/southeast/datamaint)
"bPl" = (
/obj/structure/closet/jcloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/southeast/datamaint)
"bPm" = (
/obj/structure/surface/table/almayer,
/obj/item/device/radio,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/gamma/engineering)
"bPn" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/corsat/sigma/cargo)
"bPp" = (
/obj/structure/surface/table/almayer,
@@ -32342,93 +23948,63 @@
/obj/item/tool/stamp{
name = "Quartermaster's stamp"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/sigma/cargo)
"bPq" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/sigma/cargo)
"bPr" = (
/obj/structure/closet/secure_closet/quartermaster,
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/corsat/sigma/cargo)
"bPs" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"bPt" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/complex)
"bPv" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/sigma/cargo)
"bPw" = (
/obj/structure/surface/table/almayer,
/obj/item/pamphlet/skill/powerloader,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"bPx" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigar,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"bPy" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/corsat/sigma/cargo)
"bPC" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/chips,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"bPD" = (
/obj/structure/surface/table/almayer,
/obj/item/device/radio,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"bPE" = (
/obj/structure/surface/table/almayer,
/obj/item/pizzabox/meat{
pixel_y = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/sigma/cargo)
"bPG" = (
/obj/structure/surface/table/almayer,
@@ -32437,47 +24013,32 @@
pixel_x = 3;
pixel_y = 3
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/sigma/cargo)
"bPH" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/corsat/sigma/cargo)
"bPI" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen,
/obj/item/pamphlet/skill/powerloader,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/sigma/cargo)
"bPJ" = (
/obj/structure/machinery/light,
/obj/structure/closet/secure_closet/cargotech,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/sigma/cargo)
"bPK" = (
/obj/structure/closet/secure_closet/cargotech,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/sigma/cargo)
"bPL" = (
/obj/structure/closet/secure_closet/cargotech,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/corsat/sigma/cargo)
"bPM" = (
/obj/structure/machinery/power/apc/high{
@@ -32485,26 +24046,17 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/north)
"bPO" = (
/obj/structure/surface/rack,
/obj/item/storage/box/lights,
/obj/item/device/lightreplacer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/north)
"bPQ" = (
/obj/structure/machinery/computer/general_air_control,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"bPR" = (
/obj/structure/machinery/power/apc/hyper{
@@ -32512,20 +24064,14 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/gamma/engineering/atmos)
"bPS" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/gamma/engineering/atmos)
"bPV" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -32535,38 +24081,27 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"bPW" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"bPX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"bPY" = (
/obj/structure/surface/rack,
/obj/item/reagent_container/glass/bucket,
/obj/item/reagent_container/glass/bucket,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/north)
"bPZ" = (
/obj/structure/pipes/standard/simple/visible,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"bQa" = (
/obj/structure/machinery/light{
@@ -32575,33 +24110,22 @@
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/north)
"bQb" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/north)
"bQc" = (
/obj/structure/closet/jcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/north)
"bQd" = (
/obj/structure/janitorialcart,
/obj/item/tool/mop,
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/north)
"bQe" = (
/obj/structure/machinery/power/apc/high{
@@ -32613,10 +24137,7 @@
/obj/item/stack/sheet/mineral/phoron{
amount = 15
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/gamma/engineering)
"bQf" = (
/obj/structure/closet/crate,
@@ -32626,10 +24147,7 @@
/obj/item/stack/sheet/glass{
amount = 30
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"bQg" = (
/obj/structure/closet/crate,
@@ -32639,19 +24157,13 @@
/obj/item/stack/sheet/wood{
amount = 10
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"bQh" = (
/obj/structure/surface/rack,
/obj/item/device/lightreplacer,
/obj/item/light_bulb/tube/large,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"bQi" = (
/obj/structure/surface/rack,
@@ -32661,65 +24173,43 @@
/obj/item/device/assembly/timer,
/obj/item/device/assembly/prox_sensor,
/obj/item/device/assembly/prox_sensor,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"bQj" = (
/obj/structure/surface/rack,
/obj/item/cell,
/obj/item/cell,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"bQk" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northwest,
/area/corsat/omega/control)
"bQl" = (
/obj/structure/machinery/portable_atmospherics/canister/nitrogen,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering/atmos)
"bQm" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/gamma/engineering/lobby)
"bQn" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering/lobby)
"bQo" = (
/obj/structure/janitorialcart,
/obj/item/tool/mop,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/sigma/north)
"bQp" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/plasteel{
amount = 10
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering)
"bQq" = (
/obj/structure/closet/crate,
@@ -32728,24 +24218,17 @@
pixel_x = 2;
pixel_y = 2
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering)
"bQr" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering)
"bQs" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/engineering)
"bQt" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
@@ -32768,18 +24251,13 @@
/obj/structure/surface/rack,
/obj/item/device/lightreplacer,
/obj/item/storage/box/lights,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/southeast/datamaint)
"bQx" = (
/obj/structure/pipes/standard/simple/visible{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"bQy" = (
/turf/open/floor/corsat,
@@ -32789,46 +24267,33 @@
/obj/structure/surface/rack,
/obj/item/storage/belt/utility/full,
/obj/item/device/multitool,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/southeast/datamaint)
"bQB" = (
/obj/structure/machinery/meter,
/obj/structure/pipes/standard/simple/visible{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"bQC" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/sigma/southeast/datamaint)
"bQE" = (
/obj/structure/pipes/binary/pump/on{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"bQF" = (
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/southeast)
"bQG" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer3/laptop/secure_data,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"bQH" = (
/obj/structure/machinery/portable_atmospherics/canister/nitrogen,
@@ -32839,36 +24304,26 @@
dir = 4
},
/obj/structure/machinery/portable_atmospherics/powered/pump,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering/atmos)
"bQK" = (
/obj/item/tool/wet_sign,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/southeast/datamaint)
"bQL" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"bQM" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"bQN" = (
/obj/structure/window/framed/corsat,
@@ -32878,48 +24333,32 @@
/obj/structure/surface/rack,
/obj/item/cell/high,
/obj/item/cell/high,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/southeast/datamaint)
"bQP" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering/atmos)
"bQQ" = (
/obj/structure/machinery/portable_atmospherics/powered/pump,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/gamma/engineering/atmos)
"bQR" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/item/tool/wet_sign,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/maint)
"bQS" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/emails,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/omega/control)
"bQT" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/glasses/science,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bQU" = (
/obj/structure/machinery/light{
@@ -32927,66 +24366,46 @@
},
/obj/structure/surface/table/almayer,
/obj/item/clothing/glasses/meson,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering)
"bQV" = (
/obj/structure/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/corsat,
/area/corsat/inaccessible)
"bQW" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/complex)
"bQX" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering)
"bQY" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/plastic,
/obj/item/clothing/glasses/welding,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"bQZ" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"bRa" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/security)
"bRc" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"bRd" = (
/obj/item/device/analyzer/plant_analyzer,
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"bRe" = (
/obj/item/reagent_container/glass/bucket,
@@ -32995,16 +24414,11 @@
/obj/item/tool/minihoe,
/obj/item/tool/hatchet,
/obj/item/tool/shovel/spade,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/theta/biodome/complex)
"bRf" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/security)
"bRg" = (
/obj/structure/window/framed/corsat/security,
@@ -33025,35 +24439,24 @@
name = "Privacy Shutters"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"bRj" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/omega/offices)
"bRk" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/checkpoint)
"bRn" = (
/obj/structure/surface/rack,
/obj/item/restraint/handcuffs,
/obj/item/restraint/handcuffs,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/checkpoint)
"bRo" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -33061,9 +24464,7 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/complex)
"bRp" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -33072,17 +24473,12 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"bRq" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"bRr" = (
/obj/structure/closet/secure_closet{
@@ -33092,33 +24488,24 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"bRv" = (
/obj/structure/window/reinforced{
dir = 4;
health = 80
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/security)
"bRw" = (
/obj/item/clothing/gloves/latex,
/obj/structure/surface/table/reinforced,
/obj/item/clothing/gloves/latex,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/security)
"bRx" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hallways)
"bRy" = (
/obj/structure/bed/chair,
@@ -33126,10 +24513,7 @@
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/south/security)
"bRz" = (
/obj/structure/closet/secure_closet/security_empty{
@@ -33137,10 +24521,7 @@
},
/obj/item/clothing/head/beret/sec/warden,
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/south/security)
"bRE" = (
/obj/structure/bed/chair/office/light{
@@ -33150,31 +24531,22 @@
dir = 4;
health = 80
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/security)
"bRH" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
name = "Forensics"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/security)
"bRI" = (
/obj/structure/machinery/computer/rdconsole,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"bRJ" = (
/obj/structure/surface/table/reinforced,
/obj/item/evidencebag,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/security)
"bRK" = (
/obj/structure/surface/table/reinforced,
@@ -33183,16 +24555,11 @@
dir = 4;
health = 80
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/security)
"bRQ" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/security)
"bRT" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33204,40 +24571,29 @@
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"bRW" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/south/security)
"bRX" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/security)
"bRY" = (
/obj/effect/spawner/random/toolbox,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/security)
"bRZ" = (
/obj/structure/surface/rack,
/obj/item/evidencebag,
/obj/item/evidencebag,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/security)
"bSa" = (
/obj/structure/surface/table/almayer,
@@ -33246,34 +24602,25 @@
pixel_y = 7
},
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/security)
"bSb" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/restraint/handcuffs/zip,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/security)
"bSe" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/glass,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"bSf" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/checkpoint)
"bSg" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -33282,10 +24629,7 @@
},
/obj/item/weapon/shield/riot,
/obj/item/weapon/shield/riot,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/checkpoint)
"bSh" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -33294,16 +24638,11 @@
},
/obj/item/restraint/handcuffs,
/obj/item/restraint/handcuffs,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/checkpoint)
"bSi" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/checkpoint)
"bSk" = (
/obj/structure/window/framed/corsat/cell/security,
@@ -33313,23 +24652,15 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"bSm" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/checkpoint)
"bSn" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/security)
"bSo" = (
/obj/structure/machinery/door_control{
@@ -33342,20 +24673,14 @@
name = "secure evidence locker";
req_access_txt = "104"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/checkpoint)
"bSp" = (
/obj/structure/closet/secure_closet{
name = "secure evidence locker";
req_access_txt = "104"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/checkpoint)
"bSr" = (
/obj/structure/machinery/power/apc/high{
@@ -33363,24 +24688,16 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/security)
"bSx" = (
/obj/structure/surface/table/almayer,
/obj/item/book/manual/engineering_construction,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/maint)
"bSE" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"bSG" = (
/obj/structure/surface/table/reinforced,
@@ -33390,43 +24707,29 @@
pixel_x = 7;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/checkpoint)
"bSK" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/guestpass,
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/hangar/checkpoint)
"bSM" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/hangar/checkpoint)
"bSO" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/plastic,
/obj/item/trash/cigbutt,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"bSW" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/sigma/hangar/arrivals)
"bSX" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar)
"bSZ" = (
/obj/structure/bed/chair,
@@ -33434,9 +24737,7 @@
dir = 4;
layer = 2
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"bTb" = (
/obj/structure/bed/chair{
@@ -33446,22 +24747,15 @@
dir = 4;
layer = 2
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"bTh" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar)
"bTj" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/checkpoint)
"bTk" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -33478,27 +24772,19 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/security)
"bTo" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/security)
"bTp" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hydroponics)
"bTq" = (
/obj/structure/surface/rack,
@@ -33510,9 +24796,7 @@
},
/obj/item/weapon/gun/revolver/m44,
/obj/item/weapon/gun/revolver/m44,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bTr" = (
/obj/structure/surface/rack,
@@ -33523,9 +24807,7 @@
name = "Weapon Rack"
},
/obj/item/weapon/gun/smg/m39,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bTs" = (
/obj/structure/target,
@@ -33538,26 +24820,18 @@
desc = "A rectangular steel crate containing firing targets.";
name = "target crate"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"bTt" = (
/obj/structure/closet/bombcloset,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/testgrounds)
"bTu" = (
/obj/structure/machinery/door/poddoor/almayer/open{
id = "SigmaGrounds";
name = "Testing Grounds"
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/sigma/biodome/testgrounds)
"bTv" = (
/obj/structure/machinery/door_control{
@@ -33565,10 +24839,7 @@
name = "Testing Grounds";
pixel_x = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/testgrounds)
"bTw" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -33576,10 +24847,7 @@
req_access_txt = "106";
use_power = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/testgrounds)
"bTx" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -33587,10 +24855,7 @@
id = "SigmaGrounds";
name = "Testing Grounds"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/sigma/biodome/testgrounds)
"bTy" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -33598,10 +24863,7 @@
id = "SigmaGrounds";
name = "Testing Grounds"
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/sigma/biodome/testgrounds)
"bTz" = (
/obj/item/explosive/plastic,
@@ -33612,10 +24874,7 @@
name = "explosives cabinet";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/testgrounds)
"bTA" = (
/obj/item/explosive/mine/pmc,
@@ -33626,10 +24885,7 @@
name = "explosives cabinet";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/testgrounds)
"bTB" = (
/obj/item/explosive/grenade/high_explosive/frag,
@@ -33640,39 +24896,28 @@
name = "explosives cabinet";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/testgrounds)
"bTC" = (
/obj/structure/machinery/door/poddoor/almayer/open{
id = "SigmaGrounds";
name = "Testing Grounds"
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/corsat/sigma/biodome/testgrounds)
"bTH" = (
/obj/item/paper/crumpled,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"bTM" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/suit_cooling_unit,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"bTN" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/suit/armor/laserproof,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"bTO" = (
/obj/structure/machinery/power/apc/high{
@@ -33681,55 +24926,38 @@
start_charge = 0
},
/obj/structure/closet/l3closet/scientist,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/complex)
"bTQ" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/gripper,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"bTU" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/complex)
"bTV" = (
/obj/structure/surface/table/reinforced,
/obj/item/cell/hyper/empty,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"bTW" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/head/helmet/augment,
/obj/item/tool/pen/paralysis,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"bTX" = (
/obj/item/paper/crumpled,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/sigma/south/complex)
"bTZ" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/sigma/south/complex)
"bUa" = (
/obj/structure/surface/rack,
@@ -33738,9 +24966,7 @@
name = "Prototype Racks";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"bUc" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -33749,17 +24975,13 @@
req_one_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"bUg" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
},
-/turf/open/floor/almayer/research/containment/corner_var1{
- icon_state = "containment_corner_variant_2"
- },
+/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2,
/area/corsat/sigma/south/complex)
"bUh" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -33769,25 +24991,18 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"bUi" = (
/obj/structure/machinery/blackbox_recorder,
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"bUl" = (
/obj/structure/surface/table/woodentable,
/obj/item/reagent_container/food/drinks/drinkingglass,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"bUm" = (
/obj/structure/machinery/power/smes,
@@ -33803,61 +25018,44 @@
name = "specimen control cabinet";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"bUr" = (
/obj/structure/surface/table/reinforced,
/obj/item/explosive/grenade/custom/metal_foam,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"bUs" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/assembly/infra,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"bUt" = (
/obj/structure/surface/table/reinforced,
/obj/item/explosive/grenade/empgrenade,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"bUv" = (
/obj/structure/surface/table/reinforced,
/obj/item/explosive/grenade/custom/large,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"bUx" = (
/obj/structure/surface/table/reinforced,
/obj/item/paper,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"bUz" = (
/obj/structure/safe{
spawnkey = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"bUA" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/explosive/grenade/custom/antiweed,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"bUC" = (
/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide,
@@ -33868,10 +25066,7 @@
dir = 4
},
/obj/structure/machinery/portable_atmospherics/canister/nitrogen,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering/atmos)
"bUF" = (
/obj/structure/machinery/portable_atmospherics/canister/empty/phoron,
@@ -33879,10 +25074,7 @@
dir = 8;
id_tag = "mix_sigma_out"
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/gamma/biodome/toxins)
"bUI" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -33890,9 +25082,7 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"bUJ" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -33905,9 +25095,7 @@
/area/corsat/theta/biodome)
"bUL" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"bUM" = (
/obj/structure/machinery/light{
@@ -33917,16 +25105,11 @@
/obj/effect/landmark/nightmare{
insert_tag = "lockdown-theta-control"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/theta/airlock/control)
"bUN" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"bUO" = (
/obj/structure/machinery/door_control{
@@ -33934,57 +25117,38 @@
name = "Access Shutters";
pixel_y = 24
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bUP" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/theta/airlock/control)
"bUQ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/theta/airlock/control)
"bUS" = (
/obj/structure/pipes/standard/simple/hidden/universal,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"bUT" = (
/obj/structure/pipes/standard/simple/hidden/universal,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/theta/airlock/control)
"bUU" = (
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "CO2 Control"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/theta/airlock/control)
"bUV" = (
/obj/structure/pipes/standard/simple/visible{
dir = 6
},
/obj/structure/machinery/meter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/theta/airlock/control)
"bUW" = (
/obj/structure/pipes/unary/outlet_injector{
@@ -33995,28 +25159,19 @@
/area/corsat/inaccessible)
"bUY" = (
/obj/structure/pipes/trinary/mixer,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/theta/airlock/control)
"bUZ" = (
/obj/structure/pipes/binary/pump/high_power/on{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/theta/airlock/control)
"bVb" = (
/obj/structure/pipes/binary/pump/on{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/sigma/airlock/control)
"bVc" = (
/obj/structure/surface/rack,
@@ -34024,33 +25179,23 @@
/obj/item/tank/air,
/obj/item/clothing/mask/breath,
/obj/item/clothing/mask/breath,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/airlock/control)
"bVg" = (
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "Mixed Air Control"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/airlock/control)
"bVh" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/control)
"bVm" = (
/obj/structure/pipes/standard/simple/hidden/universal{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bVn" = (
/obj/item/device/binoculars,
@@ -34061,10 +25206,7 @@
pixel_y = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/gamma/airlock/control)
"bVs" = (
/obj/structure/machinery/power/apc/high{
@@ -34073,18 +25215,12 @@
start_charge = 0
},
/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/airlock/control)
"bVv" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/airlock/control)
"bVw" = (
/obj/structure/machinery/power/apc/high{
@@ -34093,18 +25229,13 @@
start_charge = 0
},
/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/theta/airlock/control)
"bVx" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bVC" = (
/obj/item/device/binoculars,
@@ -34115,19 +25246,13 @@
pixel_y = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/airlock/control)
"bVD" = (
/obj/structure/machinery/floodlight{
name = "Floodlight"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/testgrounds)
"bVE" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -34141,9 +25266,7 @@
name = "Access Shutters";
pixel_y = -24
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bVH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -34153,35 +25276,26 @@
/area/corsat/theta/biodome)
"bVI" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"bVJ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"bVL" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/theta/airlock/control)
"bVM" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/theta/airlock/control)
"bVN" = (
/obj/structure/pipes/vents/pump/siphon/on{
@@ -34196,19 +25310,13 @@
/area/corsat/inaccessible)
"bVQ" = (
/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/theta/airlock/control)
"bVS" = (
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "Mixed Air Control"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/theta/airlock/control)
"bVT" = (
/obj/structure/pipes/unary/outlet_injector{
@@ -34220,26 +25328,17 @@
"bVU" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/theta/airlock/control)
"bVV" = (
/obj/structure/pipes/standard/simple/visible,
/obj/structure/machinery/meter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/theta/airlock/control)
"bVW" = (
/obj/structure/pipes/standard/simple/visible,
/obj/structure/machinery/meter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/theta/airlock/control)
"bVX" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -34248,9 +25347,7 @@
/area/corsat/theta/biodome)
"bWb" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/theta/airlock/control)
"bWc" = (
/obj/structure/machinery/light{
@@ -34260,25 +25357,16 @@
network = list("theta")
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/theta/airlock/control)
"bWd" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/theta/airlock/control)
"bWe" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/theta/airlock/control)
"bWf" = (
/obj/structure/bed/chair/office/light{
@@ -34287,9 +25375,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"bWg" = (
/obj/structure/machinery/light{
@@ -34299,160 +25385,112 @@
/obj/structure/machinery/computer/secure_data{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/theta/airlock/control)
"bWh" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"bWi" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/theta/airlock/control)
"bWj" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"bWk" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"bWl" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"bWm" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/theta/airlock/control)
"bWn" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/theta/airlock/control)
"bWo" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/theta/airlock/control)
"bWp" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/theta/airlock/control)
"bWq" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/theta/airlock/control)
"bWr" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/theta/airlock/control)
"bWs" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/theta/airlock/control)
"bWt" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/theta/airlock/control)
"bWu" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"bWv" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"bWw" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/theta/airlock/control)
"bWx" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"bWy" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/airlock/control)
"bWz" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Maintainence";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bWA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bWB" = (
/obj/structure/machinery/light{
@@ -34461,162 +25499,111 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/airlock/control)
"bWC" = (
/obj/structure/pipes/standard/simple/hidden/universal{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/airlock/control)
"bWD" = (
/obj/structure/pipes/standard/simple/visible{
dir = 4
},
/obj/structure/machinery/meter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/airlock/control)
"bWE" = (
/obj/structure/pipes/binary/pump/high_power/on{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/airlock/control)
"bWG" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/gamma/airlock/control)
"bWH" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/airlock/control)
"bWI" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"bWJ" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/airlock/control)
"bWK" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/airlock/control)
"bWL" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bWM" = (
/obj/structure/pipes/standard/simple/visible{
dir = 4
},
/obj/structure/machinery/meter,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/airlock/control)
"bWN" = (
/obj/structure/pipes/trinary/mixer{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/sigma/airlock/control)
"bWO" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/control)
"bWQ" = (
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "CO2 Control"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/airlock/control)
"bWR" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bWS" = (
/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/sigma/airlock/control)
"bWT" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/airlock/control)
"bWU" = (
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "Waste Tank Control"
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/theta/airlock/control)
"bWV" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"bWW" = (
/obj/structure/surface/table/almayer,
@@ -34626,132 +25613,91 @@
pixel_x = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"bWX" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"bWZ" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/airlock/control)
"bXa" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"bXb" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/airlock/control)
"bXc" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"bXd" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"bXe" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"bXh" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/southeast)
"bXl" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bXn" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"bXo" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/control)
"bXp" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/airlock/control)
"bXq" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/control)
"bXr" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/airlock/control)
"bXs" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/control)
"bXu" = (
/obj/item/folder/black_random,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/airlock/control)
"bXv" = (
/obj/structure/machinery/light{
@@ -34760,17 +25706,11 @@
/obj/structure/surface/table/almayer,
/obj/item/storage/donut_box,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/airlock/control)
"bXw" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/airlock/control)
"bXx" = (
/obj/structure/surface/table/almayer,
@@ -34778,40 +25718,26 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/control)
"bXz" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/airlock/control)
"bXA" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/control)
"bXB" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"bXC" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/airlock/control)
"bXD" = (
/obj/structure/machinery/light,
@@ -34819,85 +25745,60 @@
/obj/structure/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/airlock/control)
"bXE" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/airlock/control)
"bXG" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/control)
"bXH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"bXI" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/theta/airlock/control)
"bXK" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"bXN" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"bXO" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bXQ" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bXW" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"bXY" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/gamma/airlock/control)
"bXZ" = (
/obj/structure/machinery/light{
@@ -34907,10 +25808,7 @@
/obj/effect/landmark/nightmare{
insert_tag = "lockdown-gamma-control"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/airlock/control)
"bYa" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -34920,16 +25818,12 @@
},
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bYb" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"bYd" = (
/obj/structure/pipes/vents/pump/siphon/on{
@@ -34941,26 +25835,17 @@
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "Mixed Air Control"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/airlock/control)
"bYh" = (
/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/airlock/control)
"bYl" = (
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "Nitrogen Control Console"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/airlock/control)
"bYm" = (
/obj/structure/pipes/unary/outlet_injector{
@@ -34973,54 +25858,37 @@
/obj/structure/pipes/trinary/mixer{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/gamma/airlock/control)
"bYp" = (
/obj/structure/pipes/standard/simple/visible{
dir = 4
},
/obj/structure/machinery/meter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/airlock/control)
"bYq" = (
/obj/structure/pipes/standard/simple/hidden/universal{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bYr" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/omega/hallways)
"bYs" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/gamma/airlock/control)
"bYt" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/airlock/control)
"bYu" = (
/obj/structure/surface/rack,
@@ -35028,18 +25896,12 @@
/obj/item/tank/air,
/obj/item/clothing/mask/breath,
/obj/item/clothing/mask/breath,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/airlock/control)
"bYv" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/airlock/control)
"bYw" = (
/obj/structure/pipes/vents/pump/siphon/on{
@@ -35052,56 +25914,41 @@
/obj/structure/pipes/binary/pump/high_power/on{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/gamma/airlock/control)
"bYy" = (
/obj/structure/pipes/standard/simple/visible{
dir = 4
},
/obj/structure/machinery/meter,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/airlock/control)
"bYz" = (
/obj/structure/pipes/standard/simple/hidden/universal{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/airlock/control)
"bYA" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/gamma/airlock/control)
"bYC" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Maintainence";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bYD" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/station_alert{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/airlock/control)
"bYE" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -35114,19 +25961,14 @@
name = "Access Shutter"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bYF" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/atmos_alert{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/airlock/control)
"bYI" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -35147,35 +25989,26 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"bYK" = (
/obj/structure/pipes/binary/pump/on{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/gamma/airlock/control)
"bYL" = (
/obj/structure/pipes/standard/simple/visible{
dir = 10
},
/obj/structure/machinery/meter,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/airlock/control)
"bYM" = (
/obj/structure/machinery/computer/general_air_control/large_tank_control{
name = "Waste Tank Control"
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/airlock/control)
"bYN" = (
/obj/structure/pipes/unary/outlet_injector{
@@ -35202,10 +26035,7 @@
/obj/item/tank/air,
/obj/item/clothing/mask/breath,
/obj/item/clothing/mask/breath,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/theta/airlock/control)
"bYS" = (
/obj/structure/pipes/vents/pump/siphon/on{
@@ -35223,84 +26053,60 @@
/area/corsat/inaccessible)
"bYU" = (
/obj/structure/closet/l3closet/general,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/omega/control)
"bYW" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/station_alert{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/omega/control)
"bYX" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/omega/control)
"bYY" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/omega/control)
"bYZ" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"bZa" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/binoculars,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/omega/control)
"bZb" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/control)
"bZc" = (
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southwest,
/area/corsat/omega/control)
"bZd" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/omega/control)
"bZe" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/omega/control)
"bZf" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -35309,63 +26115,43 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/omega/control)
"bZg" = (
/obj/structure/machinery/light,
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/omega/control)
"bZh" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/omega/control)
"bZi" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/atmos_alert{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/omega/control)
"bZj" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/control)
"bZk" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/control)
"bZl" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southeast,
/area/corsat/omega/control)
"bZm" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/omega/control)
"bZp" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -35374,9 +26160,7 @@
req_one_access_txt = "103"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"bZq" = (
/obj/structure/machinery/light{
@@ -35384,17 +26168,11 @@
},
/obj/structure/surface/table/reinforced,
/obj/item/xeno_restraints,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/control)
"bZr" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/control)
"bZt" = (
/obj/structure/bed,
@@ -35406,28 +26184,20 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northwest,
/area/corsat/sigma/dorms)
"bZv" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/sigma/dorms)
"bZy" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"bZz" = (
/obj/structure/machinery/light,
@@ -35435,33 +26205,25 @@
/obj/structure/machinery/computer/guestpass{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/hangar/cargo)
"bZD" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"bZE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/biodome/complex)
"bZF" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/biodome/complex)
"bZI" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -35475,9 +26237,7 @@
name = "Toxins Lockdown"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"bZK" = (
/obj/structure/machinery/power/apc/high{
@@ -35486,54 +26246,38 @@
start_charge = 0
},
/obj/structure/closet/wardrobe/toxins_white,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/toxins)
"bZN" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/sigma/south/complex)
"bZP" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/airlock/south)
"bZW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/theta/airlock/east)
"bZX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/east)
"cab" = (
/obj/structure/pipes/vents/pump{
dir = 8;
id_tag = "mining_outpost_pump"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/theta/airlock/west)
"caf" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/biodome/complex)
"cah" = (
/obj/structure/machinery/power/apc/high{
@@ -35541,10 +26285,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/theta/biodome/hydrowest)
"cai" = (
/obj/structure/machinery/power/apc/high{
@@ -35552,18 +26293,13 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/theta/biodome/hydroeast)
"cak" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/hydrowest)
"cal" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -35573,32 +26309,24 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"cam" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"cao" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"cap" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"caq" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -35608,17 +26336,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"car" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/hydroeast)
"cau" = (
/obj/structure/machinery/power/apc/high{
@@ -35626,10 +26350,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/theta/biodome/complex)
"caw" = (
/obj/structure/machinery/power/apc/high{
@@ -35637,51 +26358,38 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/testgrounds)
"caA" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "green"
- },
+/turf/open/floor/corsat/green,
/area/corsat/gamma/hallwaysouth)
"caG" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"caH" = (
/obj/structure/machinery/light,
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"caI" = (
/obj/structure/sign/safety/airlock{
pixel_y = -32
},
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/airlock/control)
"caM" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{
id = "SigmaWestE";
name = "Sigma West Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/control)
"caQ" = (
/obj/item/weapon/gun/flamer,
@@ -35690,10 +26398,7 @@
name = "specimen control cabinet";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/control)
"caS" = (
/obj/structure/machinery/floodlight{
@@ -35707,10 +26412,7 @@
/obj/structure/machinery/colony_floodlight_switch{
desc = "This switch controls the floodlights around the biodome. It only functions when there is power."
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/theta/airlock/control)
"caU" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -35719,9 +26421,7 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"caV" = (
/obj/structure/machinery/door_control{
@@ -35729,9 +26429,7 @@
name = "Access Shutters";
pixel_x = 24
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"caW" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -35741,9 +26439,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"caX" = (
/obj/item/device/binoculars,
@@ -35754,10 +26450,7 @@
pixel_y = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/theta/airlock/control)
"caZ" = (
/obj/structure/surface/table/reinforced,
@@ -35773,10 +26466,7 @@
req_one_access_txt = "106;103";
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/omega/control)
"cbc" = (
/obj/structure/surface/table/reinforced,
@@ -35785,27 +26475,19 @@
name = "Dome Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/control)
"cbo" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northwest,
/area/corsat/gamma/medbay)
"cbS" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/rnr)
"cbV" = (
/obj/structure/bookcase{
@@ -35814,10 +26496,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"cbW" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -35825,27 +26504,18 @@
/area/corsat/theta/biodome)
"cce" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"ccq" = (
/obj/structure/pipes/standard/simple/hidden/green,
/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east,
/area/corsat/theta/biodome)
"cec" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/theta/airlock/control)
"cem" = (
/obj/structure/stairs,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"ces" = (
/obj/structure/surface/table/almayer,
@@ -35856,25 +26526,18 @@
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/southeast/datalab)
"ceB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/theta/airlock/east)
"ceE" = (
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/gamma/sigmaremote)
"ceR" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -35893,89 +26556,56 @@
/obj/item/device/flashlight/slime{
pixel_x = 10
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"cfA" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/sigma/south/offices)
"cfO" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/gamma/foyer)
"cfZ" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/gamma/hallwaysouth)
"cgh" = (
/obj/structure/surface/rack,
/obj/item/storage/wallet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar/security)
"cgs" = (
/obj/structure/surface/table,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"cgt" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"chg" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"chJ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"chL" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/sigma/cargo)
"cia" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/hydroeast)
"cii" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/checkpoint)
"ciW" = (
/obj/structure/machinery/shower{
@@ -35986,10 +26616,7 @@
dir = 4;
layer = 2.8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"cjg" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -35997,76 +26624,50 @@
name = "\improper Dressing room"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"cjs" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/gamma/hallwaysouth)
"cjy" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/omega/containment)
"ckt" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/control)
"cku" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"ckz" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/gamma/hangar/checkpoint)
"ckY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"clg" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/hangar/security)
"clp" = (
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/omega/offices)
"clI" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/southwest,
/area/corsat/gamma/rnr)
"clN" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/south)
"cmk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"cms" = (
/obj/structure/pipes/vents/pump{
@@ -36076,23 +26677,17 @@
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"cmy" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"cnj" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/security)
"cnA" = (
/obj/structure/surface/rack,
@@ -36105,85 +26700,55 @@
name = "Secure Racks";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/omega/complex)
"cnC" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"cog" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"cok" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hangar/office)
"coy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/researcher)
"coS" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/sigma/hangar/monorail)
"cpS" = (
/obj/item/bodybag,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar)
"cpU" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"cqv" = (
/obj/structure/computerframe,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"cqy" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"cqT" = (
/obj/effect/landmark/corpsespawner/wysec,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"cru" = (
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/corsat/omega/hangar)
"crC" = (
/obj/structure/barricade/handrail{
@@ -36192,26 +26757,19 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"crG" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"crH" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"csk" = (
/obj/structure/surface/table/almayer,
@@ -36219,9 +26777,7 @@
dir = 8;
health = 80
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"cst" = (
/obj/structure/toilet,
@@ -36229,46 +26785,32 @@
dir = 8
},
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"csE" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/inaccessible)
"csI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"csM" = (
/obj/structure/surface/table/almayer,
/obj/item/phone,
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/sigma/southeast/datalab)
"cth" = (
/obj/effect/decal/cleanable/blood/xtracks,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth)
"ctA" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"cuo" = (
/obj/structure/pipes/vents/pump{
@@ -36277,24 +26819,17 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"cut" = (
/obj/structure/sign/safety/biolab,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/gamma/hallwaysouth)
"cuO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"cvi" = (
/obj/structure/closet/crate/science,
@@ -36302,19 +26837,13 @@
/area/corsat/gamma/sigmaremote)
"cvm" = (
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"cvr" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/gamma/residential/researcher)
"cvO" = (
/obj/structure/flora/jungle/plantbot1,
@@ -36325,21 +26854,15 @@
/area/corsat/theta/biodome)
"cvW" = (
/obj/structure/machinery/door/window/westleft,
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/datalab)
"cwp" = (
/obj/structure/machinery/portable_atmospherics/canister/empty/phoron,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"cwr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/maint)
"cwF" = (
/obj/structure/pipes/vents/pump{
@@ -36360,97 +26883,63 @@
id = "SigmaHangarC-N";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/security)
"cxE" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/foyer)
"cxO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"cyK" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/southeast/datalab)
"cyX" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/lobby)
"czg" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/omega/control)
"czh" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/security)
"cAg" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar)
"cAV" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/sigmaremote)
"cAW" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/control)
"cAX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"cCK" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hallways)
"cCP" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/sigma/hangar)
"cEC" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -36458,75 +26947,50 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"cEI" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/east,
/area/corsat/gamma/medbay/lobby)
"cEQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/corsat/sigma/biodome)
"cFe" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"cGb" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/virology)
"cGi" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/medbay/morgue)
"cGF" = (
/obj/structure/sign/safety/airlock,
/turf/closed/wall/r_wall/biodome,
/area/corsat/sigma/hangar/arrivals)
"cGO" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/gamma/hangar/arrivals)
"cIs" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/theta/airlock/west/id)
"cIB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"cJS" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering)
"cJU" = (
/obj/structure/platform{
@@ -36534,19 +26998,14 @@
dir = 4;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/north,
/area/corsat/sigma/south)
"cJW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/structure/machinery/door/window/southright,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"cKa" = (
/obj/structure/flora/pottedplant{
@@ -36555,9 +27014,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential)
"cKi" = (
/obj/structure/flora/pottedplant{
@@ -36575,27 +27032,18 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential)
"cLh" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"cLF" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/gamma/biodome/toxins)
"cLZ" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"cMa" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -36610,24 +27058,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/checkpoint)
"cMw" = (
/obj/structure/machinery/computer/telecomms/traffic{
req_one_access_txt = "19;106;102"
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"cMy" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/airlock/control)
"cNG" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -36636,34 +27077,21 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/control)
"cNI" = (
/obj/structure/machinery/light/small,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"cOf" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/sigma/cargo)
"cOv" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"cOU" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/hangar)
"cPi" = (
/obj/structure/monorail{
@@ -36672,58 +27100,39 @@
/turf/open/space/transit/east/shuttlespace_ew10,
/area/space)
"cPC" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/gamma/hangar/checkpoint)
"cPR" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"cPT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/corsat/omega/hallways)
"cQs" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"cQv" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"cQR" = (
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/core)
"cRn" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"cRx" = (
/obj/item/cell/crap,
@@ -36731,31 +27140,22 @@
/area/corsat/gamma/cargo/disposal)
"cSi" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/corsat/sigma/biodome)
"cSI" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/north,
/area/corsat/gamma/hallwaysouth)
"cTc" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/lobby)
"cTs" = (
/obj/structure/stairs{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"cUc" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -36764,18 +27164,12 @@
/turf/open/mars,
/area/corsat/sigma/biodome)
"cUp" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/omega/offices)
"cUT" = (
/obj/effect/decal/cleanable/blood/xeno,
/obj/effect/landmark/corpsespawner/wysec,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/security)
"cVq" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -36783,15 +27177,10 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
-"cVK" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greencorner"
- },
+"cVK" = (
+/turf/open/floor/corsat/greencorner/east,
/area/corsat/gamma/hallwaysouth)
"cVR" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -36799,40 +27188,25 @@
/area/corsat/gamma/rnr/library)
"cWa" = (
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/sigmaremote)
"cWf" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/corsat/gamma/hallwaysouth)
"cWu" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/residential)
"cWI" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/rnr)
"cWX" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/north,
/area/corsat/sigma/south)
"cXm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"cXt" = (
/obj/structure/machinery/power/apc/high{
@@ -36843,10 +27217,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/bar)
"cXH" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -36854,9 +27225,7 @@
/area/corsat/sigma/cafe)
"cYj" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"cYL" = (
/obj/structure/machinery/light{
@@ -36866,17 +27235,11 @@
/obj/structure/machinery/computer/secure_data{
req_access_txt = "201"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/airlock/control)
"cYU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/gamma/residential)
"cZu" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -36887,38 +27250,26 @@
dir = 1;
network = list("theta")
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/complex)
"cZO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/south/id)
"daL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"daO" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/hand_labeler,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/biodome/toxins)
"daR" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/sigma/southeast/datalab)
"dbn" = (
/obj/structure/surface/table,
@@ -36928,38 +27279,26 @@
},
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"dbr" = (
/obj/effect/decal/cleanable/blood/xtracks,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/containment)
"dbV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"dbY" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"dcr" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/virology)
"dct" = (
/turf/open/floor/corsat,
@@ -36969,18 +27308,13 @@
dir = 9
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/airlock/south/id)
"dcK" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/gamma/residential/researcher)
"dcU" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -36990,19 +27324,13 @@
/area/corsat/theta/biodome)
"ddo" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/omega/complex)
"ddS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/west,
/area/corsat/gamma/residential/east)
"dem" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -37013,30 +27341,20 @@
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"deD" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"deG" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"deR" = (
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/hallwaysouth)
"dfg" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -37049,37 +27367,24 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"dfT" = (
/obj/item/reagent_container/glass/bucket/janibucket,
/obj/item/tool/mop,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"dfV" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/glass/beaker,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"dgp" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/gamma/residential/west)
"dgq" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/omega/offices)
"dgx" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -37087,10 +27392,7 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"dgJ" = (
/obj/structure/machinery/door_control{
@@ -37100,38 +27402,26 @@
use_power = 0
},
/obj/structure/closet/crate/science,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/corsat/gamma/sigmaremote)
"dhG" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"dhN" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"dio" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/monorail/control)
"diw" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars_cave{
- icon_state = "mars_cave_9"
- },
+/turf/open/mars_cave/mars_cave_9,
/area/corsat/sigma/biodome)
"diD" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -37142,91 +27432,61 @@
/area/corsat/theta/biodome)
"diI" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"diP" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/gamma/residential/researcher)
"djC" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"djF" = (
/turf/open/floor/corsat,
/area/corsat/gamma/residential/researcher)
"djM" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/omega/offices)
"djR" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/donkpockets,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"dky" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/foyer)
"dkK" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"dlz" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/reagent_analyzer,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"dlO" = (
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"dlP" = (
/obj/structure/closet/coffin,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/west,
/area/corsat/gamma/medbay/morgue)
"dlU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"dml" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/hangar/checkpoint)
"dmD" = (
/obj/structure/machinery/door_control{
@@ -37235,62 +27495,44 @@
pixel_y = 24;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"dmE" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/east)
"dmK" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"dmP" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/hydroeast)
"dmR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/theta/biodome/complex)
"dnZ" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple,
/area/corsat/omega/hallways)
"dos" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"dqi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"dqt" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -37300,33 +27542,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"dqu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/sigma/dorms)
"dqQ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"dqR" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/virology)
"drp" = (
/obj/docking_port/stationary/marine_dropship/lz1{
@@ -37336,18 +27568,13 @@
/area/corsat/gamma/hangar)
"drv" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/gm/river/desert/shallow{
- name = "pool"
- },
+/turf/open/gm/river/desert/shallow/pool,
/area/corsat/gamma/residential/showers)
"drC" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/sigma/dorms)
"drE" = (
/obj/structure/machinery/power/reactor/colony{
@@ -37358,15 +27585,10 @@
d2 = 4;
icon_state = "0-4"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering/core)
"drW" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/southeast/datamaint)
"dso" = (
/obj/structure/surface/table/almayer,
@@ -37376,18 +27598,13 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/omega/offices)
"dsw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"dsF" = (
/obj/structure/toilet{
@@ -37397,64 +27614,42 @@
dir = 8
},
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"dta" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hallways)
"dtd" = (
/obj/structure/barricade/handrail{
layer = 3
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south)
"dte" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/sigma/south/engineering)
"dtl" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/hangar/flightcontrol)
"dtU" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/complex)
"dug" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/arrivals)
"dui" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/theta/airlock/control)
"duk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/core)
"duC" = (
/obj/structure/platform{
@@ -37465,31 +27660,21 @@
dir = 8;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northwest,
/area/corsat/sigma/south)
"duW" = (
/obj/structure/machinery/blackbox_recorder,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"duY" = (
/obj/structure/platform{
dir = 8;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/hallwaysouth)
"dvn" = (
-/turf/open/floor/corsat{
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner,
/area/corsat/gamma/hallwaysouth)
"dvp" = (
/obj/structure/pipes/vents/pump{
@@ -37497,23 +27682,16 @@
},
/obj/structure/window/reinforced,
/obj/structure/platform,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"dvx" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"dvE" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/west,
/area/corsat/gamma/residential)
"dvI" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -37521,9 +27699,7 @@
},
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar)
"dwa" = (
/obj/structure/bed/chair{
@@ -37531,28 +27707,17 @@
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/east,
/area/corsat/theta/biodome/complex)
"dwl" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/gamma/hangar)
"dwr" = (
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/dorms)
"dwH" = (
/obj/structure/prop/almayer/computers/mapping_computer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"dwM" = (
/obj/structure/prop/almayer/cannon_cables{
@@ -37563,17 +27728,13 @@
desc = "A bewildering tangle of machinery and pipes.";
name = "\improper coolant feed"
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/corsat/theta/biodome/complex)
"dwS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"dwW" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -37584,20 +27745,14 @@
"dxx" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/assembly/signaller,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"dxy" = (
-/turf/open/gm/river/desert/shallow{
- name = "pool"
- },
+/turf/open/gm/river/desert/shallow/pool,
/area/corsat/gamma/residential/showers)
"dxB" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"dxS" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -37606,50 +27761,36 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/cargo)
"dyd" = (
/obj/structure/machinery/light,
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/complex)
"dyK" = (
/obj/structure/pipes/vents/pump,
/turf/open/auto_turf/snow/layer0,
/area/corsat/gamma/biodome)
"dyU" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/hangar/monorail)
"dyY" = (
/obj/structure/pipes/vents/pump{
dir = 8;
id_tag = "mining_outpost_pump"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/west)
"dzB" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"dzT" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar/security)
"dzV" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -37659,97 +27800,67 @@
/turf/open/gm/grass/grass1/weedable,
/area/corsat/theta/biodome)
"dzX" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/corsat/gamma/foyer)
"dzZ" = (
/obj/structure/machinery/camera/autoname{
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/control)
"dAk" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/south)
"dAW" = (
/obj/structure/closet/crate/science,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"dBi" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/omega/security)
"dBx" = (
/obj/structure/window/reinforced{
dir = 8;
health = 80
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"dBy" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars{
- icon_state = "mars_dirt_13"
- },
+/turf/open/mars/mars_dirt_13,
/area/corsat/sigma/biodome)
"dBW" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/sigmaremote)
"dCv" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"dCP" = (
/obj/structure/stairs{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/sigma/south)
"dDj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"dDl" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/airlocknorth/id)
"dDt" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/foyer)
"dEe" = (
/obj/structure/machinery/power/apc/hyper{
@@ -37763,9 +27874,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hallways)
"dFb" = (
/obj/structure/machinery/floodlight{
@@ -37777,9 +27886,7 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"dFL" = (
/obj/structure/bed/chair/comfy/black{
@@ -37788,63 +27895,40 @@
/turf/open/floor/wood,
/area/corsat/theta/biodome/complex)
"dFP" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/southeast/generator)
"dGb" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"dHa" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"dHG" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/virology)
"dIa" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome)
"dIo" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/theta/biodome/complex)
"dII" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/sigma/south/complex)
"dJR" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/ashtray/bronze,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/omega/offices)
"dJV" = (
/turf/closed/shuttle/ert{
@@ -37855,10 +27939,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/hangar/security)
"dKn" = (
/obj/effect/landmark/hunter_primary,
@@ -37869,96 +27950,66 @@
dir = 4;
health = 80
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"dKE" = (
/obj/structure/grille,
/turf/open/floor/plating,
/area/corsat/gamma/hangar/monorail)
"dLL" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"dLX" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/rad,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/sigmaremote)
"dMo" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"dMH" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/administration)
"dMR" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth)
"dNa" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"dNb" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"dNd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"dNs" = (
/obj/structure/surface/rack,
/obj/item/tool/weldpack,
/obj/item/tool/weldingtool,
/obj/item/clothing/head/welding,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/omega/maint)
"dNC" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/sigma/north)
"dNS" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/sigma/cargo)
"dOo" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -37970,76 +28021,50 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southeast,
/area/corsat/gamma/residential/west)
"dOu" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"dOw" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hangar/security)
"dOB" = (
-/turf/open/floor/corsat{
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner,
/area/corsat/gamma/canteen)
"dOF" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"dPH" = (
/obj/structure/bed/nest,
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"dPK" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/core)
"dPV" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/omega/control)
"dQc" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"dQp" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/airlocknorth/id)
"dQJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38047,17 +28072,13 @@
},
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"dQL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"dQQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38069,20 +28090,13 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"dRz" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/south)
"dRI" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/gamma/hangar/flightcontrol)
"dSc" = (
/obj/structure/machinery/light{
@@ -38090,43 +28104,29 @@
},
/obj/item/fuel_cell,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/core)
"dSi" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"dSM" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/foyer)
"dTb" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/laundry)
"dTy" = (
/obj/structure/closet/radiation,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"dUj" = (
/obj/docking_port/stationary/marine_dropship/lz2{
@@ -38138,10 +28138,7 @@
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/canteen)
"dVM" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -38151,24 +28148,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"dVN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"dVQ" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"dWc" = (
/obj/structure/machinery/light{
@@ -38176,88 +28166,59 @@
},
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/complex)
"dWk" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/north,
/area/corsat/gamma/residential)
"dWJ" = (
/obj/structure/bed/nest,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"dWY" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/south/engineering)
"dXm" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"dXp" = (
/obj/effect/spawner/gibspawner/human,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"dXq" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/biodome/virology)
"dXy" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/engineering/core)
"dXO" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"dXW" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/shotgun/slugs,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"dYh" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/phone,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/omega/offices)
"dYk" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"dYB" = (
/obj/structure/machinery/light{
@@ -38266,25 +28227,16 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/virology)
"dYJ" = (
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"dYM" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/hangar/arrivals)
"dZe" = (
/obj/structure/surface/table/almayer,
@@ -38292,25 +28244,17 @@
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"dZu" = (
/obj/structure/surface/rack,
/obj/item/device/lightreplacer,
/obj/item/storage/box/lights,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential)
"dZH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"dZW" = (
/obj/structure/machinery/disposal,
@@ -38320,9 +28264,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"eaN" = (
/obj/effect/landmark/hunter_primary,
@@ -38330,37 +28272,26 @@
/area/corsat/sigma/dorms)
"ebq" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"eby" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential)
"ebE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"ebH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/gamma/residential/east)
"ebK" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"ect" = (
/obj/structure/bed/chair/office/light{
@@ -38369,17 +28300,12 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"ecA" = (
/obj/structure/machinery/light,
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/biodome/toxins)
"ecX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38394,63 +28320,43 @@
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"edN" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/omega/offices)
"edO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/gamma/hangar)
"edP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/foyer)
"eeG" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"eeL" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/corsat/gamma/cargo)
"eeN" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer3/laptop/secure_data,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"efN" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/theta/airlock/west)
"egd" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -38463,32 +28369,22 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"egJ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/airlock/control)
"egM" = (
/obj/structure/machinery/camera/autoname{
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/omega/offices)
"egZ" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 1
- },
+/turf/open/floor/almayer/research/containment/floor2/north,
/area/corsat/sigma/south/complex)
"ehg" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -38497,36 +28393,24 @@
/area/corsat/theta/biodome)
"ehj" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/omega/offices)
"ehy" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/north,
/area/corsat/gamma/hangar/flightcontrol)
"ehC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/corsat/sigma/biodome)
"ehN" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"ehS" = (
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/gamma/residential/researcher)
"ehU" = (
/obj/structure/surface/table,
@@ -38536,10 +28420,7 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"eii" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38559,37 +28440,23 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/rnr)
"eiR" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hallways)
"ejb" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/security)
"eji" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/airlocknorth/id)
"ejk" = (
/obj/structure/cargo_container/hd/mid/alt,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"ejl" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -38603,56 +28470,39 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"ejL" = (
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/high_explosive/frag,
/obj/item/explosive/grenade/high_explosive/frag,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"ekd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"ekK" = (
/obj/structure/machinery/smartfridge/seeds,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/hydrowest)
"ekM" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/south/security)
"elt" = (
/obj/structure/machinery/camera/autoname{
network = list("omega")
},
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/airlock/south/id)
"elG" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"elR" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -38666,105 +28516,68 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"ema" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydrowest)
"emb" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south)
"eme" = (
/obj/structure/janitorialcart,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/hydroeast)
"emC" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"enf" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/omega/complex)
"enu" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southeast,
/area/corsat/gamma/medbay/morgue)
"enU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"eon" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"eoE" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/checkpoint)
"eoF" = (
/obj/structure/window/framed/corsat/hull/security,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/office)
"eoZ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/med_data/laptop{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"epc" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/east,
/area/corsat/omega/hallways)
"epg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner,
/area/corsat/sigma/dorms)
"epm" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"epq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38780,26 +28593,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/security)
"eqa" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/checkpoint)
"eqg" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/checkpoint)
"eql" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -38810,16 +28616,10 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"equ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/gamma/airlock/control)
"eqz" = (
/turf/closed/wall/r_wall/biodome,
@@ -38828,25 +28628,17 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/gamma/residential)
"eqK" = (
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/foyer)
"eqM" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"erb" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/omega/cargo)
"erc" = (
/obj/structure/bed/chair/office/dark,
@@ -38859,17 +28651,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/theta/airlock/control)
"ero" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/omega/complex)
"erP" = (
/obj/structure/platform{
@@ -38881,90 +28667,61 @@
layer = 2.7
},
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northwest,
/area/corsat/gamma/residential/east)
"ese" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/toxins)
"esg" = (
/obj/structure/surface/table/reinforced,
/obj/item/ashtray/plastic,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"esA" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/sigma/south/offices)
"esF" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"esV" = (
/obj/structure/morgue,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/west,
/area/corsat/gamma/medbay/morgue)
"etb" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/biodome/complex)
"etp" = (
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/west)
"etD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/corsat/sigma/biodome)
"euc" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/southeast/generator)
"eun" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"euV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/corsat/sigma/biodome)
"evq" = (
/obj/item/stack/sheet/wood,
@@ -38974,10 +28731,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/south/robotics)
"ewM" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -38985,31 +28739,22 @@
name = "CORSAT Academy";
req_one_access = null
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"ewN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/monorail)
"ewP" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/checkpoint)
"ewT" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor/almayer/research/containment/corner{
- dir = 4
- },
+/turf/open/floor/almayer/research/containment/corner/east,
/area/corsat/gamma/sigmaremote)
"ewW" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -39025,9 +28770,7 @@
/area/corsat/gamma/residential/researcher)
"exf" = (
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/datalab)
"exz" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -39036,34 +28779,22 @@
req_access_txt = "103";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"exC" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/theta/airlock/west/id)
"exY" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"eym" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast)
"eyz" = (
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/corsat/omega/hangar)
"eyA" = (
/obj/structure/bed{
@@ -39080,30 +28811,21 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"ezx" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/hydrowest)
"ezJ" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/virology)
"ezQ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"ezR" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -39119,62 +28841,43 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"eBx" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/tool,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering/atmos)
"eCr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"eDd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"eDe" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar/security)
"eDq" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/south/id)
"eDz" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/corsat/sigma/hangar)
"eDK" = (
/obj/structure/morgue{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"eDM" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -39183,59 +28886,36 @@
/area/corsat/theta/biodome)
"eDP" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/security)
"eDZ" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northeast,
/area/corsat/gamma/hallwaysouth)
"eEJ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/theta/airlock/control)
"eEW" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/southeast/generator)
"eGx" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/hangar/security)
"eGM" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"eGQ" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"eHn" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"eIq" = (
/obj/structure/machinery/light/small{
@@ -39248,52 +28928,36 @@
/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east,
/area/corsat/theta/biodome)
"eJg" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/northeast,
/area/corsat/gamma/hallwaysouth)
"eJz" = (
/obj/effect/landmark/corpsespawner/wysec,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/checkpoint)
"eKm" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"eKJ" = (
/obj/structure/sink{
pixel_y = 24
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/toxins)
"eKL" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/corsat/gamma/administration)
"eKV" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/sigma/south/complex)
"eLc" = (
/obj/structure/bed/chair/office/light{
@@ -39302,31 +28966,21 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"eLP" = (
/obj/effect/decal/cleanable/blood/xtracks,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"eLR" = (
/obj/structure/stairs{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"eMu" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr/bar)
"eMB" = (
/obj/structure/flora/jungle/planttop1,
@@ -39345,33 +28999,24 @@
"eMM" = (
/obj/effect/alien/weeds/node,
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"eNm" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/gamma/sigmaremote)
"eNn" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor/almayer/research/containment/corner{
- dir = 1
- },
+/turf/open/floor/almayer/research/containment/corner/north,
/area/corsat/sigma/south/complex)
"eNI" = (
/obj/structure/platform{
density = 0;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner,
/area/corsat/sigma/south)
"eNM" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -39385,19 +29030,13 @@
/turf/open/auto_turf/snow/layer2,
/area/corsat/gamma/biodome)
"eOI" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/security)
"eOS" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southwest,
/area/corsat/gamma/medbay)
"eOZ" = (
/obj/structure/flora/bush/ausbushes/var3/leafybush,
@@ -39405,32 +29044,23 @@
/area/corsat/theta/biodome)
"ePL" = (
/obj/structure/closet/l3closet/general,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/virology)
"eQR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"eRg" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/toxins)
"eRi" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"eRE" = (
/obj/structure/filingcabinet/filingcabinet,
@@ -39438,24 +29068,17 @@
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/theta/airlock/west/id)
"eRX" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"eSg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"eSC" = (
/obj/structure/machinery/light,
@@ -39463,31 +29086,22 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"eSY" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/sigma/cargo)
"eTf" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"eTg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/theta/airlock/control)
"eTj" = (
/obj/structure/filingcabinet/filingcabinet,
@@ -39497,128 +29111,80 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner,
/area/corsat/gamma/residential/east)
"eTR" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/security)
"eUe" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"eUf" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/north,
/area/corsat/sigma/south)
"eUn" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/omega/containment)
"eUB" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/east,
/area/corsat/gamma/hallwaysouth)
"eUE" = (
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome)
"eUK" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/theta/biodome/hydrowest)
"eUR" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/south)
"eVe" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/corsat/omega/hallways)
"eVr" = (
/obj/structure/coatrack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/omega/offices)
"eVI" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/biodome/complex)
"eVQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/sigma/south/complex)
"eWX" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"eXi" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/hangar/arrivals)
"eXO" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"eXS" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/sigma/dorms)
"eXX" = (
/obj/structure/surface/table/reinforced,
/obj/item/paper,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"eYe" = (
/obj/structure/bedsheetbin,
@@ -39626,52 +29192,33 @@
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/laundry)
"eYr" = (
/obj/structure/surface/rack,
/obj/item/storage/briefcase,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/hangar/security)
"eYv" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/south/offices)
"eYG" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/omega/offices)
"eYT" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/security)
"eZq" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/east,
/area/corsat/gamma/residential/west)
"eZv" = (
/obj/structure/closet/jcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/hydroeast)
"eZQ" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -39683,65 +29230,44 @@
dir = 4
},
/obj/structure/closet/l3closet/scientist,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/complex)
"faF" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/biodome/complex)
"faT" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/corsat/gamma/cargo)
"fbe" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"fbs" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"fcd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"fcq" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/omega/offices)
"fdc" = (
/obj/structure/machinery/light/small,
/turf/open/floor/corsat,
/area/corsat/gamma/residential/researcher)
"fdf" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/omega/hallways)
"fdh" = (
/obj/structure/pipes/vents/pump{
@@ -39752,9 +29278,7 @@
"feg" = (
/obj/structure/closet/crate/science,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"fey" = (
/obj/structure/flora/pottedplant{
@@ -39764,10 +29288,7 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/sigma/cargo)
"feC" = (
/obj/structure/surface/table/woodentable,
@@ -39776,64 +29297,42 @@
/area/corsat/sigma/dorms)
"feD" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"feQ" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/virology)
"feZ" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/south/robotics)
"ffa" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/hallwaysouth)
"ffc" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/security)
"ffl" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"ffp" = (
/obj/structure/stairs,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/gamma/residential/east)
"ffC" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/sigma/hangar/office)
"ffF" = (
/obj/structure/surface/table/woodentable,
@@ -39842,18 +29341,13 @@
/turf/open/floor/wood,
/area/corsat/gamma/rnr/library)
"ffQ" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/south)
"fgs" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 8
- },
+/turf/open/floor/almayer/research/containment/floor2/west,
/area/corsat/sigma/south/complex)
"fgu" = (
/obj/structure/pipes/vents/pump{
@@ -39862,10 +29356,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"fgN" = (
/obj/structure/machinery/power/apc/high{
@@ -39873,46 +29364,29 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/engineering)
"fha" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/sigma/north)
"fhb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"fhG" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/folder/black_random,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/omega/offices)
"fid" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/biodome/toxins)
"fie" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"fip" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -39924,10 +29398,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/south/offices)
"fkG" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -39937,39 +29408,29 @@
name = "Hangar Security";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"fkV" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"fkX" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"flh" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/corsat/omega/cargo)
"fll" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/south)
"flo" = (
/obj/structure/window/reinforced{
@@ -39985,9 +29446,7 @@
"flt" = (
/obj/vehicle/train/cargo/trolley,
/obj/item/pamphlet/skill/powerloader,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"flB" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -39999,10 +29458,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"fmd" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -40012,19 +29468,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/engineering)
"fmk" = (
/obj/structure/noticeboard{
pixel_y = 30
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/residential/west)
"fmq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -40036,23 +29486,16 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydrowest)
"fmC" = (
/obj/structure/pipes/vents/pump,
/obj/structure/surface/table/reinforced,
/obj/item/device/assembly/voice,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"fmF" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/hangar)
"fmM" = (
/obj/structure/pipes/vents/pump{
@@ -40062,49 +29505,35 @@
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/virology)
"fmR" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/biodome/complex)
"fmZ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/north)
"fnd" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple,
/area/corsat/omega/hallways)
"fnz" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/sigma/south/complex)
"fog" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/checkpoint)
"foQ" = (
/obj/structure/tunnel{
@@ -40116,9 +29545,7 @@
/obj/structure/machinery/atm{
pixel_y = -30
},
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/foyer)
"fpI" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -40131,25 +29558,18 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/foyer)
"fqj" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/toxins)
"fqk" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("theta")
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/hydrowest)
"fqp" = (
/obj/structure/bed/chair/office/dark{
@@ -40164,43 +29584,29 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/corsat/sigma/biodome)
"fsd" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/red,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/office)
"fsn" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"fsr" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"fst" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/corsat/gamma/sigmaremote)
"fsu" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/hallways)
"fsx" = (
/turf/open/auto_turf/snow/layer4,
@@ -40215,43 +29621,30 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"fsS" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"ftj" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/syringes,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/virology)
"ftx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"ftX" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/hangar)
"fue" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -40261,28 +29654,20 @@
/area/corsat/theta/biodome)
"fum" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/south)
"fuG" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"fuK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/airlocknorth/id)
"fwq" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -40290,9 +29675,7 @@
/turf/open/gm/grass/grass1/weedable,
/area/corsat/theta/biodome)
"fwQ" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hangar/security)
"fxf" = (
/obj/structure/window/framed/corsat,
@@ -40302,50 +29685,32 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth)
"fxM" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/airlock/control)
"fxW" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/omega/airlocknorth/id)
"fyq" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/cargo)
"fyy" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/engineering/atmos)
"fyC" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/gamma/hangar/office)
"fyM" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/datalab)
"fyO" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"fzd" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -40356,26 +29721,18 @@
"fzm" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/laundry)
"fzo" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/hangar/security)
"fzy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"fzV" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -40385,18 +29742,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"fBG" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/hallways)
"fCi" = (
/obj/structure/surface/table,
@@ -40404,19 +29756,13 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"fCx" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southeast,
/area/corsat/gamma/administration)
"fCK" = (
/obj/structure/barricade/handrail{
@@ -40431,47 +29777,32 @@
/obj/item/storage/box/masks,
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"fDx" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"fDY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential/east)
"fEl" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"fEC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"fEI" = (
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"fEP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"fFa" = (
/obj/effect/landmark/corpsespawner/scientist,
@@ -40479,17 +29810,13 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/researcher)
"fFh" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/maint)
"fFI" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"fGJ" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -40497,18 +29824,12 @@
name = "Teleportation Chamber";
req_one_access_txt = "103"
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/corsat/gamma/sigmaremote)
"fGM" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/virology)
"fGO" = (
/obj/structure/machinery/light{
@@ -40517,87 +29838,57 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/gamma/sigmaremote)
"fGP" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"fGS" = (
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/hallwaysouth)
"fGU" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/sigma/south/complex)
"fGV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"fHO" = (
/obj/structure/largecrate/random,
/turf/open/floor/corsat,
/area/corsat/sigma/hangar)
"fHP" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/dorms)
"fHX" = (
/obj/structure/closet,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northeast,
/area/corsat/gamma/medbay/morgue)
"fIr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/theta/biodome/complex)
"fIY" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/omega/hallways)
"fIZ" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/north)
"fJf" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/sigma/southeast)
"fJm" = (
/obj/structure/closet/crate/trashcart,
@@ -40606,32 +29897,22 @@
"fJx" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/beakers,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/complex)
"fJZ" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"fKw" = (
/obj/structure/pipes/standard/simple/hidden/green,
/turf/open/floor/corsat,
/area/corsat/gamma/sigmaremote)
"fLm" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/gamma/biodome/complex)
"fLz" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"fMi" = (
/obj/structure/machinery/light{
@@ -40640,36 +29921,23 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"fMn" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"fMv" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/virology)
"fMN" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/gamma/canteen)
"fNy" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southeast,
/area/corsat/gamma/canteen)
"fOd" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -40680,9 +29948,7 @@
"fOh" = (
/obj/effect/landmark/corpsespawner/prisoner,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/security)
"fPp" = (
/obj/structure/surface/table/almayer,
@@ -40692,34 +29958,23 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/omega/offices)
"fPK" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/gamma/airlock/control)
"fQl" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/airlock/control)
"fQm" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"fQC" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -40728,21 +29983,14 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar/cargo)
"fRD" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/arrivals)
"fRR" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/control)
"fSo" = (
/obj/structure/bed/stool,
@@ -40756,25 +30004,17 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/gamma/hallwaysouth)
"fSA" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west,
/area/corsat/theta/biodome)
"fSB" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/sigma/hangar/arrivals)
"fSU" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/hangar/security)
"fSX" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -40784,52 +30024,36 @@
/area/prison/hangar_storage/research/shuttle)
"fTw" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/datamaint)
"fTx" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tool,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/gamma/engineering)
"fTK" = (
/obj/structure/prop/mech/parts/durand_left_leg,
-/turf/open/floor/corsat{
- icon_state = "arrow_east"
- },
+/turf/open/floor/corsat/arrow_east,
/area/corsat/sigma/south/robotics)
"fTT" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth)
"fUj" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/sigmaremote)
"fUp" = (
/obj/structure/machinery/light,
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/complex)
"fUA" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/security)
"fVl" = (
/obj/structure/pipes/vents/pump{
@@ -40843,25 +30067,18 @@
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/south/robotics)
"fVo" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"fWe" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"fWx" = (
/obj/structure/pipes/vents/pump{
@@ -40873,9 +30090,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"fWM" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -40884,23 +30099,16 @@
/turf/open/ice,
/area/corsat/gamma/biodome)
"fWN" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/checkpoint)
"fXx" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"fXA" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/sigma/airlock/control)
"fXE" = (
/obj/structure/machinery/power/apc/high{
@@ -40909,20 +30117,14 @@
start_charge = 0
},
/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential)
"fXJ" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"fXP" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/hangar/security)
"fYL" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -40932,179 +30134,121 @@
/obj/structure/machinery/camera/autoname{
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/security)
"fZQ" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/hangar/flightcontrol)
"fZW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hydroponics)
"gab" = (
/obj/structure/pipes/vents/pump,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/researcher)
"gak" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/east)
"gaF" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/security)
"gaO" = (
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/south)
"gaP" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/biodome/virology)
"gbd" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"gbm" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/toxins)
"gbw" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/corsat/gamma/cargo)
"gbQ" = (
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/omega/offices)
"gcs" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/theta/biodome/hydroeast)
"gcy" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/hangar)
"gcE" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/hallwaysouth)
"gcM" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/corsat/omega/hangar)
"gcW" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/theta/airlock/control)
"gdy" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"gdD" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars_cave{
- icon_state = "mars_cave_12"
- },
+/turf/open/mars_cave/mars_cave_12,
/area/corsat/sigma/biodome)
"gdM" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/id)
"gdO" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/complex)
"ged" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/airlocknorth)
"gei" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"gew" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/south)
"geN" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -41113,27 +30257,19 @@
"geV" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"gft" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/toxins)
"gfC" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"gfL" = (
/obj/structure/machinery/camera/autoname{
@@ -41144,104 +30280,69 @@
/area/corsat/theta/biodome)
"gfM" = (
/obj/structure/machinery/smartfridge/seeds,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/hydroeast)
"ggc" = (
/obj/structure/closet/crate/science,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/omega/cargo)
"ggh" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/monorail/control)
"ggq" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/foyer)
"ggO" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/security/cells)
"ggU" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"ghu" = (
/obj/effect/landmark/corpsespawner/wysec,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/security)
"ghx" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/maint)
"ghB" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"ghJ" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/security)
"gio" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/gamma/airlock/control)
"giX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/west,
/area/corsat/sigma/south)
"gjb" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/corsat/sigma/biodome/scrapyard)
"gjh" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/security)
"gjj" = (
/obj/structure/bed/chair/office/light{
@@ -41251,9 +30352,7 @@
dir = 4;
health = 80
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"gjt" = (
/obj/structure/machinery/door/airlock/almayer/generic,
@@ -41263,28 +30362,20 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/complex)
"gjX" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/omega/checkpoint)
"gke" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/corsat/sigma/cargo)
"gki" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/monorail)
"gkx" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -41296,24 +30387,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"gkC" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/monorail)
"gkH" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/sigmaremote)
"gkU" = (
/obj/structure/window/framed/corsat/security,
@@ -41329,32 +30413,20 @@
/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east,
/area/corsat/theta/biodome)
"gne" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/omega/hallways)
"gnm" = (
/obj/structure/closet/wardrobe/toxins_white,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/toxins)
"gnC" = (
/obj/structure/bed,
/obj/item/bedsheet,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southeast,
/area/corsat/gamma/medbay)
"gnF" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/sigma/southeast/datalab)
"gnO" = (
/obj/structure/bed/chair{
@@ -41363,9 +30435,7 @@
/obj/structure/barricade/handrail{
layer = 3
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"gnR" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -41376,9 +30446,7 @@
/area/corsat/theta/biodome)
"goe" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/airlocknorth)
"gok" = (
/obj/structure/surface/table/almayer,
@@ -41386,33 +30454,25 @@
dir = 8
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"goV" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"gpn" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/south/robotics)
"gpu" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Engineering Storage";
req_one_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"gpP" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -41421,19 +30481,14 @@
"gqd" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/office)
"gqi" = (
/obj/structure/bed/chair/office/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"gqo" = (
/obj/structure/closet/toolcloset,
@@ -41441,33 +30496,23 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering)
"gqE" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar)
"gqH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"gqK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"gqT" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -41479,19 +30524,13 @@
/turf/open/gm/grass/grass1/weedable,
/area/corsat/theta/biodome)
"gra" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"grc" = (
/obj/structure/closet/secure_closet/engineering_personal{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/south/engineering)
"gre" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -41501,9 +30540,7 @@
/area/corsat/theta/biodome)
"grf" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"grg" = (
/obj/structure/surface/table,
@@ -41511,10 +30548,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"grD" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -41522,10 +30556,7 @@
/turf/open/gm/dirtgrassborder/north,
/area/corsat/theta/biodome)
"grK" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southeast,
/area/corsat/gamma/residential/west)
"gsg" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -41535,10 +30566,7 @@
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"gtc" = (
/obj/structure/barricade/handrail{
@@ -41552,43 +30580,30 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"gtp" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/south/offices)
"gtr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"gtI" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/complex)
"gtP" = (
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/gamma/residential)
"gtX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -41597,10 +30612,7 @@
/turf/open/gm/dirt,
/area/corsat/theta/biodome)
"gud" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/hallways)
"gui" = (
/obj/structure/machinery/vending/coffee,
@@ -41613,58 +30625,42 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"guA" = (
/obj/structure/curtain/open/medical,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"guG" = (
/obj/structure/bed/chair,
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/lobby)
"guS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/gamma/foyer)
"gvh" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar)
"gvi" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"gvl" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"gvs" = (
/obj/structure/bed/chair/comfy/black,
@@ -41672,17 +30668,12 @@
/area/corsat/theta/biodome/complex)
"gwV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/east/id)
"gwW" = (
/obj/structure/surface/table/reinforced,
/obj/item/phone,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/hangar/office)
"gwY" = (
/obj/structure/machinery/disposal,
@@ -41693,38 +30684,26 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"gxp" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/biodome/virology)
"gxu" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"gyg" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/southeast/datalab)
"gys" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/revolver/cmb,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hangar/security)
"gyx" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -41734,25 +30713,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"gyK" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/robotics)
"gze" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/gamma/hangar/monorail)
"gzf" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -41766,35 +30737,24 @@
dir = 8
},
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/foyer)
"gzB" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"gzL" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/west)
"gAh" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/morgue)
"gAt" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential)
"gAv" = (
/obj/structure/surface/table/reinforced,
@@ -41802,9 +30762,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"gBh" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -41823,21 +30781,14 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential)
"gCN" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/dataoffice)
"gCO" = (
-/turf/open/floor/corsat{
- icon_state = "green"
- },
+/turf/open/floor/corsat/green,
/area/corsat/gamma/hallwaysouth)
"gEf" = (
/obj/structure/machinery/light{
@@ -41845,16 +30796,11 @@
},
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/robotics)
"gEm" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/checkpoint)
"gEy" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -41871,10 +30817,7 @@
/turf/open/gm/dirtgrassborder/east,
/area/corsat/theta/biodome)
"gEV" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/gamma/airlock/control)
"gFh" = (
/obj/structure/flora/jungle/alienplant1,
@@ -41886,15 +30829,10 @@
"gGb" = (
/obj/structure/surface/table,
/obj/item/book,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"gGF" = (
-/turf/open/floor/corsat{
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner,
/area/corsat/gamma/medbay/morgue)
"gGQ" = (
/obj/structure/surface/table/reinforced,
@@ -41902,69 +30840,45 @@
dir = 1;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southwest,
/area/corsat/omega/control)
"gGR" = (
/obj/structure/surface/rack,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"gGT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"gGZ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"gHg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"gHn" = (
/obj/structure/machinery/computer/crew,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"gIe" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/east,
/area/corsat/omega/hallways)
"gIT" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/omega/offices)
"gJn" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/foyer)
"gJr" = (
/obj/structure/surface/table/almayer,
@@ -41972,9 +30886,7 @@
dir = 8
},
/obj/structure/machinery/computer/emails,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"gJz" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -41984,10 +30896,7 @@
/turf/open/auto_turf/snow/layer0,
/area/corsat/gamma/biodome)
"gJS" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/checkpoint)
"gJX" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -41995,24 +30904,16 @@
/area/corsat/theta/airlock/west/id)
"gKn" = (
/obj/structure/closet/wardrobe,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"gKu" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/corsat/gamma/hallwaysouth)
"gKQ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "tcomms"
- },
+/turf/open/floor/corsat/tcomms/southwest,
/area/corsat/gamma/sigmaremote)
"gLs" = (
/turf/closed/wall/r_wall/biodome,
@@ -42025,41 +30926,29 @@
/turf/open/gm/dirt,
/area/corsat/theta/biodome)
"gLW" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/gamma/hangar/arrivals)
"gMC" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar)
"gMY" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/gamma/hangar/security)
"gNb" = (
-/turf/open/floor/corsat{
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple,
/area/corsat/omega/complex)
"gNt" = (
/obj/structure/platform{
dir = 1;
layer = 2.7
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"gOk" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -42073,79 +30962,55 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/rnr)
"gOO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/gamma/biodome/complex)
"gOP" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/reinforced,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"gOU" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"gOZ" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/checkpoint)
"gPd" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar)
"gPk" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/gamma/foyer)
"gPo" = (
/obj/structure/platform{
dir = 4;
layer = 2
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/hallwaysouth)
"gPC" = (
/obj/structure/bed/sofa/vert/grey/top,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/sigma/hangar/arrivals)
"gPN" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/security)
"gPU" = (
/obj/structure/machinery/light{
@@ -42154,19 +31019,14 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"gPX" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/hangar/office)
"gQj" = (
/obj/structure/machinery/light/small{
@@ -42176,53 +31036,34 @@
/area/corsat/gamma/airlock/south/id)
"gQL" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northeast,
/area/corsat/gamma/medbay/lobby)
"gRf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/sigma/south)
"gRg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/corsat/sigma/biodome)
"gRm" = (
/obj/structure/bed/stool{
pixel_y = 15
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"gRB" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/north)
"gRE" = (
/obj/structure/closet/wardrobe/science_white,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/complex)
"gRH" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"gRP" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -42232,22 +31073,15 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/morgue)
"gSm" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"gSu" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/sigma/south/complex)
"gSC" = (
/obj/structure/largecrate/random/barrel,
@@ -42257,52 +31091,36 @@
/turf/open/floor/corsat,
/area/corsat/gamma/cargo/disposal)
"gSI" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hangar/office)
"gSQ" = (
/obj/structure/prop/almayer/cannon_cable_connector{
name = "\improper Cable connector"
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/corsat/theta/biodome/complex)
"gTe" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"gUe" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/prop/almayer/computers/mapping_computer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"gUj" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/dorms)
"gUs" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"gUw" = (
/obj/structure/closet/crate/science{
@@ -42311,18 +31129,13 @@
opened = 1
},
/obj/item/organ/kidneys,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"gUX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/theta/biodome/complex)
"gVr" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -42335,27 +31148,20 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/dorms)
"gVM" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/offices)
"gVR" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"gWS" = (
/obj/structure/surface/table,
@@ -42364,56 +31170,39 @@
layer = 2
},
/obj/structure/machinery/computer3/laptop/secure_data,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"gWU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/corsat/sigma/biodome)
"gXp" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"gXv" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"gXG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"gXL" = (
/obj/structure/surface/rack,
/obj/item/device/lightreplacer,
/obj/item/storage/box/lights,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/hydroeast)
"gXM" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/southwest,
/area/corsat/sigma/south)
"gXN" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -42427,68 +31216,47 @@
name = "Maintainence";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/maint)
"gYr" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"gYA" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/checkpoint)
"gYL" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "tcomms"
- },
+/turf/open/floor/corsat/tcomms/southwest,
/area/corsat/gamma/sigmaremote)
"gZc" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"gZj" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/southeast/dataoffice)
"gZs" = (
/obj/structure/platform{
dir = 4;
layer = 2
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/sigma/south)
"gZw" = (
/obj/effect/landmark/corpsespawner/chef,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"gZB" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"gZF" = (
/obj/structure/bed,
@@ -42499,36 +31267,27 @@
"gZH" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/screwdriver,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"hap" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"hat" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner,
/area/corsat/sigma/dorms)
"hay" = (
/obj/structure/closet/secure_closet/security_empty{
name = "Warden's Locker"
},
/obj/item/clothing/head/beret/sec/warden,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hangar/office)
"haG" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -42536,57 +31295,37 @@
name = "\improper Showers"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"hbu" = (
/obj/structure/surface/rack,
/obj/item/storage/box/beakers,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"hbB" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/sigma/south/robotics)
"hbF" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/omega/control)
"hbX" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet5-1"
- },
+/turf/open/floor/carpet5_1/west,
/area/corsat/omega/offices)
"hcg" = (
/obj/structure/pipes/vents/pump,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/corsat/sigma/biodome)
"hcH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/north)
"hcU" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"hdB" = (
/obj/structure/flora/jungle/plantbot1,
@@ -42595,21 +31334,15 @@
/area/corsat/theta/biodome)
"hdG" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/hangar/office)
"hdR" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"heb" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"hed" = (
/obj/structure/sign/safety/storage,
@@ -42620,32 +31353,22 @@
dir = 8
},
/obj/item/storage/toolbox/electrical,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"hel" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"heo" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/hallwaysouth)
"hep" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/security)
"heL" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -42662,60 +31385,43 @@
dir = 8;
layer = 2.8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"hgB" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/airlocknorth/id)
"hhb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/monorail)
"hhj" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/west)
"hho" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 1
- },
+/turf/open/floor/almayer/research/containment/floor2/north,
/area/corsat/gamma/sigmaremote)
"hhA" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/gamma/hallwaysouth)
"hhP" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/freezer)
"hhT" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"hiw" = (
/obj/structure/bed/chair/comfy/black{
@@ -42730,9 +31436,7 @@
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/complex)
"hjU" = (
/obj/structure/machinery/light{
@@ -42741,9 +31445,7 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"hkn" = (
/obj/structure/pipes/vents/pump{
@@ -42759,23 +31461,16 @@
/turf/open/gm/dirtgrassborder/west,
/area/corsat/theta/biodome)
"hkZ" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/corsat/omega/cargo)
"hle" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/phoron/medium_stack,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"hlf" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/almayer{
- icon_state = "plating_striped"
- },
+/turf/open/floor/almayer/plating_striped,
/area/corsat/gamma/sigmaremote)
"hls" = (
/obj/structure/xenoautopsy/tank/hugger,
@@ -42787,40 +31482,27 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/security)
"hlM" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{
id = "SigmaWestW";
name = "Sigma West Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/control)
"hmO" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/theta/airlock/control)
"hnr" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/sigma/hangar/arrivals)
"hnx" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"hnR" = (
/obj/structure/flora/jungle/plantbot1,
@@ -42831,80 +31513,54 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"hok" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/south/offices)
"hoC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/security)
"hpB" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/rnr)
"hpC" = (
/obj/structure/closet/secure_closet{
name = "secure evidence locker";
req_access_txt = "104"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"hpM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"hqa" = (
/obj/structure/machinery/light,
/obj/structure/bed/sofa/vert/grey/top,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/sigma/hangar/arrivals)
"hqd" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/airlock/control)
"hqv" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/robotics)
"hqA" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/gamma/cargo)
"hqU" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -42918,31 +31574,20 @@
"hrf" = (
/obj/structure/surface/table,
/obj/item/folder/yellow,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"hsq" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"hsr" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"hsD" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/south)
"hsJ" = (
/obj/structure/surface/table,
@@ -42952,10 +31597,7 @@
layer = 2
},
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"hsM" = (
/obj/structure/surface/table/almayer,
@@ -42966,64 +31608,42 @@
pixel_y = 2;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/sigma/hangar/office)
"hta" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/checkpoint)
"hte" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northeast,
/area/corsat/gamma/residential/west)
"htv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar)
"htZ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential)
"huc" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"hun" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"huo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/maint)
"hur" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"huu" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -43036,24 +31656,18 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar)
"huK" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/airlock/control)
"huL" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/bodybags,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/morgue)
"huQ" = (
/obj/structure/bed/chair/wood/wings{
@@ -43066,55 +31680,37 @@
/turf/open/floor/wood,
/area/corsat/gamma/rnr/bar)
"hva" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/dorms)
"hvj" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southeast,
/area/corsat/gamma/hallwaysouth)
"hvl" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"hvn" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"hvz" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"hvD" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/south)
"hvT" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"hvZ" = (
/obj/structure/pipes/vents/pump,
@@ -43122,25 +31718,19 @@
/area/corsat/sigma/dorms)
"hwe" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"hws" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"hwI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/omega/security)
"hwV" = (
/obj/structure/platform{
@@ -43148,66 +31738,47 @@
dir = 4;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"hwW" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/gamma/airlock/control)
"hxc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential/researcher)
"hxl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/south/offices)
"hxW" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/hangar/office)
"hyf" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/sigmaremote)
"hyG" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/biodome/toxins)
"hyY" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/binoculars,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"hze" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
@@ -43218,10 +31789,7 @@
dir = 1
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay/surgery)
"hzm" = (
/obj/structure/barricade/handrail{
@@ -43237,56 +31805,39 @@
/area/corsat/gamma/residential/east)
"hzM" = (
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/southeast/datamaint)
"hzU" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/researcher)
"hAB" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"hBo" = (
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering/core)
"hBp" = (
/obj/structure/machinery/medical_pod/sleeper{
flags_atom = 18
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"hBq" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/toxins)
"hBA" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"hBF" = (
/obj/structure/pipes/vents/pump{
@@ -43296,10 +31847,7 @@
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/south/robotics)
"hBM" = (
/obj/structure/machinery/landinglight/ds1/delayone{
@@ -43309,25 +31857,17 @@
/area/corsat/gamma/hangar)
"hCm" = (
/obj/structure/cargo_container/wy/left,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"hCt" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/west,
/area/corsat/gamma/residential/east)
"hCG" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/atmos_alert{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering/atmos)
"hCJ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -43337,10 +31877,7 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"hCY" = (
/obj/structure/safe,
@@ -43354,15 +31891,10 @@
/area/corsat/gamma/administration)
"hDl" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/monorail)
"hDE" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/west,
/area/corsat/gamma/medbay/morgue)
"hDF" = (
/turf/open/floor/corsat,
@@ -43375,10 +31907,7 @@
/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west,
/area/corsat/theta/biodome)
"hDX" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/corsat/omega/cargo)
"hEb" = (
/obj/structure/closet/cabinet,
@@ -43387,31 +31916,21 @@
/area/corsat/gamma/residential/east)
"hEi" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/toxins)
"hEt" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/east)
"hEH" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/robotics)
"hFc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"hFh" = (
/obj/structure/window/framed/corsat/security,
@@ -43428,21 +31947,13 @@
/area/corsat/gamma/rnr/bar)
"hFo" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"hFR" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/hangar/monorail/control)
"hFW" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/gamma/hangar)
"hGd" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -43451,9 +31962,7 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"hGf" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -43462,33 +31971,24 @@
"hGg" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"hHg" = (
/obj/item/reagent_container/spray/cleaner,
/obj/structure/surface/rack,
/obj/item/reagent_container/spray/cleaner,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/virology)
"hHn" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Airlock Control";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/theta/airlock/control)
"hHx" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/hangar)
"hHy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -43500,31 +32000,23 @@
/area/corsat/gamma/biodome)
"hHA" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 1
- },
+/turf/open/floor/almayer/research/containment/floor2/north,
/area/corsat/inaccessible)
"hHL" = (
/obj/item/alien_embryo{
color = "#00ff80";
name = "corrupted alien embryo"
},
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 1
- },
+/turf/open/floor/almayer/research/containment/floor2/north,
/area/corsat/inaccessible)
"hHM" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"hId" = (
-/turf/open/floor/corsat{
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner,
/area/corsat/gamma/residential)
"hIh" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -43535,16 +32027,11 @@
/obj/item/ammo_magazine/pistol/mod88,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hangar/security)
"hIo" = (
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/north,
/area/corsat/gamma/hangar/flightcontrol)
"hJw" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -43552,31 +32039,21 @@
/area/corsat/theta/biodome)
"hJG" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/hangar/arrivals)
"hJI" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/omega/complex)
"hKc" = (
/obj/effect/landmark/corpsespawner/engineer,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/core)
"hKi" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southeast,
/area/corsat/gamma/residential/east)
"hKt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -43594,9 +32071,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential)
"hKH" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -43605,32 +32080,22 @@
/area/corsat/theta/biodome)
"hKZ" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/generator)
"hLh" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"hLL" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/administration)
"hMo" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/south/offices)
"hMx" = (
/obj/structure/toilet{
@@ -43641,30 +32106,20 @@
},
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"hMR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/monorail)
"hNh" = (
/obj/item/tool/wet_sign,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential)
"hNA" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/theta/biodome/hydrowest)
"hNI" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -43684,9 +32139,7 @@
icon_state = "0-8";
layer = 2.1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering/core)
"hOb" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -43696,9 +32149,7 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hangar/office)
"hOU" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -43706,165 +32157,116 @@
name = "Maintenance Closet";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/sigmaremote)
"hOV" = (
/obj/structure/machinery/light,
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"hPg" = (
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south)
"hPi" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"hPr" = (
/obj/item/storage/box/gloves,
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"hPy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/office)
"hPF" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/omega/offices)
"hPL" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"hQb" = (
/obj/effect/decal/cleanable/cobweb{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"hQf" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/checkpoint)
"hQS" = (
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/omega/hallways)
"hRb" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/airlock/control)
"hRI" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"hRK" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering)
"hRQ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar)
"hSo" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/checkpoint)
"hSr" = (
/obj/structure/bed/chair,
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/checkpoint)
"hSv" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
dir = 2;
name = "Research Desk"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"hSQ" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/airlock/south)
"hST" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"hTd" = (
/obj/structure/showcase,
@@ -43880,17 +32282,12 @@
dir = 1;
layer = 2
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"hTe" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/hangar/office)
"hTr" = (
/obj/structure/platform{
@@ -43901,10 +32298,7 @@
dir = 4;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northeast,
/area/corsat/gamma/hallwaysouth)
"hTI" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -43913,66 +32307,43 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential)
"hUR" = (
/obj/structure/machinery/door/window/southleft,
/obj/structure/machinery/door/window/northleft,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"hUS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/sigmaremote)
"hUY" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/hallways)
"hVq" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/omega/complex)
"hVx" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/omega/maint)
"hVF" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{
id = "ThetaWestW";
name = "Theta West Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/west)
"hVR" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/containment)
"hWg" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/southeast)
"hWx" = (
/obj/structure/machinery/camera/autoname{
@@ -43983,60 +32354,40 @@
"hWW" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/monkeycubes,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/complex)
"hXH" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/sigma/south/offices)
"hYo" = (
/obj/structure/barricade/handrail{
layer = 3
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"hYs" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/security)
"hYI" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/southeast/datamaint)
"hYU" = (
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/foyer)
"hYZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"hZu" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/gamma/security)
"hZO" = (
/obj/structure/surface/rack,
@@ -44045,9 +32396,7 @@
/obj/item/reagent_container/glass/beaker/vial,
/obj/item/reagent_container/glass/beaker/vial,
/obj/item/reagent_container/glass/beaker/vial,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/virology)
"hZU" = (
/obj/structure/machinery/botany{
@@ -44057,24 +32406,17 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hydroponics)
"iav" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/south/security)
"ibe" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"ibz" = (
/obj/structure/bed/chair/wood/normal{
@@ -44087,37 +32429,27 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/east)
"ick" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/north,
/area/corsat/omega/hallways)
"ict" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/monorail/control)
"icZ" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/reinforced,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/sigma/south/complex)
"idf" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/reinforced,
/obj/item/tank/air,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"idU" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -44127,9 +32459,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"iem" = (
/obj/structure/machinery/landinglight/ds1/delayone{
@@ -44141,46 +32471,33 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"ieZ" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer3/laptop/secure_data,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"ifh" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/gamma/residential/researcher)
"ifj" = (
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/administration)
"ifx" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hangar/security)
"ifS" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/east)
"ifX" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -44189,23 +32506,16 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"iho" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/sigma/dorms)
"ihD" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"ihL" = (
/obj/structure/window/reinforced{
@@ -44213,24 +32523,17 @@
health = 80
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/datalab)
"ihN" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/theta/biodome/complex)
"iik" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"iiI" = (
/obj/structure/flora/jungle/plantbot1,
@@ -44244,21 +32547,14 @@
start_charge = 0
},
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/gamma/airlock/south)
"iiX" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/airlock/east/id)
"iiY" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/office)
"ijA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -44274,25 +32570,17 @@
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/virology)
"ikv" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/sigma/southeast/datalab)
"ikC" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Holding Cell";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"ikQ" = (
/obj/structure/machinery/light/small{
@@ -44307,46 +32595,31 @@
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/gamma/residential/researcher)
"ilm" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/theta/airlock/west/id)
"ilo" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"ilr" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/toxins)
"ilF" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"ilI" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/theta/airlock/west/id)
"ilZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -44355,10 +32628,7 @@
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"ims" = (
/obj/structure/bed/nest,
@@ -44372,114 +32642,80 @@
"imK" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/assembly/timer,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"ing" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"inT" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner,
/area/corsat/gamma/medbay)
"inY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/corsat/sigma/biodome)
"inZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/corsat/omega/cargo)
"ioh" = (
/obj/structure/bed/chair/comfy/beige{
dir = 1
},
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/corsat/gamma/residential/lounge)
"ipE" = (
/obj/structure/closet/radiation,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"iqp" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"iqx" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/generator)
"iqE" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"iqY" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/sigma/north)
"irp" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "arrow_south"
- },
+/turf/open/floor/corsat/arrow_south,
/area/corsat/sigma/hangar)
"irP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"ish" = (
/obj/structure/machinery/camera/autoname{
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hallways)
"isS" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -44487,136 +32723,92 @@
req_access_txt = "103"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"isY" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/sigma/dorms)
"itb" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/biodome/virology)
"ito" = (
/obj/structure/janitorialcart,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"its" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"itD" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/airlocknorth)
"iul" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/hangar)
"iuz" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/hangar)
"iuD" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"ivy" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security)
"ivW" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/airlock/north/id)
"iwx" = (
/obj/structure/bed/sofa/vert/grey/bot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/monorail)
"iwB" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southwest,
/area/corsat/gamma/residential/west)
"iwU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"ixd" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/southeast/datalab)
"ixm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"ixZ" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"iyp" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -44628,24 +32820,17 @@
name = "Security Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar/security)
"iys" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"iyA" = (
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"izl" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -44654,57 +32839,38 @@
},
/obj/item/xeno_restraints,
/obj/item/xeno_restraints,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/security)
"izn" = (
/obj/structure/prop/almayer/computers/sensor_computer1,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/sigmaremote)
"izt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/sigma/airlock/control)
"iAy" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/southeast/datalab)
"iAD" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/laundry)
"iAI" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"iAO" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/gamma/biodome/toxins)
"iBg" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -44718,9 +32884,7 @@
dir = 1
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"iBs" = (
/obj/structure/surface/table/woodentable,
@@ -44734,26 +32898,19 @@
dir = 8;
id_tag = "mining_outpost_pump"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/sigmaremote)
"iCm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"iCo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/rnr)
"iCA" = (
/obj/structure/machinery/botany{
@@ -44762,44 +32919,30 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hydroponics)
"iCN" = (
/obj/structure/surface/table/almayer,
/obj/item/circuitboard/machine/clonepod,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/engineering)
"iCP" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/south/id)
"iDB" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/dorms)
"iDD" = (
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/corsat/omega/hangar)
"iDH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"iDV" = (
/obj/structure/bed/chair{
@@ -44808,25 +32951,18 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"iEg" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/hangar/security)
"iEF" = (
/obj/effect/landmark/corpsespawner/doctor,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"iEH" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -44840,46 +32976,30 @@
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/omega/offices)
"iEY" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/corsat/gamma/cargo)
"iFy" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"iFL" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/hallways)
"iGT" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/sigma/south/complex)
"iHc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/medbay/morgue)
"iHo" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -44888,10 +33008,7 @@
/turf/open/gm/dirtgrassborder/west,
/area/corsat/theta/biodome)
"iHY" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/corsat/omega/hallways)
"iIf" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -44901,104 +33018,70 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"iIu" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/gamma/residential/west)
"iIK" = (
/obj/structure/bed/sofa/vert/white/bot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"iIU" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"iJv" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/southeast)
"iJz" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/cargo)
"iJB" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/checkpoint)
"iKn" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southwest,
/area/corsat/sigma/dorms)
"iLj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/hangar/office)
"iLv" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome)
"iLw" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/hangar/cargo)
"iLN" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"iLZ" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"iMM" = (
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/gamma/administration)
"iNk" = (
/obj/structure/flora/bush/ausbushes/var3/sunnybush,
@@ -45013,29 +33096,18 @@
dir = 1
},
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/airlock/south/id)
"iNZ" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet9-4"
- },
+/turf/open/floor/carpet9_4/west,
/area/corsat/omega/offices)
"iOe" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/omega/hallways)
"iOi" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/hydrowest)
"iOL" = (
/obj/structure/disposaloutlet{
@@ -45044,38 +33116,24 @@
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/complex)
"iOP" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"iOR" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/hangar/checkpoint)
"iOW" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/toxins)
"iPn" = (
/obj/structure/platform{
density = 0;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"iPo" = (
/obj/structure/machinery/constructable_frame{
@@ -45090,27 +33148,20 @@
/turf/open/auto_turf/snow/layer0,
/area/corsat/gamma/biodome)
"iQi" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/east,
/area/corsat/gamma/medbay/morgue)
"iQs" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"iQE" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential/researcher)
"iQH" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -45119,35 +33170,24 @@
/area/corsat/theta/biodome)
"iQL" = (
/obj/structure/closet/wardrobe/robotics_black,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/robotics)
"iQQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"iQY" = (
/obj/structure/barricade/handrail{
dir = 8
},
/obj/structure/barricade/handrail,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"iRw" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/hangar)
"iSB" = (
/obj/structure/window/framed/corsat,
@@ -45159,16 +33199,10 @@
dir = 1;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/west,
/area/corsat/gamma/hallwaysouth)
"iTL" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/sigma/south/complex)
"iTT" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -45176,9 +33210,7 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/north/id)
"iTW" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -45188,30 +33220,20 @@
/obj/structure/machinery/light,
/obj/structure/janitorialcart,
/obj/item/tool/mop,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential)
"iVA" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"iWo" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"iWx" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southwest,
/area/corsat/gamma/residential/west)
"iWA" = (
/obj/structure/surface/table/woodentable,
@@ -45222,51 +33244,33 @@
/area/corsat/gamma/residential/researcher)
"iWH" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/gamma/engineering)
"iWK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"iWO" = (
/obj/structure/surface/table,
/obj/item/folder/blue,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"iXU" = (
-/turf/open/floor/corsat{
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner,
/area/corsat/sigma/dorms)
"iYj" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"iYG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/theta/biodome/complex)
"iYR" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/gamma/engineering/core)
"iZu" = (
/obj/structure/platform{
@@ -45274,16 +33278,11 @@
layer = 2.7
},
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/gamma/hallwaysouth)
"iZv" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"iZz" = (
/obj/structure/closet/cabinet,
@@ -45301,28 +33300,21 @@
"iZZ" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/sigma/dorms)
"jai" = (
/obj/structure/platform{
density = 0;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner,
/area/corsat/gamma/hallwaysouth)
"jaJ" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"jba" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -45330,10 +33322,7 @@
/turf/open/gm/dirt,
/area/corsat/theta/biodome)
"jbj" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northeast,
/area/corsat/gamma/residential/west)
"jbN" = (
/obj/structure/window/framed/corsat,
@@ -45341,16 +33330,12 @@
/area/corsat/gamma/hangar/checkpoint)
"jcl" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"jcA" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"jdj" = (
/obj/structure/surface/table/almayer,
@@ -45365,9 +33350,7 @@
pixel_x = 8;
pixel_y = 3
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/complex)
"jdk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -45384,9 +33367,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"jee" = (
/obj/structure/machinery/power/apc/high{
@@ -45394,15 +33375,10 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/west/id)
"jeE" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/theta/airlock/control)
"jfP" = (
/turf/closed/wall/biodome,
@@ -45412,26 +33388,19 @@
/obj/item/circuitboard/exosuit/main/max,
/obj/item/circuitboard/exosuit/peripherals/max/targeting,
/obj/item/circuitboard/exosuit/peripherals/max,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"jgb" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/retractor,
/obj/item/tool/surgery/bonesetter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay/surgery)
"jgG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/hangar/security)
"jgI" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -45441,105 +33410,70 @@
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/monorail/control)
"jgM" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/airlock/control)
"jho" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/complex)
"jhz" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/complex)
"jhL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/corsat/sigma/biodome)
"jhN" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/theta/airlock/control)
"jhO" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/administration)
"jhR" = (
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/shuttle/dropship{
- icon_state = "floor8"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right,
/area/prison/hangar_storage/research/shuttle)
"jja" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/gamma/hallwaysouth)
"jjb" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"jjz" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/morgue)
"jjC" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"jjN" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"jkb" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/sigmaremote)
"jlp" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northeast,
/area/corsat/gamma/residential/west)
"jlL" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -45553,37 +33487,25 @@
/turf/open/gm/dirt,
/area/corsat/theta/biodome)
"jme" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"jmg" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/checkpoint)
"jmL" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/syringes,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/gamma/biodome/complex)
"jmO" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/foyer)
"jmQ" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor/almayer/research/containment/corner{
- dir = 4
- },
+/turf/open/floor/almayer/research/containment/corner/east,
/area/corsat/sigma/south/complex)
"jmU" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -45596,22 +33518,14 @@
dir = 1
},
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"jno" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/sigma/hangar/monorail)
"jns" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"jnt" = (
/obj/structure/surface/table/reinforced,
@@ -45623,10 +33537,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/airlock/east/id)
"jnA" = (
/obj/structure/surface/table/woodentable,
@@ -45642,33 +33553,22 @@
dir = 8
},
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"jok" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/skills{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/gamma/biodome/complex)
"jpn" = (
/obj/structure/surface/rack,
/obj/item/toy/plush/farwa,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/hangar/security)
"jpB" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/hangar/arrivals)
"jqo" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -45685,10 +33585,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"jsp" = (
/obj/structure/machinery/camera/autoname{
@@ -45702,26 +33599,18 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"jsK" = (
/obj/item/pamphlet/skill/powerloader,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/gamma/cargo)
"jtY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"juf" = (
/obj/structure/closet/cabinet,
@@ -45733,81 +33622,53 @@
/area/corsat/gamma/residential/researcher)
"juh" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"juk" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/structure/machinery/camera/autoname{
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/security)
"juq" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"juA" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/security)
"juI" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/sigmaremote)
"jvk" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"jvC" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"jvG" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"jwv" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/corsat/sigma/biodome)
"jwx" = (
/obj/structure/machinery/blackbox_recorder,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/sigma/south/complex)
"jwE" = (
/obj/structure/closet/radiation,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/sigma/south/complex)
"jxA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -45815,15 +33676,11 @@
},
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"jxN" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/foyer)
"jxR" = (
/obj/structure/pipes/vents/pump{
@@ -45835,28 +33692,19 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential)
"jyk" = (
/obj/structure/surface/rack,
/obj/item/device/binoculars,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"jyK" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/corsat/gamma/hangar/monorail/railcart)
"jyM" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/corsat/omega/hallways)
"jyR" = (
/obj/structure/machinery/light{
@@ -45865,53 +33713,38 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"jyX" = (
/obj/structure/bed/nest,
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"jyZ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/researcher)
"jzn" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/virology)
"jzM" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"jAd" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"jAq" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/security)
"jAz" = (
/obj/structure/surface/table/almayer,
@@ -45920,16 +33753,11 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/omega/offices)
"jAE" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"jAO" = (
/obj/structure/machinery/light/small{
@@ -45939,9 +33767,7 @@
/area/corsat/sigma/hangar)
"jBx" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/corsat/sigma/biodome)
"jBC" = (
/obj/structure/machinery/vending/cigarette/colony,
@@ -45965,31 +33791,21 @@
dir = 1;
pixel_y = 2
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"jDO" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/gloves,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/virology)
"jEI" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/sigma/southeast)
"jEK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/gamma/residential/west)
"jFF" = (
/obj/structure/machinery/power/apc/high{
@@ -45997,15 +33813,10 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential/researcher)
"jFJ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/sigma/hangar/arrivals)
"jFP" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -46020,10 +33831,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southwest,
/area/corsat/sigma/dorms)
"jGd" = (
/obj/structure/platform{
@@ -46031,53 +33839,33 @@
dir = 1;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/hallwaysouth)
"jGk" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "tcomms"
- },
+/turf/open/floor/corsat/tcomms/southwest,
/area/corsat/gamma/sigmaremote)
"jGH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/airlock/east)
"jGZ" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/plastic,
/obj/item/trash/cigbutt,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/hangar)
"jHa" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome)
"jHF" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/gamma/hallwaysouth)
"jHV" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/sigma/hangar/monorail)
"jIm" = (
/obj/structure/flora/bush/ausbushes/var3/leafybush,
@@ -46087,35 +33875,24 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/omega/hallways)
"jJm" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/corsat/sigma/biodome/testgrounds)
"jJp" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"jJt" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Arrivals"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/checkpoint)
"jJv" = (
/obj/structure/machinery/light{
@@ -46124,46 +33901,29 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"jJD" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/arrivals)
"jJM" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/east,
/area/corsat/gamma/medbay)
"jJN" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/gamma/hangar/monorail)
"jJQ" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"jKy" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/omega/complex)
"jLa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -46177,9 +33937,7 @@
dir = 8;
layer = 2.8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"jLU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -46191,10 +33949,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome)
"jOh" = (
/turf/closed/wall/r_wall/biodome,
@@ -46203,10 +33958,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southwest,
/area/corsat/gamma/residential/west)
"jOw" = (
/obj/structure/machinery/light{
@@ -46215,33 +33967,22 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/gamma/residential)
"jOE" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential/researcher)
"jPe" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/sigma/south/complex)
"jPL" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/sparker,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/sigma/south/complex)
"jQL" = (
/obj/structure/closet/wardrobe,
@@ -46249,16 +33990,11 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"jQT" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"jRl" = (
/obj/structure/pipes/vents/pump,
@@ -46272,10 +34008,7 @@
/turf/closed/wall/r_wall/biodome,
/area/corsat/omega/hallways)
"jSm" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/gamma/residential)
"jTg" = (
/obj/structure/machinery/door_control{
@@ -46284,145 +34017,95 @@
pixel_x = 24;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/corsat/omega/cargo)
"jTS" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"jUa" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/gamma/rnr)
"jUn" = (
/obj/structure/bed/nest,
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"jUx" = (
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"jUJ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"jVn" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/east,
/area/corsat/sigma/dorms)
"jVW" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/gamma/hallwaysouth)
"jWb" = (
/obj/structure/pipes/standard/cap/hidden{
dir = 1
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor1"
- },
+/turf/open/shuttle/escapepod/floor1,
/area/corsat/theta/biodome/complex)
"jWw" = (
/obj/structure/machinery/light,
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/toxins)
"jWy" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/researcher)
"jWB" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/complex)
"jWE" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/sigma/north)
"jXg" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/corsat/sigma/cargo)
"jXo" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/id)
"jYc" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Maintainence";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/sigmaremote)
"jYs" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/security)
"jYC" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/hangar/office)
"jYD" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/south/security)
"jYY" = (
/obj/structure/surface/table/almayer,
@@ -46430,10 +34113,7 @@
pixel_y = 5
},
/obj/item/stack/sheet/mineral/phoron/medium_stack,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"jZk" = (
/obj/structure/fence,
@@ -46441,66 +34121,42 @@
/turf/open/auto_turf/snow/layer1,
/area/corsat/gamma/biodome)
"jZA" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/gamma/residential/researcher)
"jZU" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/complex)
"kad" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/sigma/south/robotics)
"kaf" = (
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"kap" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/airlocknorth)
"kar" = (
/obj/structure/bed/chair/office/light,
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"kat" = (
/obj/structure/closet/radiation,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/sigma/south/complex)
"kbm" = (
/obj/structure/surface/table,
/obj/item/device/megaphone,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"kbS" = (
/obj/structure/platform{
@@ -46509,58 +34165,42 @@
/obj/structure/machinery/mech_bay_recharge_port{
pixel_x = 8
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"kcb" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering/atmos)
"kdl" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/gamma/airlock/north)
"kdn" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"kdA" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydroeast)
"kdH" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/screwdriver,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"ker" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydroeast)
"keE" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -46570,247 +34210,160 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/biodome/complex)
"kfJ" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner,
/area/corsat/gamma/residential/west)
"kfZ" = (
/obj/structure/closet/jcloset,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential)
"kgn" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"kgD" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/corsat/gamma/cargo)
"kgO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/xtracks,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/foyer)
"kha" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/gamma/security/cells)
"khv" = (
/obj/structure/machinery/lapvend,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"khD" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/sigma/south)
"kiO" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/control)
"kje" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/administration)
"kjm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/gamma/residential/west)
"kjC" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/north,
/area/corsat/gamma/residential)
"kjH" = (
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"kjU" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/gamma/airlock/control)
"kjZ" = (
/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"kky" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"kkI" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"kkK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"kkR" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/south/security)
"kkV" = (
/obj/structure/closet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/morgue)
"klD" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/security/cells)
"klS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"kmf" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/biodome/complex)
"kmj" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/sigma/dorms)
"kmC" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/complex)
"kmI" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/scrapyard)
"kmV" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"knx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"knD" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/security)
"knG" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/hangar/security)
"knS" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/corsat/gamma/cargo)
"kof" = (
/obj/structure/machinery/computer/secure_data{
dir = 8
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/airlock/east/id)
"koh" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"kow" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -46823,128 +34376,87 @@
dir = 8
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"koY" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/hallwaysouth)
"kps" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/corsat/sigma/biodome)
"kpD" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"kpS" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/omega/cargo)
"kqm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"kqp" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/toxins)
"kqs" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential)
"kqA" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/airlocknorth/id)
"kqE" = (
/obj/effect/landmark/corpsespawner/engineer,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"kqZ" = (
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northeast,
/area/corsat/gamma/residential/west)
"krn" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor1"
- },
+/turf/open/shuttle/escapepod/floor1,
/area/corsat/theta/biodome/complex)
"krK" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"krR" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"ksk" = (
/obj/structure/machinery/processor,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"ksn" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/corsat/sigma/cargo)
"ksF" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"ksH" = (
/obj/effect/landmark/nightmare{
@@ -46956,28 +34468,20 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"ksX" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southeast,
/area/corsat/sigma/dorms)
"kuq" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/airlock/control)
"kuC" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -46989,51 +34493,38 @@
"kuO" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/south/id)
"kuU" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"kuW" = (
/obj/structure/machinery/light/small{
dir = 8
},
/obj/structure/bed/nest,
-/turf/open/floor/almayer/research/containment/entrance{
- dir = 8
- },
+/turf/open/floor/almayer/research/containment/entrance/west,
/area/corsat/inaccessible)
"kvm" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/foyer)
"kvN" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/rnr)
"kwK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"kxc" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -47042,40 +34533,28 @@
name = "Hangar Office";
req_access_txt = "106"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/office)
"kxs" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/corsat/gamma/cargo)
"kyb" = (
/obj/structure/surface/rack,
/obj/item/storage/donut_box,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"kyQ" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/omega/maint)
"kzd" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"kzm" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/gamma/sigmaremote)
"kzA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -47088,69 +34567,47 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"kAq" = (
/obj/effect/landmark/corpsespawner/engineer,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"kAM" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/north,
/area/corsat/gamma/biodome/complex)
"kBA" = (
/obj/structure/machinery/disease2/diseaseanalyser,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/virology)
"kBE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"kBN" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"kBW" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/sigmaremote)
"kCb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_12"
- },
+/turf/open/mars_cave/mars_cave_12,
/area/corsat/sigma/biodome)
"kCk" = (
/obj/structure/pipes/vents/pump,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/corsat/sigma/biodome)
"kCm" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -47159,16 +34616,11 @@
/turf/open/gm/grass/grass1/weedable,
/area/corsat/theta/biodome)
"kCq" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/airlocknorth)
"kCH" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/virology)
"kDt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -47185,23 +34637,16 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"kEq" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/southeast/generator)
"kEJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"kFo" = (
/obj/structure/surface/table/woodentable,
@@ -47213,17 +34658,12 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 8
- },
+/turf/open/floor/almayer/research/containment/floor2/west,
/area/corsat/gamma/sigmaremote)
"kFE" = (
/obj/structure/surface/rack,
/obj/item/storage/box/monkeycubes,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/toxins)
"kFZ" = (
/obj/structure/flora/jungle/plantbot1,
@@ -47236,38 +34676,24 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"kGJ" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/west,
/area/corsat/gamma/hallwaysouth)
"kGK" = (
/obj/structure/surface/table,
/obj/item/book,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"kGP" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/omega/complex)
"kGV" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"kHe" = (
/obj/effect/landmark/corpsespawner/scientist,
@@ -47276,28 +34702,21 @@
/area/corsat/gamma/residential/lounge)
"kHk" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"kHP" = (
/obj/structure/flora/bush/ausbushes/palebush,
/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east,
/area/corsat/theta/biodome)
"kIz" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greencorner"
- },
+/turf/open/floor/corsat/greencorner/north,
/area/corsat/gamma/hallwaysouth)
"kID" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("theta")
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/hydroeast)
"kIW" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -47317,16 +34736,11 @@
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/hydroeast)
"kJT" = (
/obj/structure/closet/wardrobe/virology_white,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/biodome/virology)
"kKs" = (
/obj/structure/machinery/power/apc/high{
@@ -47334,49 +34748,35 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"kKw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"kKB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/hangar/security)
"kKK" = (
/obj/structure/closet/fireaxecabinet{
pixel_y = -32
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/complex)
"kLC" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/sigmaremote)
"kMu" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"kMZ" = (
/obj/structure/platform{
@@ -47384,114 +34784,80 @@
dir = 4;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/north,
/area/corsat/gamma/residential/east)
"kNB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/chemistry)
"kNQ" = (
/obj/structure/bed/nest,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/mars_cave{
- icon_state = "mars_cave_12"
- },
+/turf/open/mars_cave/mars_cave_12,
/area/corsat/sigma/biodome)
"kOc" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/omega/offices)
"kOd" = (
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/gamma/hallwaysouth)
"kOi" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/airlock/south)
"kOv" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"kOA" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/west,
/area/corsat/gamma/residential/east)
"kOL" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"kPl" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"kPp" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/security)
"kPC" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/monorail)
"kPH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"kPP" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"kPS" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/security)
"kQb" = (
/obj/structure/fence,
@@ -47504,57 +34870,40 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"kQe" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/omega/offices)
"kQS" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/corsat/theta/biodome/complex)
"kRa" = (
/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{
index = "9"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "corsat_teleporter_static"
- },
+/turf/open/floor/corsat/corsat_teleporter_static/southwest,
/area/corsat/gamma/sigmaremote/teleporter)
"kRc" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"kRB" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"kRO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/core)
"kSa" = (
-/turf/open/floor/corsat{
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner,
/area/corsat/gamma/medbay)
"kSt" = (
/obj/structure/flora/pottedplant{
@@ -47563,95 +34912,63 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/lobby)
"kSx" = (
/obj/structure/surface/table/reinforced,
/obj/item/bananapeel{
name = "tactical banana peel"
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/sigma/south/complex)
"kSD" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"kSG" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential)
"kSM" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/south/engineering)
"kSY" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/south/id)
"kTg" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southwest,
/area/corsat/gamma/residential)
"kTx" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/west,
/area/corsat/sigma/south)
"kUp" = (
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/gamma/residential/east)
"kUt" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/omega/offices)
"kUV" = (
/obj/structure/surface/table/woodentable,
/obj/item/toy/deck,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"kVn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/sigma/dorms)
"kVy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -47659,46 +34976,32 @@
},
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"kVT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"kVZ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/omega/complex)
"kWe" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southeast,
/area/corsat/gamma/medbay/lobby)
"kWL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"kWZ" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/hangar/office)
"kXj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -47708,43 +35011,30 @@
/area/corsat/gamma/biodome)
"kXp" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"kXz" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/sigmaremote)
"kYn" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"kYC" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/foyer)
"kZy" = (
/obj/structure/machinery/power/apc/hyper{
dir = 1;
pixel_y = 25
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/theta/airlock/west)
"lac" = (
/turf/closed/wall/r_wall/biodome,
@@ -47758,83 +35048,53 @@
"laV" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tool,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/maint)
"lbC" = (
/obj/structure/surface/rack,
/obj/item/storage/box/pillbottles,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/complex)
"lbY" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/south/offices)
"lco" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"lcF" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/gamma/biodome/toxins)
"lda" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/airlocknorth)
"ldg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/north,
/area/corsat/gamma/residential/east)
"ldy" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/gamma/sigmaremote)
"ldE" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"ldN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"ldS" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/hydroeast)
"leg" = (
/obj/structure/sign/safety/laser{
@@ -47845,88 +35105,62 @@
dir = 4;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"leI" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
/obj/structure/machinery/door/window/southright,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"leJ" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/sigma/hangar/arrivals)
"leM" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"leP" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"leR" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/theta/airlock/west/id)
"leS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"leW" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("theta")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"lfF" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/morgue)
"lfH" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/morgue)
"lgo" = (
/obj/structure/window/reinforced{
dir = 8;
health = 80
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/datalab)
"lgt" = (
/obj/structure/platform{
@@ -47934,28 +35168,19 @@
dir = 4;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/north,
/area/corsat/gamma/hallwaysouth)
"lgv" = (
/obj/structure/surface/table,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"lgx" = (
/obj/structure/stairs{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/hallwaysouth)
"lhi" = (
/obj/structure/surface/rack,
@@ -47963,39 +35188,26 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"lhl" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/administration)
"lhI" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/gamma/security/cells)
"lhL" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar/security)
"lhS" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/airlocknorth)
"lib" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -48004,31 +35216,21 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"lig" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/theta/biodome/complex)
"liQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"ljw" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/gamma/residential)
"lkd" = (
/obj/structure/machinery/camera/autoname{
@@ -48039,14 +35241,10 @@
/area/corsat/gamma/biodome)
"lki" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"lkk" = (
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/datalab)
"lkm" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -48065,31 +35263,21 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/security)
"lkv" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/gamma/sigmaremote)
"lkF" = (
/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"lla" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"llr" = (
/obj/structure/pipes/vents/pump{
@@ -48101,42 +35289,29 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/sigma/south)
"lmx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"lmD" = (
/obj/structure/machinery/autodispenser{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/complex)
"lmV" = (
/obj/structure/pipes/vents/pump,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"lnc" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/donkpockets,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/omega/offices)
"lnG" = (
/obj/structure/surface/table/reinforced,
@@ -48145,16 +35320,10 @@
name = "Security Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/gamma/airlock/south/id)
"lnM" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/hangar/security)
"lnQ" = (
/obj/structure/window_frame/corsat,
@@ -48163,96 +35332,65 @@
"lnW" = (
/obj/structure/surface/table/reinforced,
/obj/item/phone,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"lom" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/airlock/south/id)
"lop" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"loF" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/gamma/residential/researcher)
"lps" = (
/obj/structure/bed/chair/comfy,
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar/monorail)
"lqm" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/omega/hallways)
"lqK" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/airlock/south)
"lqR" = (
/obj/structure/surface/table/gamblingtable,
/obj/item/toy/deck/uno,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"lqX" = (
/obj/item/pamphlet/skill/powerloader,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"lrQ" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{
id = "GammaSouthS";
name = "Gamma South Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/south)
"lsc" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/omega/offices)
"lsk" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"lsu" = (
/obj/effect/landmark/lv624/xeno_tunnel,
@@ -48275,31 +35413,20 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"ltl" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/theta/airlock/control)
"ltX" = (
/obj/structure/closet/cabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"lue" = (
/obj/structure/surface/table/gamblingtable,
/obj/item/toy/dice/d20,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"lug" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -48311,36 +35438,23 @@
id = "OmegaOffice";
name = "Privacy Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"luj" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hangar/security)
"luE" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/biodome/virology)
"luQ" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"lvg" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/hallwaysouth)
"lvE" = (
/obj/effect/landmark/yautja_teleport,
@@ -48348,28 +35462,18 @@
/area/corsat/sigma/dorms)
"lvR" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"lvU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"lwk" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/south/engineering)
"lwl" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "plating_striped"
- },
+/turf/open/floor/almayer/plating_striped/north,
/area/corsat/gamma/sigmaremote)
"lwu" = (
/turf/open/floor/corsat,
@@ -48378,40 +35482,29 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"lwL" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/smg/mp5,
/obj/item/ammo_magazine/smg/mp5,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"lxi" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"lxj" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"lxS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"lyd" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -48420,53 +35513,34 @@
req_one_access_txt = "103"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"lyu" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/lobby)
"lyK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/hangar/office)
"lyW" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/west,
/area/corsat/gamma/biodome/complex)
"lzc" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/cargo)
"lzI" = (
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/southeast)
"lAd" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/west,
/area/corsat/gamma/medbay)
"lBj" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"lBx" = (
/obj/structure/machinery/vending/snack,
@@ -48474,57 +35548,38 @@
dir = 1;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/gamma/hallwaysouth)
"lCa" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tech_supply,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"lCq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/east,
/area/corsat/sigma/dorms)
"lCr" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/sigma/hangar/arrivals)
"lCv" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/complex)
"lDb" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/security/cells)
"lDh" = (
/obj/structure/surface/table/reinforced,
/obj/item/stack/cable_coil,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/gamma/sigmaremote)
"lDJ" = (
/obj/structure/machinery/door_control{
@@ -48533,20 +35588,13 @@
pixel_y = 24;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"lDT" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/dorms)
"lEb" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/omega/hallways)
"lER" = (
/obj/structure/barricade/handrail{
@@ -48555,88 +35603,62 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"lFq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/bed/sofa/vert/grey/top,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"lFP" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/sigma/hangar/monorail)
"lFU" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Hangar Security";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"lFX" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"lFY" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"lGj" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/theta/biodome/complex)
"lGo" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"lGp" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "Hydroponics";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hydroponics)
"lGq" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/checkpoint)
"lGD" = (
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/security)
"lGP" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -48646,97 +35668,66 @@
/area/corsat/gamma/biodome)
"lHk" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/sigma/south/complex)
"lHB" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"lHI" = (
/obj/structure/surface/table/reinforced,
/obj/item/ammo_rcd,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"lHK" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/south/offices)
"lHU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/security)
"lId" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/south/security)
"lIf" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"lIq" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"lIu" = (
/obj/structure/bed/chair/comfy/black{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"lIE" = (
/obj/structure/machinery/smartfridge/chemistry{
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/complex)
"lIQ" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/corsat/sigma/north)
"lIW" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"lIX" = (
/obj/structure/surface/table/reinforced,
/obj/item/phone,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"lIY" = (
/obj/structure/platform{
@@ -48745,39 +35736,27 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/sigma/south)
"lJj" = (
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/residential/lounge)
"lJq" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/gamma/residential/east)
"lJz" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/gamma/hallwaysouth)
"lJR" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar)
"lKy" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -48787,90 +35766,62 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"lLc" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"lLe" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"lLO" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/gamma/cargo)
"lMf" = (
/obj/structure/machinery/bot/cleanbot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/hydrowest)
"lMU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/checkpoint)
"lNS" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/hangar/security)
"lOn" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/east)
"lOM" = (
/obj/structure/platform{
dir = 4;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"lON" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/gamma/hangar)
"lOS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"lOV" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"lOW" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -48881,9 +35832,7 @@
name = "Containment Cell 5";
req_one_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/inaccessible)
"lPh" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -48895,53 +35844,37 @@
dir = 1
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential)
"lPD" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/rad,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/gamma/sigmaremote)
"lPH" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/security)
"lPY" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/monorail/control)
"lQk" = (
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/residential/west)
"lQr" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southwest,
/area/corsat/sigma/dorms)
"lQu" = (
/obj/structure/flora/pottedplant{
@@ -48953,100 +35886,67 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/southeast/datalab)
"lRg" = (
/obj/structure/computer3frame/server{
icon_state = "4"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/gamma/sigmaremote)
"lRQ" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/id)
"lRW" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/researcher)
"lRY" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/biodome/complex)
"lSS" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/gamma/residential/east)
"lSU" = (
/obj/structure/machinery/computer/pandemic,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/biodome/virology)
"lTA" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/turf/open/floor/almayer/research/containment/corner_var1{
- dir = 4
- },
+/turf/open/floor/almayer/research/containment/corner_var1/east,
/area/corsat/gamma/sigmaremote)
"lTC" = (
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/omega/offices)
"lTU" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"lUc" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/airlock/south)
"lUI" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/sigma/south/complex)
"lUM" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/airlocknorth/id)
"lUY" = (
/obj/structure/machinery/floodlight{
@@ -49056,32 +35956,22 @@
/turf/open/auto_turf/snow/layer3,
/area/corsat/gamma/biodome)
"lVb" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/sigma/airlock/control)
"lVo" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/cargo)
"lVw" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/west)
"lVx" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/checkpoint)
"lVF" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -49089,18 +35979,13 @@
/area/corsat/theta/biodome)
"lVW" = (
/obj/structure/platform,
-/turf/open/gm/river/desert/shallow{
- name = "pool"
- },
+/turf/open/gm/river/desert/shallow/pool,
/area/corsat/gamma/residential/showers)
"lWf" = (
/obj/structure/machinery/chem_dispenser{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/toxins)
"lWD" = (
/obj/structure/bed/chair/office/light{
@@ -49109,39 +35994,25 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"lWG" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/hangar/security)
"lXA" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/security)
"lXJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/hangar/id)
"lXP" = (
/obj/effect/landmark/corpsespawner/engineer,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome)
"lXV" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -49151,9 +36022,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"lYc" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -49162,16 +36031,10 @@
/area/corsat/theta/biodome)
"lYd" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/hangar/security)
"lYq" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/east,
/area/corsat/omega/complex)
"lYt" = (
/obj/structure/sign/safety/high_voltage,
@@ -49181,30 +36044,20 @@
/obj/item/stack/sheet/metal{
pixel_x = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"lYv" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/security)
"lYM" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/gamma/airlock/control)
"lYO" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"lYX" = (
/obj/structure/ice/ice_rock/cornerOverlay{
@@ -49229,19 +36082,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/gamma/hangar)
"mab" = (
/obj/structure/sign/safety/high_rad{
pixel_x = 32
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"mag" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -49249,40 +36096,29 @@
/area/corsat/gamma/rnr/bar)
"mbp" = (
/obj/structure/closet/bodybag,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar)
"mbz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/south/offices)
"mbI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"mbO" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth/id)
"mbZ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"mcj" = (
/obj/structure/bed/chair{
@@ -49302,10 +36138,7 @@
/area/corsat/gamma/cargo/disposal)
"mdV" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/hangar/security)
"mea" = (
/obj/structure/bed/sofa/south/white/right,
@@ -49315,69 +36148,47 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"meu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/theta/biodome/complex)
"mey" = (
/obj/structure/sign/safety/biohazard,
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/virology)
"meC" = (
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/gamma/hallwaysouth)
"meD" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/biodome/toxins)
"meJ" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"mfm" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/biodome/complex)
"mfw" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/north,
/area/corsat/sigma/dorms)
"mfH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/biodome/toxins)
"mfN" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -49388,9 +36199,7 @@
"mfS" = (
/obj/effect/landmark/corpsespawner/wysec,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"mfX" = (
/obj/structure/bed/chair/office/dark{
@@ -49403,16 +36212,12 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/monorail/control)
"mgt" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"mgw" = (
/obj/structure/stairs{
@@ -49421,33 +36226,22 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"mgO" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/virology)
"mgW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"mhg" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/checkpoint)
"mhq" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -49456,68 +36250,44 @@
dir = 8;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/sigma/south)
"mim" = (
/obj/effect/landmark/hunter_primary,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"miE" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/residential)
"miJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/checkpoint)
"miU" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/corsat/gamma/cargo)
"miX" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome)
"mjc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/complex)
"mjt" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"mjv" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/laundry)
"mkM" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -49526,17 +36296,13 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/cargo)
"mlo" = (
/obj/structure/surface/rack,
/obj/item/clothing/under/CM_uniform,
/obj/item/clothing/suit/storage/CMB,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hangar/security)
"mlr" = (
/obj/structure/pipes/vents/pump,
@@ -49547,66 +36313,44 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/gamma/engineering)
"mmj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydrowest)
"mmp" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"mmr" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"mmy" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/theta/airlock/control)
"mop" = (
/obj/structure/surface/rack,
/obj/item/tool/soap/deluxe,
/obj/item/tool/soap/deluxe,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential)
"moU" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast)
"mpj" = (
/obj/effect/decal/cleanable/blood/xtracks,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/airlocknorth)
"mpS" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"mqn" = (
/obj/structure/pipes/vents/pump{
@@ -49615,24 +36359,15 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/researcher)
"mqr" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/omega/containment)
"mqK" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"mqL" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/theta/biodome/complex)
"mqU" = (
/obj/structure/barricade/handrail{
@@ -49658,24 +36393,16 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar/cargo)
"mrG" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/gamma/hangar/arrivals)
"mrO" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/rnr)
"mrQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -49683,31 +36410,22 @@
/area/corsat/gamma/biodome/complex)
"msj" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/gamma/hangar/flightcontrol)
"msm" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin12"
- },
+/turf/open/shuttle/dropship/dark_grey_bottom,
/area/prison/hangar_storage/research/shuttle)
"msp" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"msu" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/corsat/gamma/cargo)
"msB" = (
/obj/structure/largecrate/random/barrel,
@@ -49718,10 +36436,7 @@
/turf/open/gm/dirtgrassborder/north,
/area/corsat/theta/biodome)
"msY" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/theta/airlock/control)
"mti" = (
/obj/structure/pipes/vents/pump{
@@ -49736,18 +36451,13 @@
"muo" = (
/obj/structure/surface/rack,
/obj/item/clothing/shoes/sandal,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"muu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/virology)
"mvL" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -49755,42 +36465,26 @@
/area/corsat/sigma/biodome)
"mvM" = (
/obj/structure/prop/almayer/computers/sensor_computer1,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/sigma/south/complex)
"mvS" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/west,
/area/corsat/sigma/dorms)
"mwa" = (
/obj/structure/cargo_container/hd/left/alt,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"mwk" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"mwo" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/north)
"mwy" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"mwC" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -49798,84 +36492,55 @@
/area/corsat/emergency_access)
"mwH" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/gamma/sigmaremote)
"mwK" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/virology)
"mxa" = (
/obj/structure/platform{
density = 0;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"mxc" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/gamma/residential/researcher)
"mxO" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/storage/fancy/cigar,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/omega/offices)
"mxZ" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/FixOVein,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southeast,
/area/corsat/gamma/medbay/surgery)
"myt" = (
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/sigma/southeast)
"mzi" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/gamma/airlock/south)
"mzn" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/turf/open/floor/almayer/research/containment/corner_var1{
- dir = 4
- },
+/turf/open/floor/almayer/research/containment/corner_var1/east,
/area/corsat/sigma/south/complex)
"mAc" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/gamma/hangar/checkpoint)
"mAt" = (
/obj/structure/surface/table/almayer,
/obj/item/cell,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/maint)
"mAx" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -49885,137 +36550,89 @@
/area/corsat/gamma/biodome)
"mAK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"mAV" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/airlocknorth/id)
"mBp" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/checkpoint)
"mBq" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/rnr)
"mBs" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/gamma/hangar/arrivals)
"mCe" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/sigma/airlock/control)
"mCj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/cargo)
"mCD" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"mCE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"mCU" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/omega/hallways)
"mDe" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/gamma/hangar/cargo)
"mEd" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"mEt" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/hallways)
"mEy" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/omega/cargo)
"mEG" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/gamma/hangar/cargo)
"mFm" = (
-/turf/open/floor/corsat{
- icon_state = "greencorner"
- },
+/turf/open/floor/corsat/greencorner,
/area/corsat/gamma/hallwaysouth)
"mFp" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/sigma/hangar/monorail)
"mFE" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/theta/airlock/control)
"mFP" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/hangar/security)
"mFS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -50024,9 +36641,7 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Interrogation"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"mFT" = (
/obj/structure/bed/chair{
@@ -50035,42 +36650,31 @@
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"mGl" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"mGn" = (
/obj/structure/noticeboard{
pixel_y = 32
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/hangar/office)
"mGL" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"mGN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"mGU" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{
@@ -50082,22 +36686,16 @@
name = "Theta Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/control)
"mHd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"mHM" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_east"
- },
+/turf/open/floor/corsat/arrow_east,
/area/corsat/gamma/cargo)
"mIa" = (
/obj/structure/surface/table,
@@ -50107,32 +36705,21 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"mIn" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/foyer)
"mIs" = (
/obj/structure/machinery/light/small,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/freezer)
"mIx" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/hangar/office)
"mIY" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -50143,181 +36730,119 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars{
- icon_state = "mars_dirt_11"
- },
+/turf/open/mars/mars_dirt_11,
/area/corsat/sigma/biodome)
"mJm" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/guestpass{
reason = "Visitor"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"mJq" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"mJy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"mJC" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/rnr)
"mKc" = (
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/gamma/airlock/control)
"mKk" = (
/obj/structure/surface/rack,
/obj/item/storage/box/masks,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/biodome/complex)
"mKP" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"mLq" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/southeast,
/area/corsat/omega/complex)
"mLu" = (
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/virology)
"mLL" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/north)
"mLR" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"mNe" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"mNV" = (
/obj/item/tool/soap,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"mNW" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/residential/west)
"mOr" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/toxins)
"mOw" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/omega/control)
"mOV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"mPg" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/hangar/checkpoint)
"mPS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/airlocknorth/id)
"mQk" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"mQu" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/gamma/residential/researcher)
"mQF" = (
/obj/structure/surface/table/almayer,
/obj/item/circuitboard/robot_module/janitor,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/sigma/south/robotics)
"mQG" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/sigmaremote)
"mQU" = (
/obj/structure/platform{
@@ -50325,33 +36850,22 @@
dir = 8;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/gamma/residential/east)
"mRl" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"mRp" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"mRB" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/foyer)
"mRC" = (
/obj/effect/alien/weeds/node,
@@ -50361,18 +36875,13 @@
/area/corsat/omega/biodome)
"mRI" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/biodome/virology)
"mSi" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"mSo" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -50380,23 +36889,15 @@
/area/corsat/theta/biodome)
"mSz" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/complex)
"mSG" = (
/obj/effect/landmark/corpsespawner/pmc,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"mSR" = (
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/administration)
"mTa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -50409,83 +36910,61 @@
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"mTF" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"mTO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security/cells)
"mUj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/virology)
"mUo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"mUu" = (
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"mUv" = (
/obj/structure/machinery/conveyor,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"mUA" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"mUE" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/east/id)
"mVk" = (
/obj/structure/machinery/smartfridge/seeds,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hydroponics)
"mVq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -50498,50 +36977,33 @@
dir = 8
},
/obj/effect/spawner/gibspawner/human,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"mWj" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/biodome/virology)
"mWo" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/south/offices)
"mWG" = (
/obj/structure/machinery/chem_dispenser{
req_access_txt = "100"
},
/obj/item/reagent_container/glass/beaker/bluespace,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/complex)
"mXC" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"mYe" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"mYQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"mYS" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -50550,9 +37012,7 @@
name = "Gate Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/south/complex)
"mZf" = (
/obj/structure/platform{
@@ -50564,16 +37024,11 @@
layer = 2.7
},
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northeast,
/area/corsat/gamma/residential/east)
"mZm" = (
/obj/structure/prop/mech/parts/durand_head,
-/turf/open/floor/corsat{
- icon_state = "arrow_north"
- },
+/turf/open/floor/corsat/arrow_north,
/area/corsat/sigma/south/robotics)
"naG" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -50581,9 +37036,7 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"nbl" = (
/turf/closed/shuttle/ert{
@@ -50592,9 +37045,7 @@
/area/prison/hangar_storage/research/shuttle)
"nbn" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"nbN" = (
/obj/structure/closet/crate/trashcart,
@@ -50604,9 +37055,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/airlock/south)
"nbS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -50628,38 +37077,26 @@
/area/corsat/theta/biodome)
"ncR" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"ncW" = (
/obj/item/pamphlet/skill/powerloader,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/omega/cargo)
"nde" = (
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"ndr" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security)
"nds" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/corsat/sigma/biodome)
"ndF" = (
/obj/structure/machinery/power/apc/high{
@@ -50667,22 +37104,14 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/laundry)
"nen" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"neB" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/sigma/south/complex)
"neY" = (
/turf/closed/shuttle/ert{
@@ -50697,45 +37126,32 @@
dir = 1;
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/corsat/omega/cargo)
"ngx" = (
/obj/structure/closet/crate/science,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/complex)
"nhE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"nhG" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"nid" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"niv" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"njh" = (
/obj/structure/machinery/light{
@@ -50743,55 +37159,36 @@
},
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/robotics)
"njv" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"njI" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/checkpoint)
"njL" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/theta/biodome/complex)
"njP" = (
/obj/structure/closet/wardrobe/virology_white,
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/virology)
"nkz" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/sigma/southeast/datalab)
"nkO" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"nlk" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -50800,10 +37197,7 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"nlm" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -50819,9 +37213,7 @@
/area/corsat/theta/biodome)
"nls" = (
/obj/structure/bed/sofa/south/grey/right,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/arrivals)
"nlU" = (
/obj/structure/surface/table/reinforced,
@@ -50829,46 +37221,32 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"nmb" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/omega/airlocknorth/id)
"nmp" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/engineering)
"nna" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/researcher)
"nnm" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"nnx" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/north)
"nny" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -50885,18 +37263,13 @@
/turf/open/ice,
/area/corsat/gamma/biodome)
"noy" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay)
"noK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar)
"noW" = (
/obj/structure/prop/almayer/cannon_cable_connector{
@@ -50909,9 +37282,7 @@
name = "\improper genetic LINAC system";
pixel_x = -15
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor1"
- },
+/turf/open/shuttle/escapepod/floor1,
/area/corsat/theta/biodome/complex)
"noY" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -50919,16 +37290,11 @@
name = "Teleportation Chamber";
req_one_access_txt = "101;103"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"npl" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/gamma/residential/west)
"npm" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -50944,17 +37310,13 @@
dir = 4;
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar)
"npI" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple,
/area/corsat/gamma/biodome/complex)
"npN" = (
/obj/effect/landmark/hunter_primary,
@@ -50967,37 +37329,24 @@
req_one_access_txt = "106;104"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"nqE" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"nqF" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"nqI" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/hangar/office)
"nrd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/complex)
"nri" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -51009,17 +37358,13 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"nrO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars{
- icon_state = "mars_dirt_9"
- },
+/turf/open/mars/mars_dirt_9,
/area/corsat/sigma/biodome)
"nrT" = (
/obj/structure/surface/table/reinforced,
@@ -51034,29 +37379,20 @@
id = "GammaSouthID";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/south/id)
"nrU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/hangar/monorail)
"nsg" = (
/obj/structure/bed/chair/comfy/beige{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/corsat/omega/offices)
"ntg" = (
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/corsat/theta/biodome/complex)
"ntn" = (
/turf/closed/shuttle/ert{
@@ -51065,10 +37401,7 @@
/area/prison/hangar_storage/research/shuttle)
"ntp" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/south)
"ntt" = (
/obj/structure/surface/rack,
@@ -51079,34 +37412,25 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"nui" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"nuj" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/airlocknorth)
"nuq" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/hangar)
"nuF" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -51116,16 +37440,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/theta/airlock/control)
"nuI" = (
/obj/structure/closet/athletic_mixed,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"nuS" = (
/obj/structure/flora/bush/ausbushes/palebush,
@@ -51133,10 +37452,7 @@
/area/corsat/theta/biodome)
"nvx" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/omega/control)
"nvA" = (
/obj/structure/platform{
@@ -51144,46 +37460,29 @@
layer = 2.7
},
/obj/structure/stairs,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northeast,
/area/corsat/gamma/residential/east)
"nwj" = (
/obj/structure/pipes/standard/simple/hidden/green,
/turf/open/gm/dirtgrassborder/south,
/area/corsat/theta/biodome)
"nws" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/sigma/cargo)
"nwu" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/rad,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"nwL" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/southeast)
"nwT" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"nxh" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/hangar/office)
"nxv" = (
/obj/structure/barricade/handrail{
@@ -51193,44 +37492,30 @@
dir = 1;
pixel_y = 2
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"nxI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/airlock/north)
"nxN" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"nxP" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"nxZ" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering)
"nzB" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/gamma/airlock/control)
"nzR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -51240,42 +37525,30 @@
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/sigma/dorms)
"nzS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/theta/biodome/complex)
"nAa" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/sigma/dorms)
"nAl" = (
/turf/open/floor/corsat,
/area/corsat/gamma/freezer)
"nAm" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/morgue)
"nAu" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/theta/biodome/complex)
"nAE" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -51283,31 +37556,21 @@
name = "Engineering";
req_one_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"nAO" = (
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/hangar/office)
"nAR" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/testgrounds)
"nBa" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"nBi" = (
/obj/structure/platform{
@@ -51318,104 +37581,73 @@
dir = 4;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northeast,
/area/corsat/sigma/south)
"nBk" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/gamma/residential/researcher)
"nBw" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"nBy" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"nBD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"nBO" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/corsat/sigma/biodome)
"nCh" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/biodome/complex)
"nCl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"nDc" = (
/obj/structure/machinery/processor,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/theta/biodome/complex)
"nDs" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"nDD" = (
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/engineering)
"nDN" = (
/obj/structure/safe,
/obj/item/xeno_egg,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/omega/offices)
"nDX" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{
id = "GammaEastE";
name = "Gamma East Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/control)
"nEQ" = (
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/morgue)
"nFc" = (
/obj/effect/landmark/monkey_spawn,
@@ -51424,48 +37656,31 @@
"nFt" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/bodybags,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/omega/complex)
"nFy" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/corsat/sigma/biodome)
"nGq" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/omega/hallways)
"nGs" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/gamma/administration)
"nGU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/south)
"nHs" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/centrifuge,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/biodome/virology)
"nHu" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -51477,10 +37692,7 @@
/obj/structure/pipes/standard/simple/hidden/universal{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/airlock/control)
"nHU" = (
/obj/structure/surface/rack,
@@ -51495,83 +37707,54 @@
"nIF" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/pillbottles,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/toxins)
"nJb" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/residential/east)
"nJl" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/gamma/administration)
"nJn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/hangar/security)
"nJt" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"nJx" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"nJC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"nJP" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/omega/hallways)
"nJR" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/corsat/sigma/biodome)
"nKt" = (
/obj/structure/pipes/unary/freezer,
-/turf/open/shuttle/escapepod{
- icon_state = "floor0"
- },
+/turf/open/shuttle/escapepod/floor0,
/area/corsat/theta/biodome/complex)
"nKH" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northwest,
/area/corsat/gamma/residential)
"nLl" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/gamma/rnr)
"nLK" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -51581,38 +37764,27 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"nLP" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/omega/maint)
"nLW" = (
/obj/structure/surface/table/reinforced,
/obj/item/tank/air,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"nLX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/datalab)
"nMc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"nMk" = (
/obj/structure/flora/bush/ausbushes/grassybush,
@@ -51622,78 +37794,55 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "arrow_west"
- },
+/turf/open/floor/corsat/arrow_west,
/area/corsat/gamma/hangar)
"nNo" = (
/obj/structure/machinery/chem_dispenser{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/toxins)
"nNq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/effect/landmark/railgun_camera_pos,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"nNB" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hydroponics)
"nNW" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/gamma/engineering/atmos)
"nOb" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/omega/checkpoint)
"nOj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"nOH" = (
/obj/structure/machinery/portable_atmospherics/canister/empty,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"nOP" = (
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/southeast/dataoffice)
"nQB" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southeast,
/area/corsat/sigma/dorms)
"nQZ" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"nSb" = (
/obj/structure/surface/rack,
@@ -51702,10 +37851,7 @@
/obj/item/ammo_magazine/shotgun/incendiary,
/obj/item/weapon/gun/shotgun/combat,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/south/security)
"nSm" = (
/obj/structure/machinery/light{
@@ -51714,27 +37860,19 @@
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"nSp" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/exosuit/peripherals/alice,
/obj/item/circuitboard/exosuit/main/alice,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/robotics)
"nSA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "arrow_west"
- },
+/turf/open/floor/corsat/arrow_west,
/area/corsat/sigma/hangar)
"nSC" = (
/obj/structure/sink{
@@ -51743,24 +37881,16 @@
},
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/researcher)
"nSL" = (
/obj/structure/surface/table/almayer,
/obj/item/ashtray/glass,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/security)
"nSP" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/checkpoint)
"nSV" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -51768,22 +37898,15 @@
},
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"nTb" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/east,
/area/corsat/gamma/medbay/morgue)
"nTg" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/analyzer,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"nTx" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -51791,33 +37914,23 @@
/area/corsat/theta/biodome/complex)
"nTz" = (
/obj/structure/bed/sofa/south/grey/right,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/foyer)
"nTO" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Arcade"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"nUa" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"nUd" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/security)
"nUg" = (
/obj/structure/surface/table/reinforced,
@@ -51825,41 +37938,29 @@
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/checkpoint)
"nUi" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"nUs" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/toxins)
"nUz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"nUU" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/checkpoint)
"nWh" = (
/obj/structure/surface/table/woodentable,
@@ -51870,93 +37971,62 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/lavatory)
"nWV" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/south/offices)
"nXj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/generator)
"nXo" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"nXu" = (
/obj/structure/machinery/portable_atmospherics/canister/empty,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"nXv" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/north,
/area/corsat/sigma/south/offices)
"nXD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"nXY" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/dorms)
"nYn" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"nYO" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/sigmaremote)
"nYP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/west)
"nZB" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/corsat/sigma/cargo)
"nZN" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/sigma/north)
"nZR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -51969,52 +38039,33 @@
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"oay" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/airlocknorth)
"oaE" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/corsat/omega/cargo)
"oaF" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"oaV" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/hallways)
"obd" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/biodome/complex)
"obz" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/closet/crate/science,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"obW" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -52022,9 +38073,7 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/cargo/disposal)
"ocD" = (
/obj/structure/surface/table/reinforced,
@@ -52039,9 +38088,7 @@
id = "SigmaHangarC-S";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/security)
"ocT" = (
/obj/structure/bed/chair{
@@ -52051,52 +38098,35 @@
dir = 1;
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/omega/complex)
"odm" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/sigmaremote)
"odC" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/corsat/sigma/north)
"odN" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/sigma/south)
"odW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/sigmaremote)
"ofq" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/hangar/checkpoint)
"ofP" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"oge" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -52104,33 +38134,22 @@
/turf/open/gm/grass/grass1/weedable,
/area/corsat/theta/biodome)
"ohe" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northwest,
/area/corsat/sigma/southeast)
"ohV" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering/atmos)
"oia" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/gamma/biodome/complex)
"ois" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"oiu" = (
/obj/structure/machinery/light/small{
@@ -52140,17 +38159,13 @@
/area/corsat/sigma/south/engineering)
"oiE" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"oiI" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"oiQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -52160,32 +38175,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"ojN" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"oks" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/checkpoint)
"okE" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/south)
"okT" = (
/obj/structure/machinery/camera/autoname{
@@ -52199,34 +38205,26 @@
dir = 1;
network = list("theta")
},
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/theta/airlock/control)
"olB" = (
/obj/structure/showcase{
icon_state = "processor";
name = "Processor Unit"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/sigmaremote)
"olD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"olX" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/hallways)
"olY" = (
/obj/effect/alien/weeds/node,
@@ -52239,27 +38237,19 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"omw" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/flightcontrol)
"omL" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northwest,
/area/corsat/gamma/residential)
"ong" = (
/obj/structure/pipes/vents/pump{
@@ -52269,21 +38259,15 @@
/area/corsat/gamma/residential/east)
"onz" = (
/obj/structure/closet/jcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"onY" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"oob" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"ooX" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -52296,15 +38280,11 @@
/obj/structure/prop/almayer/computers/sensor_computer1{
name = "computer"
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor12"
- },
+/turf/open/shuttle/escapepod/floor12,
/area/corsat/theta/biodome/complex)
"opi" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"opl" = (
/obj/structure/surface/table/almayer,
@@ -52316,15 +38296,11 @@
/obj/structure/machinery/camera/autoname{
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"opo" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"opH" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -52332,10 +38308,7 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"opW" = (
/obj/effect/landmark/hunter_secondary,
@@ -52348,38 +38321,26 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar)
"oqz" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"oqB" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northeast,
/area/corsat/gamma/canteen)
"oqI" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/sigma/south/complex)
"orz" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/core)
"orI" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -52389,9 +38350,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"osY" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -52399,29 +38358,20 @@
/area/corsat/theta/biodome)
"otC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/hangar/security)
"otY" = (
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/gamma/residential)
"ouk" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"ouv" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"ouC" = (
/obj/structure/machinery/light{
@@ -52430,104 +38380,65 @@
/obj/structure/machinery/cm_vending/sorted/medical/no_access{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/toxins)
"ouM" = (
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/theta/airlock/control)
"ovc" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southwest,
/area/corsat/sigma/dorms)
"ovC" = (
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"ovP" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/hangar/cargo)
"ovT" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/theta/airlock/west/id)
-"owL" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+"owL" = (
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/gamma/biodome/complex)
"owP" = (
/obj/structure/bed/nest,
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/corsat/sigma/biodome)
"oxk" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"oxr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"oxL" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential/researcher)
"oyu" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/rnr/bar)
"oyA" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"oyJ" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/north,
/area/corsat/gamma/residential/east)
"ozo" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/theta/airlock/control)
"ozp" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{
@@ -52535,14 +38446,10 @@
name = "Gamma South Airlock"
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/south)
"ozH" = (
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/southeast/datalab)
"ozR" = (
/turf/open/space/transit/east/shuttlespace_ew10,
@@ -52551,21 +38458,14 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"oAa" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"oBe" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/sigma/southeast/datalab)
"oBq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -52575,85 +38475,57 @@
dir = 1;
network = list("sigma")
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"oBX" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southeast,
/area/corsat/gamma/residential/west)
"oCa" = (
/obj/effect/landmark/corpsespawner/engineer,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/engineering)
"oCp" = (
/obj/structure/surface/rack,
/obj/item/device/radio,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"oCt" = (
/obj/structure/prop/mech/parts/durand_torso,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/sigma/south/robotics)
"oCz" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/theta/airlock/west)
"oDt" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southwest,
/area/corsat/gamma/residential)
"oDD" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/hangar)
"oEa" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"oEu" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/checkpoint)
"oEE" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Holding Cell 1";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hangar/office)
"oEK" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -52662,25 +38534,16 @@
"oEU" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/binoculars,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"oFe" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/gamma/biodome/complex)
"oFq" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/sigma/airlock/control)
"oFU" = (
/obj/structure/largecrate/random/barrel,
@@ -52689,10 +38552,7 @@
"oGe" = (
/obj/structure/surface/table/gamblingtable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"oGf" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{
@@ -52700,9 +38560,7 @@
name = "Theta West Airlock"
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/west)
"oGz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -52721,52 +38579,33 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo/lobby)
"oHP" = (
/obj/structure/bed,
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/gamma/security/cells)
"oHT" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/theta/airlock/west)
"oHU" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/corsat/omega/hangar)
"oIf" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/gamma/residential)
"oIx" = (
/obj/structure/surface/table/reinforced,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hangar/office)
"oJb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"oJn" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -52775,68 +38614,42 @@
/turf/open/ice,
/area/corsat/gamma/biodome)
"oJB" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/gamma/engineering)
"oJT" = (
/obj/item/stack/sheet/metal,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"oJV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"oKg" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/gamma/engineering/core)
"oKh" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/gamma/hangar/security)
"oKk" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/west/id)
"oKp" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/hallways)
"oKr" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/east,
/area/corsat/theta/biodome/complex)
"oKA" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southwest,
/area/corsat/omega/hallways)
"oKQ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"oLe" = (
/obj/structure/flora/jungle/alienplant1,
@@ -52850,9 +38663,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/gamma/residential/east)
"oLX" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -52861,136 +38672,89 @@
name = "Gate Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/sigmaremote)
"oMp" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/airlocknorth/id)
"oMG" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/airlocknorth)
"oMZ" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/omega/complex)
"oNc" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/complex)
"oNi" = (
/obj/structure/surface/rack,
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/item/fuel_cell,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/generator)
"oNI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"oNL" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/office)
"oNR" = (
/obj/structure/bed,
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"oNU" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"oOg" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/southeast,
/area/corsat/gamma/medbay/morgue)
"oOj" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southeast,
/area/corsat/gamma/canteen)
"oOk" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"oOr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"oOz" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/sigma/south/complex)
"oOH" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/sigma/southeast/dataoffice)
"oOL" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras{
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/hangar/security)
"oPa" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southwest,
/area/corsat/gamma/residential)
"oPq" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -52998,22 +38762,14 @@
/area/corsat/sigma/dorms)
"oPu" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southeast,
/area/corsat/sigma/southeast/datalab)
"oPC" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/security)
"oQf" = (
-/turf/open/floor/corsat{
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner,
/area/corsat/sigma/dorms)
"oQF" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -53023,49 +38779,34 @@
/turf/open/gm/dirtgrassborder/north,
/area/corsat/theta/biodome)
"oQO" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/biodome/virology)
"oQR" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/gamma/hallwaysouth)
"oQY" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"oRo" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/foyer)
"oRJ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"oTq" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/southeast/dataoffice)
"oTs" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/gamma/engineering)
"oTw" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
@@ -53073,24 +38814,16 @@
name = "Research Desk"
},
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/toxins)
"oTE" = (
/obj/structure/surface/table,
/obj/item/book,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/residential/west)
"oUz" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"oUJ" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -53101,23 +38834,15 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/rnr)
"oVj" = (
/obj/structure/machinery/computer/general_air_control/large_tank_control,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/toxins)
"oVr" = (
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"oVF" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -53128,15 +38853,9 @@
/area/corsat/theta/biodome)
"oVM" = (
/obj/structure/bed/sofa/vert/grey/bot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar/arrivals)
"oVO" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
/obj/structure/machinery/light/small{
dir = 4
},
@@ -53146,119 +38865,77 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"oWg" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar)
"oXl" = (
/obj/structure/closet/coffin,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/southwest,
/area/corsat/gamma/medbay/morgue)
"oXK" = (
/obj/structure/closet/coffin,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/northwest,
/area/corsat/gamma/medbay/morgue)
"oXL" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"oXZ" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Holding Cell 1";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar/office)
"oYC" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/control)
"oYH" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southwest,
/area/corsat/gamma/residential/west)
"oYP" = (
/obj/structure/platform{
dir = 8;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"oYY" = (
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/gamma/hallwaysouth)
"oZj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/airlock/south)
"oZv" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/rnr)
"oZx" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"oZD" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"oZH" = (
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth)
"oZQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"oZW" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -53272,24 +38949,18 @@
/turf/open/gm/grass/grass1/weedable,
/area/corsat/theta/biodome)
"pbS" = (
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south)
"pbX" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/syringes,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/toxins)
"pcb" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"pcu" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -53298,40 +38969,28 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"pcK" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/checkpoint)
"pdg" = (
/turf/open/space/transit/east/shuttlespace_ew10,
/area/space)
"pdh" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/hallwaysouth)
"pdk" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/theta/airlock/west)
"pdw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"pdR" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -53339,72 +38998,46 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential/researcher)
"pdW" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/west,
/area/corsat/gamma/residential)
"peh" = (
/obj/structure/surface/table,
/obj/item/book,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"pfk" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southeast,
/area/corsat/gamma/residential/west)
"pfz" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/sigma/hangar/monorail)
"pfG" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/sigma/hangar/monorail)
"pfQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/southeast)
"pge" = (
/obj/structure/stairs,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"pgf" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"pgn" = (
/obj/structure/bed/chair/office/light,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"pgC" = (
/obj/structure/flora/pottedplant{
@@ -53413,17 +39046,13 @@
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"pgH" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/hangar/security)
"pgO" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -53434,17 +39063,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/airlock/east)
"pgX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"phl" = (
/obj/item/fuel_cell,
@@ -53453,59 +39078,41 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/core)
"phK" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/sigmaremote)
"phM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"phN" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/biodome/virology)
"phX" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple,
/area/corsat/sigma/south)
"pir" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/gamma/hallwaysouth)
"piI" = (
/obj/structure/surface/table/almayer,
/obj/item/stack/cable_coil,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/south/engineering)
"piZ" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -53518,35 +39125,25 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"pjP" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/hallwaysouth)
"pkc" = (
/obj/structure/pipes/standard/simple/hidden/green,
/turf/open/floor/wood,
/area/corsat/gamma/residential/researcher)
"pkh" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/hallways)
"pkP" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south)
"plI" = (
/obj/structure/window/framed/corsat,
@@ -53556,9 +39153,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "arrow_east"
- },
+/turf/open/floor/corsat/arrow_east,
/area/corsat/sigma/southeast/datalab)
"plV" = (
/obj/structure/machinery/light/small{
@@ -53570,17 +39165,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"pnc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"pnt" = (
/obj/structure/xenoautopsy/tank/alien,
@@ -53592,33 +39183,23 @@
/area/corsat/theta/biodome)
"pov" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/west,
/area/corsat/gamma/medbay)
"ppi" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"ppr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"ppy" = (
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/researcher)
"ppP" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -53631,39 +39212,25 @@
dir = 8;
network = list("theta")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"prw" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/theta/airlock/west/id)
"prB" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"prF" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"prG" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/hallwaysouth)
"prI" = (
/obj/structure/pipes/vents/pump/on,
@@ -53681,50 +39248,35 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"pue" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/southeast)
"puh" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"puF" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/foyer)
"pvh" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"pvo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"pvA" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -53737,9 +39289,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"pwp" = (
/obj/structure/ice/ice_rock/cornerOverlay{
@@ -53749,38 +39299,25 @@
/turf/closed/ice_rock/corners,
/area/corsat/gamma/biodome)
"pws" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/corsat/omega/cargo)
"pwu" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/gamma/engineering/atmos)
"pwO" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"pxj" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"pxl" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/foyer)
"pxH" = (
/obj/structure/flora/pottedplant{
@@ -53790,9 +39327,7 @@
dir = 8;
layer = 2.8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"pya" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -53800,52 +39335,36 @@
/turf/open/floor/wood,
/area/corsat/gamma/rnr/library)
"pyL" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/hangar/security)
"pzr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"pzH" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{
id = "SigmaWestD";
name = "Sigma Dome Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/control)
"pAo" = (
/obj/structure/cargo_container/hd/right/alt,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"pAt" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/gamma/airlock/south/id)
"pAB" = (
/obj/structure/machinery/door/window/northleft,
/obj/structure/machinery/door/window/southleft,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"pAM" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/powercell,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/robotics)
"pBm" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -53855,61 +39374,41 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/south/id)
"pBJ" = (
/obj/structure/cargo_container/wy/right,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"pCh" = (
/obj/structure/machinery/light,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/complex)
"pCi" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"pCT" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"pCW" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/hangar/office)
"pDt" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/sigma/dorms)
"pDB" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/omega/offices)
"pDP" = (
/obj/structure/closet/secure_closet/engineering_personal{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/southeast/generator)
"pDR" = (
/turf/closed/wall/r_wall/biodome,
@@ -53918,63 +39417,41 @@
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"pEj" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"pEm" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/paper,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/omega/offices)
"pEQ" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/omega/hangar/office)
"pEX" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Maintainence";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential/researcher)
"pFe" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/hangar)
"pFX" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/bed/sofa/vert/grey/bot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar/arrivals)
"pGp" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"pIj" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -53985,31 +39462,20 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/lounge)
"pIU" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/omega/hangar)
"pJa" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southeast,
/area/corsat/gamma/residential/west)
"pJn" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southwest,
/area/corsat/sigma/southeast/datalab)
"pJo" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"pJP" = (
/obj/structure/showcase{
@@ -54027,38 +39493,27 @@
},
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"pKg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"pKi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/south/engineering)
"pLy" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/gamma/biodome/toxins)
"pLO" = (
/obj/structure/window/framed/corsat/security,
@@ -54070,48 +39525,33 @@
/turf/open/floor/plating,
/area/corsat/sigma/hangar/security)
"pMh" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/southwest,
/area/corsat/omega/hallways)
"pMI" = (
/obj/effect/landmark/lv624/xeno_tunnel,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/south)
"pMN" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/east,
/area/corsat/gamma/residential)
"pMU" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"pMZ" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/hangar)
"pNa" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/foyer)
"pOs" = (
/obj/structure/machinery/colony_floodlight{
@@ -54120,10 +39560,7 @@
/turf/open/gm/dirt,
/area/corsat/theta/biodome)
"pPp" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/residential/west)
"pPN" = (
/obj/structure/bed/stool,
@@ -54137,34 +39574,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/gamma/residential/west)
"pQt" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/airlocknorth/id)
"pQA" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/gamma/hangar/arrivals)
"pQK" = (
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/sigma/south/offices)
"pRl" = (
/turf/open/floor/corsat,
@@ -54173,9 +39599,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_6"
- },
+/turf/open/mars_cave/mars_cave_6,
/area/corsat/sigma/biodome)
"pRX" = (
/obj/structure/platform,
@@ -54183,10 +39607,7 @@
dir = 4;
layer = 2
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southeast,
/area/corsat/sigma/south)
"pSb" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -54195,17 +39616,13 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/hangar/monorail)
"pSc" = (
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"pSo" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -54213,26 +39630,17 @@
/area/corsat/gamma/biodome)
"pSp" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/sigma/hangar/monorail)
"pSu" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"pSB" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/security)
"pSZ" = (
/obj/structure/machinery/vending/coffee,
@@ -54245,62 +39653,41 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"pTD" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/sigma/north)
"pUa" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/south/offices)
"pUy" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/exosuit/peripherals/work_loader,
/obj/item/circuitboard/exosuit/peripherals/work_loader,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"pUA" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/omega/offices)
"pUP" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"pVm" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/residential/maint)
"pVo" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars{
- icon_state = "mars_dirt_8"
- },
+/turf/open/mars/mars_dirt_8,
/area/corsat/sigma/biodome)
"pVr" = (
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/toxins)
"pVD" = (
/obj/structure/pipes/vents/pump{
@@ -54310,47 +39697,31 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential)
"pVL" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/med_data/laptop{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/virology)
"pVS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"pWc" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/omega/cargo)
"pWj" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"pWl" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/west,
/area/corsat/omega/hallways)
"pWr" = (
/obj/structure/pipes/unary/freezer{
@@ -54359,19 +39730,13 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"pWE" = (
/obj/structure/computer3frame/server{
icon_state = "4"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/sigma/south/complex)
"pWR" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -54392,64 +39757,46 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"pXY" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/hangar/checkpoint)
"pYS" = (
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering)
"pYW" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"pZf" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/south)
"pZt" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"qaa" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"qac" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/gamma/residential/researcher)
"qaf" = (
/obj/structure/machinery/camera/autoname{
@@ -54462,52 +39809,35 @@
health = 80
},
/obj/item/phone,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/southeast/datalab)
"qaj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/hangar/office)
"qaB" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/hallwaysouth)
"qaG" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/checkpoint)
"qaO" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/gamma/foyer)
"qaS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/surgery)
"qaY" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 1
- },
+/turf/open/floor/almayer/research/containment/floor2/north,
/area/corsat/gamma/sigmaremote)
"qba" = (
/obj/structure/surface/rack,
@@ -54515,33 +39845,23 @@
/obj/item/storage/bag/trash,
/obj/item/storage/bag/trash,
/obj/item/storage/bag/trash,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential)
"qbc" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/bar)
"qbB" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/hangar/security)
"qbG" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/hydrowest)
"qbV" = (
/obj/structure/window/framed/corsat/security,
@@ -54562,10 +39882,7 @@
"qcR" = (
/obj/structure/surface/table/woodentable,
/obj/item/reagent_container/food/drinks/cans/beer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"qdK" = (
/obj/structure/machinery/light,
@@ -54577,63 +39894,44 @@
pixel_y = 2
},
/obj/item/tool/surgery/bonegel,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/surgery)
"qeg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/lobby)
"qeh" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"qeC" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"qeE" = (
/obj/structure/sign/safety/airlock{
pixel_y = 32
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/omega/hallways)
"qeF" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/security)
"qeY" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"qfl" = (
/obj/structure/bed/nest,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"qfp" = (
/obj/structure/window/framed/corsat,
@@ -54648,122 +39946,83 @@
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"qgl" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/airlocknorth)
"qgm" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/gamma/hangar/arrivals)
"qgo" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southeast,
/area/corsat/sigma/southeast/datalab)
"qgt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"qgF" = (
/obj/effect/alien/weeds/node,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"qgR" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("sigma")
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/testgrounds)
"qhl" = (
/obj/structure/bed,
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/security/cells)
"qhT" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/gamma/residential)
"qig" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/turf/open/floor/wood,
/area/corsat/gamma/rnr/library)
"qiw" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar)
"qiW" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/south/offices)
"qje" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay)
"qjf" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"qjG" = (
/obj/structure/bed/chair/dropship/pilot{
dir = 1
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"qjL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"qkr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/office)
"qkt" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -54775,29 +40034,18 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/sigma/hangar)
"qkz" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/corsat/sigma/cargo)
"qkD" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/hallways)
"qkJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/bed/sofa/vert/white/bot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"qkL" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -54806,31 +40054,21 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"qkW" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"qlh" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/airlock/control)
"qlt" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/complex)
"qlx" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -54842,48 +40080,32 @@
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/security)
"qlI" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"qmD" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/southeast/dataoffice)
"qmT" = (
/obj/structure/sign/safety/biohazard,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/gamma/biodome/virology)
"qnb" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/south/security)
"qnw" = (
/obj/structure/pipes/vents/pump{
dir = 8;
id_tag = "mining_outpost_pump"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/west/id)
"qoh" = (
/obj/effect/landmark/monkey_spawn,
@@ -54894,49 +40116,32 @@
/turf/open/floor/wood,
/area/corsat/gamma/administration)
"qou" = (
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/lobby)
"qoN" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"qpo" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/gamma/hallwaysouth)
"qpB" = (
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"qpC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/theta/biodome/complex)
"qqg" = (
/obj/structure/computer3frame/server{
icon_state = "4"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/sigmaremote)
"qqF" = (
/obj/structure/machinery/camera/autoname{
@@ -54947,15 +40152,11 @@
/obj/structure/machinery/computer/station_alert{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/hangar/office)
"qqI" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/gamma/hangar/flightcontrol)
"qqK" = (
/obj/structure/window/framed/corsat/security,
@@ -54965,51 +40166,34 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"qqY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/theta/airlock/control)
"qsg" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/south/offices)
"qsC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/hallwaysouth)
"qsT" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars_cave{
- icon_state = "mars_cave_18"
- },
+/turf/open/mars_cave/mars_cave_18,
/area/corsat/sigma/biodome)
"qsW" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/security)
"qsY" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/gamma/hangar/flightcontrol)
"qtf" = (
/obj/item/stack/sheet/wood,
@@ -55017,34 +40201,24 @@
/area/corsat/sigma/dorms)
"qti" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/east,
/area/corsat/gamma/residential/west)
"qtm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/corsat/sigma/biodome)
"qtI" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"qtZ" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"quG" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -55056,23 +40230,15 @@
"quI" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"qvz" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin13"
- },
+/turf/open/shuttle/dropship/light_grey_middle,
/area/prison/hangar_storage/research/shuttle)
"qvB" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer3/laptop/secure_data,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"qvD" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -55084,19 +40250,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/hangar)
"qwr" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"qww" = (
/obj/structure/surface/table,
@@ -55105,161 +40266,106 @@
dir = 4;
layer = 2
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"qwM" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/omega/complex)
"qwO" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"qxi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"qxB" = (
/obj/structure/surface/table/reinforced,
/obj/item/newspaper,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/checkpoint)
"qxR" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/east,
/area/corsat/gamma/residential/west)
"qyg" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/gamma/rnr)
"qys" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"qyO" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/toxin,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/biodome/virology)
"qzo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"qzy" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/airlock/control)
"qAg" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"qAk" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/robotics)
"qAl" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/sigma/biodome)
"qAs" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/toxins)
"qAG" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"qAH" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"qBk" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northeast,
/area/corsat/sigma/hangar)
"qBJ" = (
-/turf/open/floor/corsat{
- icon_state = "green"
- },
+/turf/open/floor/corsat/green,
/area/corsat/gamma/medbay/morgue)
"qBZ" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/glasses/meson,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"qCi" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/lobby)
"qCU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/gamma/hangar)
"qDx" = (
/obj/structure/machinery/light/small{
@@ -55272,33 +40378,23 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/sigma/south)
"qEk" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/gamma/hangar/monorail)
"qEu" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"qEw" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"qEG" = (
/obj/structure/machinery/camera/autoname{
@@ -55311,10 +40407,7 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/sigma/south/offices)
"qFq" = (
/obj/structure/surface/table/woodentable,
@@ -55324,35 +40417,24 @@
/area/corsat/gamma/residential/east)
"qFA" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/dataoffice)
"qFJ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/north)
"qFK" = (
/obj/structure/surface/table,
/obj/item/folder,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"qGn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/east,
/area/corsat/gamma/residential/west)
"qGz" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -55362,22 +40444,14 @@
"qGF" = (
/obj/structure/janitorialcart,
/obj/item/tool/mop,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/hangar/monorail/control)
"qGY" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/omega/complex)
"qHF" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"qHM" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -55390,30 +40464,20 @@
name = "Omega Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth)
"qIr" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/core)
"qIw" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/sigma/north)
"qIS" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"qIU" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -55423,18 +40487,13 @@
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"qJi" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"qJl" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -55450,24 +40509,17 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/hangar/office)
"qJJ" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hangar/security)
"qJO" = (
/obj/structure/pipes/standard/simple/hidden/universal{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/airlock/control)
"qJZ" = (
/obj/structure/xenoautopsy/tank/broken,
@@ -55480,21 +40532,14 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/east)
"qKN" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hallways)
"qKZ" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/gamma/hallwaysouth)
"qLa" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/airlock/control)
"qLo" = (
/obj/structure/machinery/power/apc/high{
@@ -55502,10 +40547,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/hallwaysouth)
"qLz" = (
/obj/structure/prop/mech/tesla_energy_relay,
@@ -55515,52 +40557,37 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/south)
"qLI" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/med_data/laptop{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay)
"qMT" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"qNe" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/communications{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/hangar/office)
"qNF" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/gamma/hangar/checkpoint)
"qNJ" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"qNM" = (
/obj/structure/surface/table/woodentable,
@@ -55571,9 +40598,7 @@
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"qOF" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -55581,36 +40606,25 @@
name = "Hangar Office";
req_access_txt = "106"
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/office)
"qOJ" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/hangar/security)
"qPo" = (
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/southeast/datalab)
"qPJ" = (
/obj/structure/bed/nest,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"qQe" = (
/obj/structure/window/framed/corsat/research,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"qQg" = (
/turf/open/floor/wood,
@@ -55619,32 +40633,24 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"qQU" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/morgue)
"qRv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"qRY" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/sigmaremote)
"qSi" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -55661,26 +40667,18 @@
/obj/item/clothing/gloves/black,
/obj/item/clothing/suit/storage/snow_suit,
/obj/item/clothing/suit/storage/snow_suit,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/airlock/south/id)
"qSG" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"qST" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"qTd" = (
/obj/structure/reagent_dispensers/water_cooler,
@@ -55689,48 +40687,31 @@
dir = 8;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/gamma/hallwaysouth)
"qTe" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/dorms)
"qTj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/id)
"qTZ" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southwest,
/area/corsat/gamma/canteen)
"qUt" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Maintainence";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/south/id)
"qUI" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south)
"qUT" = (
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering/atmos)
"qVd" = (
/obj/structure/machinery/gravity_generator{
@@ -55742,17 +40723,13 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/corsat/theta/biodome/complex)
"qVe" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/cargo)
"qVs" = (
/obj/structure/machinery/camera/autoname{
@@ -55764,16 +40741,12 @@
"qVz" = (
/obj/effect/landmark/corpsespawner/pmc,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"qVA" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"qVF" = (
/obj/structure/platform{
@@ -55781,117 +40754,80 @@
dir = 1;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"qVJ" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("sigma")
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/corsat/sigma/biodome)
"qWf" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/morgue)
"qWr" = (
/turf/closed/wall/biodome,
/area/corsat/gamma/residential)
"qWK" = (
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"qWQ" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"qWX" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northwest,
/area/corsat/gamma/hallwaysouth)
"qXL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"qYj" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/northeast,
/area/corsat/gamma/hangar/monorail)
"qZj" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/gamma/hangar)
"qZs" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"qZW" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"raw" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"rba" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/west)
"rbo" = (
/obj/structure/bed/chair/comfy/beige,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/corsat/gamma/biodome/complex)
"rbC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/sigma/south/robotics)
"rcg" = (
/obj/structure/pipes/vents/pump,
@@ -55900,61 +40836,41 @@
"rch" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/theta/biodome/complex)
"rcT" = (
/obj/structure/computer3frame/server{
icon_state = "4"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"rdn" = (
/obj/structure/machinery/light,
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"rdA" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/south/security)
"rdZ" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/gamma/foyer)
"reh" = (
/obj/structure/stairs,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/gamma/hallwaysouth)
"rei" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/sigma/hangar/office)
"reN" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -55970,82 +40886,55 @@
/obj/structure/machinery/computer/atmos_alert{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"rfh" = (
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"rfo" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/sigma/north)
"rfQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/theta/airlock/control)
"rgc" = (
/obj/structure/bed/nest,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"rgm" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/sigma/southeast/datalab)
"rhr" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"rhu" = (
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"rhv" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"riC" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/sigma/southeast/datalab)
"riE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"rjv" = (
/obj/structure/machinery/light{
@@ -56053,17 +40942,13 @@
},
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"rjO" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security/cells)
"rjT" = (
/obj/structure/pipes/vents/pump{
@@ -56075,17 +40960,13 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"rkK" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar)
"rlh" = (
/obj/structure/machinery/shower{
@@ -56097,143 +40978,89 @@
layer = 2.8
},
/obj/item/tool/soap,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"rlk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/gamma/airlock/south/id)
"rlG" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/south/robotics)
"rlH" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/corsat/omega/cargo)
"rmc" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/cargo/disposal)
"rmk" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/biodome/virology)
"rmm" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"rmI" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering/atmos)
"rno" = (
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar)
"rnK" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"roh" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering)
"roj" = (
/obj/structure/safe,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"ros" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/airlock/north)
"rox" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/north,
/area/corsat/gamma/administration)
"roL" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/hangar)
"roZ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"rpi" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"rpr" = (
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"rpB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"rpP" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering/core)
"rpZ" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -56250,66 +41077,45 @@
/area/corsat/sigma/cafe)
"rqo" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/rnr)
"rrs" = (
/obj/structure/prop/almayer/computers/sensor_computer1{
name = "computer"
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor2"
- },
+/turf/open/shuttle/escapepod/floor2,
/area/corsat/theta/biodome/complex)
"rrv" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/monorail/control)
"rrE" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/security)
"rrG" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/landing/console2)
"rrY" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/hangar/security)
"rtr" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/corsat/gamma/cargo/disposal)
"rtN" = (
/obj/structure/bed,
/obj/item/bedsheet,
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay)
"rtT" = (
/obj/structure/surface/table/almayer,
@@ -56318,60 +41124,43 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/omega/complex)
"rtZ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"rur" = (
/obj/structure/noticeboard{
pixel_y = 30
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"rut" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/rnr)
"ruw" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/engineering)
"rvg" = (
/obj/structure/sign/safety/airlock{
pixel_y = 32
},
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/theta/airlock/west)
"rvp" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
},
-/turf/open/floor/almayer/research/containment/corner_var1{
- icon_state = "containment_corner_variant_2"
- },
+/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2,
/area/corsat/gamma/sigmaremote)
"rvC" = (
/obj/structure/machinery/power/apc/high{
@@ -56379,33 +41168,22 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/sigma/airlock/east/id)
"rvD" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/sigma/dorms)
"rvL" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/rnr)
"rwl" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"rwo" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -56417,75 +41195,47 @@
dir = 1;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"rwF" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/sigma/hangar)
"rwK" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/omega/hallways)
"rxd" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/cargo)
"rxk" = (
/obj/structure/closet/secure_closet/engineering_electrical{
req_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/sigma/south/engineering)
"rxD" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"ryc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"ryn" = (
/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/gamma/engineering/core)
"ryE" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"ryR" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/east)
"rzk" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/sigma/hangar/security)
"rzy" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -56497,170 +41247,111 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"rAc" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"rAm" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/sigma/southeast)
"rBf" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security/cells)
"rBX" = (
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/south/offices)
"rCb" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/sigma/south/robotics)
"rCd" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/gamma/hangar/arrivals)
"rCr" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"rCA" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar)
"rCE" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/hydroeast)
"rCH" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/sigmaremote)
"rCO" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northeast,
/area/corsat/gamma/residential/west)
"rDr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"rDF" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/omega/offices)
"rEq" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/residential)
"rED" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"rEG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"rEX" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/omega/control)
"rFf" = (
/obj/structure/bed/chair,
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"rFm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"rFw" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"rFC" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/gamma/hangar/arrivals)
"rFJ" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet10-8"
- },
+/turf/open/floor/carpet10_8/west,
/area/corsat/omega/offices)
"rFS" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/corsat/omega/hangar)
"rGb" = (
/obj/structure/prop/almayer/cannon_cables{
@@ -56671,53 +41362,36 @@
desc = "A bewildering tangle of machinery and pipes.";
name = "coolant feed"
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor1"
- },
+/turf/open/shuttle/escapepod/floor1,
/area/corsat/theta/biodome/complex)
"rGc" = (
/obj/structure/closet/wardrobe/genetics_white,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/theta/biodome/complex)
"rGn" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner,
/area/corsat/gamma/residential/east)
"rGu" = (
/obj/item/paper/crumpled,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"rGC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"rGH" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"rHb" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/security)
"rId" = (
/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"rJo" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -56727,71 +41401,49 @@
"rJu" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"rKa" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"rKo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/hangar/office)
"rKq" = (
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/sigma/hangar/monorail)
"rKy" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"rKG" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/hangar/checkpoint)
"rKN" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/sigma/south/complex)
"rLp" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/corsat/sigma/biodome)
"rLw" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/atmos_alert{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/theta/airlock/west)
"rLZ" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -56799,9 +41451,7 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/maint)
"rMq" = (
/obj/effect/landmark/xeno_hive_spawn,
@@ -56811,9 +41461,7 @@
"rMD" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/hand_labeler,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"rMR" = (
/obj/structure/surface/table/almayer,
@@ -56821,9 +41469,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/virology)
"rMU" = (
/obj/structure/foamed_metal,
@@ -56831,37 +41477,25 @@
/area/corsat/sigma/dorms)
"rMX" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "tcomms"
- },
+/turf/open/floor/corsat/tcomms/southwest,
/area/corsat/sigma/south/complex)
"rNc" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/hangar/security)
"rOq" = (
/obj/structure/bed/sofa,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/gamma/hangar/arrivals)
"rOH" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/gamma/hangar/cargo)
"rOP" = (
/obj/structure/window/reinforced,
@@ -56869,47 +41503,32 @@
/obj/structure/machinery/computer/atmos_alert{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/hangar/office)
"rOS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"rPI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/omega/control)
"rPZ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hallways)
"rQh" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/corsat/sigma/biodome/scrapyard)
"rQD" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/hangar/monorail/control)
"rQQ" = (
/obj/item/weapon/gun/flamer,
@@ -56918,18 +41537,13 @@
name = "specimen control cabinet";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar/security)
"rQY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"rRh" = (
/obj/structure/surface/rack,
@@ -56937,10 +41551,7 @@
/obj/item/ammo_magazine/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/hangar/security)
"rRm" = (
/obj/structure/platform{
@@ -56948,10 +41559,7 @@
layer = 2.7
},
/obj/structure/platform,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southwest,
/area/corsat/gamma/hallwaysouth)
"rRR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56969,10 +41577,7 @@
/obj/item/clothing/gloves/black,
/obj/item/clothing/suit/storage/snow_suit,
/obj/item/clothing/suit/storage/snow_suit,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/airlock/control)
"rSG" = (
/obj/structure/machinery/computer/cameras{
@@ -56982,23 +41587,14 @@
/turf/open/floor/wood,
/area/corsat/gamma/administration)
"rSP" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hangar)
"rSR" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/airlock/control)
"rTb" = (
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/sigma/hangar/monorail)
"rTf" = (
/obj/structure/surface/table,
@@ -57006,10 +41602,7 @@
dir = 4;
layer = 2
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"rTj" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -57019,16 +41612,10 @@
/turf/open/gm/grass/grass1/weedable,
/area/corsat/theta/biodome)
"rTo" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar/monorail)
"rTw" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/airlock/south)
"rTD" = (
/obj/structure/window/framed/corsat,
@@ -57038,15 +41625,10 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"rUd" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay/lobby)
"rUq" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -57066,181 +41648,121 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/omega/cargo)
"rUQ" = (
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/hallwaysouth)
"rVh" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"rVK" = (
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/morgue)
"rVS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/omega/offices)
"rWh" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/security)
"rWE" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"rWG" = (
/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/maint)
"rWM" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/virology)
"rWN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"rWY" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/east,
/area/corsat/omega/airlocknorth)
"rXj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"rXs" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/sigma/dorms)
"rXB" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/omega/complex)
"rXE" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"rYj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/monorail/control)
"rYp" = (
/obj/structure/closet/radiation,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"rYq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"rYB" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/east,
/area/corsat/omega/hallways)
"rZC" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/south)
"rZJ" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/gamma/engineering)
"rZK" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/checkpoint)
"rZR" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/corsat/sigma/biodome)
"rZU" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/corsat/gamma/cargo)
"sam" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/east,
/area/corsat/gamma/residential/researcher)
"sap" = (
/obj/effect/landmark/lv624/xeno_tunnel,
@@ -57249,26 +41771,19 @@
"saV" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"sba" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"sbs" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datamaint)
"sbw" = (
/obj/structure/bed/chair/office/light{
@@ -57277,45 +41792,28 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"sbF" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/microwave,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"sbJ" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/corsat/omega/cargo)
"sbN" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/gamma/engineering)
"scj" = (
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/toxins)
"scH" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"sdm" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{
@@ -57327,9 +41825,7 @@
name = "Gamma Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/control)
"sdu" = (
/obj/structure/surface/table/woodentable,
@@ -57340,15 +41836,11 @@
/area/corsat/gamma/residential/east)
"sdv" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"sdR" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/biodome/complex)
"sem" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -57361,18 +41853,13 @@
name = "Security Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"seB" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/south)
"sfx" = (
/obj/structure/pipes/vents/pump{
@@ -57385,39 +41872,26 @@
name = "\improper Baths"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential/showers)
"sga" = (
/obj/effect/landmark/hunter_primary,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/hangar/arrivals)
"sgl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"sgn" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/gamma/airlock/control)
"sgu" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar/security)
"sgN" = (
/obj/structure/machinery/power/reactor/colony{
@@ -57430,18 +41904,13 @@
icon_state = "0-8";
layer = 2.1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/generator)
"sgX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/checkpoint)
"shg" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -57450,47 +41919,33 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"shq" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/doctor,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"shW" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"sid" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/gamma/residential/west)
"sii" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/complex)
"sip" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 1
- },
+/turf/open/floor/almayer/research/containment/floor2/north,
/area/corsat/sigma/south/complex)
"siu" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -57500,9 +41955,7 @@
/area/corsat/theta/biodome)
"siU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner,
/area/corsat/gamma/residential/west)
"sjr" = (
/obj/structure/fence,
@@ -57510,9 +41963,7 @@
/turf/open/auto_turf/snow/layer3,
/area/corsat/gamma/biodome)
"sjs" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/gamma/residential)
"sjw" = (
/obj/structure/machinery/door_control{
@@ -57522,79 +41973,53 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/biodome/virology)
"sjx" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"sjK" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/morgue)
"sjL" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"sjR" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/gamma/hangar/monorail)
"skc" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/sigma/south)
"skf" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/south/id)
"skk" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"skp" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/xtracks,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"skK" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/security)
"skS" = (
/obj/item/toy/spinningtoy{
@@ -57606,32 +42031,22 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"slL" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/gamma/foyer)
"slU" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/virology)
"smk" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/sigma/hangar/office)
"smP" = (
/obj/structure/flora/bush/ausbushes/var3/sunnybush,
@@ -57639,44 +42054,31 @@
/area/corsat/theta/biodome)
"snc" = (
/obj/structure/morgue,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/medbay/morgue)
"snA" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"snG" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/virology)
"snO" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar)
"snP" = (
/obj/structure/platform{
density = 0;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/hallwaysouth)
"snS" = (
/mob/living/carbon/human/yiren,
@@ -57686,40 +42088,26 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"snW" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/corsat/gamma/sigmaremote)
"soi" = (
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/foyer)
"sor" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/sigma/dorms)
"sos" = (
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/high_explosive/training,
/obj/item/explosive/grenade/high_explosive/training,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"spD" = (
/obj/structure/surface/table/reinforced,
@@ -57728,25 +42116,19 @@
name = "Security Shutters";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"spN" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/security)
"spP" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/virology)
"spU" = (
/obj/structure/flora/bush/ausbushes/palebush,
@@ -57763,24 +42145,16 @@
/turf/open/gm/dirtgrassborder/south,
/area/corsat/theta/biodome)
"sqY" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/northeast,
/area/corsat/gamma/hangar/arrivals)
"srY" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/theta/biodome/complex)
"ssh" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/virology)
"ssw" = (
/obj/structure/bed/sofa/south/white/left,
@@ -57791,17 +42165,11 @@
dir = 1
},
/obj/structure/machinery/autolathe,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/sigma/south/complex)
"stA" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/hangar/security)
"suf" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -57811,78 +42179,51 @@
/turf/open/gm/grass/grass1/weedable,
/area/corsat/theta/biodome)
"sum" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/virology)
"sur" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"svn" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"svB" = (
/obj/structure/bed/sofa/vert/white/top,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"svD" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/north,
/area/corsat/gamma/medbay)
"svH" = (
/obj/structure/pipes/unary/freezer,
-/turf/open/shuttle/escapepod{
- icon_state = "floor4"
- },
+/turf/open/shuttle/escapepod/floor4,
/area/corsat/theta/biodome/complex)
"svU" = (
/obj/structure/surface/rack,
/obj/item/tool/soap,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"svX" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/hangar/cargo)
"swf" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/south/robotics)
"swY" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/south/offices)
"sxa" = (
/obj/structure/bed/chair/office/light{
@@ -57891,33 +42232,22 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"sxB" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
name = "Emergency NanoMed";
pixel_y = 30
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/lobby)
"sxI" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/hangar/arrivals)
"sxJ" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/arrivals)
"sxO" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -57925,31 +42255,21 @@
id = "OmegaOffice";
name = "Privacy Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"sxU" = (
/obj/structure/prop/dam/crane/cargo,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "plating_striped"
- },
+/turf/open/floor/almayer/plating_striped/north,
/area/corsat/gamma/sigmaremote)
"syk" = (
/obj/structure/surface/rack,
/obj/item/storage/bag/trash,
/obj/item/storage/bag/trash,
/obj/item/storage/bag/trash,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"syG" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/south/engineering)
"sAj" = (
/obj/structure/machinery/camera/autoname{
@@ -57963,38 +42283,26 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"sBH" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/shuttle/dropship{
- icon_state = "floor8"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right,
/area/corsat/gamma/hangar/monorail/railcart)
"sBV" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"sCf" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"sCl" = (
/obj/structure/coatrack,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"sCv" = (
/obj/structure/window/framed/corsat/security,
@@ -58006,10 +42314,7 @@
/turf/open/floor/plating,
/area/corsat/gamma/airlock/south/id)
"sCZ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/security)
"sDi" = (
/obj/structure/pipes/vents/pump,
@@ -58018,69 +42323,49 @@
"sDx" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"sDV" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/residential)
"sEb" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor/almayer/research/containment/corner{
- dir = 1
- },
+/turf/open/floor/almayer/research/containment/corner/north,
/area/corsat/gamma/sigmaremote)
"sEc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"sEo" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/checkpoint)
"sFd" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southeast,
/area/corsat/gamma/hangar/flightcontrol)
"sFD" = (
/obj/structure/closet/l3closet/general,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/virology)
"sFF" = (
/obj/effect/landmark/queen_spawn,
/turf/open/ice,
/area/corsat/gamma/biodome)
"sFI" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/west,
/area/corsat/gamma/hallwaysouth)
"sGB" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -58097,100 +42382,69 @@
req_access_txt = "106"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"sHB" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/complex)
"sHR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"sHX" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"sIm" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("theta")
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/theta/airlock/west)
"sIs" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"sIw" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/corsat/sigma/cargo)
"sIC" = (
/obj/structure/surface/table,
/obj/item/toy/deck/uno,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hallways)
"sIL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/west,
/area/corsat/gamma/residential/east)
"sIR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/south/id)
"sIV" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/corsat/sigma/cargo)
"sJe" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/east,
/area/corsat/sigma/dorms)
"sJg" = (
/turf/closed/shuttle/ert{
@@ -58198,90 +42452,62 @@
},
/area/prison/hangar_storage/research/shuttle)
"sJk" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/corsat/omega/hangar)
"sJr" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/airlock/east/id)
"sKa" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/sigmaremote)
"sKQ" = (
/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
+ dir = 4
},
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/security)
"sKZ" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile{
id = "ThetaNorthN";
name = "Theta North Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/control)
"sLw" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/residential)
"sLF" = (
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/southeast/datalab)
"sMb" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"sMO" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/northeast,
/area/corsat/gamma/biodome/complex)
"sMW" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"sNo" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/closet/radiation,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"sNE" = (
/obj/structure/morgue/crematorium{
@@ -58293,99 +42519,68 @@
pixel_y = 28;
req_one_access_txt = "2;8;19"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/north,
/area/corsat/gamma/medbay/morgue)
"sNG" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/core)
"sNO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/sigma/cafe)
"sNU" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"sOq" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/sigma/south)
"sOt" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"sON" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/north,
/area/corsat/omega/offices)
"sPx" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar/monorail/control)
"sPB" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/hallways)
"sPI" = (
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/north,
/area/corsat/gamma/hallwaysouth)
"sQb" = (
/obj/structure/bed,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/security/cells)
"sQz" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/omega/offices)
"sQI" = (
/obj/structure/platform{
@@ -58393,10 +42588,7 @@
layer = 2.7
},
/obj/structure/stairs,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northwest,
/area/corsat/gamma/residential/east)
"sRe" = (
/obj/structure/surface/table/almayer,
@@ -58406,52 +42598,33 @@
pixel_x = -5;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"sRo" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"sRx" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northeast,
/area/corsat/gamma/residential)
"sRI" = (
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"sRK" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
req_one_access_txt = "201;104"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/security)
"sSg" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/gamma/biodome/toxins)
"sSZ" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/omega/hallways)
"sTq" = (
/obj/structure/flora/jungle/planttop1,
@@ -58459,18 +42632,12 @@
/turf/open/gm/dirt,
/area/corsat/theta/biodome)
"sTr" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/security)
"sTt" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/assembly/igniter,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/sigma/south/complex)
"sTD" = (
/obj/structure/surface/table/woodentable,
@@ -58480,31 +42647,20 @@
/area/corsat/gamma/residential/east)
"sTH" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/biodome/toxins)
"sTN" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/gamma/hangar/flightcontrol)
"sTW" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/complex)
"sUR" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/gamma/engineering/atmos)
"sVk" = (
/turf/open/floor/corsat,
@@ -58518,43 +42674,32 @@
dir = 4
},
/obj/structure/barricade/handrail,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"sVt" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"sVA" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 8
- },
+/turf/open/floor/almayer/research/containment/floor2/west,
/area/corsat/gamma/sigmaremote)
"sVO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/theta/airlock/control)
"sWd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/generator)
"sWP" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -58572,9 +42717,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"sXl" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -58582,41 +42725,29 @@
"sXG" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/gloves/latex,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/gamma/biodome/complex)
"sYc" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"sYh" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper/Toxin,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/toxins)
"sYk" = (
/obj/structure/stairs,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/sigma/south)
"sZc" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"sZg" = (
/obj/structure/flora/bush/ausbushes/var3/leafybush,
@@ -58626,87 +42757,54 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/corsat/sigma/biodome)
"tae" = (
/obj/structure/machinery/r_n_d/circuit_imprinter,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"tav" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/core)
"taF" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hangar/security)
"taL" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/theta/airlock/control)
"taO" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/hangar/office)
"taQ" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/residential/maint)
"taT" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo)
"taX" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/gamma/engineering)
"taY" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/toxins)
"tbc" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/sigma/south/complex)
"tbd" = (
/obj/structure/surface/rack,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/hangar/security)
"tbm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"tbY" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -58716,33 +42814,22 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"tcF" = (
/obj/effect/landmark/corpsespawner/doctor,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/medbay/surgery)
"tdi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"tdp" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"tdH" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -58752,17 +42839,12 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"teZ" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/southwest,
/area/corsat/sigma/hangar/office)
"tfi" = (
/obj/structure/barricade/handrail{
@@ -58771,9 +42853,7 @@
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"tfu" = (
/obj/structure/flora/bush/ausbushes/var3/sunnybush,
@@ -58781,49 +42861,34 @@
/area/corsat/theta/biodome)
"tfz" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/complex)
"tfC" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/gamma/hallwaysouth)
"tfF" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"tfP" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/condiment/saltshaker,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/theta/biodome/complex)
"tfY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"tgE" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/omega/complex)
"tgJ" = (
/obj/structure/pipes/vents/pump{
@@ -58832,15 +42897,10 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"thb" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/freezer)
"thv" = (
/obj/structure/machinery/power/apc/high{
@@ -58848,40 +42908,26 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"tja" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/sigma/south/complex)
"tjf" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"tjQ" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/rad,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/sigmaremote)
"tjT" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"tkO" = (
/obj/structure/window/framed/corsat/hull,
@@ -58894,20 +42940,14 @@
/turf/open/ice,
/area/corsat/gamma/biodome)
"tlD" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/theta/airlock/control)
"tlP" = (
/obj/structure/platform{
dir = 4;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/sigma/south)
"tlX" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -58918,92 +42958,57 @@
/obj/item/ammo_magazine/pistol/mod88,
/obj/item/storage/pouch/general/medium,
/obj/item/storage/pouch/pistol,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/hangar/security)
"tml" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/complex)
"tmv" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/north)
"tnS" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/station_alert{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/engineering/atmos)
"toa" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/foyer)
"toi" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/omega/offices)
"ton" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/hangar/monorail)
"tov" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/sigma/hangar)
"toC" = (
/obj/structure/bed/nest,
/obj/effect/landmark/corpsespawner/doctor,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"toG" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"toJ" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northeast,
/area/corsat/sigma/southeast/datalab)
"toL" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"tpz" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"tpA" = (
/obj/structure/machinery/power/apc/high{
@@ -59013,9 +43018,7 @@
},
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/hangar/office)
"tpF" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -59025,23 +43028,16 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/laundry)
"tpM" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south)
"tpW" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"tqb" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -59055,44 +43051,29 @@
/obj/structure/surface/table/almayer,
/obj/item/tool/surgery/scalpel,
/obj/item/tool/surgery/circular_saw,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"trV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay)
"tsb" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/sigma/north)
"tsA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/omega/control)
"tta" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/airlock/control)
"ttB" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"ttJ" = (
/obj/structure/machinery/power/apc/high{
@@ -59100,31 +43081,23 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"ttK" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"tuo" = (
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"tuu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"tuB" = (
/obj/structure/surface/rack,
@@ -59135,9 +43108,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"tvf" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -59149,10 +43120,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/theta/airlock/control)
"tvO" = (
/obj/structure/machinery/power/apc/high{
@@ -59160,16 +43128,11 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/corsat/greencorner/east,
/area/corsat/gamma/medbay/morgue)
"tvW" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/south/offices)
"twm" = (
/obj/structure/bed/chair{
@@ -59178,9 +43141,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"twS" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -59196,61 +43157,40 @@
dir = 4
},
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"txB" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"txK" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/southeast/datalab)
"tyb" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/robotics)
"tyv" = (
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/corsat/omega/hangar)
"tzz" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/east,
/area/corsat/gamma/biodome/complex)
"tzF" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"tzX" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/hangar/security)
"tzY" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -59266,56 +43206,37 @@
/turf/open/gm/grass/grass1/weedable,
/area/corsat/theta/biodome)
"tBh" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/gamma/hangar/monorail)
"tBG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/id)
"tBI" = (
/obj/structure/surface/table/almayer,
/obj/item/circuitboard/robot_module/surgeon,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south/robotics)
"tBT" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/checkpoint)
"tCi" = (
/obj/structure/surface/rack,
/obj/item/tool/weldpack,
/obj/item/tool/weldingtool,
/obj/item/clothing/head/welding,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/gamma/engineering)
"tCn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"tCs" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/north)
"tCu" = (
/turf/closed/shuttle/ert{
@@ -59323,44 +43244,30 @@
},
/area/prison/hangar_storage/research/shuttle)
"tCH" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/theta/biodome/hydroeast)
"tCI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/sigma/dorms)
"tDc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"tDf" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/southeast,
/area/corsat/gamma/residential)
"tDt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/checkpoint)
"tDK" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -59371,42 +43278,28 @@
dir = 4
},
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/gamma/foyer)
"tEm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/control)
"tEJ" = (
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/omega/hallways)
"tFp" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/west,
/area/corsat/gamma/hallwaysouth)
"tFs" = (
/obj/structure/surface/table/almayer,
/obj/item/weapon/gun/pistol/mod88,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/security)
"tFv" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"tFG" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -59421,18 +43314,13 @@
"tGr" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"tGG" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southeast,
/area/corsat/gamma/medbay/lobby)
"tGV" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -59449,19 +43337,13 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/east,
/area/corsat/gamma/biodome/complex)
"tHR" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/sigma/south)
"tIk" = (
/turf/closed/wall/resin/membrane,
@@ -59473,16 +43355,11 @@
name = "Security Hub";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/security)
"tIP" = (
/obj/structure/stairs,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"tJf" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -59490,17 +43367,13 @@
/area/corsat/theta/biodome)
"tJs" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/southeast/datalab)
"tJv" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"tJA" = (
/obj/structure/closet/crate/trashcart,
@@ -59508,80 +43381,53 @@
/area/corsat/gamma/sigmaremote)
"tJY" = (
/obj/structure/machinery/vending/hydronutrients,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/hydroeast)
"tKy" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/gamma/sigmaremote)
"tKI" = (
/obj/structure/machinery/smartfridge,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/theta/biodome/complex)
"tLa" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/hangar)
"tLr" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "tcomms"
- },
+/turf/open/floor/almayer/tcomms,
/area/corsat/sigma/southeast/telecomm)
"tLz" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"tLF" = (
-/turf/open/floor/corsat{
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner,
/area/corsat/omega/hallways)
"tLR" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"tMq" = (
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/sigma/airlock/control)
"tMG" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"tMX" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome)
"tNp" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -59595,59 +43441,39 @@
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/theta/airlock/west/id)
"tNS" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/residential/west)
"tNT" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"tOa" = (
/obj/structure/bed,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"tOo" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/theta/biodome/complex)
"tOL" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/largecrate/goat,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/corsat/gamma/sigmaremote)
"tOT" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"tPk" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -59659,16 +43485,11 @@
name = "Security Shutters"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"tPT" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/security)
"tPV" = (
/turf/closed/wall/biodome,
@@ -59686,39 +43507,27 @@
"tQs" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/south/offices)
"tRA" = (
/obj/structure/barricade/handrail{
dir = 8
},
/obj/structure/barricade/handrail,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"tRC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner,
/area/corsat/gamma/residential/east)
"tRM" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/sigma/south)
"tSo" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/residential)
"tSu" = (
/obj/structure/surface/table/almayer,
@@ -59726,31 +43535,21 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/hangar/office)
"tSD" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/omega/offices)
"tSE" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/powercell,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"tSG" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/datamaint)
"tTd" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -59760,10 +43559,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/residential)
"tTv" = (
/obj/structure/pipes/vents/pump{
@@ -59772,75 +43568,49 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"tTE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner,
/area/corsat/gamma/residential/west)
"tUa" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/north,
/area/corsat/sigma/south/offices)
"tUG" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"tUO" = (
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/gamma/hallwaysouth)
"tUR" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/north)
"tVr" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"tVu" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/hangar)
"tVx" = (
/obj/structure/surface/table/almayer,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/biodome/toxins)
"tVW" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"tWu" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -59850,17 +43620,11 @@
pixel_y = 1;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/omega/offices)
"tWw" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/canteen)
"tWy" = (
/obj/structure/pipes/vents/pump{
@@ -59870,10 +43634,7 @@
/area/corsat/gamma/biodome)
"tWM" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northwest,
/area/corsat/omega/offices)
"tXa" = (
/obj/structure/surface/table/reinforced,
@@ -59897,54 +43658,38 @@
pixel_x = -2;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/airlocknorth)
"tXo" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/sigma/hangar/office)
"tXq" = (
/obj/structure/cargo_container/trijent/left,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"tXB" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/checkpoint)
"tYg" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/gamma/canteen)
"tYF" = (
/obj/structure/pipes/standard/simple/hidden/green,
/turf/open/floor/wood,
/area/corsat/gamma/administration)
"tYX" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin10"
- },
+/turf/open/shuttle/dropship/light_grey_top,
/area/prison/hangar_storage/research/shuttle)
"tZp" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"tZD" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -59953,125 +43698,86 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/atmos)
"tZN" = (
/obj/structure/bed/chair/comfy,
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/gamma/hangar/monorail)
"tZT" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/sigma/south/complex)
"uag" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/sigma/south/complex)
"ubq" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome/scrapyard)
"ubv" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/biodome/complex)
"ubJ" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northeast,
/area/corsat/gamma/residential/east)
"ubW" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome)
"ucj" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/toxins)
"uco" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/sigma/south/offices)
"ucu" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/toxins)
"ucx" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"ucW" = (
/obj/structure/surface/table/reinforced,
/obj/item/explosive/grenade/flashbang/cluster,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/sigma/south/complex)
"uez" = (
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/gamma/hangar/arrivals)
"ueK" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"ufN" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -60080,24 +43786,17 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/core)
"ufT" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"ugy" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/omega/control)
"ugB" = (
/turf/closed/shuttle/ert{
@@ -60106,40 +43805,27 @@
/area/prison/hangar_storage/research/shuttle)
"ugC" = (
/obj/structure/closet/crate/science,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"ugK" = (
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"ugM" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/gamma/cargo)
"uhx" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/cargo)
"uip" = (
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/corsat/omega/offices)
"uiW" = (
/obj/structure/closet/wardrobe/science_white,
@@ -60147,26 +43833,17 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/complex)
"uji" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/hangar/security)
"ujX" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/south/robotics)
"ukb" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -60174,16 +43851,11 @@
/area/corsat/theta/biodome)
"ukf" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/almayer/research/containment/corner_var1{
- dir = 4
- },
+/turf/open/floor/almayer/research/containment/corner_var1/east,
/area/corsat/inaccessible)
"ukz" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/monorail/control)
"ukQ" = (
/obj/structure/surface/rack,
@@ -60191,9 +43863,7 @@
/obj/item/tool/weldingtool,
/obj/item/clothing/head/welding,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/engineering)
"ukV" = (
/obj/structure/window_frame/corsat,
@@ -60203,46 +43873,29 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/corsat/sigma/biodome)
"ulb" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/north,
/area/corsat/gamma/residential/west)
"uli" = (
/obj/structure/flora/bush/ausbushes/grassybush,
/turf/open/gm/dirtgrassborder/north,
/area/corsat/theta/biodome)
"ulq" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner/east,
/area/corsat/sigma/south)
"ulr" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northeast,
/area/corsat/gamma/canteen)
"ulC" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar)
"umo" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/south/security)
"umz" = (
/obj/structure/machinery/light{
@@ -60251,44 +43904,26 @@
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/security)
"umU" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/omega/offices)
"unf" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/southeast/generator)
"unL" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/bed/sofa/vert/white/top,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"unN" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/northwest,
/area/corsat/omega/hallways)
"uoh" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/northwest,
/area/corsat/gamma/medbay/morgue)
"uov" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -60299,9 +43934,7 @@
"uoQ" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"upe" = (
/obj/structure/machinery/computer/cameras{
@@ -60324,9 +43957,7 @@
"upA" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering/core)
"upN" = (
/obj/structure/machinery/power/apc/hyper{
@@ -60334,57 +43965,41 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"uqb" = (
/obj/structure/cargo_container/trijent/right,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"uqx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/theta/airlock/west)
"urx" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"urN" = (
/obj/structure/pipes/vents/pump/siphon/on{
dir = 4;
id_tag = "oxy_corsat_out"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"urX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security/cells)
"usz" = (
/obj/effect/landmark/corpsespawner/pmc,
/obj/effect/decal/cleanable/blood/xtracks,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/airlocknorth)
"usD" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/checkpoint)
"usK" = (
/obj/structure/flora/jungle/alienplant1,
@@ -60403,77 +44018,51 @@
"usW" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/checkpoint)
"utp" = (
/obj/item/tool/extinguisher,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/theta/biodome/complex)
"utS" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/theta/biodome/complex)
"utV" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/security)
"uua" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/gamma/airlock/south)
"uuu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"uuP" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"uuQ" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/engineering)
"uuT" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/east,
/area/corsat/gamma/medbay/morgue)
"uvd" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/gamma/security)
"uvy" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -60483,35 +44072,24 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/south)
"uwo" = (
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
/obj/item/paper,
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/gamma/airlock/north)
"uww" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"uwy" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/gamma/foyer)
"uwC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars_cave{
- icon_state = "mars_cave_15"
- },
+/turf/open/mars_cave/mars_cave_15,
/area/corsat/sigma/biodome)
"uwP" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -60520,23 +44098,15 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"uxj" = (
/obj/structure/machinery/door/window/eastright,
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"uya" = (
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/researcher)
"uyd" = (
/obj/structure/flora/pottedplant,
@@ -60544,10 +44114,7 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/sigma/southeast/dataoffice)
"uyg" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -60556,27 +44123,18 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"uyw" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/engineering)
"uyT" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential)
"uzl" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/monorail)
"uzS" = (
/obj/structure/platform{
@@ -60587,20 +44145,14 @@
dir = 8;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northwest,
/area/corsat/gamma/hallwaysouth)
"uzW" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/omega/complex)
"uAc" = (
/obj/structure/surface/table/reinforced,
@@ -60608,22 +44160,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"uAl" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/gamma/airlock/control)
"uAN" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"uAW" = (
/obj/structure/surface/table/almayer,
@@ -60633,18 +44177,14 @@
pixel_y = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/control)
"uBj" = (
/obj/structure/window/framed/corsat/hull/research,
/turf/open/floor/plating,
/area/corsat/omega/hallways)
"uBk" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential/showers)
"uBH" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -60657,18 +44197,13 @@
/turf/open/auto_turf/snow/layer2,
/area/corsat/gamma/biodome)
"uCU" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/west,
/area/corsat/gamma/residential/west)
"uDh" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/north)
"uDW" = (
/obj/structure/pipes/vents/pump{
@@ -60680,9 +44215,7 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/maint)
"uEC" = (
/obj/structure/flora/pottedplant{
@@ -60692,90 +44225,61 @@
/area/corsat/gamma/residential/researcher)
"uEZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/omega/complex)
"uFg" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/north,
/area/corsat/omega/hallways)
"uFr" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/east,
/area/corsat/gamma/medbay/lobby)
"uFy" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/omega/hallways)
"uFJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southeast,
/area/corsat/gamma/residential/west)
"uFM" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar)
"uGv" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/theta/biodome/hydrowest)
"uGC" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"uGI" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/sigma/south/complex)
"uGQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/airlock/control)
"uHb" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hallways)
"uHh" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner,
/area/corsat/gamma/biodome/complex)
"uHm" = (
/turf/closed/shuttle/ert{
@@ -60795,9 +44299,7 @@
/area/corsat/gamma/biodome)
"uIM" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"uIX" = (
/obj/structure/barricade/handrail{
@@ -60806,59 +44308,39 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"uIZ" = (
-/turf/open/shuttle/escapepod{
- icon_state = "floor1"
- },
+/turf/open/shuttle/escapepod/floor1,
/area/corsat/theta/biodome/complex)
"uJq" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/south/robotics)
"uJr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/southeast)
"uJI" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/south)
"uJV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/bar)
"uKg" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/west,
/area/corsat/omega/offices)
"uKy" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/circular_saw,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southeast,
/area/corsat/gamma/medbay/surgery)
"uKE" = (
/obj/structure/machinery/light{
@@ -60866,37 +44348,25 @@
},
/obj/structure/surface/table/almayer,
/obj/item/storage/box/beakers,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/virology)
"uKV" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/gamma/hangar/cargo)
"uLN" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/dorms)
"uLV" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"uMf" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/checkpoint)
"uMo" = (
/obj/structure/bed/chair/office/light{
@@ -60906,10 +44376,7 @@
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/theta/airlock/west)
"uMq" = (
/obj/structure/surface/table/almayer,
@@ -60917,52 +44384,36 @@
dir = 4;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/security)
"uMD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential/east)
"uMV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar)
"uNW" = (
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/theta/airlock/control)
"uOe" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"uOi" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"uOz" = (
/obj/structure/machinery/portable_atmospherics/powered/pump,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/engineering/atmos)
"uPy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -60975,10 +44426,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"uPR" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -60988,63 +44436,41 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"uQt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"uQz" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/hallwaysouth)
"uQT" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/residential)
"uRd" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/corsat/omega/hallways)
"uRp" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/gamma/residential/east)
"uRs" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/south/security)
"uRw" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/theta/airlock/control)
"uRA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -61059,24 +44485,17 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hydroponics)
"uRQ" = (
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"uRU" = (
/obj/structure/janitorialcart,
/obj/item/tool/mop,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/southeast/datamaint)
"uSc" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -61085,15 +44504,10 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"uSi" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/hangar/monorail)
"uSk" = (
/obj/structure/window/framed/corsat/security,
@@ -61106,24 +44520,16 @@
/area/corsat/sigma/hangar/security)
"uSy" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "arrow_north"
- },
+/turf/open/floor/corsat/arrow_north,
/area/corsat/gamma/cargo)
"uSz" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/rnr)
"uSM" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/sigma/south)
"uST" = (
/obj/structure/surface/table/woodentable,
@@ -61140,17 +44546,13 @@
"uTg" = (
/obj/structure/safe,
/obj/item/device/locator,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/sigmaremote)
"uTq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/freezer)
"uTU" = (
/obj/structure/closet/crate/trashcart,
@@ -61177,49 +44579,35 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"uVe" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"uVo" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south)
"uVD" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/control)
"uVH" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar/checkpoint)
"uWJ" = (
/obj/structure/window/framed/corsat,
/turf/open/floor/plating,
/area/corsat/gamma/rnr/arcade)
"uXa" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/theta/airlock/control)
"uXk" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -61230,9 +44618,7 @@
/area/corsat/theta/biodome)
"uXw" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/dorms)
"uXL" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -61242,10 +44628,7 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"uXU" = (
/obj/structure/pipes/vents/pump{
@@ -61257,83 +44640,56 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"uYe" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"uYq" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/east,
/area/corsat/gamma/canteen)
"uYR" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/security)
"uZh" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
/obj/item/tool/pen/blue,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"uZA" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"uZL" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/freezer)
"uZM" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/gamma/airlock/control)
"vad" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner/east,
/area/corsat/gamma/residential/researcher)
"vaj" = (
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"val" = (
/obj/structure/machinery/optable,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/omega/complex)
"var" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -61341,10 +44697,7 @@
/area/corsat/theta/biodome)
"vaw" = (
/obj/structure/machinery/computer/WYresearch,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/theta/biodome/complex)
"vaI" = (
/obj/structure/flora/bush/ausbushes/grassybush,
@@ -61353,43 +44706,28 @@
"vaK" = (
/obj/structure/surface/rack,
/obj/item/storage/box/pillbottles,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/complex)
"vaY" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"vbv" = (
/obj/structure/surface/rack,
/obj/item/storage/box/gloves,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/complex)
"vbB" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"vbW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"vcs" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/theta/biodome/complex)
"vcx" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -61407,9 +44745,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"vda" = (
/obj/structure/window/framed/corsat,
@@ -61418,10 +44754,7 @@
"vdt" = (
/obj/structure/machinery/light,
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/sigma/south/complex)
"vfb" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -61429,30 +44762,21 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"vfd" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/gamma/rnr)
"vff" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"vfK" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/rad,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"vfR" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -61464,54 +44788,36 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"vgn" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/residential/west)
"vgV" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/gamma/hallwaysouth)
"vhg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/cargo)
"vht" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/airlock/south/id)
"vhz" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/researcher)
"vhN" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer3/laptop/secure_data,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/southeast,
/area/corsat/gamma/residential/west)
"vhS" = (
/obj/structure/machinery/power/apc/high{
@@ -61519,16 +44825,10 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/hangar/checkpoint)
"vhU" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/theta/airlock/control)
"vhZ" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -61539,15 +44839,10 @@
icon_state = "processor";
name = "Processor Unit"
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/sigma/south/complex)
"vii" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet11-12"
- },
+/turf/open/floor/carpet11_12/west,
/area/corsat/omega/offices)
"vim" = (
/obj/structure/machinery/light/small{
@@ -61557,130 +44852,87 @@
/area/corsat/omega/maint)
"viq" = (
/obj/structure/bed/sofa/south/grey/left,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/arrivals)
"viL" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/control)
"vjb" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/hangar/office)
"vjd" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/hangar/office)
"vjA" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"vjF" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/researcher)
"vjW" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/sigma/southeast/datalab)
"vka" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar/monorail/control)
"vkq" = (
/obj/structure/computer3frame/server{
icon_state = "4"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/sigmaremote)
"vks" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"vkt" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"vkO" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"vkW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"vlv" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"vme" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar/security)
"vmh" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/checkpoint)
"vmm" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/biodome/complex)
"vmJ" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/sigma/south/complex)
"vnc" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -61692,61 +44944,40 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/complex)
"vnH" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"voj" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"voo" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/south)
"voF" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/engineering)
"voM" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/complex)
"vpl" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/hangar)
"vpT" = (
/obj/structure/closet/crate/science,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/sigma/cargo)
"vqA" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/north,
/area/corsat/gamma/hallwaysouth)
"vqF" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -61756,164 +44987,108 @@
req_one_access = null
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"vqP" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/tool,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/gamma/engineering)
"vrx" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/complex)
"vrA" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/emails{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"vrC" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/biodome/toxins)
"vsg" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"vsn" = (
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"vsu" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northeast,
/area/corsat/sigma/south/complex)
"vsN" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/corsat/gamma/hallwaysouth)
"vsP" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"vth" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/reagentgrinder,
/obj/item/stack/sheet/mineral/phoron/small_stack,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"vtk" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/gamma/biodome/virology)
"vtq" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast)
"vuq" = (
/obj/structure/reagent_dispensers/water_cooler/stacks,
/turf/open/floor/wood,
/area/corsat/gamma/residential/east)
"vur" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/gamma/hangar/arrivals)
"vuu" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/gamma/administration)
"vwu" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/foyer)
"vxb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Baths"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"vxj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"vxk" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"vxv" = (
/obj/structure/pipes/standard/cap/hidden{
dir = 1
},
-/turf/open/shuttle/escapepod{
- icon_state = "floor5"
- },
+/turf/open/shuttle/escapepod/floor5,
/area/corsat/theta/biodome/complex)
"vyk" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/north,
/area/corsat/gamma/medbay/morgue)
"vyA" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/southeast/datalab)
"vyB" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -61922,19 +45097,13 @@
/turf/open/mars,
/area/corsat/sigma/biodome)
"vyH" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/theta/airlock/control)
"vyR" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/gamma/foyer)
"vyY" = (
/obj/structure/machinery/light{
@@ -61943,9 +45112,7 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hallwaysouth)
"vza" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -61955,24 +45122,18 @@
/area/corsat/theta/biodome)
"vzc" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south)
"vzp" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey,
/area/corsat/sigma/southeast/dataoffice)
"vzv" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"vzA" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -61981,9 +45142,7 @@
name = "Hangar Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/hangar/id)
"vzK" = (
/obj/effect/landmark/monkey_spawn,
@@ -61991,15 +45150,11 @@
/area/corsat/theta/biodome)
"vzV" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/complex)
"vAm" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential/east)
"vAP" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -62011,91 +45166,60 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"vBb" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/containment)
"vBS" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen,
/area/corsat/sigma/hangar/arrivals)
"vCj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome)
"vCo" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southwest,
/area/corsat/gamma/medbay/morgue)
"vCr" = (
/obj/item/reagent_container/glass/bucket/janibucket,
/obj/item/tool/mop,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/biodome/hydroeast)
"vCx" = (
/turf/closed/wall/resin/membrane,
/area/corsat/omega/biodome)
"vCR" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/north,
/area/corsat/gamma/medbay/lobby)
"vCS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/corsat/sigma/biodome)
"vDg" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential/east)
"vDt" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hydroponics)
"vDu" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"vDF" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"vEs" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/south)
"vEK" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -62104,43 +45228,29 @@
/area/corsat/theta/biodome)
"vEM" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/southeast/datamaint)
"vEY" = (
/obj/structure/bed,
/obj/item/bedsheet,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"vFf" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/complex)
"vFk" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/hangar)
"vFm" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/sigmaremote)
"vFo" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/biodome/virology)
"vFJ" = (
/obj/structure/pipes/vents/pump{
@@ -62152,58 +45262,38 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/gamma/security/cells)
"vGn" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/complex)
"vGz" = (
/obj/structure/closet/wardrobe/science_white,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"vGW" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/east,
/area/corsat/omega/hallways)
"vHf" = (
/obj/structure/noticeboard{
pixel_y = 30
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"vHx" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"vHM" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/complex)
"vHP" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "spiralplate"
- },
+/turf/open/floor/corsat/spiralplate,
/area/corsat/omega/offices)
"vHQ" = (
/obj/structure/bed/chair{
@@ -62212,23 +45302,16 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"vHU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/sigma/lavatory)
"vIb" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"vJr" = (
/obj/structure/bed/chair/office/light{
@@ -62237,93 +45320,64 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"vJz" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/monkeycubes/farwacubes,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/complex)
"vKa" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/hangar/cargo)
"vKH" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west,
/area/corsat/theta/biodome)
"vKN" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/lobby)
"vLb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"vLO" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hydroponics)
"vLQ" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/virology)
"vLX" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/rnr)
"vLZ" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/omega/offices)
"vMA" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/gamma/residential)
"vMI" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Maintainence";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/freezer)
"vMM" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -62333,49 +45387,34 @@
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"vMP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/foyer)
"vMV" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/west,
/area/corsat/gamma/residential/east)
"vMX" = (
/obj/structure/bed/chair,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"vNe" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar)
"vND" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/airlock/south)
"vOh" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -62383,32 +45422,22 @@
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"vOw" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"vOK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/hydrowest)
"vPM" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/hangar)
"vQg" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -62418,65 +45447,43 @@
"vQs" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar/monorail/control)
"vQt" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/east,
/area/corsat/sigma/south)
"vQA" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/theta/biodome/complex)
"vRc" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/gamma/rnr)
"vSa" = (
/obj/structure/surface/table/almayer,
/obj/item/device/taperecorder,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/security)
"vSE" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay)
"vSF" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"vTr" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/hydroeast)
"vTF" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/toxins)
"vTT" = (
/obj/structure/pipes/vents/pump{
@@ -62489,10 +45496,7 @@
dir = 8
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"vUn" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -62500,65 +45504,45 @@
name = "Omega Dome Control";
req_one_access_txt = "102"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/control)
"vVc" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"vVA" = (
/obj/structure/machinery/light,
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/hydrowest)
"vVI" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/north)
"vVJ" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/southeast,
/area/corsat/gamma/medbay)
"vVO" = (
/obj/item/stool,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"vVU" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/south)
"vWM" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/gamma/residential/researcher)
"vXy" = (
/obj/structure/platform{
@@ -62566,10 +45550,7 @@
dir = 8;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/sigma/south)
"vYe" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -62585,23 +45566,17 @@
dir = 4
},
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/foyer)
"vYY" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/gamma/engineering)
"vZD" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/monorail)
"vZJ" = (
/obj/effect/alien/weeds/node,
@@ -62613,17 +45588,13 @@
name = "ID Checkpoint";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/id)
"waF" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/rnr)
"wbf" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -62635,20 +45606,14 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northeast,
/area/corsat/sigma/dorms)
"wcn" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"wcw" = (
/obj/structure/pipes/vents/pump{
@@ -62660,71 +45625,51 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/corsat/sigma/biodome)
"wda" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/security)
"wdn" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/chemistry)
"wea" = (
/obj/structure/surface/rack,
/obj/item/storage/photo_album,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/hangar/security)
"wet" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/almayer/research/containment/floor2{
- dir = 8
- },
+/turf/open/floor/almayer/research/containment/floor2/west,
/area/corsat/sigma/south/complex)
"wfn" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner,
/area/corsat/gamma/residential/west)
"wfD" = (
/obj/structure/tunnel{
id = "hole0"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"wfK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"wfL" = (
/obj/structure/closet/wardrobe/science_white,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/theta/biodome/complex)
"wgY" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -62742,24 +45687,16 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"wie" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/security)
"wim" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/hangar/office)
"wiF" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -62776,24 +45713,17 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/omega/hallways)
"wjb" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/shuttle/dropship{
- icon_state = "floor8"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right,
/area/corsat/gamma/hangar/monorail/railcart)
"wji" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"wjn" = (
/obj/structure/surface/table/reinforced,
@@ -62821,19 +45751,13 @@
/obj/structure/machinery/camera/autoname{
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/airlock/south)
"wjw" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/sigma/hangar/office)
"wkm" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -62841,31 +45765,20 @@
/area/corsat/theta/biodome)
"wkr" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/hangar/security)
"wkG" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/sigma/south/security)
"wlc" = (
/obj/vehicle/train/cargo/engine{
dir = 2
},
-/turf/open/floor/almayer{
- icon_state = "plating_striped"
- },
+/turf/open/floor/almayer/plating_striped,
/area/corsat/gamma/sigmaremote)
"wlj" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/west,
/area/corsat/sigma/hangar/office)
"wlt" = (
/obj/structure/machinery/light{
@@ -62873,10 +45786,7 @@
},
/obj/structure/surface/rack,
/obj/item/device/reagent_scanner,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/biodome/complex)
"wlY" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -62895,32 +45805,21 @@
"wmj" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/gloves,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/omega/complex)
"wmr" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/emails,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"wmE" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"wmU" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/hangar)
"wmV" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -62930,32 +45829,23 @@
name = "\improper Hypersleep Chamber";
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/east)
"wnB" = (
/obj/structure/showcase{
icon_state = "processor";
name = "Processor Unit"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/complex)
"wnJ" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/north,
/area/corsat/gamma/residential/east)
"wnL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "arrow_west"
- },
+/turf/open/floor/corsat/arrow_west,
/area/corsat/omega/hangar)
"wnO" = (
/obj/structure/bed/chair{
@@ -62971,29 +45861,20 @@
dir = 4
},
/obj/structure/machinery/optable,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/theta/biodome/complex)
"woz" = (
/obj/structure/safe,
/obj/item/device/yautja_teleporter,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/sigmaremote)
"wpk" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/monorail)
"wpA" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/gamma/hangar/arrivals)
"wpO" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -63002,9 +45883,7 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"wpV" = (
/obj/structure/flora/jungle/planttop1,
@@ -63014,42 +45893,28 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/hangar/security)
"wqn" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/complex)
"wqr" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar)
"wqN" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/hangar/security)
"wqP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/hangar)
"wrd" = (
/obj/structure/surface/rack,
/obj/item/xeno_restraints,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/hangar_storage/research/shuttle)
"wrC" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -63060,28 +45925,19 @@
/area/corsat/theta/biodome)
"wrR" = (
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"wrX" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/south/security)
"wsn" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"wss" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/id)
"wsJ" = (
/turf/open/floor/corsat,
@@ -63091,18 +45947,14 @@
name = "Construction Yard";
req_one_access_txt = "102"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"wtu" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/engineering)
"wtM" = (
/obj/structure/machinery/light,
@@ -63117,21 +45969,14 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/south/id)
"wui" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/gamma/hallwaysouth)
"wuC" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "sterileplate"
- },
+/turf/open/floor/corsat/sterileplate,
/area/corsat/gamma/kitchen)
"wuK" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -63143,9 +45988,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar)
"wuS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -63157,10 +46000,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"wvG" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -63176,10 +46016,7 @@
dir = 6
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"wvZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -63189,40 +46026,28 @@
/area/corsat/sigma/dorms)
"wwi" = (
/obj/structure/machinery/computer/area_atmos/area,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/gamma/engineering/atmos)
"wwB" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/gm/river/desert/shallow{
- name = "pool"
- },
+/turf/open/gm/river/desert/shallow/pool,
/area/corsat/gamma/residential/showers)
"wwC" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"wwE" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/corsat/sigma/cargo)
"wwQ" = (
/obj/structure/largecrate/chick,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/freezer)
"wwT" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -63241,107 +46066,72 @@
name = "Hangar Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/hangar/id)
"wya" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "arrow_south"
- },
+/turf/open/floor/corsat/arrow_south,
/area/corsat/gamma/hangar)
"wye" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/north,
/area/corsat/sigma/north)
"wyz" = (
-/turf/open/floor/corsat{
- icon_state = "arrow_west"
- },
+/turf/open/floor/corsat/arrow_west,
/area/corsat/sigma/hangar)
"wyL" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/gamma/security)
"wzK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/security)
"wAk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"wAz" = (
/obj/structure/tunnel{
id = "hole1"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/biodome)
"wAF" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/cargo)
"wBc" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/gamma/security)
"wBf" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential/east)
"wBk" = (
/obj/structure/bed/nest,
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/mars_cave{
- icon_state = "mars_cave_2"
- },
+/turf/open/mars_cave/mars_cave_2,
/area/corsat/sigma/biodome)
"wBJ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/foyer)
"wBK" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/residential/west)
"wBP" = (
-/turf/open/floor/corsat{
- icon_state = "greencorner"
- },
+/turf/open/floor/corsat/greencorner,
/area/corsat/gamma/medbay/morgue)
"wCI" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -63352,10 +46142,7 @@
/area/corsat/theta/biodome)
"wCJ" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/north)
"wDi" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -63364,10 +46151,7 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/airlock/control)
"wDw" = (
/obj/structure/platform{
@@ -63375,16 +46159,10 @@
dir = 4;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/north,
/area/corsat/gamma/residential)
"wDC" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar)
"wEd" = (
/obj/structure/surface/table/reinforced,
@@ -63392,22 +46170,14 @@
/obj/item/tool/surgery/scalpel,
/obj/item/tool/surgery/hemostat,
/obj/item/tool/surgery/circular_saw,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/west,
/area/corsat/omega/complex)
"wEn" = (
/obj/structure/closet/crate/science,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/toxins)
"wFJ" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/control)
"wFO" = (
/obj/structure/ice/ice_rock/cornerOverlay{
@@ -63418,31 +46188,23 @@
/area/corsat/gamma/biodome)
"wFU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"wGb" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"wGm" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"wGr" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/gloves,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/toxins)
"wGT" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -63451,9 +46213,7 @@
req_one_access_txt = "102"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"wGW" = (
/obj/structure/surface/table/almayer,
@@ -63461,18 +46221,13 @@
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/hangar/flightcontrol)
"wGZ" = (
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
/obj/item/paper,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"wHN" = (
/obj/item/weapon/gun/flamer,
@@ -63481,99 +46236,66 @@
name = "specimen control cabinet";
req_access_txt = "103"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/airlocknorth)
"wHQ" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/hangar/security)
"wIk" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/robotics)
"wIr" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/closet/wardrobe/science_white,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/sigmaremote)
"wIu" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/corsat/sigma/biodome)
"wIy" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/gamma/residential)
"wII" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"wIT" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/omega/security)
"wIY" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"wIZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/bed/sofa/vert/white,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/researcher)
"wJp" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/wrench,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/west,
/area/corsat/gamma/sigmaremote)
"wJq" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar/checkpoint)
"wJz" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/south/engineering)
"wJA" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -63582,86 +46304,59 @@
name = "Hangar Lockdown";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/hangar/arrivals)
"wJM" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/south)
"wJU" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/hangar)
"wKb" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"wKf" = (
/obj/structure/prop/mech/parts/durand_right_arm,
-/turf/open/floor/corsat{
- icon_state = "arrow_west"
- },
+/turf/open/floor/corsat/arrow_west,
/area/corsat/sigma/south/robotics)
"wKh" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/virology)
"wKD" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/sigma/south/engineering)
"wKF" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/airlock/control)
"wKK" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/cargo/lobby)
"wKL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/airlock/south)
"wKT" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/theta/biodome/complex)
"wLS" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -63670,9 +46365,7 @@
name = "Omega Cargo Room";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/cargo)
"wMg" = (
/obj/structure/platform{
@@ -63681,18 +46374,13 @@
/obj/item/stack/sheet/metal{
pixel_x = 3
},
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/theta/biodome/complex)
"wOt" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/east,
/area/corsat/gamma/administration)
"wOQ" = (
/obj/structure/surface/table/woodentable,
@@ -63703,59 +46391,38 @@
"wOX" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southwest,
/area/corsat/sigma/southeast/datalab)
"wPq" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/rnr)
"wPz" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/theta/biodome/complex)
"wQd" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purple"
- },
+/turf/open/floor/corsat/purple/southwest,
/area/corsat/omega/complex)
"wQG" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/south)
"wQJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/residential/east)
"wQZ" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/bodybags,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/northeast,
/area/corsat/gamma/medbay/morgue)
"wRH" = (
/obj/vehicle/train/cargo/trolley,
/obj/item/pamphlet/skill/powerloader,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/sigma/cargo)
"wSb" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -63769,78 +46436,54 @@
/area/corsat/theta/biodome)
"wSq" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"wSz" = (
/obj/structure/cargo_container/trijent/mid,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"wSM" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/control)
"wTp" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/virology)
"wTZ" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/virology)
"wUc" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/east,
/area/corsat/omega/complex)
"wUd" = (
/obj/structure/surface/table/almayer,
/obj/item/restraint/handcuffs,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/security)
"wUx" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"wUE" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hangar/checkpoint)
"wVb" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/reagentgrinder,
/obj/item/stack/sheet/mineral/phoron/small_stack,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/complex)
"wVz" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -63853,27 +46496,19 @@
/obj/structure/machinery/computer/emails{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/hangar/security)
"wVG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"wWr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/sigma/south/complex)
"wWW" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
@@ -63890,9 +46525,7 @@
id = "SigmaEastID";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/east/id)
"wXD" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -63901,9 +46534,7 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/toxins)
"wXE" = (
/obj/structure/machinery/light/small{
@@ -63915,38 +46546,25 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"wYj" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/gamma/security)
"wYt" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"wYA" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/security)
"wYD" = (
/obj/structure/surface/table/almayer,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay/morgue)
"wYP" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/south/robotics)
"wZg" = (
/obj/structure/cryofeed/right{
@@ -63962,9 +46580,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner,
/area/corsat/gamma/residential/east)
"wZC" = (
/obj/structure/platform{
@@ -63972,26 +46588,17 @@
dir = 8;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/gamma/residential)
"xap" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/south)
"xaF" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/gamma/biodome/complex)
"xaQ" = (
/obj/structure/machinery/vending/coffee,
@@ -63999,10 +46606,7 @@
dir = 1;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/northeast,
/area/corsat/gamma/hallwaysouth)
"xbu" = (
/obj/structure/platform{
@@ -64010,10 +46614,7 @@
dir = 8;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/gamma/hallwaysouth)
"xbW" = (
/obj/structure/safe,
@@ -64022,18 +46623,14 @@
/area/corsat/gamma/administration)
"xbX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/engineering)
"xcG" = (
/obj/structure/machinery/chem_dispenser{
req_access_txt = "100"
},
/obj/item/reagent_container/glass/beaker/bluespace,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/virology)
"xdi" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -64046,33 +46643,22 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/hangar)
"xeO" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/west,
/area/corsat/gamma/rnr)
"xeV" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/security)
"xfe" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/theta/biodome/complex)
"xfC" = (
/obj/structure/barricade/handrail{
@@ -64087,70 +46673,46 @@
/turf/open/floor/wood,
/area/corsat/gamma/residential/east)
"xfT" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/hangar)
"xha" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/turf/open/ice,
/area/corsat/gamma/biodome)
"xhd" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/south/engineering)
"xhx" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/theta/biodome/hydroeast)
"xhA" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitecorner"
- },
+/turf/open/floor/corsat/whitecorner/east,
/area/corsat/sigma/dorms)
"xiy" = (
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/sigma/southeast/dataoffice)
"xiV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/gamma/biodome/toxins)
"xiW" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/north)
"xjw" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/sigma/south/security)
"xjX" = (
/obj/structure/surface/table,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"xkn" = (
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/hangar/monorail)
"xkt" = (
/obj/structure/surface/table/almayer,
@@ -64158,29 +46720,20 @@
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/toxins)
"xkB" = (
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south/engineering)
"xkE" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"xkH" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/north,
/area/corsat/gamma/medbay/morgue)
"xld" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -64188,24 +46741,15 @@
dir = 4;
layer = 2
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/sigma/south)
"xlg" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/extinguisher,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/theta/biodome/complex)
"xlv" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/omega/hallways)
"xlF" = (
/obj/structure/machinery/light{
@@ -64221,33 +46765,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"xlR" = (
/obj/structure/machinery/autolathe,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/sigma/south/complex)
"xlU" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/south)
"xmg" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/omega/offices)
"xmh" = (
/obj/structure/pipes/vents/pump{
@@ -64257,43 +46791,30 @@
/area/corsat/sigma/cafe)
"xmC" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/east,
/area/corsat/sigma/south/offices)
"xmF" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/corsat/omega/cargo)
"xmV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/control)
"xnk" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/medbay/lobby)
"xnU" = (
/obj/structure/machinery/vending/snack,
/obj/structure/machinery/camera/autoname{
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/omega/offices)
"xoj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -64302,9 +46823,7 @@
/turf/open/mars,
/area/corsat/sigma/biodome)
"xoq" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/gamma/residential)
"xoy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -64316,63 +46835,41 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/checkpoint)
"xoK" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/southeast/generator)
"xoV" = (
/obj/structure/surface/table,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"xpk" = (
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/omega/complex)
"xqh" = (
/obj/structure/closet/radiation,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/omega/complex)
"xqz" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/northwest,
/area/corsat/gamma/biodome/complex)
"xsm" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner/north,
/area/corsat/sigma/hangar/office)
"xsE" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/sigmaremote)
"xsU" = (
/obj/structure/flora/bush/ausbushes/var3/leafybush,
@@ -64394,36 +46891,25 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/library)
"xtR" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/corsat/green/east,
/area/corsat/gamma/medbay/morgue)
"xtW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"xuo" = (
/obj/item/cell/crap,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/residential/researcher)
"xuF" = (
/obj/structure/closet/crate/science{
@@ -64432,23 +46918,16 @@
opened = 1
},
/obj/item/organ/brain,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/complex)
"xuI" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/north,
/area/corsat/gamma/medbay/morgue)
"xvj" = (
/obj/structure/surface/table/reinforced,
/obj/item/form_printer,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/sigmaremote)
"xvB" = (
/obj/structure/surface/table/almayer,
@@ -64463,76 +46942,49 @@
pixel_x = -4;
pixel_y = 4
},
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/southeast/datalab)
"xvE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"xvG" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"xvV" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/airlocknorth/id)
"xwg" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/omega/control)
"xxF" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/east,
/area/corsat/gamma/hangar)
"xxO" = (
/obj/structure/flora/bush/ausbushes/grassybush,
/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east,
/area/corsat/theta/biodome)
"xxZ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/omega/hangar/office)
"xys" = (
-/turf/open/floor/corsat{
- icon_state = "bluegreycorner"
- },
+/turf/open/floor/corsat/bluegreycorner,
/area/corsat/gamma/hangar/flightcontrol)
"xzg" = (
-/turf/open/floor/corsat{
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite,
/area/corsat/gamma/medbay)
"xzI" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"xzU" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/south/engineering)
"xzW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -64542,21 +46994,14 @@
/area/corsat/sigma/biodome)
"xzX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/theta/airlock/control)
"xAo" = (
-/turf/open/floor/corsat{
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner,
/area/corsat/gamma/foyer)
"xBa" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/hangar)
"xBb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -64567,30 +47012,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"xBs" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/theta/airlock/west)
"xBz" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/west,
/area/corsat/gamma/residential)
"xBA" = (
/obj/structure/machinery/light,
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/hangar)
"xBK" = (
/obj/effect/landmark/corpsespawner/scientist,
@@ -64600,10 +47034,7 @@
"xCe" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/gamma/airlock/south/id)
"xCy" = (
/obj/structure/bed/nest,
@@ -64611,10 +47042,7 @@
/area/corsat/gamma/biodome)
"xCE" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/north,
/area/corsat/gamma/administration)
"xDC" = (
/obj/structure/window/framed/corsat/security,
@@ -64625,51 +47053,34 @@
/turf/open/floor/plating,
/area/corsat/sigma/airlock/east/id)
"xEP" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/researcher)
"xER" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/residential/west)
"xEW" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/hangar/office)
"xEX" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/monorail)
"xFf" = (
/obj/structure/stairs{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/west,
/area/corsat/gamma/hallwaysouth)
"xFk" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/gamma/hallwaysouth)
"xFK" = (
/obj/structure/window/framed/corsat/research,
@@ -64685,18 +47096,13 @@
/turf/open/mars,
/area/corsat/sigma/biodome)
"xGd" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/theta/biodome/hydroeast)
"xGI" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"xHd" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -64705,51 +47111,31 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/hangar/cargo)
"xHk" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/corsat/gamma/rnr/arcade)
"xHm" = (
-/turf/open/floor/corsat{
- icon_state = "white"
- },
+/turf/open/floor/corsat/white,
/area/corsat/sigma/dorms)
"xHy" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "greenwhitecorner"
- },
+/turf/open/floor/corsat/greenwhitecorner/east,
/area/corsat/gamma/medbay)
"xHM" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/airlock/control)
"xHN" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/virology)
"xHV" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/gamma/hallwaysouth)
"xIJ" = (
/obj/structure/cargo_container/wy/mid,
-/turf/open/floor/corsat{
- icon_state = "cargo"
- },
+/turf/open/floor/corsat/cargo,
/area/corsat/gamma/cargo)
"xJc" = (
/obj/structure/barricade/handrail{
@@ -64759,9 +47145,7 @@
dir = 1;
pixel_y = 2
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/south)
"xJB" = (
/obj/structure/machinery/power/apc/hyper{
@@ -64769,30 +47153,19 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/airlocknorth/id)
"xJH" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/sigma/dorms)
"xJI" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"xKr" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/hangar/monorail)
"xKu" = (
/turf/closed/wall/r_wall/biodome,
@@ -64813,63 +47186,43 @@
dir = 4;
network = list("omega")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/airlocknorth/id)
"xKV" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/residential/maint)
"xLg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan,
/area/corsat/gamma/residential/west)
"xLv" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/gamma/airlock/south)
"xMg" = (
/obj/structure/bed/sofa/vert/grey/bot,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/sigma/hangar/arrivals)
"xMi" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/hangar/monorail/control)
"xMy" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/west,
/area/corsat/gamma/biodome/complex)
"xMA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/southeast/dataoffice)
"xMJ" = (
/turf/closed/wall/biodome,
@@ -64890,70 +47243,47 @@
/turf/open/ice,
/area/corsat/gamma/biodome)
"xNw" = (
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/theta/biodome/hydrowest)
"xNL" = (
/obj/structure/surface/table/almayer,
/obj/item/evidencebag,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar/security)
"xNR" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "arrow_east"
- },
+/turf/open/floor/corsat/arrow_east,
/area/corsat/sigma/southeast/datalab)
"xOJ" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/northwest,
/area/corsat/gamma/hangar/arrivals)
"xPi" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/theta/airlock/west/id)
"xPw" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/sigma/dorms)
"xPy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/west,
/area/corsat/gamma/residential/west)
"xPF" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "bluegrey"
- },
+/turf/open/floor/corsat/bluegrey/northeast,
/area/corsat/omega/offices)
"xQb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "officesquares"
- },
+/turf/open/floor/corsat/officesquares,
/area/corsat/sigma/south/offices)
"xQk" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -64970,17 +47300,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner,
/area/corsat/gamma/residential/researcher)
"xQS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hangar/arrivals)
"xRb" = (
/obj/structure/platform,
@@ -64988,10 +47314,7 @@
dir = 4;
layer = 2
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/southeast,
/area/corsat/gamma/hallwaysouth)
"xRq" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -65001,9 +47324,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/corsat/sigma/biodome)
"xSj" = (
/obj/structure/window/framed/corsat/hull/security,
@@ -65015,58 +47336,37 @@
health = 80
},
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite,
/area/corsat/gamma/biodome/toxins)
"xSL" = (
-/turf/open/floor/corsat{
- icon_state = "purplecorner"
- },
+/turf/open/floor/corsat/purplecorner,
/area/corsat/sigma/south)
"xSO" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/gamma/hangar/arrivals)
"xST" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/vending/snack,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northeast,
/area/corsat/sigma/hangar)
"xTU" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/omega/control)
"xUd" = (
-/turf/open/floor/corsat{
- icon_state = "whitetancorner"
- },
+/turf/open/floor/corsat/whitetancorner,
/area/corsat/gamma/residential/west)
"xUj" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/omega/hallways)
"xUr" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southeast,
/area/corsat/sigma/south/complex)
"xVS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -65082,24 +47382,17 @@
/obj/structure/machinery/computer/med_data/laptop{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/sigma/south/complex)
"xWE" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/mars{
- icon_state = "mars_dirt_3"
- },
+/turf/open/mars/mars_dirt_3,
/area/corsat/sigma/biodome)
"xWH" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/corsat/gamma/cargo)
"xWS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -65109,58 +47402,39 @@
/area/corsat/sigma/dorms)
"xXp" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/hangar)
"xYI" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Auditorium"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"xYP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "tan"
- },
+/turf/open/floor/corsat/tan/north,
/area/corsat/gamma/residential/west)
"xYY" = (
/obj/item/tool/wet_sign,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/biodome/complex)
"xZc" = (
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/southeast)
"xZn" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("gamma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/hangar)
"xZB" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/corsat/sigma/south/complex)
"yaq" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/east,
/area/corsat/gamma/residential/researcher)
"yau" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -65168,40 +47442,26 @@
/area/corsat/gamma/biodome)
"yaD" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner,
/area/corsat/gamma/sigmaremote)
"yaN" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/gamma/hangar/security)
"ybl" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/gamma/hangar)
"ybq" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/south/robotics)
"ybv" = (
/obj/structure/platform{
dir = 4;
layer = 2.7
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/hallwaysouth)
"ybJ" = (
/obj/structure/platform{
@@ -65209,53 +47469,36 @@
dir = 8;
icon_state = "platform_deco"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/north)
"ybP" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "greenwhite"
- },
+/turf/open/floor/corsat/greenwhite/west,
/area/corsat/gamma/medbay/surgery)
"ybQ" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/hangar/monorail)
"ycd" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/northwest,
/area/corsat/gamma/rnr/bar)
"ycg" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "darkgreencorner"
- },
+/turf/open/floor/corsat/darkgreencorner/east,
/area/corsat/sigma/hangar/monorail)
"ydU" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/south/robotics)
"ydX" = (
/obj/structure/machinery/camera/autoname{
network = list("gamma")
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/residential)
"ydY" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -65263,36 +47506,24 @@
name = "Maintainance";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/dorms)
"ydZ" = (
/obj/structure/machinery/vending/hydronutrients,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/north,
/area/corsat/theta/biodome/hydrowest)
"yea" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "darkgreen"
- },
+/turf/open/floor/corsat/darkgreen/north,
/area/corsat/sigma/hangar/monorail)
"yeL" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/hangar)
"yeW" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/masks,
-/turf/open/floor/corsat{
- icon_state = "lightplate"
- },
+/turf/open/floor/corsat/lightplate,
/area/corsat/gamma/biodome/virology)
"yfh" = (
/turf/open/floor/corsat,
@@ -65301,9 +47532,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"yfH" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -65320,32 +47549,22 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/north)
"yga" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/gamma/biodome/toxins)
"ygx" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "purplewhitecorner"
- },
+/turf/open/floor/corsat/purplewhitecorner/north,
/area/corsat/theta/biodome/complex)
"ygy" = (
/obj/structure/pipes/standard/simple/hidden/universal,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/theta/airlock/control)
"ygF" = (
/obj/structure/machinery/computer/cameras{
@@ -65361,68 +47580,44 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "white"
- },
+/turf/open/floor/corsat/white/east,
/area/corsat/gamma/residential)
"yhc" = (
/obj/structure/closet/crate/science,
-/turf/open/floor/corsat{
- icon_state = "retrosquareslight"
- },
+/turf/open/floor/corsat/retrosquareslight,
/area/corsat/omega/complex)
"yhw" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/south/engineering)
"yhy" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/northwest,
/area/corsat/gamma/residential/researcher)
"yhC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/cargo)
"yhI" = (
/obj/structure/surface/rack,
/obj/item/fuel_cell,
/obj/item/fuel_cell,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/generator)
"yhK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"yio" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "whitebluefull"
- },
+/turf/open/floor/corsat/whitebluefull/southwest,
/area/corsat/gamma/residential/showers)
"yji" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/closet/secure_closet/hydroponics,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/east,
/area/corsat/theta/biodome/complex)
"yjw" = (
/obj/structure/fence,
@@ -65433,10 +47628,7 @@
/area/corsat/gamma/biodome)
"yki" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "purplewhite"
- },
+/turf/open/floor/corsat/purplewhite/southwest,
/area/corsat/gamma/sigmaremote)
"ykJ" = (
/obj/structure/machinery/power/reactor/colony{
@@ -65447,21 +47639,14 @@
d2 = 4;
icon_state = "0-4"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/southeast/generator)
"ykO" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/hangar/security)
"yla" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/omega/control)
"yle" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -65472,16 +47657,10 @@
/area/space)
"ylS" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "whitetan"
- },
+/turf/open/floor/corsat/whitetan/north,
/area/corsat/gamma/residential/west)
"ymj" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/gamma/hangar/security)
(1,1,1) = {"
diff --git a/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm b/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm
index 75c0cdfdc87b..b06b31f2b6a9 100644
--- a/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm
+++ b/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm
@@ -1,14 +1,10 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/obj/structure/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "red";
dir = 4
},
+/obj/structure/closet/firecloset,
+/turf/open/floor/corsat/red/east,
/area/corsat/gamma/airlock/control)
"b" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -18,84 +14,54 @@
/turf/open/floor/plating,
/area/corsat/gamma/hallwaysouth)
"d" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner";
- dir = 4
- },
+/turf/open/floor/corsat/redcorner/east,
/area/corsat/gamma/airlock/control)
"e" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/control)
"f" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"g" = (
/obj/structure/pipes/standard/simple/hidden/green{
- dir = 4;
- layer = 2.4
- },
-/turf/open/floor/corsat{
- icon_state = "squares"
+ dir = 4
},
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"h" = (
/obj/structure/pipes/standard/simple/hidden/green{
- dir = 4;
- layer = 2.4
- },
-/turf/open/floor/corsat{
- icon_state = "marked"
+ dir = 4
},
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/control)
"i" = (
/obj/structure/pipes/standard/simple/hidden/green{
- dir = 4;
- layer = 2.4
- },
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
+ dir = 4
},
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"j" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/gamma/airlock/control)
"k" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"l" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/gamma/airlock/control)
"m" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{
id = "GammaWestD";
- name = "Gamma Dome Airlock";
- unacidable = 0;
- use_power = 1
- },
-/turf/open/floor/corsat{
- icon_state = "marked"
+ name = "Gamma Dome Airlock"
},
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/control)
"n" = (
/obj/structure/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "yellow";
dir = 4
},
+/obj/structure/machinery/disposal,
+/turf/open/floor/corsat/yellow/east,
/area/corsat/gamma/airlock/control)
(1,1,1) = {"
diff --git a/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm b/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm
index aa4d3cceae85..e0867f3ef176 100644
--- a/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm
+++ b/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm
@@ -4,30 +4,22 @@
/turf/open/floor/plating,
/area/corsat/gamma/airlock/north)
"b" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/north)
"c" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/airlock/north)
"d" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/airlock/north)
"e" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/airlock/north)
"f" = (
/obj/structure/window/framed/corsat/security,
@@ -44,24 +36,16 @@
"h" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{
id = "GammaNorthS";
- name = "Gamma North Airlock";
- unacidable = 0;
- use_power = 1
- },
-/turf/open/floor/corsat{
- icon_state = "marked"
+ name = "Gamma North Airlock"
},
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/north)
"i" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/north)
"j" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/gamma/airlock/north)
"k" = (
/obj/structure/sign/safety/airlock{
diff --git a/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm b/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm
index efd261dd7f83..dd4ef5005c61 100644
--- a/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm
+++ b/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm
@@ -11,66 +11,45 @@
name = "Gamma Checkpoint";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"d" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"e" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"f" = (
-/turf/open/floor/corsat{
- icon_state = "gamma"
- },
+/turf/open/floor/corsat/gamma,
/area/corsat/omega/checkpoint)
"g" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/checkpoint)
"h" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/checkpoint)
"i" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"j" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/checkpoint)
"k" = (
/obj/structure/pipes/standard/simple/hidden/green{
- dir = 4;
- layer = 2.4
- },
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
+ dir = 4
},
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/checkpoint)
"l" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/omega/checkpoint)
"m" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{
@@ -78,14 +57,11 @@
name = "Gamma Emergency Access";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"n" = (
/obj/structure/window/framed/corsat/security,
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- dir = 1;
id = "OmegaAccessC";
name = "Security Shutters"
},
@@ -97,10 +73,7 @@
/area/corsat/omega/checkpoint)
"p" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 1
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"q" = (
/obj/structure/surface/table/reinforced,
@@ -108,41 +81,27 @@
id = "delta_gamma";
name = "Gamma Emergency Access";
pixel_x = -5;
- unacidable = 1;
use_power = 0
},
/obj/structure/machinery/door_control{
id = "delta_gamma2";
name = "Checkpoint Gamma";
pixel_x = 5;
- pixel_y = 0;
- unacidable = 1;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 1
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"r" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
- dir = 2;
- icon_state = "cameras";
network = list("omega")
},
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 1
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"s" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 5
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/checkpoint)
"t" = (
/obj/structure/window/framed/corsat/security,
@@ -154,59 +113,38 @@
/turf/open/floor/plating,
/area/corsat/omega/checkpoint)
"u" = (
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 9
- },
+/turf/open/floor/corsat/red/northwest,
/area/corsat/omega/checkpoint)
"v" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 1
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"w" = (
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 1
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/omega/checkpoint)
"x" = (
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 5
- },
+/turf/open/floor/corsat/red/northeast,
/area/corsat/omega/checkpoint)
"y" = (
/obj/structure/lattice,
/turf/template_noop,
/area/template_noop)
"z" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"A" = (
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"B" = (
/obj/structure/bed/chair/comfy/black{
icon_state = "comfychair";
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"C" = (
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 4
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/omega/checkpoint)
"D" = (
/obj/structure/surface/table/reinforced,
@@ -215,7 +153,6 @@
req_access_txt = "3"
},
/obj/structure/machinery/door/window/brigdoor/eastleft{
- dir = 4;
name = "Identification Desk"
},
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -224,27 +161,18 @@
name = "Security Shutters"
},
/obj/structure/window/reinforced,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"E" = (
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 8
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/omega/checkpoint)
"F" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"G" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/omega/checkpoint)
"H" = (
/obj/structure/surface/table/reinforced,
@@ -253,7 +181,6 @@
req_access_txt = "3"
},
/obj/structure/machinery/door/window/brigdoor/eastleft{
- dir = 4;
name = "Identification Desk"
},
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -261,15 +188,11 @@
id = "OmegaAccessC";
name = "Security Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/omega/checkpoint)
"I" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/checkpoint)
"J" = (
/obj/structure/surface/table/reinforced,
@@ -277,82 +200,55 @@
id = "delta_omega";
name = "Checkpoint Omega";
pixel_x = -5;
- unacidable = 1;
use_power = 0
},
/obj/structure/machinery/door_control{
id = "delta_theta";
name = "Theta Emergency Access";
pixel_x = 5;
- unacidable = 1;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/checkpoint)
"K" = (
/obj/structure/machinery/computer/cameras{
dir = 1;
- icon_state = "cameras";
network = list("omega")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/checkpoint)
"L" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 6
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/checkpoint)
"M" = (
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 10
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/omega/checkpoint)
"N" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/checkpoint)
"O" = (
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/omega/checkpoint)
"P" = (
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 6
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/omega/checkpoint)
"Q" = (
-/turf/open/floor/corsat{
- icon_state = "omega"
- },
+/turf/open/floor/corsat/omega,
/area/corsat/omega/checkpoint)
"R" = (
-/turf/open/floor/corsat{
- icon_state = "theta"
- },
+/turf/open/floor/corsat/theta,
/area/corsat/omega/checkpoint)
"S" = (
/obj/structure/pipes/standard/simple/hidden/green{
- dir = 4;
- layer = 2.4
- },
-/turf/open/floor/corsat{
- icon_state = "marked"
+ dir = 4
},
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"T" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{
@@ -360,9 +256,7 @@
name = "Omega Checkpoint";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"U" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{
@@ -370,9 +264,7 @@
name = "Theta Emergency Access";
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/omega/checkpoint)
"V" = (
/turf/closed/wall/r_wall/biodome,
diff --git a/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm b/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm
index c98c46b72e8d..8e41c82f5145 100644
--- a/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm
+++ b/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm
@@ -4,20 +4,14 @@
/turf/open/floor/plating,
/area/corsat/gamma/hallwaysouth)
"b" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/gamma/hallwaysouth)
"c" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"d" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/gamma/hallwaysouth)
"e" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -25,69 +19,43 @@
"f" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{
id = "ThetaNorthD";
- name = "Theta Dome Airlock";
- unacidable = 0;
- use_power = 1
- },
-/turf/open/floor/corsat{
- icon_state = "marked"
+ name = "Theta Dome Airlock"
},
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/control)
"g" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/control)
"h" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/control)
"i" = (
/obj/structure/machinery/light{
- icon_state = "tube1";
dir = 1
},
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "red";
- dir = 1
- },
+/turf/open/floor/corsat/red/north,
/area/corsat/theta/airlock/control)
"j" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner";
- dir = 1
- },
+/turf/open/floor/corsat/redcorner/north,
/area/corsat/theta/airlock/control)
"k" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"l" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/theta/airlock/control)
"m" = (
-/turf/open/floor/corsat{
- icon_state = "yellowcorner";
- dir = 4
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/theta/airlock/control)
"n" = (
/obj/structure/machinery/light{
- icon_state = "tube1";
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- icon_state = "yellow";
- dir = 1
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/theta/airlock/control)
(1,1,1) = {"
diff --git a/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm b/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm
index 61645f5a5b3b..e9b6a3557645 100644
--- a/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm
+++ b/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm
@@ -13,62 +13,44 @@
/turf/open/gm/dirt,
/area/corsat/theta/biodome)
"e" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/east)
"f" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/east)
"g" = (
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/theta/airlock/east)
"h" = (
/obj/structure/pipes/standard/simple/hidden/green{
- dir = 4;
- layer = 2.4
+ dir = 4
},
/turf/open/gm/dirt,
/area/corsat/theta/biodome)
"i" = (
/obj/structure/pipes/standard/simple/hidden/green{
- dir = 4;
- layer = 2.4
- },
-/turf/open/floor/corsat{
- icon_state = "marked"
+ dir = 4
},
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/east)
"j" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "retrosquares"
- },
+/turf/open/floor/corsat/retrosquares,
/area/corsat/theta/airlock/east)
"k" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{
id = "ThetaEastW";
- name = "Theta East Airlock";
- unacidable = 0;
- use_power = 1
- },
-/turf/open/floor/corsat{
- icon_state = "marked"
+ name = "Theta East Airlock"
},
+/turf/open/floor/corsat/marked,
/area/corsat/theta/airlock/east)
"l" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/theta/airlock/east)
"m" = (
/obj/structure/sign/safety/airlock{
@@ -79,7 +61,6 @@
"n" = (
/obj/structure/window/framed/corsat/security,
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- dir = 1;
id = "ThetaIDEC2";
name = "Security Shutters"
},
diff --git a/maps/map_files/CORSAT/standalone/sigma_ice.dmm b/maps/map_files/CORSAT/standalone/sigma_ice.dmm
index c3d3c93b9285..47d72b283e14 100644
--- a/maps/map_files/CORSAT/standalone/sigma_ice.dmm
+++ b/maps/map_files/CORSAT/standalone/sigma_ice.dmm
@@ -51,9 +51,7 @@
/obj/structure/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/airlock/control)
"ba" = (
/obj/structure/window/reinforced{
@@ -74,10 +72,7 @@
req_access_txt = "106";
use_power = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"bo" = (
/obj/structure/surface/rack,
@@ -86,9 +81,7 @@
/obj/item/clothing/suit/storage/snow_suit,
/obj/item/clothing/suit/storage/snow_suit,
/obj/item/clothing/suit/storage/snow_suit,
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/airlock/control)
"bp" = (
/obj/structure/surface/rack,
@@ -97,9 +90,7 @@
/obj/item/tool/shovel/snow,
/obj/item/tool/shovel/snow,
/obj/item/tool/shovel/snow,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"bs" = (
/turf/open/auto_turf/snow/layer0,
@@ -118,10 +109,7 @@
/turf/open/ice,
/area/corsat/sigma/biodome/scrapyard)
"bN" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"bT" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -139,26 +127,17 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
damage_cap = 4000;
dir = 1;
- locked = 0;
name = "\improper Emergency Access";
req_access_txt = "100";
req_one_access = list()
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/biodome/ice)
"cs" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/corsat/sigma/biodome/gunrange)
"cv" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/corsat/sigma/biodome/gunrange)
"cA" = (
/turf/open/auto_turf/snow/layer4,
@@ -175,20 +154,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"db" = (
/turf/closed/wall/r_wall/biodome,
/area/corsat/inaccessible)
"dd" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"dn" = (
/obj/structure/window/framed/corsat/hull,
@@ -202,10 +175,7 @@
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/airlock/control)
"dr" = (
/turf/open/floor/corsat,
@@ -243,10 +213,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"ee" = (
/obj/effect/decal/warning_stripes{
@@ -261,10 +228,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"ev" = (
/obj/structure/window/framed/corsat,
@@ -279,10 +243,7 @@
"eV" = (
/obj/effect/landmark/corpsespawner/engineer,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"fc" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -305,10 +266,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/corsat/sigma/biodome/ice)
"fC" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -332,8 +290,7 @@
/area/corsat/sigma/biodome/gunrange)
"gi" = (
/obj/structure/machinery/floodlight{
- name = "Floodlight";
- unacidable = 0
+ name = "Floodlight"
},
/turf/open/auto_turf/snow/layer0,
/area/corsat/sigma/biodome/ice)
@@ -341,9 +298,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"gr" = (
/obj/structure/bed/nest,
@@ -392,35 +347,23 @@
/turf/open/auto_turf/snow/layer3,
/area/corsat/sigma/biodome/ice)
"hC" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/corsat/sigma/biodome/ice)
"hH" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"hQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"hR" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
damage_cap = 4000;
- locked = 0;
name = "\improper Emergency Access";
req_access_txt = "100";
req_one_access = list()
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/inaccessible)
"hU" = (
/obj/structure/barricade/wooden,
@@ -438,20 +381,14 @@
/area/corsat/sigma/biodome/scrapyard)
"ih" = (
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"io" = (
/obj/effect/alien/weeds/node,
/turf/open/ice,
/area/corsat/sigma/biodome/ice)
"iy" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/corsat/sigma/biodome/scrapyard)
"iK" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -462,10 +399,7 @@
"iL" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/control)
"iO" = (
/obj/effect/decal/warning_stripes{
@@ -487,31 +421,20 @@
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"jv" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/corsat/sigma/biodome/ice)
"jy" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"jL" = (
/obj/structure/pipes/standard/simple/hidden/universal{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/airlock/control)
"jT" = (
/obj/structure/pipes/vents/pump,
@@ -521,29 +444,20 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"kl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"km" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/corsat/sigma/biodome/scrapyard)
"kr" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -558,10 +472,7 @@
/area/corsat/sigma/biodome/ice)
"kv" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"kH" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -631,16 +542,11 @@
name = "Sigma Dome Control";
req_one_access = list(102)
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/airlock/control)
"lY" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"mm" = (
/obj/structure/pipes/vents/pump{
@@ -658,42 +564,28 @@
/obj/structure/surface/rack,
/obj/item/clothing/suit/storage/snow_suit,
/obj/item/clothing/suit/storage/snow_suit,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"mX" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"mY" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/corsat/sigma/biodome/ice)
"nb" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/west,
/area/corsat/sigma/airlock/control)
"ng" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/smg/mp5,
/obj/item/ammo_magazine/smg/mp5,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"nk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -728,10 +620,7 @@
/turf/open/auto_turf/snow/layer3,
/area/corsat/sigma/biodome/scrapyard)
"nZ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/scrapyard)
"oa" = (
/obj/structure/window/framed/corsat,
@@ -793,10 +682,7 @@
/area/corsat/sigma/biodome/ice)
"pC" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/airlock/control)
"pP" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -811,9 +697,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"qs" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -840,9 +724,7 @@
/obj/structure/machinery/door/window/northright{
name = "Firing Lane"
},
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/corsat/sigma/biodome/gunrange)
"rP" = (
/obj/structure/surface/table/almayer,
@@ -859,9 +741,7 @@
name = "Firing Lane"
},
/obj/structure/surface/table/almayer,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/corsat/sigma/biodome/gunrange)
"rW" = (
/obj/structure/pipes/unary/outlet_injector{
@@ -876,23 +756,14 @@
/turf/open/ice,
/area/corsat/sigma/biodome/scrapyard)
"sp" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/corsat/sigma/biodome/gunrange)
"ss" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/corsat/sigma/biodome/gunrange)
"sx" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"sA" = (
/obj/structure/machinery/constructable_frame,
@@ -912,18 +783,14 @@
/area/corsat/sigma/biodome/gunrange)
"tc" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"tg" = (
/turf/open/auto_turf/snow/layer4,
/area/corsat/sigma/biodome/ice)
"tm" = (
/obj/structure/machinery/floodlight{
- name = "Floodlight";
- unacidable = 0
+ name = "Floodlight"
},
/turf/open/auto_turf/snow/layer2,
/area/corsat/sigma/biodome/ice)
@@ -933,20 +800,14 @@
name = "Waste Tank Control"
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/sigma/airlock/control)
"tM" = (
/obj/structure/pipes/standard/simple/visible{
dir = 5
},
/obj/structure/machinery/meter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/airlock/control)
"tZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -958,18 +819,13 @@
/obj/structure/pipes/binary/pump/on{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/sigma/airlock/control)
"uc" = (
/obj/structure/pipes/standard/simple/hidden/universal{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"uk" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -984,9 +840,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"ur" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -997,10 +851,7 @@
"us" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/airlock/control)
"uy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1012,10 +863,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"uO" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -1024,10 +872,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/corsat/sigma/biodome/ice)
"ve" = (
/obj/effect/decal/warning_stripes{
@@ -1043,10 +888,7 @@
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"vO" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1056,10 +898,7 @@
dir = 1;
network = list("sigma")
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"vU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1082,19 +921,13 @@
/area/corsat/sigma/biodome/ice)
"ww" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"wD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"xk" = (
/obj/structure/cargo_container/watatsumi/rightmid,
@@ -1105,18 +938,13 @@
/obj/structure/machinery/computer/atmos_alert{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/airlock/control)
"xK" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"xM" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -1129,49 +957,35 @@
name = "Access Shutter"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"xQ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/station_alert{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/airlock/control)
"xX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/airlock/control)
"xZ" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"yh" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"yj" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "Maintainence";
req_one_access = list()
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"yl" = (
/obj/structure/machinery/light{
@@ -1180,10 +994,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/airlock/control)
"yn" = (
/obj/structure/window/reinforced,
@@ -1200,10 +1011,7 @@
/obj/structure/pipes/standard/simple/hidden/universal{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/airlock/control)
"yr" = (
/obj/structure/window/reinforced,
@@ -1218,22 +1026,14 @@
"yy" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/airlock/control)
"yC" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/airlock/control)
"yG" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/airlock/control)
"yJ" = (
/obj/structure/surface/rack,
@@ -1241,9 +1041,7 @@
/obj/item/tank/air,
/obj/item/clothing/mask/breath,
/obj/item/clothing/mask/breath,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/airlock/control)
"yL" = (
/obj/structure/machinery/constructable_frame{
@@ -1263,9 +1061,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"yT" = (
/obj/item/broken_device,
@@ -1275,9 +1071,7 @@
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/airlock/control)
"yX" = (
/turf/template_noop,
@@ -1289,44 +1083,31 @@
"zf" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"zh" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/west,
/area/corsat/sigma/airlock/control)
"zo" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"zJ" = (
/obj/structure/pipes/standard/simple/visible{
dir = 4
},
/obj/structure/machinery/meter,
-/turf/open/floor/corsat{
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow,
/area/corsat/sigma/airlock/control)
"zQ" = (
/obj/structure/pipes/trinary/mixer{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southeast,
/area/corsat/sigma/airlock/control)
"zT" = (
/obj/structure/pipes/unary/outlet_injector{
@@ -1340,9 +1121,7 @@
/turf/open/floor/corsat,
/area/corsat/inaccessible)
"Aj" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"Al" = (
/obj/structure/machinery/door_control{
@@ -1350,17 +1129,13 @@
name = "Access Shutters";
pixel_y = 24
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"Ao" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"As" = (
/obj/item/tool/shovel,
@@ -1370,19 +1145,13 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"AJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/scrapyard)
"AS" = (
/obj/structure/largecrate/supply/ammo/m39{
@@ -1390,16 +1159,12 @@
name = "\improper M39 magazine case (x8)";
supplies = list(/obj/item/ammo_magazine/smg/m39=3)
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"AX" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Ba" = (
/obj/effect/decal/warning_stripes{
@@ -1424,9 +1189,7 @@
dir = 1
},
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Bn" = (
/obj/structure/surface/rack,
@@ -1437,18 +1200,13 @@
dir = 1
},
/obj/item/weapon/gun/flamer/M240T,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Bv" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"BM" = (
/turf/closed/wall/r_wall/biodome,
@@ -1459,22 +1217,14 @@
name = "Mixed Air Control"
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/airlock/control)
"BV" = (
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/corsat/sigma/biodome/ice)
"Cd" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/airlock/control)
"Ce" = (
/obj/structure/largecrate/supply/ammo/pistol{
@@ -1482,25 +1232,19 @@
name = "sidearm ammunition case (x14)";
supplies = list(/obj/item/ammo_magazine/revolver=6,/obj/item/ammo_magazine/pistol=8)
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Ch" = (
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/incendiary,
/obj/item/explosive/grenade/incendiary,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"CA" = (
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/smokebomb,
/obj/item/explosive/grenade/smokebomb,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"CI" = (
/obj/structure/window/reinforced,
@@ -1522,9 +1266,7 @@
},
/obj/item/weapon/gun/pistol/m4a3,
/obj/item/weapon/gun/pistol/m4a3,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Db" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -1533,18 +1275,13 @@
req_access_txt = "106";
use_power = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"Dd" = (
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/high_explosive,
/obj/item/explosive/grenade/high_explosive,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Df" = (
/obj/structure/machinery/light{
@@ -1556,9 +1293,7 @@
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/high_explosive/training,
/obj/item/explosive/grenade/high_explosive/training,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Dh" = (
/obj/structure/target/syndicate,
@@ -1570,25 +1305,17 @@
desc = "A rectangular steel crate containing firing targets.";
name = "target crate"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Dp" = (
/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northwest,
/area/corsat/sigma/airlock/control)
"Ds" = (
/obj/structure/surface/rack,
/obj/item/clothing/shoes/snow,
/obj/item/clothing/shoes/snow,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"Dw" = (
/turf/closed/wall/r_wall/biodome,
@@ -1598,22 +1325,14 @@
/turf/open/auto_turf/snow/layer1,
/area/corsat/sigma/biodome/ice)
"DI" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/airlock/control)
"DO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/biodome/ice)
"DT" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/airlock/control)
"DX" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -1622,10 +1341,7 @@
req_one_access = list(102)
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/airlock/control)
"Eg" = (
/obj/structure/machinery/computer/general_air_control/large_tank_control{
@@ -1634,10 +1350,7 @@
/obj/structure/surface/table/almayer{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/southwest,
/area/corsat/sigma/airlock/control)
"Ev" = (
/obj/structure/largecrate/supply/ammo/m41a{
@@ -1645,24 +1358,18 @@
name = "\improper M41A magazine case (x10)";
supplies = list(/obj/item/ammo_magazine/rifle=10)
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"EJ" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/shotgun/slugs,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"EM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/sigma/airlock/control)
"ES" = (
/turf/open/auto_turf/snow/layer2,
@@ -1680,32 +1387,22 @@
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/flashbang,
/obj/item/explosive/grenade/flashbang,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Fu" = (
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/high_explosive/training,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Fx" = (
/obj/structure/pipes/standard/simple/visible{
dir = 4
},
/obj/structure/machinery/meter,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/airlock/control)
"Fy" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/north,
/area/corsat/sigma/airlock/control)
"Fz" = (
/obj/structure/surface/rack,
@@ -1717,18 +1414,14 @@
},
/obj/item/weapon/gun/revolver/m44,
/obj/item/weapon/gun/revolver/m44,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"FC" = (
/obj/structure/cargo_container/arious/rightmid,
/turf/open/ice,
/area/corsat/sigma/biodome/scrapyard)
"FI" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"Gd" = (
/obj/structure/surface/rack,
@@ -1739,17 +1432,13 @@
name = "Weapon Rack"
},
/obj/item/ammo_magazine/flamer_tank,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Gf" = (
/obj/structure/surface/table/almayer,
/obj/item/explosive/grenade/high_explosive/frag,
/obj/item/explosive/grenade/high_explosive/frag,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Gj" = (
/obj/structure/target,
@@ -1762,9 +1451,7 @@
desc = "A rectangular steel crate containing firing targets.";
name = "target crate"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"GJ" = (
/obj/structure/machinery/power/apc/high{
@@ -1773,43 +1460,28 @@
start_charge = 0
},
/obj/structure/closet/wardrobe/atmospherics_yellow,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/airlock/control)
"GK" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"GO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"GW" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"GZ" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/east,
/area/corsat/sigma/airlock/control)
"Hh" = (
/obj/structure/pipes/binary/pump/high_power/on{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/northeast,
/area/corsat/sigma/airlock/control)
"HB" = (
/obj/effect/decal/warning_stripes{
@@ -1829,10 +1501,7 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/gunrange)
"HV" = (
/obj/structure/window/framed/corsat,
@@ -1843,37 +1512,26 @@
dir = 8
},
/obj/structure/machinery/disposal,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/west,
/area/corsat/sigma/airlock/control)
"Ib" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"Ih" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/airlock/control)
"Im" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/corsat/yellow/north,
/area/corsat/sigma/airlock/control)
"Iw" = (
/turf/open/auto_turf/snow/layer2,
@@ -1881,10 +1539,7 @@
"ID" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northwest,
/area/corsat/sigma/airlock/control)
"IJ" = (
/obj/structure/fence,
@@ -1892,18 +1547,12 @@
/area/corsat/sigma/biodome/gunrange)
"IR" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner/east,
/area/corsat/sigma/airlock/control)
"IV" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"Jm" = (
/obj/effect/decal/warning_stripes{
@@ -1922,24 +1571,15 @@
/obj/structure/machinery/camera/autoname{
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"Jy" = (
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"JQ" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northeast,
/area/corsat/sigma/airlock/control)
"JT" = (
/obj/structure/window/framed/corsat,
@@ -1959,71 +1599,49 @@
/area/corsat/sigma/biodome/ice)
"Kj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/corsat/sigma/biodome/ice)
"Kq" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/corsat/sigma/biodome/ice)
"Kr" = (
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/airlock/control)
"Ku" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"Kw" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"KA" = (
/obj/structure/surface/rack,
/obj/item/tool/shovel,
/obj/item/tool/shovel,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"KF" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"KN" = (
/turf/open/auto_turf/snow/layer4,
/area/corsat/sigma/biodome/gunrange)
"KR" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/airlock/control)
"KU" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"KV" = (
/obj/effect/decal/warning_stripes{
@@ -2038,47 +1656,32 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"Lg" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"Lr" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/northeast,
/area/corsat/sigma/airlock/control)
"Ly" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"LC" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"LF" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"LH" = (
/obj/effect/decal/warning_stripes{
@@ -2096,10 +1699,7 @@
"Ms" = (
/obj/structure/fence,
/obj/structure/fence,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"MA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2107,29 +1707,19 @@
},
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/pmc,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"ME" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"Nk" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/north,
/area/corsat/sigma/airlock/control)
"Nm" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"Nn" = (
/obj/structure/barricade/wooden{
@@ -2141,32 +1731,20 @@
"Ns" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/corsat_bio_lock,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/airlock/control)
"NA" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"NI" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"NQ" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/east,
/area/corsat/sigma/airlock/control)
"NS" = (
/obj/effect/decal/warning_stripes{
@@ -2185,24 +1763,17 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"Om" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"Ot" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner/west,
/area/corsat/sigma/airlock/control)
"OI" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -2213,25 +1784,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"OK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"OR" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"OT" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -2246,10 +1811,7 @@
pixel_y = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/airlock/control)
"Po" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -2260,10 +1822,7 @@
dir = 1;
network = list("sigma")
},
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/corsat/sigma/biodome/ice)
"PE" = (
/obj/structure/window/reinforced,
@@ -2273,10 +1832,7 @@
/turf/open/ice,
/area/corsat/sigma/biodome/ice)
"PH" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/airlock/control)
"PM" = (
/obj/structure/surface/table/almayer,
@@ -2286,9 +1842,7 @@
pixel_x = -5;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"PY" = (
/obj/item/cell/crap,
@@ -2297,50 +1851,35 @@
"PZ" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"Qd" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"Qf" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/airlock/control)
"Qi" = (
-/turf/open/floor/corsat{
- icon_state = "bluecorner"
- },
+/turf/open/floor/corsat/bluecorner,
/area/corsat/sigma/airlock/control)
"Qm" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"Qr" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"Qx" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen/red,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"QD" = (
/obj/structure/cargo_container/grant/left,
@@ -2354,10 +1893,7 @@
"QU" = (
/obj/structure/surface/table/almayer,
/obj/item/device/camera,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southeast,
/area/corsat/sigma/airlock/control)
"Rb" = (
/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide,
@@ -2368,34 +1904,24 @@
dir = 8
},
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/control)
"Ri" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/airlock/control)
"Rn" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "red"
- },
+/turf/open/floor/corsat/red,
/area/corsat/sigma/airlock/control)
"Rp" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/east,
/area/corsat/sigma/airlock/control)
"Rq" = (
/obj/structure/surface/table/reinforced,
@@ -2403,10 +1929,7 @@
dir = 1;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southwest,
/area/corsat/sigma/airlock/control)
"Rw" = (
/obj/structure/bed/chair{
@@ -2428,16 +1951,12 @@
pixel_x = 5;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"RD" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"RI" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -2450,21 +1969,14 @@
/area/corsat/sigma/biodome/scrapyard)
"RQ" = (
/obj/structure/machinery/computer3,
-/turf/open/floor/corsat{
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue,
/area/corsat/sigma/airlock/control)
"RR" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/southeast,
/area/corsat/sigma/airlock/control)
"Sg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/corsat/sigma/biodome/ice)
"Sh" = (
/obj/structure/cargo_container/arious/leftmid,
@@ -2476,28 +1988,17 @@
/area/corsat/sigma/biodome/ice)
"Sm" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/control)
"Ss" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/airlock/control)
"Su" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/control)
"Sy" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"SK" = (
/obj/structure/fence,
@@ -2507,21 +2008,13 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"To" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/airlock/control)
"Tq" = (
-/turf/open/floor/corsat{
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner,
/area/corsat/sigma/airlock/control)
"Tw" = (
/obj/effect/decal/warning_stripes{
@@ -2550,15 +2043,10 @@
/turf/open/auto_turf/snow/layer1,
/area/corsat/sigma/biodome/scrapyard)
"TC" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southeast,
/area/corsat/sigma/airlock/control)
"TP" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/control)
"TX" = (
/turf/open/ice,
@@ -2571,16 +2059,11 @@
/obj/item/clothing/shoes/snow,
/obj/item/clothing/shoes/snow,
/obj/item/clothing/shoes/snow,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"Uu" = (
/obj/structure/closet/athletic_mixed,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"Uv" = (
/obj/structure/bed/chair,
@@ -2599,9 +2082,7 @@
/area/template_noop)
"UX" = (
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/emergency_access)
"Vh" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -2610,9 +2091,7 @@
req_access_txt = "101"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"Vi" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -2620,9 +2099,7 @@
name = "ID Checkpoint";
req_access_txt = "101"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"Vq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2636,9 +2113,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/control)
"Vz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2648,13 +2123,9 @@
/area/corsat/sigma/biodome/ice)
"VF" = (
/obj/structure/machinery/floodlight{
- name = "Floodlight";
- unacidable = 0
- },
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
+ name = "Floodlight"
},
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/biodome/ice)
"VJ" = (
/obj/structure/pipes/vents/pump/siphon/on{
@@ -2665,33 +2136,23 @@
/area/corsat/inaccessible)
"VL" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/control)
"VR" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"Wd" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/westleft,
/obj/structure/machinery/door/window/brigdoor/eastleft,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"Wj" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/corsat/blue/north,
/area/corsat/sigma/airlock/control)
"Wk" = (
/turf/closed/wall/strata_ice,
@@ -2710,37 +2171,25 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"WL" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/corsat/sigma/airlock/control)
"WW" = (
/obj/item/folder/black_random,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/airlock/control)
"WY" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"Xm" = (
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/corsat/sigma/biodome/gunrange)
"Xv" = (
/turf/open/floor/corsat,
@@ -2764,24 +2213,18 @@
/area/corsat/sigma/biodome/ice)
"XG" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"XK" = (
/obj/structure/machinery/light,
/obj/structure/closet/firecloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"XM" = (
/obj/structure/sign/safety/airlock{
pixel_y = -32
},
-/turf/open/floor/corsat{
- icon_state = "sigma"
- },
+/turf/open/floor/corsat/sigma,
/area/corsat/sigma/airlock/control)
"XN" = (
/obj/structure/pipes/vents/pump,
@@ -2795,9 +2238,7 @@
id = "SigmaWestW";
name = "Sigma West Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/control)
"Yn" = (
/obj/effect/decal/warning_stripes{
@@ -2813,18 +2254,14 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/corsat/sigma/airlock/control)
"Yu" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{
id = "SigmaWestE";
name = "Sigma West Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/corsat/sigma/airlock/control)
"YC" = (
/obj/effect/landmark/survivor_spawner,
@@ -2854,19 +2291,14 @@
dir = 4;
network = list("sigma")
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/west,
/area/corsat/sigma/airlock/control)
"YW" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/corsat/sigma/airlock/control)
"YX" = (
/obj/effect/decal/cleanable/dirt,
@@ -2874,10 +2306,7 @@
/area/corsat/emergency_access)
"Zd" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/east,
/area/corsat/sigma/airlock/control)
"Zf" = (
/turf/open/auto_turf/snow/layer2,
@@ -2891,9 +2320,7 @@
/area/corsat/sigma/biodome/ice)
"Zy" = (
/obj/structure/sign/safety/airlock,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/corsat/sigma/airlock/control)
"ZB" = (
/obj/effect/decal/warning_stripes{
@@ -2908,33 +2335,22 @@
/obj/structure/surface/table/almayer,
/obj/item/storage/donut_box,
/obj/item/tool/lighter/random,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/corsat/red/southwest,
/area/corsat/sigma/airlock/control)
"ZD" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/corsat/yellowcorner,
/area/corsat/sigma/airlock/control)
"ZH" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/corsat/redcorner/west,
/area/corsat/sigma/airlock/control)
"ZL" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/corsat/sigma/biodome/gunrange)
(1,1,1) = {"
diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm
index ec598eebd59c..2e078646853d 100644
--- a/maps/map_files/DesertDam/Desert_Dam.dmm
+++ b/maps/map_files/DesertDam/Desert_Dam.dmm
@@ -29,25 +29,17 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"aaf" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"aag" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars{
- icon_state = "mars_dirt_10"
- },
+/turf/open/mars/mars_dirt_10,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"aah" = (
/obj/structure/closet/fireaxecabinet,
@@ -70,14 +62,10 @@
/turf/open/desert/rock/deep/transition,
/area/desert_dam/interior/caves/east_caves)
"aam" = (
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/exterior/valley/valley_wilderness)
"aan" = (
-/turf/open/desert/rock/deep/transition{
- dir = 4
- },
+/turf/open/desert/rock/deep/transition/east,
/area/desert_dam/exterior/valley/valley_wilderness)
"aao" = (
/obj/effect/blocker/toxic_water,
@@ -85,14 +73,10 @@
/area/desert_dam/exterior/river/riverside_east)
"aap" = (
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_east)
"aaq" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/interior/caves/east_caves)
"aar" = (
/turf/open/gm/river/desert/deep,
@@ -111,30 +95,22 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/landing_pad_two)
"aaw" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_wilderness)
"aax" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/interior/caves/east_caves)
"aay" = (
/turf/open/gm/river/desert/shallow,
/area/desert_dam/interior/caves/east_caves)
"aaz" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/desert_dam/interior/caves/east_caves)
"aaA" = (
/obj/structure/desertdam/decals/road_edge{
@@ -156,24 +132,17 @@
/area/desert_dam/exterior/valley/valley_wilderness)
"aaD" = (
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/river/riverside_east)
"aaE" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aaF" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"aaG" = (
/obj/structure/prop/brazier,
@@ -181,38 +150,28 @@
/area/desert_dam/interior/caves/temple)
"aaH" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"aaI" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river/riverside_east)
"aaJ" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"aaK" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"aaL" = (
/obj/item/trash/c_tube,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"aaM" = (
/obj/structure/disposalpipe/segment{
@@ -225,22 +184,16 @@
/area/desert_dam/exterior/valley/valley_wilderness)
"aaN" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"aaO" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_east)
"aaP" = (
/obj/structure/floodgate,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_north)
"aaQ" = (
/obj/structure/floodgate,
@@ -251,9 +204,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_labs)
"aaT" = (
/obj/structure/desertdam/decals/road_edge{
@@ -263,9 +214,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_labs)
"aaU" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/valley/valley_labs)
"aaV" = (
/obj/structure/desertdam/decals/road_edge{
@@ -276,37 +225,26 @@
/area/desert_dam/exterior/valley/valley_labs)
"aaW" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_east)
"aaX" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached20"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached20,
/area/desert_dam/exterior/valley/valley_labs)
"aaY" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_medical)
"aaZ" = (
/obj/structure/platform,
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"aba" = (
/obj/structure/flora/grass/desert/lightgrass_9,
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/landing_pad_one)
"abb" = (
/obj/structure/flora/bush/desert{
@@ -318,9 +256,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_labs)
"abd" = (
/obj/effect/decal/cleanable/dirt,
@@ -345,31 +281,21 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_medical)
"abh" = (
/obj/item/trash/USCMtray,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_labs)
"abi" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"abj" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
dir = 6
},
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/landing_pad_one)
"abk" = (
/turf/closed/wall/hangar{
@@ -377,9 +303,7 @@
},
/area/desert_dam/exterior/valley/south_valley_dam)
"abl" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/valley/valley_labs)
"abm" = (
/obj/structure/floodgate{
@@ -402,9 +326,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_labs)
"abq" = (
/obj/structure/powerloader_wreckage,
@@ -412,23 +334,14 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_labs)
"abr" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/valley/valley_labs)
"abs" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/valley/valley_labs)
-"abt" = (
-/turf/open/desert/rock,
-/area/desert_dam/exterior/rock)
"abu" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/river/riverside_east)
"abv" = (
/obj/effect/decal/cleanable/dirt,
@@ -442,16 +355,11 @@
/area/desert_dam/exterior/valley/valley_labs)
"abx" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"aby" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_labs)
"abz" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -469,18 +377,14 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/valley/valley_labs)
"abC" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_central_north)
"abD" = (
/obj/structure/disposalpipe/segment{
@@ -501,56 +405,39 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/exterior/river/riverside_central_north)
"abH" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"abI" = (
/obj/structure/surface/table,
/obj/item/tool/shovel/spade,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"abJ" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/river/riverside_east)
"abK" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/desert_dam/exterior/valley/valley_labs)
"abL" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"abM" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/valley/valley_labs)
"abN" = (
/obj/structure/flora/grass/desert/lightgrass_10,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/landing_pad_one)
"abO" = (
/obj/structure/surface/rack,
@@ -560,29 +447,21 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/valley/valley_labs)
"abQ" = (
/obj/structure/machinery/landinglight/ds1/delayone,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/landing_pad_one)
"abR" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"abS" = (
/obj/structure/machinery/landinglight/ds2,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/landing_pad_two)
"abT" = (
/obj/structure/machinery/conveyor{
@@ -602,15 +481,11 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_labs)
"abW" = (
/obj/structure/fence,
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/caves/east_caves)
"abX" = (
/obj/structure/largecrate/random,
@@ -630,23 +505,17 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_wilderness)
"aca" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/valley/valley_labs)
"acb" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/valley/valley_labs)
"acc" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
/obj/structure/largecrate/random,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_labs)
"acd" = (
/obj/structure/floodgate{
@@ -656,18 +525,13 @@
/area/desert_dam/exterior/river/riverside_east)
"acf" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"acg" = (
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_labs)
"ach" = (
/turf/open/gm/river/desert/deep,
@@ -684,15 +548,11 @@
dir = 10
},
/obj/structure/largecrate/random/secure,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_labs)
"ack" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/desert_dam/exterior/river/riverside_east)
"acn" = (
/obj/item/trash/eat,
@@ -713,9 +573,7 @@
/area/desert_dam/exterior/valley/valley_labs)
"acq" = (
/obj/structure/tunnel,
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"acr" = (
/obj/effect/blocker/toxic_water,
@@ -744,9 +602,7 @@
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"acx" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/dam_interior/south_tunnel)
"acy" = (
/obj/item/trash/plate,
@@ -766,38 +622,28 @@
dir = 4
},
/obj/item/trash/used_stasis_bag,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"acC" = (
/obj/structure/prop/dam/wide_boulder/boulder1,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"acD" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/valley/valley_labs)
"acE" = (
/obj/structure/machinery/sentry_holder/colony{
dir = 8;
pixel_x = 24
},
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"acF" = (
/obj/structure/machinery/sentry_holder/colony{
dir = 4;
pixel_x = -24
},
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"acG" = (
/obj/structure/disposalpipe/segment{
@@ -807,75 +653,51 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"acH" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/desert_dam/exterior/valley/valley_labs)
"acI" = (
/obj/structure/machinery/landinglight/ds1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/landing_pad_one)
"acJ" = (
/obj/structure/machinery/landinglight/ds1/delaytwo,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_one)
"acK" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"acL" = (
/obj/item/trash/burger,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/valley_labs)
"acM" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
/obj/structure/largecrate/random/barrel/green,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"acN" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"acO" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"acP" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/exterior/valley/valley_labs)
"acQ" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"acR" = (
/obj/effect/decal/warning_stripes{
@@ -884,26 +706,18 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_labs)
"acS" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"acT" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"acU" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"acV" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"acW" = (
/obj/structure/largecrate/random/secure,
@@ -913,20 +727,14 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/valley/valley_labs)
"acY" = (
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/caves/east_caves)
"acZ" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_crashsite)
"ada" = (
/turf/open/desert/rock,
@@ -936,9 +744,7 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 8
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/landing_pad_one)
"adc" = (
/obj/structure/fence,
@@ -949,28 +755,19 @@
/area/desert_dam/interior/caves/east_caves)
"ade" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_labs)
"adf" = (
/obj/structure/machinery/landinglight/ds2/delayone,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/landing_pad_two)
"adg" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_wilderness)
"adh" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"adi" = (
/obj/structure/surface/table,
@@ -982,10 +779,7 @@
/turf/open/floor/prison,
/area/desert_dam/exterior/valley/south_valley_dam)
"adj" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_labs)
"adk" = (
/obj/structure/surface/table,
@@ -1009,10 +803,7 @@
/turf/open/floor/prison,
/area/desert_dam/exterior/valley/south_valley_dam)
"adn" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/west,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"ado" = (
/obj/structure/machinery/vending/coffee,
@@ -1020,39 +811,29 @@
/area/desert_dam/exterior/valley/south_valley_dam)
"adp" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_east)
"adq" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
/obj/structure/prop/dam/truck/damaged,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_one)
"adr" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_crashsite)
"ads" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/interior/dam_interior/south_tunnel)
"adt" = (
/turf/closed/wall/wood,
/area/desert_dam/building/bar/backroom)
"adu" = (
-/turf/open/desert/rock/deep/transition{
- dir = 4
- },
+/turf/open/desert/rock/deep/transition/east,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"adv" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -1069,9 +850,7 @@
/turf/open/floor/interior/wood,
/area/desert_dam/building/bar/backroom)
"ady" = (
-/turf/open/desert/rock/deep/transition{
- dir = 5
- },
+/turf/open/desert/rock/deep/transition/northeast,
/area/desert_dam/exterior/valley/valley_wilderness)
"adz" = (
/obj/structure/closet/secure_closet/bar,
@@ -1084,9 +863,7 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"adC" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -1100,21 +877,15 @@
/area/desert_dam/interior/caves/east_caves)
"adE" = (
/obj/structure/platform,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/exterior/valley/valley_labs)
"adF" = (
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/dam_interior/north_tunnel)
"adG" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_east)
"adH" = (
/obj/structure/platform,
@@ -1127,18 +898,13 @@
"adJ" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/desert_dam/exterior/river/riverside_east)
"adK" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"adL" = (
/obj/effect/blocker/toxic_water,
@@ -1148,9 +914,7 @@
"adM" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/exterior/river/riverside_east)
"adN" = (
/obj/structure/platform,
@@ -1161,25 +925,19 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_labs)
"adP" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_east)
"adQ" = (
/obj/structure/platform_decoration{
dir = 1
},
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_east)
"adR" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -1190,15 +948,11 @@
dir = 8
},
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_east)
"adU" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/exterior/river/riverside_east)
"adV" = (
/obj/structure/platform,
@@ -1206,21 +960,15 @@
/area/desert_dam/exterior/valley/valley_labs)
"adW" = (
/obj/structure/platform,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/valley/valley_labs)
"adX" = (
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/river/riverside_east)
"adY" = (
/obj/structure/platform,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/valley/valley_labs)
"adZ" = (
/obj/structure/flora/bush/desert/cactus/multiple{
@@ -1232,9 +980,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_wilderness)
"aeb" = (
/obj/effect/blocker/toxic_water,
@@ -1260,25 +1006,18 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"aeg" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
/obj/structure/largecrate/random/case/small,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_one)
"aeh" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/river/riverside_east)
"aei" = (
/obj/structure/machinery/power/apc{
@@ -1286,10 +1025,7 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/building/administration/control_room)
"aej" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -1329,27 +1065,16 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_crashsite)
"aep" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/valley_labs)
"aeq" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_labs)
"aer" = (
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"aes" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"aet" = (
/obj/structure/surface/table/reinforced,
@@ -1357,31 +1082,19 @@
id = "dam_checkpoint_north";
name = "Checkpoint Lockdown"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"aeu" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/east,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"aev" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_labs)
"aew" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_labs)
"aex" = (
/obj/structure/window/reinforced/tinted{
@@ -1394,33 +1107,24 @@
/obj/item/clipboard,
/obj/item/tool/stamp,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aey" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_east)
"aez" = (
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_labs)
"aeA" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_labs)
"aeB" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aeC" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -1441,18 +1145,14 @@
/area/desert_dam/exterior/valley/valley_wilderness)
"aeF" = (
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/river/riverside_east)
"aeG" = (
/obj/structure/platform_decoration{
dir = 1
},
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"aeH" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -1464,31 +1164,23 @@
"aeI" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_east)
"aeJ" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_east)
"aeK" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_east)
"aeL" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/desert/rock/deep/transition{
- dir = 4
- },
+/turf/open/desert/rock/deep/transition/east,
/area/desert_dam/interior/dam_interior/north_tunnel)
"aeM" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -1497,28 +1189,20 @@
"aeN" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river/riverside_east)
"aeO" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aeP" = (
-/turf/open/floor/filtrationside{
- dir = 5
- },
+/turf/open/floor/filtrationside/northeast,
/area/desert_dam/exterior/valley/valley_mining)
"aeQ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aeR" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -1539,9 +1223,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_wilderness)
"aeV" = (
/obj/effect/blocker/toxic_water,
@@ -1550,10 +1232,7 @@
"aeW" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/shuttle/dropship/flight/lz1,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/landing/console)
"aeX" = (
/obj/structure/surface/table/reinforced,
@@ -1561,10 +1240,7 @@
name = "Security Cameras - Research";
network = list("chigusa_3")
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"aeY" = (
/obj/structure/prop/dam/boulder/boulder1,
@@ -1575,9 +1251,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"afa" = (
/obj/structure/window/reinforced/tinted{
@@ -1586,18 +1260,14 @@
/obj/structure/machinery/computer/communications,
/obj/structure/surface/table/reinforced,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"afb" = (
/obj/structure/machinery/colony_floodlight,
/turf/open/desert/rock,
/area/desert_dam/exterior/valley/valley_crashsite)
"afc" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/interior/dam_interior/hanger)
"afd" = (
/turf/open/desert/rock,
@@ -1607,27 +1277,17 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aff" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/interior/dam_interior/atmos_storage)
"afg" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"afh" = (
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"afi" = (
/turf/open/desert/rock,
@@ -1640,49 +1300,35 @@
/turf/open/gm/river/desert/deep,
/area/desert_dam/exterior/river_mouth/southern)
"afk" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"afl" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_wilderness)
"afm" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_wilderness)
"afn" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"afo" = (
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"afp" = (
/obj/structure/disposalpipe/junction,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"afq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"afr" = (
/obj/structure/window/reinforced/tinted{
@@ -1694,9 +1340,7 @@
/obj/item/tool/pen/blue,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"afs" = (
/obj/structure/window/reinforced/tinted{
@@ -1707,9 +1351,7 @@
/obj/item/clipboard,
/obj/item/tool/stamp,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aft" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -1724,42 +1366,30 @@
/turf/open/desert/rock,
/area/desert_dam/interior/dam_interior/central_tunnel)
"afv" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/interior/dam_interior/workshop)
"afw" = (
/obj/structure/machinery/vending/snack,
/turf/open/floor/prison,
/area/desert_dam/exterior/valley/south_valley_dam)
"afx" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/valley/valley_labs)
"afy" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/landing_pad_one)
"afz" = (
-/turf/open/desert/rock/deep/transition{
- dir = 9
- },
+/turf/open/desert/rock/deep/transition/northwest,
/area/desert_dam/interior/dam_interior/workshop)
"afA" = (
-/turf/open/desert/rock/deep/transition{
- dir = 4
- },
+/turf/open/desert/rock/deep/transition/east,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"afB" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"afC" = (
/obj/structure/platform{
@@ -1778,36 +1408,22 @@
/area/desert_dam/interior/dam_interior/south_tunnel)
"afF" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"afG" = (
/turf/closed/wall/r_wall/chigusa,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"afH" = (
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"afI" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"afJ" = (
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"afK" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"afL" = (
/obj/structure/platform{
@@ -1820,26 +1436,19 @@
/turf/open/gm/river/desert/deep,
/area/desert_dam/exterior/river/riverside_east)
"afM" = (
-/turf/open/floor/filtrationside{
- dir = 4
- },
+/turf/open/floor/filtrationside/east,
/area/desert_dam/exterior/valley/valley_mining)
"afN" = (
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"afO" = (
-/turf/open/desert/rock/deep/transition{
- dir = 6
- },
+/turf/open/desert/rock/deep/transition/southeast,
/area/desert_dam/interior/dam_interior/central_tunnel)
"afP" = (
/turf/closed/wall/r_wall/chigusa,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"afQ" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"afR" = (
/turf/open/desert/rock/deep/transition,
@@ -1864,17 +1473,13 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_labs)
"afV" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_labs)
"afW" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
@@ -1882,10 +1487,7 @@
name = "\improper Administration Control Room"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/administration/control_room)
"afX" = (
/obj/structure/flora/grass/desert/lightgrass_2,
@@ -1894,18 +1496,13 @@
"afY" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"afZ" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"aga" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -1925,9 +1522,7 @@
/turf/open/desert/rock,
/area/desert_dam/interior/dam_interior/south_tunnel)
"age" = (
-/turf/open/desert/rock/deep/transition{
- dir = 4
- },
+/turf/open/desert/rock/deep/transition/east,
/area/desert_dam/interior/dam_interior/central_tunnel)
"agf" = (
/obj/structure/bed/chair/office/dark{
@@ -1939,25 +1534,19 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_wilderness)
"agh" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_wilderness)
"agi" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_wilderness)
"agj" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -1997,9 +1586,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_northwest)
"agq" = (
/obj/structure/prop/dam/boulder/boulder3,
@@ -2025,9 +1612,7 @@
/turf/open/gm/river/desert/deep,
/area/desert_dam/exterior/river/riverside_east)
"agt" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/valley/valley_labs)
"agu" = (
/obj/structure/disposalpipe/segment{
@@ -2057,9 +1642,7 @@
dir = 1
},
/obj/structure/prop/dam/truck/cargo,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_northwest)
"agy" = (
/turf/open/asphalt/cement_sunbleached,
@@ -2073,25 +1656,16 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_northwest)
"agB" = (
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"agC" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"agD" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_crashsite)
"agE" = (
/obj/structure/platform,
@@ -2101,9 +1675,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_northwest)
"agG" = (
/obj/structure/surface/table,
@@ -2118,10 +1690,7 @@
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"agI" = (
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"agJ" = (
/obj/structure/platform,
@@ -2132,38 +1701,26 @@
/turf/open/gm/river/desert/deep,
/area/desert_dam/exterior/river/riverside_east)
"agK" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"agL" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"agM" = (
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"agN" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"agO" = (
/turf/open/desert/rock/deep,
/area/desert_dam/interior/dam_interior/central_tunnel)
"agP" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"agQ" = (
/turf/open/floor/prison,
@@ -2173,17 +1730,13 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_northwest)
"agS" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_northwest)
"agT" = (
/obj/structure/desertdam/decals/road_edge,
@@ -2217,18 +1770,14 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_labs)
"agY" = (
/obj/effect/blocker/toxic_water/Group_2,
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"agZ" = (
/obj/structure/disposalpipe/segment,
@@ -2249,9 +1798,7 @@
/area/desert_dam/exterior/valley/valley_northwest)
"ahb" = (
/obj/structure/window/framed/chigusa,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"ahc" = (
/obj/structure/desertdam/decals/road_edge{
@@ -2261,16 +1808,10 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_labs)
"ahd" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"ahe" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"ahf" = (
/obj/structure/desertdam/decals/road_edge{
@@ -2287,14 +1828,10 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/gm/river/desert/shallow_edge/covered{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/covered/west,
/area/desert_dam/exterior/river/riverside_central_north)
"ahh" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"ahi" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -2314,9 +1851,7 @@
"ahk" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/structure/prop/dam/truck/damaged,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_northwest)
"ahl" = (
/obj/structure/desertdam/decals/road_stop{
@@ -2333,27 +1868,20 @@
/turf/open/desert/rock,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"aho" = (
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"ahp" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/interior/dam_interior/west_tunnel)
"ahq" = (
/obj/structure/desertdam/decals/road_stop,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_northwest)
"ahr" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"ahs" = (
/obj/structure/barricade/wooden{
@@ -2372,9 +1900,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_labs)
"ahu" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_northwest)
"ahv" = (
/obj/structure/platform,
@@ -2399,16 +1925,12 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_northwest)
"ahy" = (
-/turf/open/floor/filtrationside{
- dir = 10
- },
+/turf/open/floor/filtrationside/southwest,
/area/desert_dam/exterior/valley/valley_mining)
"ahz" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/structure/largecrate/random/case/small,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_northwest)
"ahA" = (
/turf/open/floor/filtrationside,
@@ -2433,18 +1955,14 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_northwest)
"ahF" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_labs)
"ahG" = (
/obj/item/limb/foot/r_foot,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_labs)
"ahH" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/valley/valley_labs)
"ahI" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -2452,16 +1970,12 @@
dir = 4
},
/obj/structure/barricade/wooden,
-/turf/open/gm/river/desert/shallow_edge/covered{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/covered/west,
/area/desert_dam/exterior/river/riverside_central_north)
"ahJ" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"ahK" = (
/obj/effect/decal/cleanable/vomit,
@@ -2506,9 +2020,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_northwest)
"ahQ" = (
-/turf/open/floor/filtrationside{
- dir = 6
- },
+/turf/open/floor/filtrationside/southeast,
/area/desert_dam/exterior/valley/valley_mining)
"ahR" = (
/obj/structure/desertdam/decals/road_edge{
@@ -2541,9 +2053,7 @@
/area/desert_dam/exterior/valley/valley_wilderness)
"ahV" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/exterior/valley/valley_wilderness)
"ahW" = (
/obj/structure/surface/table/reinforced,
@@ -2551,35 +2061,25 @@
density = 0;
pixel_y = 32
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"ahX" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"ahY" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/valley/valley_labs)
"ahZ" = (
/turf/open/desert/desert_shore/desert_shore1,
/area/desert_dam/exterior/valley/valley_labs)
"aia" = (
-/turf/open/desert/rock/deep/transition{
- dir = 4
- },
+/turf/open/desert/rock/deep/transition/east,
/area/desert_dam/interior/dam_interior/north_tunnel)
"aib" = (
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/dam_interior/north_tunnel)
"aic" = (
/obj/structure/flora/bush/desert{
@@ -2592,27 +2092,19 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_mining)
"aie" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_mining)
"aif" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached17"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached17,
/area/desert_dam/exterior/valley/valley_wilderness)
"aig" = (
-/turf/open/desert/rock/deep/transition{
- dir = 4
- },
+/turf/open/desert/rock/deep/transition/east,
/area/desert_dam/interior/dam_interior/workshop)
"aih" = (
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_labs)
"aii" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_labs)
"aij" = (
/obj/structure/flora/bush/desert{
@@ -2635,14 +2127,10 @@
"ain" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aio" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_wilderness)
"aip" = (
/obj/structure/flora/bush/desert/cactus{
@@ -2652,26 +2140,16 @@
/area/desert_dam/exterior/valley/valley_wilderness)
"aiq" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"air" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/valley_northwest)
"ais" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_northwest)
"ait" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_northwest)
"aiu" = (
/obj/structure/platform{
@@ -2699,33 +2177,24 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_north)
"aiy" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aiz" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"aiA" = (
/obj/effect/blocker/toxic_water/Group_2,
/obj/structure/platform{
dir = 1
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_north)
"aiB" = (
/obj/structure/machinery/light,
@@ -2743,15 +2212,10 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_central_north)
"aiE" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aiF" = (
/obj/structure/platform{
@@ -2761,9 +2225,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river/riverside_central_north)
"aiG" = (
/obj/structure/disposalpipe/segment{
@@ -2776,15 +2238,10 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_wilderness)
"aiH" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/west,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"aiI" = (
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aiJ" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -2797,21 +2254,14 @@
"aiK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"aiL" = (
-/turf/open/desert/rock/deep/transition{
- dir = 9
- },
+/turf/open/desert/rock/deep/transition/northwest,
/area/desert_dam/interior/caves/central_caves)
"aiM" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"aiN" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -2821,22 +2271,14 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"aiP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_mining)
"aiQ" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_labs)
"aiR" = (
/obj/structure/desertdam/decals/road_edge{
@@ -2864,17 +2306,13 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"aiU" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"aiV" = (
/obj/structure/desertdam/decals/road_edge{
@@ -2904,27 +2342,19 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_wilderness)
"aiY" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_northwest)
"aiZ" = (
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_northwest)
"aja" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_northwest)
"ajb" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"ajc" = (
/obj/effect/decal/cleanable/dirt,
@@ -2941,23 +2371,17 @@
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/exterior/valley/valley_wilderness)
"aje" = (
/obj/structure/fence,
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/caves/east_caves)
"ajf" = (
/turf/open/gm/river/desert/shallow_edge,
/area/desert_dam/interior/caves/east_caves)
"ajg" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_labs)
"ajh" = (
/obj/structure/flora/bush/desert{
@@ -2973,16 +2397,10 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_wilderness)
"ajj" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"ajk" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"ajl" = (
/obj/structure/window/framed/chigusa,
@@ -2996,9 +2414,7 @@
"ajn" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"ajo" = (
/obj/structure/desertdam/decals/road_edge{
@@ -3012,9 +2428,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"ajq" = (
/obj/structure/desertdam/decals/road_edge,
@@ -3037,26 +2451,18 @@
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"aju" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"ajv" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"ajw" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"ajx" = (
/obj/structure/platform{
@@ -3078,17 +2484,13 @@
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"ajA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_mining)
"ajB" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"ajC" = (
/obj/structure/flora/bush/desert/cactus/multiple{
@@ -3098,9 +2500,7 @@
/area/desert_dam/exterior/valley/valley_crashsite)
"ajD" = (
/obj/structure/fence,
-/turf/open/desert/rock/deep/transition{
- dir = 9
- },
+/turf/open/desert/rock/deep/transition/northwest,
/area/desert_dam/interior/caves/east_caves)
"ajE" = (
/obj/effect/decal/cleanable/dirt,
@@ -3120,9 +2520,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"ajH" = (
/obj/structure/desertdam/decals/road_edge,
@@ -3135,32 +2533,22 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/exterior/valley/valley_wilderness)
"ajJ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"ajK" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_labs)
"ajL" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_labs)
"ajM" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_labs)
"ajN" = (
/obj/structure/platform{
@@ -3172,48 +2560,33 @@
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"ajO" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"ajP" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"ajQ" = (
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"ajR" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"ajS" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"ajT" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"ajU" = (
/obj/effect/decal/cleanable/dirt,
@@ -3226,39 +2599,26 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"ajW" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"ajX" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/exterior/valley/valley_wilderness)
"ajY" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"ajZ" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aka" = (
/obj/structure/desertdam/decals/road_edge,
@@ -3294,18 +2654,12 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"akf" = (
/obj/structure/surface/table/reinforced,
/obj/structure/xenoautopsy,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"akg" = (
/obj/structure/flora/bush/desert{
@@ -3314,29 +2668,21 @@
/turf/open/desert/dirt,
/area/desert_dam/interior/caves/central_caves)
"akh" = (
-/turf/open/mars{
- icon_state = "mars_dirt_14"
- },
+/turf/open/mars/mars_dirt_14,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"aki" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_northwest)
"akj" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"akk" = (
/turf/closed/wall/r_wall/chigusa,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"akl" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"akm" = (
/obj/structure/machinery/power/apc{
@@ -3344,26 +2690,17 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"akn" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"ako" = (
/obj/structure/closet/radiation,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"akp" = (
/obj/structure/desertdam/decals/road_edge{
@@ -3373,18 +2710,13 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_northwest)
"akq" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"akr" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aks" = (
/obj/structure/desertdam/decals/road_edge{
@@ -3394,22 +2726,14 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_northwest)
"akt" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_labs)
"aku" = (
/obj/structure/machinery/cm_vending/sorted/boozeomat,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"akv" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_labs)
"akw" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -3417,9 +2741,7 @@
name = "\improper Containment Lock";
unacidable = 0
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"akx" = (
/obj/structure/platform{
@@ -3428,14 +2750,10 @@
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"aky" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_northwest)
"akz" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_northwest)
"akA" = (
/obj/effect/decal/cleanable/dirt,
@@ -3460,55 +2778,35 @@
name = "\improper Containment Lock";
unacidable = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"akE" = (
/obj/structure/surface/table,
/obj/item/clothing/gloves/yellow,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"akF" = (
/obj/structure/surface/table,
/obj/item/device/reagent_scanner,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"akG" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"akH" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"akI" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"akJ" = (
/obj/structure/flora/grass/desert/lightgrass_8,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"akK" = (
/turf/open/floor/prison,
@@ -3528,18 +2826,13 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_northwest)
"akO" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"akP" = (
/turf/open/desert/rock,
/area/desert_dam/exterior/valley/valley_mining)
"akQ" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"akR" = (
/obj/structure/platform,
@@ -3549,23 +2842,17 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"akS" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"akT" = (
/obj/structure/platform_decoration,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"akU" = (
/obj/structure/prop/dam/truck/cargo,
@@ -3581,94 +2868,61 @@
/turf/open/desert/rock,
/area/desert_dam/exterior/valley/valley_crashsite)
"akW" = (
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"akX" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/pen,
/obj/item/oldresearch/Blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"akY" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"akZ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"ala" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/west,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"alb" = (
/obj/structure/surface/table/reinforced,
/obj/structure/xenoautopsy/tank{
icon_state = "jarshelf_7"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"alc" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"ald" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_7"
- },
+/turf/open/mars_cave/mars_dirt_7,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"ale" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/north,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alf" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alg" = (
/obj/structure/closet/crate,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alh" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/landing_pad_two)
"ali" = (
/obj/effect/decal/warning_stripes{
@@ -3684,42 +2938,27 @@
/turf/open/desert/rock,
/area/desert_dam/exterior/valley/valley_crashsite)
"alk" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
- },
+/turf/open/mars/mars_dirt_12,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"all" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"alm" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aln" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"alo" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_northwest)
"alp" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_northwest)
"alr" = (
/obj/structure/stairs{
@@ -3729,168 +2968,105 @@
dir = 8;
layer = 2.7
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"als" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"alt" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"alu" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"alv" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_6"
- },
+/turf/open/mars_cave/mars_dirt_6,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"alw" = (
-/turf/open/floor/coagulation{
- icon_state = "0,8"
- },
+/turf/open/floor/coagulation/icon0_8,
/area/desert_dam/exterior/valley/valley_mining)
"alx" = (
-/turf/open/floor/coagulation{
- icon_state = "5,8"
- },
+/turf/open/floor/coagulation/icon5_8,
/area/desert_dam/exterior/valley/valley_mining)
"aly" = (
/obj/structure/closet/crate,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alz" = (
/obj/structure/surface/rack,
/obj/item/device/multitool,
/obj/item/storage/belt/utility/full,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alA" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
/obj/item/device/t_scanner,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alB" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
/obj/item/tool/hand_labeler,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alC" = (
/obj/structure/surface/rack,
/obj/item/tool/shovel/snow,
/obj/item/tool/shovel/snow,
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alD" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/east,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"alE" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/north,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"alF" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alG" = (
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alH" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alI" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"alJ" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/west,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"alK" = (
/obj/structure/closet/secure_closet/scientist,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"alL" = (
/obj/structure/closet/secure_closet/scientist,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"alM" = (
/obj/structure/closet/secure_closet/scientist,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"alN" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/east,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"alO" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"alP" = (
/obj/structure/window/framed/chigusa,
@@ -3904,9 +3080,7 @@
dir = 4;
layer = 2.7
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"alR" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -3920,41 +3094,29 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"alT" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"alU" = (
/obj/structure/flora/grass/desert/lightgrass_9,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"alV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"alW" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/exterior/valley/valley_wilderness)
"alX" = (
/obj/effect/decal/warning_stripes{
@@ -3965,21 +3127,14 @@
name = "\improper Hangar Shutters"
},
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"alY" = (
-/turf/open/floor/coagulation{
- icon_state = "4,8"
- },
+/turf/open/floor/coagulation/icon4_8,
/area/desert_dam/exterior/valley/valley_mining)
"alZ" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"ama" = (
/obj/structure/pipes/vents/pump{
@@ -3990,19 +3145,14 @@
"amb" = (
/obj/structure/surface/table/reinforced,
/obj/item/alienjar,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"amd" = (
/obj/structure/platform,
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"ame" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"amf" = (
/obj/structure/platform{
@@ -4016,14 +3166,10 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_northwest)
"amh" = (
-/turf/open/floor/coagulation{
- icon_state = "6,8-2"
- },
+/turf/open/floor/coagulation/icon6_8_2,
/area/desert_dam/exterior/valley/valley_mining)
"ami" = (
-/turf/open/floor/coagulation{
- icon_state = "7,8-2"
- },
+/turf/open/floor/coagulation/icon7_8_2,
/area/desert_dam/exterior/valley/valley_mining)
"amj" = (
/obj/structure/platform_decoration{
@@ -4063,32 +3209,23 @@
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"amo" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"amp" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"amq" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
name = "\improper Containment Lock";
unacidable = 0
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"amr" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"ams" = (
/obj/effect/decal/warning_stripes{
@@ -4099,10 +3236,7 @@
name = "\improper Hangar Shutters"
},
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"amt" = (
/obj/structure/desertdam/decals/road_edge{
@@ -4116,56 +3250,36 @@
dir = 8
},
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"amv" = (
/obj/effect/blocker/toxic_water/Group_2,
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_north)
"amw" = (
/turf/closed/wall/r_wall/bunker/floodgate,
/area/desert_dam/exterior/river/riverside_central_north)
"amx" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"amy" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/east,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"amz" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"amA" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"amB" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/north,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"amC" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"amD" = (
/obj/structure/machinery/light{
@@ -4177,46 +3291,31 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Isolation Chamber"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"amF" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"amG" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"amH" = (
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"amI" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"amJ" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/interior/caves/east_caves)
"amK" = (
/obj/structure/desertdam/decals/road_edge{
@@ -4231,10 +3330,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"amM" = (
/obj/structure/desertdam/decals/road_edge{
@@ -4247,15 +3343,10 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_northwest)
"amO" = (
-/turf/open/floor/coagulation{
- icon_state = "8,8"
- },
+/turf/open/floor/coagulation/icon8_8,
/area/desert_dam/exterior/valley/valley_mining)
"amP" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_northwest)
"amQ" = (
/obj/structure/flora/bush/desert/cactus{
@@ -4279,38 +3370,27 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_north)
"amT" = (
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/desert_dam/exterior/valley/valley_mining)
"amU" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"amV" = (
/obj/structure/surface/table/reinforced,
/obj/structure/xenoautopsy/tank{
icon_state = "jar_sample"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"amW" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/north,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"amX" = (
/obj/structure/machinery/power/apc{
@@ -4318,63 +3398,42 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"amY" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"amZ" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
- },
+/turf/open/mars_cave/mars_dirt_4,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"ana" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"anb" = (
/obj/structure/flora/grass/desert/lightgrass_6,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"anc" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/interior/dam_interior/west_tunnel)
"and" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"ane" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/west_tunnel)
"anf" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/west,
/area/desert_dam/interior/dam_interior/hanger)
"ang" = (
/obj/effect/decal/warning_stripes{
@@ -4388,57 +3447,39 @@
/area/desert_dam/exterior/valley/north_valley_dam)
"anh" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/landing_pad_one)
"ani" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/north_valley_dam)
"anj" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"ank" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_medical)
"anl" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"anm" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"ann" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/west,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"ano" = (
-/turf/open/floor/coagulation{
- icon_state = "1,7"
- },
+/turf/open/floor/coagulation/icon1_7,
/area/desert_dam/building/water_treatment_two)
"anp" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -4447,15 +3488,10 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/interior/dam_interior/west_tunnel)
"anq" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"anr" = (
/obj/structure/machinery/power/apc{
@@ -4463,10 +3499,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/west_tunnel)
"ans" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
@@ -4475,15 +3508,11 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/west_tunnel)
"ant" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"anu" = (
/obj/structure/flora/bush/desert{
@@ -4492,9 +3521,7 @@
/turf/open/desert/dirt,
/area/desert_dam/interior/caves/central_caves)
"anv" = (
-/turf/open/floor/prison{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"anx" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -4502,16 +3529,10 @@
id = "dam_checkpoint_northeast";
name = "\improper Checkpoint Lock"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"any" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"anz" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -4523,23 +3544,16 @@
name = "\improper Checkpoint Lock"
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"anA" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/interior/caves/east_caves)
"anB" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/interior/caves/east_caves)
"anC" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -4547,15 +3561,11 @@
id = "dam_checkpoint_northeast";
name = "\improper Checkpoint Lock"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"anD" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"anE" = (
/obj/structure/flora/grass/desert/lightgrass_6,
@@ -4566,22 +3576,15 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_northwest)
"anG" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"anH" = (
/obj/structure/xenoautopsy/tank,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"anI" = (
/obj/structure/xenoautopsy/tank/hugger,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"anJ" = (
/obj/structure/sign/safety/restrictedarea,
@@ -4594,23 +3597,14 @@
"anK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"anL" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"anM" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"anN" = (
/obj/structure/surface/table,
@@ -4618,19 +3612,13 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"anO" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Containment"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"anP" = (
/turf/closed/wall/r_wall/bunker,
@@ -4641,23 +3629,17 @@
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"anR" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"anS" = (
/obj/structure/surface/table/reinforced,
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"anT" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/revolver/cmb,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"anU" = (
/obj/structure/surface/table/reinforced,
@@ -4665,23 +3647,14 @@
name = "Security Cameras - Research";
network = list("chigusa_3")
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"anV" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"anX" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"anY" = (
/obj/structure/machinery/power/apc{
@@ -4689,50 +3662,33 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"anZ" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aoa" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aob" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aoc" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aod" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aoe" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"aof" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -4743,10 +3699,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aoi" = (
/turf/closed/wall/hangar{
@@ -4763,25 +3716,19 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aoq" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"aor" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aos" = (
/obj/structure/pipes/vents/pump{
@@ -4790,9 +3737,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aot" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4801,18 +3746,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aou" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/disposalpipe/junction,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aov" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4822,9 +3763,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aow" = (
/turf/closed/wall/r_wall/bunker,
@@ -4835,9 +3774,7 @@
/area/desert_dam/exterior/valley/north_valley_dam)
"aoy" = (
/obj/item/trash/hotdog,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"aoz" = (
/turf/open/desert/rock,
@@ -4845,149 +3782,98 @@
"aoA" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/guestpass,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aoB" = (
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/interior/dam_interior/west_tunnel)
"aoC" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aoD" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_northwest)
"aoE" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_northwest)
"aoF" = (
/obj/structure/surface/table/reinforced,
/obj/item/ammo_magazine/shotgun/incendiary,
/obj/item/ammo_magazine/shotgun/incendiary,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aoG" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_northwest)
"aoH" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/desert_dam/interior/dam_interior/west_tunnel)
"aoI" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
name = "\improper Containment Lock";
unacidable = 0
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aoJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aoK" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aoL" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aoM" = (
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aoN" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aoO" = (
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aoP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aoQ" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aoR" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aoS" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aoT" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aoU" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Security"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aoV" = (
/turf/open/asphalt/cement,
@@ -4998,37 +3884,24 @@
dir = 1;
icon_state = "pipe-j2"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aoX" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aoY" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/interior/dam_interior/hanger)
"aoZ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/west,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"apb" = (
/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz1{
pixel_y = 32
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"apc" = (
/obj/structure/flora/grass/desert/lightgrass_2,
@@ -5038,39 +3911,25 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"ape" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"apf" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/west,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"apg" = (
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"aph" = (
-/turf/open/floor/prison{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"api" = (
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"apj" = (
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"apk" = (
/obj/effect/landmark/monkey_spawn,
@@ -5079,40 +3938,25 @@
"apl" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"apm" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"apn" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"apo" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Security Armoury"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"app" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"apq" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"apr" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -5123,30 +3967,19 @@
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"apt" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/valley_northwest)
"apu" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_northwest)
"apv" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"apw" = (
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"apx" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -5155,15 +3988,10 @@
name = "\improper Checkpoint Lock";
unacidable = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"apy" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"apz" = (
/obj/structure/desertdam/decals/road_edge{
@@ -5182,47 +4010,30 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_northwest)
"apB" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"apD" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"apF" = (
-/turf/open/floor/prison{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"apH" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"apI" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"apJ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/interior/caves/east_caves)
"apK" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"apL" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -5237,14 +4048,10 @@
/turf/open/desert/desert_shore/shore_corner2,
/area/desert_dam/interior/caves/east_caves)
"apN" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/interior/caves/east_caves)
"apO" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_northwest)
"apP" = (
/obj/structure/flora/grass/desert/lightgrass_7,
@@ -5255,10 +4062,7 @@
/turf/open/desert/desert_shore/desert_shore1,
/area/desert_dam/interior/caves/east_caves)
"apS" = (
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"apT" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -5268,17 +4072,13 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"apV" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"apW" = (
/turf/closed/wall/r_wall/chigusa,
@@ -5288,36 +4088,25 @@
dir = 1;
name = "\improper Research Hallway"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"apY" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"apZ" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"aqa" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aqb" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"aqc" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5326,10 +4115,7 @@
/turf/open/floor/interior/wood,
/area/desert_dam/building/bar/backroom)
"aqd" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqe" = (
/obj/structure/machinery/power/apc{
@@ -5337,10 +4123,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqf" = (
/obj/structure/desertdam/decals/road_edge,
@@ -5354,19 +4137,14 @@
/area/desert_dam/exterior/valley/valley_northwest)
"aqi" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqk" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aql" = (
/obj/effect/decal/warning_stripes{
@@ -5381,9 +4159,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"aqn" = (
/obj/effect/decal/cleanable/dirt,
@@ -5397,9 +4173,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/interior/caves/east_caves)
"aqq" = (
/turf/open/desert/desert_shore/desert_shore1,
@@ -5411,41 +4185,28 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqt" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqu" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqv" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqw" = (
/obj/structure/stairs{
dir = 8
},
/obj/structure/platform,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_medical)
"aqx" = (
/obj/structure/surface/table/reinforced,
@@ -5453,16 +4214,10 @@
name = "Security Cameras - Research";
network = list("chigusa_3")
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqy" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_northwest)
"aqz" = (
/obj/structure/flora/grass/desert/lightgrass_9,
@@ -5473,34 +4228,24 @@
name = "\improper Lobby"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/lobby)
"aqB" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/lab_northeast/east_lab_maintenence)
"aqC" = (
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_maintenence)
"aqD" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqE" = (
/obj/effect/blocker/toxic_water/Group_1,
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_north)
"aqF" = (
/obj/structure/machinery/disposal,
@@ -5508,76 +4253,51 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/exterior/valley/valley_wilderness)
"aqG" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/exterior/valley/valley_wilderness)
"aqH" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/exterior/valley/valley_wilderness)
"aqI" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/exterior/valley/valley_wilderness)
"aqJ" = (
/turf/closed/wall/r_wall/chigusa,
/area/desert_dam/interior/lab_northeast/east_lab_maintenence)
"aqK" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"aqL" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqM" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"aqN" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqO" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"aqP" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Security Office"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqQ" = (
/turf/closed/wall/r_wall,
@@ -5587,17 +4307,13 @@
dir = 8;
pixel_x = 24
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/interior/dam_interior/west_tunnel)
"aqS" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached20"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached20,
/area/desert_dam/exterior/valley/valley_labs)
"aqT" = (
/obj/structure/desertdam/decals/road_edge,
@@ -5611,39 +4327,26 @@
dir = 1;
name = "\improper Security Armoury"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqV" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/donut_box,
/obj/item/reagent_container/food/snacks/donut,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqW" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aqX" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/interior/caves/east_caves)
"aqY" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/east_caves)
"aqZ" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -5651,9 +4354,7 @@
id = "dam_checkpoint_northeast";
name = "\improper Checkpoint Lock"
},
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"ara" = (
/obj/effect/decal/warning_stripes{
@@ -5665,10 +4366,7 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"arc" = (
/obj/structure/machinery/light{
@@ -5677,18 +4375,13 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ard" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"are" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5697,9 +4390,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"arf" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -5708,9 +4399,7 @@
name = "\improper Checkpoint Lock";
unacidable = 0
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"arg" = (
/obj/structure/disposalpipe/segment{
@@ -5719,40 +4408,28 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"arh" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"ari" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/west_tunnel)
"arj" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/west_tunnel)
"ark" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"arl" = (
/obj/structure/machinery/power/apc{
@@ -5760,17 +4437,11 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"arm" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"arn" = (
/obj/structure/surface/table/reinforced,
@@ -5782,30 +4453,20 @@
pixel_y = 3
},
/obj/item/tool/stamp,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aro" = (
/obj/structure/machinery/sentry_holder/colony{
dir = 4;
pixel_x = -24
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/west_tunnel)
"arp" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/interior/dam_interior/hanger)
"arq" = (
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"arr" = (
/obj/structure/machinery/power/apc{
@@ -5813,41 +4474,27 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"ars" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_northwest)
"art" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/lobby)
"aru" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Lobby"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/lobby)
"arv" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_medical)
"arw" = (
/obj/structure/fence,
@@ -5855,18 +4502,14 @@
/area/desert_dam/exterior/river/riverside_east)
"arx" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/floor/filtrationside{
- dir = 1
- },
+/turf/open/floor/filtrationside/north,
/area/desert_dam/exterior/valley/valley_mining)
"ary" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"arz" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
@@ -5876,48 +4519,32 @@
name = "\improper Checkpoint Lock"
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"arA" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/interior/caves/east_caves)
"arB" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"arC" = (
/obj/structure/surface/rack,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"arD" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"arE" = (
/obj/structure/sink,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"arF" = (
/turf/closed/wall/r_wall/bunker,
@@ -5928,25 +4555,16 @@
dir = 1;
pixel_y = 25
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"arH" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"arI" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"arJ" = (
/obj/structure/window/framed/chigusa,
@@ -5958,10 +4576,7 @@
},
/obj/structure/surface/table,
/obj/item/tool/surgery/retractor,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"arL" = (
/turf/open/floor/prison,
@@ -5973,38 +4588,26 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Security"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"arR" = (
/obj/structure/prop/dam/large_boulder/boulder2,
/turf/open/desert/rock,
/area/desert_dam/exterior/valley/bar_valley_dam)
"arS" = (
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/dam_interior/south_tunnel)
"arT" = (
-/turf/open/desert/rock/deep/transition{
- dir = 6
- },
+/turf/open/desert/rock/deep/transition/southeast,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"arU" = (
/obj/structure/disposalpipe/junction,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"arV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/prop/dam/truck/damaged,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"arZ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -6034,21 +4637,14 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_northwest)
"asf" = (
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/interior/dam_interior/hanger)
"asg" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/desert_dam/interior/dam_interior/hanger)
"ash" = (
/obj/structure/fence,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_telecoms)
"asl" = (
/obj/structure/platform,
@@ -6060,33 +4656,22 @@
"asm" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/guestpass,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"asn" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aso" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 2;
name = "\improper Research Substation"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/substation/northeast)
"asq" = (
/obj/structure/machinery/light,
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"asr" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -6096,9 +4681,7 @@
dir = 1;
pixel_y = -10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached17"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached17,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"ass" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -6108,9 +4691,7 @@
/area/desert_dam/interior/caves/east_caves)
"ast" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/east_caves)
"asu" = (
/obj/structure/prop/dam/boulder/boulder1,
@@ -6121,24 +4702,18 @@
dir = 1;
name = "\improper Security Checkpoint"
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"asw" = (
/obj/structure/window/framed/bunker/reinforced,
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"asx" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"asy" = (
/obj/structure/platform_decoration,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"asz" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -6147,14 +4722,10 @@
name = "\improper Checkpoint Lock";
unacidable = 0
},
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"asA" = (
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"asB" = (
/obj/structure/window/framed/bunker/reinforced,
@@ -6168,22 +4739,14 @@
/obj/structure/machinery/door/window/southleft{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"asD" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"asE" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"asF" = (
/obj/effect/decal/sand_overlay/sand2{
@@ -6195,23 +4758,16 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"asH" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door_control,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"asI" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"asJ" = (
/obj/structure/surface/table/reinforced,
@@ -6219,30 +4775,21 @@
name = "Security Cameras - Research";
network = list("chigusa_3")
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"asL" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"asM" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/desert_dam/building/substation/northeast)
"asN" = (
/obj/structure/machinery/sentry_holder/colony{
dir = 1;
pixel_y = -10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached17"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached17,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"asO" = (
/obj/structure/surface/table,
@@ -6254,9 +4801,7 @@
/area/desert_dam/building/water_treatment_two/floodgate_control)
"asP" = (
/obj/structure/flora/grass/desert/lightgrass_6,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"asQ" = (
/obj/structure/surface/table,
@@ -6268,10 +4813,7 @@
/obj/structure/shuttle/diagonal{
icon_state = "swall_f6"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"asS" = (
/obj/structure/surface/table,
@@ -6286,26 +4828,17 @@
/turf/open/gm/river/desert/deep,
/area/desert_dam/exterior/river/riverside_east)
"asW" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/desert_dam/building/substation/northeast)
"asX" = (
/obj/structure/machinery/power/smes/batteryrack/substation,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/desert_dam/building/substation/northeast)
"asY" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/desert_dam/building/substation/northeast)
"asZ" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -6325,9 +4858,7 @@
/obj/structure/machinery/door/window/southleft{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"atb" = (
/obj/structure/flora/bush/desert/cactus/multiple{
@@ -6336,17 +4867,13 @@
/turf/open/desert/dirt,
/area/desert_dam/interior/caves/east_caves)
"atc" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_mining)
"atd" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/east_caves)
"ate" = (
/obj/structure/stairs{
@@ -6355,9 +4882,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"atf" = (
/obj/structure/flora/tree/joshua,
@@ -6365,33 +4890,24 @@
/area/desert_dam/interior/caves/east_caves)
"atg" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/lobby)
"ath" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_wilderness)
"ati" = (
/obj/structure/machinery/sentry_holder/colony{
dir = 8;
pixel_x = 24
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached20"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached20,
/area/desert_dam/interior/dam_interior/west_tunnel)
"atj" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/prison,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"atk" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"atl" = (
/turf/open/desert/rock/deep,
@@ -6401,10 +4917,7 @@
/obj/item/stack/sheet/mineral/phoron{
amount = 50
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/building/substation/northeast)
"atn" = (
/obj/structure/window/framed/chigusa,
@@ -6414,49 +4927,35 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/west_tunnel)
"atp" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"atq" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Research Hallway"
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"atr" = (
/turf/open/desert/rock/deep/transition,
/area/desert_dam/interior/dam_interior/south_tunnel)
"ats" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"att" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/west_tunnel)
"atu" = (
-/turf/open/floor/coagulation{
- icon_state = "8,7-2"
- },
+/turf/open/floor/coagulation/icon8_7_2,
/area/desert_dam/exterior/valley/valley_mining)
"atv" = (
/obj/structure/surface/table/reinforced,
@@ -6513,9 +5012,7 @@
/obj/structure/filtration/coagulation{
icon_state = "2,7"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/building/water_treatment_two)
"atB" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -6541,19 +5038,14 @@
dir = 4;
pixel_x = -24
},
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/interior/dam_interior/west_tunnel)
"atE" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Security"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"atF" = (
/obj/structure/disposalpipe/segment,
@@ -6561,10 +5053,7 @@
dir = 1;
name = "\improper Security"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"atG" = (
/obj/structure/machinery/power/apc{
@@ -6572,30 +5061,20 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/desert_dam/building/substation/northeast)
"atH" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/west_tunnel)
"atI" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/interior/dam_interior/west_tunnel)
"atJ" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"atK" = (
/obj/structure/machinery/power/apc{
@@ -6603,15 +5082,10 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"atL" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_wilderness)
"atM" = (
/obj/effect/decal/warning_stripes{
@@ -6625,32 +5099,24 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"atO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"atP" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"atQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"atS" = (
/obj/effect/decal/sand_overlay/sand2{
@@ -6659,10 +5125,7 @@
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_maintenence)
"atT" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"atU" = (
/obj/effect/decal/sand_overlay/sand2{
@@ -6671,10 +5134,7 @@
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_maintenence)
"atV" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/substation/northeast)
"atW" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -6710,27 +5170,16 @@
/obj/structure/machinery/power/terminal{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/substation/northeast)
"aub" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/desert_dam/building/substation/northeast)
"auc" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/building/substation/northeast)
"aud" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"aue" = (
/obj/structure/machinery/power/apc{
@@ -6738,19 +5187,14 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"auf" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "\improper Research Workshop"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"aug" = (
/obj/structure/window/framed/chigusa,
@@ -6760,9 +5204,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper RnD"
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"aui" = (
/obj/structure/desertdam/decals/road_edge{
@@ -6774,70 +5216,43 @@
"auj" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"auk" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"aul" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"aum" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"aun" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"auo" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/interior/dam_interior/west_tunnel)
"aup" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/east,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"auq" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"aur" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/north,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"aus" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"aut" = (
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/dam_interior/west_tunnel)
"auu" = (
/obj/structure/flora/grass/desert/lightgrass_3,
@@ -6850,9 +5265,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_medical)
"auw" = (
/obj/structure/machinery/power/apc{
@@ -6860,10 +5273,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"aux" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
@@ -6886,40 +5296,27 @@
/area/desert_dam/building/substation/northeast)
"auB" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"auC" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"auD" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"auE" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"auF" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"auG" = (
/turf/open/desert/rock,
@@ -6928,38 +5325,25 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/west_tunnel)
"auI" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"auK" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"auL" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"auM" = (
/obj/structure/machinery/cm_vending/sorted/tech/science{
req_one_access = null
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"auN" = (
/obj/structure/desertdam/decals/road_edge,
@@ -6967,19 +5351,13 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/north_valley_dam)
"auP" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"auQ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"auR" = (
/obj/structure/machinery/power/apc{
@@ -6987,28 +5365,17 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"auS" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/north,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"auT" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"auV" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"auW" = (
/obj/structure/sign/safety/restrictedarea,
@@ -7025,17 +5392,13 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_medical)
"auY" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_medical)
"auZ" = (
/obj/structure/surface/rack,
@@ -7044,44 +5407,29 @@
/area/desert_dam/building/water_treatment_two/floodgate_control)
"ava" = (
/obj/structure/toilet,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"avb" = (
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/dam_interior/west_tunnel)
"avc" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/interior/dam_interior/west_tunnel)
"ave" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"avf" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"avg" = (
/obj/structure/disposalpipe/junction{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"avh" = (
/obj/structure/disposalpipe/segment{
@@ -7093,10 +5441,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"avj" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -7104,44 +5449,31 @@
id = null;
name = "\improper Elevator Lock"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/shuttle/trijent_shuttle/engi)
"avk" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/interior/dam_interior/west_tunnel)
"avl" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"avm" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement13"
- },
+/turf/open/asphalt/cement/cement13,
/area/desert_dam/interior/dam_interior/west_tunnel)
"avn" = (
/obj/structure/closet/secure_closet/security,
/obj/item/clothing/suit/armor/vest/security,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"avo" = (
/obj/structure/surface/table/reinforced,
@@ -7149,10 +5481,7 @@
name = "Security Cameras - Research";
network = list("chigusa_3")
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"avp" = (
/obj/structure/surface/table,
@@ -7160,33 +5489,23 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/floodgate_control)
"avq" = (
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"avr" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"avt" = (
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"avu" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/interior/caves/east_caves)
"avv" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/floodgate_control)
"avw" = (
/obj/structure/machinery/light{
@@ -7197,67 +5516,46 @@
"avx" = (
/obj/structure/machinery/r_n_d/protolathe,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"avy" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"avz" = (
/obj/structure/disposalpipe/junction{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"avA" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"avB" = (
/obj/structure/machinery/autolathe,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"avC" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_northwest)
"avD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"avE" = (
/obj/structure/machinery/sentry_holder/colony{
pixel_y = 26
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"avF" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"avG" = (
/turf/closed/wall/r_wall/chigusa,
@@ -7270,67 +5568,46 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Research Hallway"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"avJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"avK" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"avL" = (
/obj/structure/machinery/r_n_d/destructive_analyzer,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"avM" = (
/obj/structure/machinery/computer/WYresearch,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"avN" = (
/obj/structure/machinery/r_n_d/protolathe,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"avO" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"avP" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2;
name = "\improper Toilet Unit"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"avQ" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/desert_dam/building/substation/northeast)
"avR" = (
/obj/effect/decal/sand_overlay/sand2{
@@ -7339,17 +5616,13 @@
/obj/structure/machinery/sentry_holder/colony{
pixel_y = 26
},
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"avS" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/desert/rock/deep/transition{
- dir = 4
- },
+/turf/open/desert/rock/deep/transition/east,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"avT" = (
/obj/structure/platform{
@@ -7359,51 +5632,34 @@
/turf/open/gm/river/desert/deep,
/area/desert_dam/exterior/river/riverside_east)
"avU" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/desert_dam/building/substation/northeast)
"avV" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/desert_dam/building/substation/northeast)
"avW" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/building/substation/northeast)
"avX" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"avY" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/west,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"avZ" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/interior/dam_interior/west_tunnel)
"awa" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement13"
- },
+/turf/open/asphalt/cement/cement13,
/area/desert_dam/interior/dam_interior/west_tunnel)
"awb" = (
/obj/structure/machinery/power/apc{
@@ -7411,36 +5667,24 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"awc" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"awd" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"awe" = (
/obj/structure/machinery/r_n_d/circuit_imprinter,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"awf" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"awg" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
@@ -7449,19 +5693,13 @@
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_maintenence)
"awh" = (
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"awi" = (
-/turf/open/desert/rock/deep/transition{
- dir = 4
- },
+/turf/open/desert/rock/deep/transition/east,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"awj" = (
-/turf/open/desert/rock/deep/transition{
- dir = 5
- },
+/turf/open/desert/rock/deep/transition/northeast,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"awk" = (
/obj/structure/prop/dam/large_boulder{
@@ -7470,9 +5708,7 @@
/turf/open/desert/rock,
/area/desert_dam/exterior/valley/bar_valley_dam)
"awl" = (
-/turf/open/desert/rock/deep/transition{
- dir = 5
- },
+/turf/open/desert/rock/deep/transition/northeast,
/area/desert_dam/interior/dam_interior/workshop)
"awm" = (
/obj/structure/platform{
@@ -7486,35 +5722,24 @@
dir = 4
},
/obj/structure/platform,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"awo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_mining)
"awp" = (
/obj/structure/flora/grass/desert/lightgrass_8,
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/dam_interior/west_tunnel)
"awq" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/dam_interior/west_tunnel)
"awr" = (
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"aws" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
@@ -7524,46 +5749,30 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awu" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awv" = (
/obj/structure/prop/dam/drill,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aww" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awx" = (
/turf/open/floor,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awy" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/north,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awz" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"awA" = (
/obj/structure/surface/table,
@@ -7572,79 +5781,52 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"awB" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"awC" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"awD" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"awE" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"awF" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Research Workshop"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"awG" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"awH" = (
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"awI" = (
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"awJ" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/light,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"awK" = (
/obj/structure/platform,
@@ -7658,15 +5840,10 @@
/turf/closed/wall/r_wall/prison,
/area/desert_dam/building/security/detective)
"awN" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awO" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awP" = (
/obj/structure/bed/chair{
@@ -7675,137 +5852,94 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awQ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awR" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"awS" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awT" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awU" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "3,7"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/building/water_treatment_two)
"awV" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awW" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"awX" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"awY" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Security Checkpoint"
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"awZ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Restroom"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"axa" = (
-/turf/open/floor{
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"axb" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"axc" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"axe" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/west,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"axf" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"axg" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"axh" = (
/obj/structure/machinery/light,
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"axi" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_labs)
"axj" = (
/turf/open/desert/desert_shore/shore_edge1,
@@ -7819,15 +5953,11 @@
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"axm" = (
/obj/structure/platform,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/valley/valley_labs)
"axn" = (
/obj/structure/platform,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/valley/valley_labs)
"axo" = (
/obj/structure/desertdam/decals/road_edge{
@@ -7845,10 +5975,7 @@
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_maintenence)
"axr" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/west,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"axs" = (
/obj/effect/decal/sand_overlay/sand2{
@@ -7857,10 +5984,7 @@
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_maintenence)
"axt" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"axu" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -7868,18 +5992,14 @@
},
/obj/structure/disposalpipe/segment,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"axv" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Lobby"
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"axw" = (
/obj/structure/surface/table/reinforced/prison{
@@ -7889,10 +6009,7 @@
desc = "A bizarre alien device used for trapping and killing prey.";
name = "Alien Mine"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"axx" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -7906,35 +6023,21 @@
id = "dam_checkpoint_northeast";
name = "Checkpoint Lockdown"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"axz" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/interior/caves/east_caves)
"axA" = (
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"axB" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"axC" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/interior/caves/east_caves)
"axD" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -7943,9 +6046,7 @@
/turf/open/desert/rock,
/area/desert_dam/exterior/valley/valley_crashsite)
"axE" = (
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"axF" = (
/turf/closed/wall/r_wall/prison,
@@ -7954,9 +6055,7 @@
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/toolbox,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"axH" = (
/obj/structure/surface/table/reinforced,
@@ -7968,10 +6067,7 @@
/obj/item/stack/sheet/glass{
amount = 30
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"axI" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -7992,9 +6088,7 @@
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"axM" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"axN" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -8002,31 +6096,19 @@
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"axO" = (
/obj/structure/platform,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/desert_dam/exterior/valley/valley_labs)
"axP" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/exterior/valley/valley_wilderness)
"axQ" = (
-/turf/open/floor/prison{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"axR" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"axS" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"axT" = (
/turf/open/desert/rock/deep/transition,
@@ -8035,43 +6117,29 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement7"
- },
+/turf/open/asphalt/cement/cement7,
/area/desert_dam/exterior/valley/valley_wilderness)
"axV" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement7"
- },
+/turf/open/asphalt/cement/cement7,
/area/desert_dam/exterior/valley/valley_wilderness)
"axW" = (
/obj/structure/bookcase/manuals/research_and_development,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"axX" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"axY" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/valley_northwest)
"axZ" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_northwest)
"aya" = (
/obj/structure/window/framed/prison/reinforced,
@@ -8080,33 +6148,25 @@
"ayb" = (
/obj/structure/closet/secure_closet/scientist,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayd" = (
/obj/structure/showcase{
icon_state = "mechfab1"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"aye" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/pod/old{
name = "Personal Computer"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayf" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayg" = (
/obj/structure/surface/table,
@@ -8122,35 +6182,25 @@
/obj/structure/surface/table,
/obj/item/tool/pen,
/obj/item/paper_bundle,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayj" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayk" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayl" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"aym" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayo" = (
/obj/item/reagent_container/glass/bucket/mopbucket,
@@ -8158,26 +6208,20 @@
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayp" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/exterior/valley/valley_wilderness)
"ayr" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ays" = (
/obj/structure/bed/chair/comfy/beige{
dir = 1
},
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/caves/temple)
"ayt" = (
/obj/structure/janitorialcart,
@@ -8187,22 +6231,15 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayv" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayw" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/desert_dam/building/security/lobby)
"ayx" = (
/obj/structure/surface/rack,
@@ -8210,32 +6247,21 @@
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayz" = (
/obj/structure/showcase,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet6-2"
- },
+/turf/open/floor/carpet6_2/west,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayA" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
dir = 2;
name = "\improper Research Office"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayB" = (
/obj/structure/machinery/computer/aifixer,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"ayC" = (
-/turf/open/desert/rock/deep/transition{
- dir = 9
- },
+/turf/open/desert/rock/deep/transition/northwest,
/area/desert_dam/interior/caves/temple)
"ayD" = (
/turf/open/desert/rock/deep/transition,
@@ -8243,166 +6269,106 @@
"ayE" = (
/obj/structure/closet/secure_closet/RD,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"ayF" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/guestpass,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"ayG" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tech_supply,
/obj/item/phone,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"ayH" = (
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/caves/temple)
"ayI" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"ayJ" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"ayK" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayL" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/east,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayM" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayN" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 10
},
-/turf/open/asphalt/cement{
- icon_state = "cement7"
- },
+/turf/open/asphalt/cement/cement7,
/area/desert_dam/exterior/valley/valley_wilderness)
"ayO" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayP" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayS" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayT" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"ayU" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"ayV" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
/obj/item/disk/nuclear,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"ayW" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"ayX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ayZ" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"aza" = (
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_labs)
"azb" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"azc" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"azd" = (
/obj/structure/machinery/power/apc{
@@ -8410,44 +6376,32 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"azf" = (
/obj/structure/closet/firecloset,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/desert_dam/building/administration/control_room)
"azg" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"azh" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"azi" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"azj" = (
/obj/structure/machinery/door/airlock/almayer/research/glass/colony{
@@ -8456,95 +6410,64 @@
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"azk" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"azl" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"azm" = (
/obj/structure/lamarr,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"azo" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"azp" = (
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"azq" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"azr" = (
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/desert_dam/exterior/valley/valley_mining)
"azs" = (
-/turf/open/desert/rock/deep/transition{
- dir = 9
- },
+/turf/open/desert/rock/deep/transition/northwest,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"azt" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"azu" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/asphalt/cement{
- icon_state = "cement7"
- },
+/turf/open/asphalt/cement/cement7,
/area/desert_dam/exterior/valley/valley_wilderness)
"azv" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement7"
- },
+/turf/open/asphalt/cement/cement7,
/area/desert_dam/exterior/valley/valley_wilderness)
"azw" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"azx" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"azy" = (
/obj/structure/pipes/vents/pump{
@@ -8554,25 +6477,17 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"azz" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/exterior/valley/valley_wilderness)
"azA" = (
-/turf/open/desert/rock/deep/transition{
- dir = 9
- },
+/turf/open/desert/rock/deep/transition/northwest,
/area/desert_dam/exterior/valley/valley_wilderness)
"azB" = (
-/turf/open/desert/rock/deep/transition{
- dir = 4
- },
+/turf/open/desert/rock/deep/transition/east,
/area/desert_dam/interior/caves/temple)
"azC" = (
/obj/structure/prop/brazier/torch,
@@ -8592,43 +6507,32 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/exterior/valley/valley_wilderness)
"azG" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/exterior/valley/valley_wilderness)
"azH" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/exterior/valley/valley_wilderness)
"azI" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/exterior/valley/valley_wilderness)
"azJ" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/desert_dam/interior/dam_interior/atmos_storage)
"azK" = (
/obj/structure/platform{
@@ -8643,9 +6547,7 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/exterior/valley/valley_wilderness)
"azN" = (
/obj/structure/disposalpipe/segment{
@@ -8658,9 +6560,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"azP" = (
/obj/structure/flora/grass/tallgrass/desert/corner,
@@ -8674,9 +6574,7 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/exterior/valley/valley_wilderness)
"azS" = (
/obj/structure/disposalpipe/segment,
@@ -8726,28 +6624,20 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_wilderness)
"aAb" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/exterior/valley/valley_wilderness)
"aAc" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/exterior/valley/valley_wilderness)
"aAe" = (
/turf/open/desert/excavation/component8,
/area/desert_dam/exterior/valley/valley_crashsite)
"aAf" = (
-/turf/open/desert/excavation/component8{
- dir = 1
- },
+/turf/open/desert/excavation/component8/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aAg" = (
-/turf/open/desert/excavation/component8{
- dir = 4
- },
+/turf/open/desert/excavation/component8/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aAh" = (
/obj/structure/machinery/colony_floodlight,
@@ -8764,14 +6654,10 @@
/turf/open/desert/rock,
/area/desert_dam/exterior/valley/valley_wilderness)
"aAk" = (
-/turf/open/desert/excavation/component8{
- dir = 8
- },
+/turf/open/desert/excavation/component8/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aAl" = (
-/turf/open/desert/excavation/component8{
- dir = 6
- },
+/turf/open/desert/excavation/component8/southeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aAm" = (
/obj/structure/platform{
@@ -8797,9 +6683,7 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/exterior/valley/valley_wilderness)
"aAr" = (
/obj/structure/prop/dam/boulder/boulder2,
@@ -8809,9 +6693,7 @@
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/exterior/valley/valley_wilderness)
"aAt" = (
/obj/effect/decal/sand_overlay/sand2{
@@ -8837,39 +6719,28 @@
/area/desert_dam/interior/caves/central_caves)
"aAx" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/exterior/valley/valley_wilderness)
"aAy" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_medical)
"aAz" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/central_caves)
"aAA" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/central_caves)
"aAB" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/valley/valley_labs)
"aAC" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -8884,9 +6755,7 @@
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/exterior/valley/valley_wilderness)
"aAE" = (
/obj/structure/platform{
@@ -8901,92 +6770,65 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/excavation/component8{
- dir = 10
- },
+/turf/open/desert/excavation/component8/southwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"aAG" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/interior/caves/central_caves)
"aAH" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/interior/caves/central_caves)
"aAI" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/interior/caves/central_caves)
"aAJ" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/interior/caves/central_caves)
"aAK" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/central_caves)
"aAL" = (
/obj/structure/prop/dam/large_boulder/boulder2,
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/interior/caves/central_caves)
"aAM" = (
-/turf/open/desert/excavation/component8{
- dir = 5
- },
+/turf/open/desert/excavation/component8/northeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aAN" = (
/turf/open/gm/river/desert/shallow_corner,
/area/desert_dam/interior/caves/central_caves)
"aAO" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/interior/caves/central_caves)
"aAP" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/interior/caves/central_caves)
"aAQ" = (
/obj/structure/machinery/sentry_holder/colony{
dir = 1;
pixel_y = -10
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aAR" = (
/obj/structure/machinery/sentry_holder/colony{
dir = 1;
pixel_y = -10
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aAS" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
/obj/structure/machinery/light,
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aAT" = (
/obj/effect/decal/warning_stripes{
@@ -9006,22 +6848,16 @@
/area/desert_dam/exterior/valley/valley_wilderness)
"aAV" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"aAW" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/interior/caves/central_caves)
"aAX" = (
/turf/open/gm/river/desert/deep,
/area/desert_dam/interior/caves/central_caves)
"aAY" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/central_caves)
"aAZ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -9039,25 +6875,19 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/exterior/valley/valley_wilderness)
"aBc" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_wilderness)
"aBd" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/central_caves)
"aBe" = (
/turf/open/desert/desert_shore/shore_edge1,
@@ -9066,23 +6896,17 @@
/turf/open/desert/desert_shore/shore_corner2,
/area/desert_dam/interior/caves/central_caves)
"aBg" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/interior/caves/central_caves)
"aBh" = (
/turf/open/gm/river/desert/shallow_edge,
/area/desert_dam/interior/caves/central_caves)
"aBi" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/interior/caves/central_caves)
"aBj" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/exterior/valley/valley_wilderness)
"aBk" = (
/turf/open/floor/sandstone/runed,
@@ -9118,10 +6942,7 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 1
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aBq" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -9162,14 +6983,10 @@
/area/desert_dam/exterior/valley/valley_wilderness)
"aBv" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_wilderness)
"aBw" = (
-/turf/open/desert/excavation/component8{
- dir = 9
- },
+/turf/open/desert/excavation/component8/northwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"aBx" = (
/obj/structure/desertdam/decals/road_stop{
@@ -9182,9 +6999,7 @@
/turf/open/desert/excavation/component9,
/area/desert_dam/exterior/valley/valley_crashsite)
"aBA" = (
-/turf/open/desert/excavation/component9{
- dir = 1
- },
+/turf/open/desert/excavation/component9/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aBB" = (
/obj/structure/prop/dam/large_boulder/boulder2,
@@ -9196,9 +7011,7 @@
/area/desert_dam/interior/caves/central_caves)
"aBD" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/exterior/valley/valley_wilderness)
"aBE" = (
/turf/open/desert/rock,
@@ -9213,26 +7026,19 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement13"
- },
+/turf/open/asphalt/cement/cement13,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aBH" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aBI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/exterior/valley/valley_wilderness)
"aBJ" = (
/obj/structure/disposalpipe/segment{
@@ -9241,9 +7047,7 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/exterior/valley/valley_wilderness)
"aBK" = (
/obj/structure/desertdam/decals/road_edge,
@@ -9257,9 +7061,7 @@
/area/desert_dam/interior/caves/temple)
"aBO" = (
/obj/structure/platform_decoration/mineral/sandstone/runed,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/interior/caves/temple)
"aBQ" = (
/obj/effect/decal/warning_stripes{
@@ -9271,34 +7073,23 @@
/obj/structure/platform/mineral/sandstone/runed{
dir = 4
},
-/turf/open/desert/desert_shore/shore_corner1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner1/west,
/area/desert_dam/interior/caves/temple)
"aBS" = (
-/turf/open/desert/rock/deep{
- icon_state = "rock4"
- },
+/turf/open/desert/rock/deep/rock4,
/area/desert_dam/interior/caves/temple)
"aBT" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_wilderness)
"aBU" = (
/turf/open/desert/rock/deep,
/area/desert_dam/interior/caves/temple)
"aBV" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"aBW" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/desert_dam/interior/caves/temple)
"aBX" = (
/obj/structure/machinery/colony_floodlight,
@@ -9311,22 +7102,16 @@
/obj/structure/machinery/sentry_holder/colony{
pixel_y = 26
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached20"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached20,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aBZ" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/dam_interior/workshop)
"aCa" = (
/obj/structure/machinery/sentry_holder/colony{
pixel_y = 26
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aCb" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
@@ -9335,55 +7120,39 @@
/turf/open/asphalt/cement,
/area/desert_dam/exterior/valley/valley_wilderness)
"aCc" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aCd" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/valley_labs)
"aCe" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aCf" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/floor{
- icon_state = "neutral"
- },
+/turf/open/floor/neutral,
/area/desert_dam/interior/dam_interior/engine_room)
"aCg" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aCh" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_wilderness)
"aCi" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_wilderness)
"aCj" = (
/obj/structure/disposalpipe/segment,
@@ -9397,9 +7166,7 @@
/turf/open/floor/interior/wood,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aCm" = (
-/turf/open/desert/excavation/component9{
- dir = 4
- },
+/turf/open/desert/excavation/component9/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aCn" = (
/obj/structure/bed,
@@ -9410,9 +7177,7 @@
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aCo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_mining)
"aCp" = (
/obj/structure/desertdam/decals/road_stop{
@@ -9424,17 +7189,13 @@
"aCq" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"aCr" = (
/turf/closed/wall/r_wall/chigusa,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"aCs" = (
-/turf/open/desert/excavation/component9{
- dir = 8
- },
+/turf/open/desert/excavation/component9/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aCt" = (
/obj/structure/closet/cabinet,
@@ -9457,9 +7218,7 @@
/turf/open/floor/interior/wood,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aCz" = (
-/turf/open/desert/excavation/component9{
- dir = 6
- },
+/turf/open/desert/excavation/component9/southeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aCA" = (
/turf/open/floor/interior/wood,
@@ -9482,30 +7241,18 @@
"aCD" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/donut_box,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aCE" = (
/obj/structure/machinery/microwave,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aCF" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aCG" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"aCI" = (
/obj/effect/decal/cleanable/dirt,
@@ -9515,19 +7262,14 @@
/turf/open/floor/interior/wood/alt,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aCK" = (
-/turf/open/desert/excavation/component9{
- dir = 10
- },
+/turf/open/desert/excavation/component9/southwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"aCL" = (
/obj/effect/decal/cleanable/blood,
/turf/open/floor/interior/wood/alt,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aCM" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aCN" = (
/obj/effect/decal/cleanable/dirt,
@@ -9544,9 +7286,7 @@
/turf/open/floor/interior/wood/alt,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aCP" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/west_tunnel)
"aCQ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -9555,9 +7295,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_wilderness)
"aCR" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/west_tunnel)
"aCS" = (
/obj/structure/window/framed/colony/reinforced,
@@ -9565,10 +7303,7 @@
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aCU" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aCV" = (
/obj/item/ammo_magazine/pistol/holdout,
@@ -9629,21 +7364,14 @@
/area/desert_dam/exterior/valley/valley_northwest)
"aDe" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"aDf" = (
-/turf/open/floor/filtrationside{
- dir = 8
- },
+/turf/open/floor/filtrationside/west,
/area/desert_dam/exterior/valley/valley_medical)
"aDg" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDh" = (
/obj/effect/decal/cleanable/blood,
@@ -9681,19 +7409,13 @@
/obj/structure/surface/table,
/obj/item/stack/medical/bruise_pack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDo" = (
/obj/structure/surface/table,
/obj/item/tool/pickaxe/drill,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDp" = (
/obj/structure/surface/table/woodentable,
@@ -9719,20 +7441,14 @@
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDt" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDu" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDv" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"aDw" = (
/obj/structure/barricade/wooden,
@@ -9760,9 +7476,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_crashsite)
"aDA" = (
/obj/structure/barricade/wooden,
@@ -9778,9 +7492,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDC" = (
/obj/structure/desertdam/decals/road_edge{
@@ -9814,9 +7526,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDG" = (
/obj/effect/decal/cleanable/dirt,
@@ -9829,9 +7539,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDI" = (
/obj/structure/disposalpipe/segment{
@@ -9844,39 +7552,29 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDK" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDL" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aDM" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDN" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDO" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -9885,9 +7583,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDP" = (
/turf/open/asphalt/cement_sunbleached,
@@ -9897,9 +7593,7 @@
dir = 8;
pixel_x = 24
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDR" = (
/obj/structure/machinery/power/apc{
@@ -9907,18 +7601,14 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDS" = (
/obj/structure/machinery/sentry_holder/colony{
dir = 4;
pixel_x = -24
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aDT" = (
/turf/closed/wall/hangar{
@@ -9929,24 +7619,17 @@
/area/shuttle/trijent_shuttle/omega)
"aDU" = (
/obj/structure/flora/tree/joshua,
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_medical)
"aDV" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"aDY" = (
/obj/structure/prop/dam/boulder/boulder3,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_crashsite)
"aDZ" = (
/obj/structure/platform,
@@ -9976,9 +7659,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"aEf" = (
/obj/structure/platform,
@@ -10024,9 +7705,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEn" = (
/obj/effect/decal/warning_stripes{
@@ -10038,24 +7717,17 @@
"aEp" = (
/obj/structure/prop/dam/boulder/boulder3,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_wilderness)
"aEq" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEr" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEs" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -10063,10 +7735,7 @@
id = null;
name = "\improper Elevator Lock"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/shuttle/trijent_shuttle/omega)
"aEu" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -10079,10 +7748,7 @@
pixel_y = 32;
shuttleId = "trijentshuttle22"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/exterior/valley/valley_medical)
"aEv" = (
/obj/structure/stairs{
@@ -10091,9 +7757,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEw" = (
/obj/structure/stairs{
@@ -10102,44 +7766,31 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEx" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEy" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEz" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEA" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEB" = (
/obj/structure/prop/dam/boulder/boulder1,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEC" = (
/obj/structure/machinery/power/apc{
@@ -10156,18 +7807,13 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/exterior/valley/valley_medical)
"aED" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_northwest)
"aEE" = (
/obj/effect/decal/warning_stripes{
@@ -10180,9 +7826,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_northwest)
"aEG" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile{
@@ -10219,9 +7863,7 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10231,9 +7873,7 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/floor{
- icon_state = "neutral"
- },
+/turf/open/floor/neutral,
/area/desert_dam/interior/dam_interior/engine_room)
"aEN" = (
/obj/structure/platform{
@@ -10257,9 +7897,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEQ" = (
/obj/structure/desertdam/decals/road_stop{
@@ -10282,52 +7920,35 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_crashsite)
"aET" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEU" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEV" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEW" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEX" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEY" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_crashsite)
"aEZ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_crashsite)
"aFa" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -10344,14 +7965,10 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_crashsite)
"aFd" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aFe" = (
-/turf/open/desert/rock/deep/transition{
- dir = 9
- },
+/turf/open/desert/rock/deep/transition/northwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"aFf" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
@@ -10362,31 +7979,23 @@
/obj/structure/filtration/coagulation{
icon_state = "6,7"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/building/water_treatment_two)
"aFh" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/dam_interior/workshop)
"aFi" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"aFj" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_crashsite)
"aFk" = (
/obj/structure/flora/grass/desert/lightgrass_7,
@@ -10412,30 +8021,20 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_crashsite)
"aFp" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 5
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_crashsite)
"aFq" = (
/obj/structure/prop/dam/boulder/boulder3,
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aFr" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aFs" = (
/obj/structure/desertdam/decals/road_edge{
@@ -10448,9 +8047,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_northwest)
"aFu" = (
/obj/structure/prop/dam/large_boulder/boulder1,
@@ -10458,23 +8055,17 @@
/area/desert_dam/exterior/valley/valley_northwest)
"aFv" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_telecoms)
"aFw" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/exterior/valley/valley_telecoms)
"aFx" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/exterior/valley/valley_telecoms)
"aFy" = (
/obj/effect/decal/cleanable/dirt,
@@ -10487,10 +8078,7 @@
/area/desert_dam/interior/caves/central_caves)
"aFA" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"aFB" = (
/obj/structure/machinery/light,
@@ -10501,9 +8089,7 @@
dir = 8;
pixel_x = 24
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aFC" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -10512,9 +8098,7 @@
pixel_x = -24
},
/obj/structure/machinery/light,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aFD" = (
/obj/structure/desertdam/decals/road_edge,
@@ -10530,30 +8114,21 @@
/area/desert_dam/interior/dam_interior/south_tunnel)
"aFF" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_east_hallway)
"aFG" = (
/obj/structure/flora/grass/desert/lightgrass_2,
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_medical)
"aFH" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_medical)
"aFI" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_medical)
"aFJ" = (
/obj/structure/surface/table/almayer,
@@ -10571,17 +8146,12 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"aFM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/medical_pod/autodoc,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/emergency_room)
"aFN" = (
/obj/structure/flora/bush/desert/cactus/multiple{
@@ -10617,15 +8187,11 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_crashsite)
"aFU" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/interior/caves/central_caves)
"aFV" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"aFW" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
@@ -10684,10 +8250,7 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGg" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/interior/caves/central_caves)
"aGh" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -10696,9 +8259,7 @@
/turf/open/desert/dirt,
/area/desert_dam/interior/caves/central_caves)
"aGi" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGj" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -10720,9 +8281,7 @@
/area/desert_dam/exterior/valley/valley_crashsite)
"aGm" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/desert_dam/exterior/valley/valley_mining)
"aGn" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -10747,9 +8306,7 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGs" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/interior/caves/central_caves)
"aGt" = (
/obj/structure/prop/dam/wide_boulder/boulder1,
@@ -10759,9 +8316,7 @@
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGv" = (
/obj/structure/flora/bush/desert/cactus{
@@ -10770,9 +8325,7 @@
/turf/open/desert/dirt,
/area/desert_dam/interior/caves/central_caves)
"aGw" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGx" = (
/obj/structure/desertdam/decals/road_edge{
@@ -10799,9 +8352,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGC" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -10815,14 +8366,10 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGE" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGF" = (
/obj/structure/flora/bush/desert/cactus{
@@ -10840,15 +8387,10 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_wilderness)
"aGH" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGI" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/interior/caves/central_caves)
"aGJ" = (
/obj/structure/flora/grass/desert/lightgrass_9,
@@ -10871,9 +8413,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGN" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -10889,34 +8429,21 @@
/turf/open/desert/rock/deep,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"aGQ" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/interior/caves/central_caves)
"aGR" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/interior/caves/central_caves)
"aGS" = (
/obj/structure/prop/dam/boulder/boulder2,
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGT" = (
/obj/structure/surface/table,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGU" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGV" = (
/obj/structure/flora/bush/desert/cactus/multiple{
@@ -10926,15 +8453,10 @@
/area/desert_dam/exterior/valley/valley_crashsite)
"aGW" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aGX" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/interior/caves/central_caves)
"aGY" = (
/obj/effect/landmark/yautja_teleport,
@@ -10946,16 +8468,11 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHb" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHc" = (
/obj/structure/prop/dam/boulder/boulder2,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/interior/caves/central_caves)
"aHd" = (
/obj/structure/desertdam/decals/road_edge{
@@ -10970,9 +8487,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHf" = (
/obj/structure/desertdam/decals/road_edge{
@@ -10984,16 +8499,10 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"aHg" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"aHh" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"aHi" = (
/obj/structure/machinery/light,
@@ -11010,85 +8519,55 @@
dir = 1;
pixel_y = -10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"aHk" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northwest,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aHl" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aHm" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aHn" = (
/obj/structure/machinery/vending/hydroseeds,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aHo" = (
/obj/structure/machinery/centrifuge,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aHp" = (
/obj/structure/machinery/biogenerator,
-/turf/open/floor{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/green/north,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aHq" = (
/obj/structure/machinery/seed_extractor,
-/turf/open/floor{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/green/north,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aHr" = (
/obj/structure/machinery/botany/extractor,
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aHs" = (
/obj/structure/machinery/vending/hydronutrients,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aHt" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/northeast,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aHu" = (
/obj/structure/desertdam/decals/road_edge,
@@ -11105,15 +8584,10 @@
dir = 1;
pixel_y = -10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"aHw" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"aHx" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -11125,24 +8599,18 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHz" = (
/obj/structure/flora/grass/desert/lightgrass_3,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHA" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHB" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHC" = (
/obj/structure/flora/grass/desert/lightgrass_2,
@@ -11161,10 +8629,7 @@
/area/desert_dam/exterior/valley/valley_crashsite)
"aHF" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/east,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"aHG" = (
/obj/structure/flora/grass/desert/heavygrass_3,
@@ -11174,9 +8639,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHI" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -11187,36 +8650,28 @@
"aHJ" = (
/obj/structure/surface/table,
/obj/item/tool/shovel,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHK" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"aHM" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHN" = (
/obj/structure/flora/grass/desert/heavygrass_3,
@@ -11224,18 +8679,14 @@
/area/desert_dam/interior/caves/central_caves)
"aHP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aHQ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHR" = (
/obj/structure/flora/bush/desert/cactus{
@@ -11252,16 +8703,12 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHU" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHV" = (
/obj/structure/surface/table,
/obj/item/tool/pickaxe/hammer,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aHW" = (
/obj/structure/flora/grass/desert/lightgrass_4,
@@ -11280,9 +8727,7 @@
/obj/structure/machinery/sentry_holder/colony{
pixel_y = 26
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached20"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached20,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"aHZ" = (
/obj/structure/platform_decoration{
@@ -11294,9 +8739,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_northwest)
"aIb" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -11308,9 +8751,7 @@
/obj/structure/machinery/sentry_holder/colony{
pixel_y = 26
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"aId" = (
/obj/structure/machinery/colony_floodlight,
@@ -11321,25 +8762,17 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aIf" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aIg" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aIh" = (
/obj/structure/platform{
@@ -11349,9 +8782,7 @@
/turf/open/gm/river/desert/deep,
/area/desert_dam/exterior/river/riverside_central_south)
"aIi" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached20"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached20,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"aIj" = (
/obj/structure/platform_decoration{
@@ -11367,14 +8798,10 @@
/turf/open/desert/excavation/component1,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIm" = (
-/turf/open/desert/excavation/component1{
- dir = 1
- },
+/turf/open/desert/excavation/component1/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIn" = (
-/turf/open/desert/excavation/component1{
- dir = 4
- },
+/turf/open/desert/excavation/component1/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIo" = (
/obj/effect/landmark/monkey_spawn,
@@ -11391,19 +8818,13 @@
/turf/open/desert/rock/deep,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"aIr" = (
-/turf/open/desert/excavation/component1{
- dir = 8
- },
+/turf/open/desert/excavation/component1/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIs" = (
-/turf/open/desert/excavation/component1{
- dir = 6
- },
+/turf/open/desert/excavation/component1/southeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIt" = (
-/turf/open/desert/excavation/component1{
- dir = 10
- },
+/turf/open/desert/excavation/component1/southwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIu" = (
/obj/structure/flora/grass/desert/lightgrass_8,
@@ -11416,23 +8837,17 @@
/turf/closed/wall/r_wall/chigusa,
/area/desert_dam/building/substation/northeast)
"aIx" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIy" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIA" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIB" = (
/obj/structure/stairs{
@@ -11441,15 +8856,11 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIC" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/desert/excavation/component1{
- dir = 5
- },
+/turf/open/desert/excavation/component1/northeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aID" = (
/obj/structure/stairs{
@@ -11458,9 +8869,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIE" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -11469,30 +8878,21 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIF" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIG" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIH" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aII" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIJ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -11507,26 +8907,16 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_northwest)
"aIL" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/north,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aIM" = (
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aIN" = (
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aIO" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/west,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aIP" = (
/obj/structure/platform{
@@ -11541,24 +8931,18 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIR" = (
/obj/structure/stairs{
dir = 4
},
/obj/structure/platform,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIS" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_north)
"aIT" = (
/obj/structure/stairs,
@@ -11571,41 +8955,29 @@
/turf/open/desert/excavation/component2,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIV" = (
-/turf/open/desert/excavation/component2{
- dir = 1
- },
+/turf/open/desert/excavation/component2/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIW" = (
/obj/structure/stairs{
dir = 8
},
/obj/structure/platform,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIX" = (
-/turf/open/desert/excavation/component2{
- dir = 4
- },
+/turf/open/desert/excavation/component2/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIY" = (
-/turf/open/desert/excavation/component2{
- dir = 8
- },
+/turf/open/desert/excavation/component2/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aIZ" = (
-/turf/open/desert/excavation/component2{
- dir = 6
- },
+/turf/open/desert/excavation/component2/southeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJa" = (
/turf/open/desert/excavation/component4,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJb" = (
-/turf/open/desert/excavation/component4{
- dir = 1
- },
+/turf/open/desert/excavation/component4/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJc" = (
/turf/open/gm/river/desert/shallow,
@@ -11618,9 +8990,7 @@
/turf/open/floor/plating,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"aJf" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/interior/caves/central_caves)
"aJg" = (
/obj/item/tool/shovel,
@@ -11640,72 +9010,48 @@
/turf/open/desert/excavation/component3,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJk" = (
-/turf/open/desert/excavation/component3{
- dir = 1
- },
+/turf/open/desert/excavation/component3/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJl" = (
-/turf/open/desert/excavation/component3{
- dir = 4
- },
+/turf/open/desert/excavation/component3/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJm" = (
/obj/structure/flora/tree/joshua,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_northwest)
"aJn" = (
-/turf/open/desert/excavation/component3{
- dir = 8
- },
+/turf/open/desert/excavation/component3/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJo" = (
-/turf/open/desert/excavation/component4{
- dir = 4
- },
+/turf/open/desert/excavation/component4/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJp" = (
-/turf/open/desert/excavation/component4{
- dir = 8
- },
+/turf/open/desert/excavation/component4/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJq" = (
-/turf/open/desert/excavation/component4{
- dir = 6
- },
+/turf/open/desert/excavation/component4/southeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJr" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aJs" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/east,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aJt" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aJu" = (
/turf/closed/wall,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aJv" = (
/obj/structure/machinery/light,
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/dam_interior/workshop)
"aJw" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aJx" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -11737,81 +9083,54 @@
/turf/open/desert/desert_shore/desert_shore1,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJC" = (
-/turf/open/desert/excavation/component3{
- dir = 6
- },
+/turf/open/desert/excavation/component3/southeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJD" = (
-/turf/open/desert/excavation/component3{
- dir = 10
- },
+/turf/open/desert/excavation/component3/southwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJE" = (
-/turf/open/desert/excavation/component3{
- dir = 5
- },
+/turf/open/desert/excavation/component3/northeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJF" = (
/turf/open/desert/excavation/component5,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJG" = (
-/turf/open/desert/excavation/component5{
- dir = 1
- },
+/turf/open/desert/excavation/component5/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJH" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/interior/caves/central_caves)
"aJI" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/central_caves)
"aJJ" = (
-/turf/open/desert/excavation/component5{
- dir = 4
- },
+/turf/open/desert/excavation/component5/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJK" = (
-/turf/open/desert/excavation/component5{
- dir = 8
- },
+/turf/open/desert/excavation/component5/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJL" = (
/obj/structure/prop/dam/boulder/boulder2,
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJM" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJN" = (
/obj/structure/platform,
-/turf/open/desert/excavation/component5{
- dir = 6
- },
+/turf/open/desert/excavation/component5/southeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJO" = (
/obj/structure/platform,
-/turf/open/desert/excavation/component5{
- dir = 10
- },
+/turf/open/desert/excavation/component5/southwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJP" = (
/obj/structure/platform,
-/turf/open/desert/excavation/component5{
- dir = 5
- },
+/turf/open/desert/excavation/component5/northeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJQ" = (
/turf/open/desert/desert_shore/desert_shore1,
@@ -11820,9 +9139,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/central_caves)
"aJS" = (
/obj/structure/flora/grass/desert/lightgrass_12,
@@ -11834,48 +9151,33 @@
/area/desert_dam/interior/caves/central_caves)
"aJU" = (
/obj/structure/prop/dam/large_boulder/boulder2,
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/interior/caves/central_caves)
"aJV" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJW" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJX" = (
/obj/structure/prop/dam/boulder/boulder3,
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJY" = (
/turf/open/desert/excavation/component6,
/area/desert_dam/exterior/valley/valley_crashsite)
"aJZ" = (
-/turf/open/desert/excavation/component6{
- dir = 1
- },
+/turf/open/desert/excavation/component6/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKa" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/desert/excavation/component6{
- dir = 4
- },
+/turf/open/desert/excavation/component6/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKb" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -11888,15 +9190,11 @@
/area/desert_dam/exterior/valley/valley_telecoms)
"aKc" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"aKd" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/central_caves)
"aKe" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -11905,25 +9203,17 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKf" = (
-/turf/open/desert/excavation/component6{
- dir = 8
- },
+/turf/open/desert/excavation/component6/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKg" = (
-/turf/open/desert/excavation/component6{
- dir = 6
- },
+/turf/open/desert/excavation/component6/southeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKh" = (
-/turf/open/desert/excavation/component6{
- dir = 10
- },
+/turf/open/desert/excavation/component6/southwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKi" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/desert/excavation/component6{
- dir = 5
- },
+/turf/open/desert/excavation/component6/northeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKj" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -11933,16 +9223,11 @@
/area/desert_dam/exterior/valley/valley_crashsite)
"aKk" = (
/obj/structure/prop/dam/boulder/boulder3,
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_telecoms)
"aKl" = (
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"aKm" = (
/obj/structure/flora/bush/desert{
@@ -11952,9 +9237,7 @@
/area/desert_dam/exterior/valley/valley_civilian)
"aKn" = (
/obj/structure/stairs,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_telecoms)
"aKo" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -11963,18 +9246,14 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_cargo)
"aKp" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "\improper Xenoflora"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aKq" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -11983,23 +9262,17 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_cargo)
"aKs" = (
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/dam_interior/workshop)
"aKt" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"aKu" = (
/obj/structure/platform{
@@ -12011,9 +9284,7 @@
/area/desert_dam/exterior/river/riverside_central_south)
"aKv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_medical)
"aKw" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -12021,32 +9292,22 @@
/area/desert_dam/exterior/river/riverside_central_north)
"aKx" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/river/riverside_central_north)
"aKy" = (
-/turf/open/desert/excavation/component7{
- dir = 1
- },
+/turf/open/desert/excavation/component7/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKz" = (
-/turf/open/desert/excavation/component7{
- dir = 4
- },
+/turf/open/desert/excavation/component7/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKA" = (
-/turf/open/desert/excavation/component7{
- dir = 8
- },
+/turf/open/desert/excavation/component7/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKB" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/central_caves)
"aKC" = (
/obj/structure/flora/bush/desert/cactus{
@@ -12102,34 +9363,24 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/desert/excavation/component7{
- dir = 6
- },
+/turf/open/desert/excavation/component7/southeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKM" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/desert/excavation/component7{
- dir = 10
- },
+/turf/open/desert/excavation/component7/southwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKN" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/desert/excavation/component7{
- dir = 5
- },
+/turf/open/desert/excavation/component7/northeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aKO" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/interior/caves/central_caves)
"aKP" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/central_caves)
"aKQ" = (
/obj/structure/platform{
@@ -12161,9 +9412,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"aKU" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -12172,15 +9421,11 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"aKV" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aKW" = (
/obj/structure/desertdam/decals/road_edge{
@@ -12193,10 +9438,7 @@
/area/desert_dam/exterior/valley/valley_northwest)
"aKX" = (
/obj/effect/landmark/queen_spawn,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/interior/caves/east_caves)
"aKY" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -12205,16 +9447,11 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/landing_pad_two)
"aKZ" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/east,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aLa" = (
/obj/structure/machinery/landinglight/ds1/delaythree,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/landing_pad_one)
"aLb" = (
/obj/structure/machinery/power/apc{
@@ -12222,22 +9459,14 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aLc" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aLd" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/river/riverside_central_north)
"aLe" = (
/obj/structure/platform{
@@ -12254,31 +9483,23 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLg" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLh" = (
-/turf/open/floor/coagulation{
- icon_state = "0,4"
- },
+/turf/open/floor/coagulation/icon0_4,
/area/desert_dam/exterior/valley/valley_mining)
"aLi" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLj" = (
/obj/effect/decal/warning_stripes{
@@ -12286,9 +9507,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLk" = (
/obj/effect/decal/warning_stripes{
@@ -12297,65 +9516,47 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLl" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLm" = (
/obj/structure/machinery/sensortower,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLn" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLo" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLp" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLq" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLr" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLs" = (
/obj/effect/decal/warning_stripes{
@@ -12365,17 +9566,13 @@
icon_state = "S"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLt" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLu" = (
/obj/effect/decal/warning_stripes{
@@ -12384,15 +9581,11 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLv" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_labs)
"aLw" = (
/obj/structure/stairs,
@@ -12400,44 +9593,33 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLx" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLy" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_two)
"aLz" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLA" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLB" = (
/obj/structure/platform_decoration{
@@ -12446,9 +9628,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLC" = (
/obj/structure/platform{
@@ -12466,10 +9646,7 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLF" = (
/obj/structure/platform{
@@ -12490,9 +9667,7 @@
/area/desert_dam/exterior/valley/valley_crashsite)
"aLH" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/lab_northeast/east_lab_RND)
"aLI" = (
/obj/effect/decal/cleanable/dirt,
@@ -12509,35 +9684,23 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_two)
"aLL" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southwest,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aLM" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aLN" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aLO" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/southeast,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aLP" = (
/turf/closed/wall/hangar{
@@ -12573,17 +9736,13 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLU" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_crashsite)
"aLV" = (
/obj/structure/girder/displaced,
@@ -12615,14 +9774,10 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Xenoflora"
},
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aMb" = (
-/turf/open/floor{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/whitegreenfull,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"aMc" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -12631,9 +9786,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aMd" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -12674,18 +9827,14 @@
/obj/structure/filtration/coagulation{
icon_state = "1,5"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/building/water_treatment_two)
"aMm" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"aMn" = (
/obj/structure/platform{
@@ -12693,9 +9842,7 @@
},
/obj/effect/blocker/toxic_water/Group_2,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"aMo" = (
/obj/structure/cargo_container/trijent/left/alt,
@@ -12710,18 +9857,14 @@
/turf/open/floor/plating,
/area/desert_dam/exterior/valley/valley_crashsite)
"aMr" = (
-/turf/open/floor/coagulation{
- icon_state = "7,7-2"
- },
+/turf/open/floor/coagulation/icon7_7_2,
/area/desert_dam/building/water_treatment_two)
"aMs" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "6,6"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/building/water_treatment_two)
"aMt" = (
/obj/effect/decal/warning_stripes{
@@ -12739,22 +9882,15 @@
"aMv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/vending/sovietsoda,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/warehouse)
"aMw" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/warehouse/warehouse)
"aMx" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/building/water_treatment_two)
"aMy" = (
/obj/structure/disposalpipe/segment{
@@ -12774,10 +9910,7 @@
"aMA" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/building/substation/northeast)
"aMB" = (
/obj/structure/machinery/power/apc{
@@ -12785,54 +9918,38 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/northeast)
"aMC" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_medical)
"aMD" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"aME" = (
-/turf/open/floor/filtrationside{
- dir = 10
- },
+/turf/open/floor/filtrationside/southwest,
/area/desert_dam/exterior/valley/valley_medical)
"aMF" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/warehouse/warehouse)
"aMG" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/northeast)
"aMH" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aMI" = (
/obj/structure/sign/poster,
@@ -12854,16 +9971,11 @@
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/northeast)
"aML" = (
/obj/structure/machinery/light,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aMM" = (
/obj/structure/flora/bush/desert{
@@ -12873,17 +9985,13 @@
/area/desert_dam/exterior/landing_pad_two)
"aMN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"aMO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_northwest)
"aMP" = (
/obj/structure/disposalpipe/segment{
@@ -12895,27 +10003,21 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/stool,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"aMR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/conveyor_switch{
id = "cargo_storage"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"aMS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"aMT" = (
/obj/effect/decal/warning_stripes{
@@ -12936,70 +10038,48 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_medical)
"aMW" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"aMX" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/northeast)
"aMY" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "7,6"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/building/water_treatment_two)
"aMZ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/floor/coagulation{
- icon_state = "8,4"
- },
+/turf/open/floor/coagulation/icon8_4,
/area/desert_dam/exterior/valley/valley_mining)
"aNa" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/desert_dam/exterior/valley/valley_mining)
"aNb" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/northeast)
"aNc" = (
/obj/structure/machinery/power/smes/batteryrack/substation,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/northeast)
"aNd" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/desert_dam/building/substation/northeast)
"aNe" = (
/obj/structure/machinery/conveyor{
@@ -13022,10 +10102,7 @@
"aNg" = (
/obj/structure/surface/table,
/obj/item/clothing/head/welding,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/substation/northeast)
"aNh" = (
/turf/open/floor/prison,
@@ -13036,9 +10113,7 @@
/area/desert_dam/building/substation/northeast)
"aNj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_medical)
"aNk" = (
/obj/structure/machinery/power/terminal{
@@ -13047,10 +10122,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/substation/northeast)
"aNl" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/building/substation/northeast)
"aNm" = (
/obj/structure/machinery/conveyor{
@@ -13082,14 +10154,10 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"aNp" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_northwest)
"aNq" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -13104,42 +10172,28 @@
/area/desert_dam/exterior/valley/valley_medical)
"aNs" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/administration/control_room)
"aNt" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/administration/control_room)
"aNu" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/administration/control_room)
"aNv" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_one)
"aNw" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/substation/northeast)
"aNx" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -13149,10 +10203,7 @@
/turf/open/floor/plating,
/area/desert_dam/exterior/landing_pad_two)
"aNy" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/floodgate_control)
"aNz" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -13177,16 +10228,11 @@
/turf/open/floor/plating,
/area/desert_dam/building/substation/northeast)
"aND" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/desert_dam/building/security/lobby)
"aNE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_medical)
"aNF" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -13194,9 +10240,7 @@
/area/desert_dam/exterior/valley/valley_medical)
"aNG" = (
/obj/structure/machinery/light,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"aNH" = (
/turf/closed/wall/r_wall/prison,
@@ -13209,14 +10253,10 @@
/area/desert_dam/building/substation/northeast)
"aNJ" = (
/obj/structure/janitorialcart,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"aNK" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"aNL" = (
/obj/structure/desertdam/decals/road_stop{
@@ -13231,36 +10271,25 @@
/area/desert_dam/exterior/valley/valley_northwest)
"aNN" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/warehouse/warehouse)
"aNP" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_medical)
"aNQ" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/substation/northeast)
"aNR" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/building/substation/northeast)
"aNS" = (
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/floodgate_control)
"aNT" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_medical)
"aNU" = (
/obj/structure/window/framed/hangar/reinforced,
@@ -13270,10 +10299,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/warehouse/loading)
"aNY" = (
/obj/structure/sign/safety/restrictedarea,
@@ -13285,9 +10311,7 @@
/area/shuttle/trijent_shuttle/lz2)
"aNZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_medical)
"aOc" = (
/turf/closed/wall,
@@ -13297,9 +10321,7 @@
/obj/structure/filtration/coagulation{
icon_state = "1,2"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/building/water_treatment_two)
"aOe" = (
/obj/structure/desertdam/decals/road_edge{
@@ -13309,16 +10331,10 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
"aOf" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/valley_wilderness)
"aOg" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_wilderness)
"aOh" = (
/turf/open/desert/dirt,
@@ -13327,82 +10343,57 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_wilderness)
"aOj" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_wilderness)
"aOk" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_wilderness)
"aOl" = (
/obj/structure/filtration/flacculation_arm,
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/building/water_treatment_two)
"aOm" = (
-/turf/open/floor/filtrationside{
- dir = 9
- },
+/turf/open/floor/filtrationside/northwest,
/area/desert_dam/exterior/valley/valley_mining)
"aOn" = (
/obj/structure/surface/rack,
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/floodgate_control)
"aOo" = (
-/turf/open/floor/filtrationside{
- dir = 1
- },
+/turf/open/floor/filtrationside/north,
/area/desert_dam/exterior/valley/valley_mining)
"aOp" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/floor/coagulation{
- icon_state = "8,6"
- },
+/turf/open/floor/coagulation/icon8_6,
/area/desert_dam/exterior/valley/valley_mining)
"aOq" = (
/obj/effect/blocker/toxic_water,
-/turf/open/floor/filtrationside{
- dir = 1
- },
+/turf/open/floor/filtrationside/north,
/area/desert_dam/exterior/valley/valley_mining)
"aOr" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_medical)
"aOt" = (
/obj/structure/machinery/light,
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/floodgate_control)
"aOu" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"aOv" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "7,2"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/building/water_treatment_two)
"aOw" = (
/obj/structure/machinery/light{
@@ -13413,19 +10404,13 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/security/staffroom)
"aOx" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Floodgate Control"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/floodgate_control)
"aOy" = (
/turf/closed/wall/hangar{
@@ -13441,32 +10426,21 @@
name = "\improper Filtration"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aOB" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aOC" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/security/staffroom)
"aOD" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "2,1"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/building/water_treatment_two)
"aOE" = (
/obj/structure/machinery/light{
@@ -13475,10 +10449,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/purification)
"aOG" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_medical)
"aOH" = (
/turf/open/floor/prison,
@@ -13488,34 +10459,22 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/purification)
"aOK" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/desert_dam/building/substation/northwest)
"aOL" = (
-/turf/open/desert/rock/deep/transition{
- dir = 5
- },
+/turf/open/desert/rock/deep/transition/northeast,
/area/desert_dam/interior/dam_interior/north_tunnel)
"aOM" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/dam_interior/north_tunnel)
"aOO" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/desert_dam/building/substation/northwest)
"aOP" = (
/obj/structure/floodgate,
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/river_mouth/southern)
"aOQ" = (
/obj/structure/floodgate,
@@ -13526,9 +10485,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"aOS" = (
/obj/structure/machinery/light{
@@ -13538,14 +10495,10 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/purification)
"aOT" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_wilderness)
"aOU" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_wilderness)
"aOV" = (
/obj/structure/floodgate,
@@ -13558,101 +10511,65 @@
id = null;
name = "\improper Elevator Lock"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/shuttle/trijent_shuttle/lz2)
"aOY" = (
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_wilderness)
"aOZ" = (
-/turf/open/floor/coagulation{
- icon_state = "0,0"
- },
+/turf/open/floor/coagulation/icon0_0,
/area/desert_dam/exterior/valley/valley_mining)
"aPc" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aPd" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aPf" = (
-/turf/open/floor/coagulation{
- icon_state = "7,0"
- },
+/turf/open/floor/coagulation/icon7_0,
/area/desert_dam/exterior/valley/valley_mining)
"aPg" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_wilderness)
"aPh" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/floor/coagulation{
- icon_state = "8,0"
- },
+/turf/open/floor/coagulation/icon8_0,
/area/desert_dam/exterior/valley/valley_mining)
"aPi" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_wilderness)
"aPj" = (
-/turf/open/floor/coagulation{
- icon_state = "0,8"
- },
+/turf/open/floor/coagulation/icon0_8,
/area/desert_dam/building/water_treatment_two/purification)
"aPk" = (
-/turf/open/floor/filtrationside{
- dir = 8
- },
+/turf/open/floor/filtrationside/west,
/area/desert_dam/exterior/valley/valley_mining)
"aPl" = (
-/turf/open/floor/coagulation{
- icon_state = "1,1"
- },
+/turf/open/floor/coagulation/icon1_1,
/area/desert_dam/building/water_treatment_two)
"aPm" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "6,1"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/building/water_treatment_two)
"aPn" = (
-/turf/open/floor/coagulation{
- icon_state = "4,8"
- },
+/turf/open/floor/coagulation/icon4_8,
/area/desert_dam/building/water_treatment_two/purification)
"aPo" = (
-/turf/open/floor/coagulation{
- icon_state = "8,8"
- },
+/turf/open/floor/coagulation/icon8_8,
/area/desert_dam/building/water_treatment_two/purification)
"aPq" = (
/obj/structure/cargo_container/trijent/left/alt,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aPr" = (
/obj/structure/cargo_container/trijent/mid/alt,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aPs" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -13674,23 +10591,17 @@
/area/desert_dam/exterior/river/riverside_east)
"aPw" = (
/obj/structure/cargo_container/trijent/right/alt,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aPx" = (
/obj/structure/cargo_container/ferret/left,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aPy" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_medical)
"aPz" = (
/obj/structure/desertdam/decals/road_edge{
@@ -13712,45 +10623,29 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/landing_pad_one)
"aPC" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/landing_pad_one)
"aPD" = (
/turf/open/floor/plating,
/area/desert_dam/building/substation/northwest)
"aPE" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/building/substation/northwest)
"aPF" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/substation/northwest)
"aPG" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aPI" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/desert_dam/building/substation/northwest)
"aPJ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -13777,9 +10672,7 @@
layer = 2
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/desert_dam/building/water_treatment_two/purification)
"aPN" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -13789,14 +10682,10 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_wilderness)
"aPP" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_wilderness)
"aPQ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -13815,9 +10704,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
"aPS" = (
-/turf/open/desert/rock/deep/transition{
- dir = 9
- },
+/turf/open/desert/rock/deep/transition/northwest,
/area/desert_dam/interior/dam_interior/north_tunnel)
"aPT" = (
/obj/structure/desertdam/decals/road_edge{
@@ -13831,10 +10718,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
"aPU" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/garage)
"aPV" = (
/obj/structure/machinery/light{
@@ -13848,20 +10732,13 @@
/obj/item/tool/extinguisher{
pixel_x = -10
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/garage)
"aPW" = (
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/desert_dam/building/water_treatment_two/purification)
"aPX" = (
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/desert_dam/building/water_treatment_two/purification)
"aPY" = (
/obj/structure/desertdam/decals/road_edge{
@@ -13871,9 +10748,7 @@
/area/desert_dam/exterior/valley/valley_telecoms)
"aPZ" = (
/obj/structure/cargo_container/ferret/mid,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aQa" = (
/obj/structure/machinery/light{
@@ -13886,9 +10761,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_telecoms)
"aQc" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -13900,18 +10773,13 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Filtration"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aQe" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/landing_pad_one)
"aQf" = (
/obj/effect/decal/warning_stripes{
@@ -13941,17 +10809,13 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/landing_pad_one)
"aQj" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/landing_pad_one)
"aQk" = (
/obj/structure/machinery/power/apc{
@@ -13959,10 +10823,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/warehouse/loading)
"aQl" = (
/obj/structure/filtration/collector_pipes{
@@ -13979,49 +10840,34 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/southern_hallway)
"aQn" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_labs)
"aQo" = (
/obj/effect/blocker/toxic_water/Group_2,
/obj/structure/filtration/machine_96x96{
icon_state = "disinfection"
},
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/desert_dam/building/water_treatment_two/purification)
"aQp" = (
/obj/effect/blocker/toxic_water/Group_2/delay,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aQq" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_wilderness)
"aQr" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/desert_dam/building/water_treatment_two/purification)
"aQt" = (
/obj/effect/decal/cleanable/dirt,
@@ -14037,9 +10883,7 @@
/area/desert_dam/exterior/valley/valley_telecoms)
"aQv" = (
/obj/structure/cargo_container/ferret/right,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aQw" = (
/obj/structure/machinery/light{
@@ -14048,19 +10892,13 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/purification)
"aQx" = (
-/turf/open/floor/coagulation{
- icon_state = "0,0"
- },
+/turf/open/floor/coagulation/icon0_0,
/area/desert_dam/building/water_treatment_two/purification)
"aQz" = (
-/turf/open/floor/coagulation{
- icon_state = "2,0"
- },
+/turf/open/floor/coagulation/icon2_0,
/area/desert_dam/building/water_treatment_two/purification)
"aQB" = (
-/turf/open/floor/coagulation{
- icon_state = "8,0"
- },
+/turf/open/floor/coagulation/icon8_0,
/area/desert_dam/building/water_treatment_two/purification)
"aQC" = (
/obj/effect/decal/cleanable/dirt,
@@ -14075,15 +10913,10 @@
/area/desert_dam/exterior/valley/valley_telecoms)
"aQF" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/floor/coagulation{
- icon_state = "8,0"
- },
+/turf/open/floor/coagulation/icon8_0,
/area/desert_dam/building/water_treatment_two/purification)
"aQG" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/building/substation/northwest)
"aQH" = (
/obj/structure/disposalpipe/segment{
@@ -14093,10 +10926,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/southern_hallway)
"aQI" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -14111,35 +10941,25 @@
/area/desert_dam/exterior/valley/valley_telecoms)
"aQK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"aQL" = (
-/turf/open/floor/coagulation{
- icon_state = "6,8"
- },
+/turf/open/floor/coagulation/icon6_8,
/area/desert_dam/exterior/valley/valley_mining)
"aQM" = (
-/turf/open/floor/coagulation{
- icon_state = "7,8"
- },
+/turf/open/floor/coagulation/icon7_8,
/area/desert_dam/exterior/valley/valley_mining)
"aQN" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/floor/coagulation{
- icon_state = "8,8"
- },
+/turf/open/floor/coagulation/icon8_8,
/area/desert_dam/exterior/valley/valley_mining)
"aQO" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_medical)
"aQP" = (
/turf/closed/wall/hangar{
@@ -14157,9 +10977,7 @@
dir = 9
},
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/landing_pad_one)
"aQT" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -14171,9 +10989,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/landing_pad_one)
"aQU" = (
/obj/effect/decal/warning_stripes{
@@ -14191,49 +11007,30 @@
/turf/open/asphalt,
/area/desert_dam/exterior/landing_pad_one)
"aQX" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/landing_pad_one)
"aQY" = (
/obj/structure/machinery/floodlight/landing,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/landing_pad_one)
"aQZ" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/landing_pad_one)
"aRc" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/desert_dam/building/substation/northwest)
"aRd" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/desert_dam/building/substation/northwest)
"aRf" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/desert_dam/building/substation/northwest)
"aRg" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/desert_dam/building/substation/northwest)
"aRh" = (
/obj/structure/filtration/machine_96x96/filtration,
-/turf/open/floor/coagulation{
- icon_state = "4,8"
- },
+/turf/open/floor/coagulation/icon4_8,
/area/desert_dam/building/water_treatment_two/purification)
"aRi" = (
/obj/structure/stairs{
@@ -14242,33 +11039,25 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_wilderness)
"aRj" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_wilderness)
"aRk" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_wilderness)
"aRl" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aRp" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
@@ -14277,31 +11066,21 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/north_wing_hallway)
"aRq" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_medical)
"aRs" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_medical)
"aRt" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Toilet Unit"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/security/staffroom)
"aRu" = (
/obj/structure/toilet{
@@ -14310,37 +11089,25 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/security/staffroom)
"aRv" = (
/turf/closed/wall,
/area/desert_dam/interior/caves/east_caves)
"aRw" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/interior/caves/east_caves)
"aRx" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/interior/caves/east_caves)
"aRy" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_telecoms)
"aRz" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_medical)
"aRA" = (
/obj/structure/flora/tree/joshua,
@@ -14357,24 +11124,16 @@
/turf/open/gm/empty,
/area/shuttle/trijent_shuttle/lz2)
"aRC" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/desert_dam/building/substation/northwest)
"aRD" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/substation/northwest)
"aRE" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/desert_dam/building/substation/northwest)
"aRF" = (
/obj/structure/desertdam/decals/road_edge{
@@ -14387,24 +11146,18 @@
dir = 8
},
/obj/structure/platform,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_wilderness)
"aRI" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/floor/coagulation{
- icon_state = "8,8"
- },
+/turf/open/floor/coagulation/icon8_8,
/area/desert_dam/building/water_treatment_two/purification)
"aRJ" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "2,7"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/building/water_treatment_two)
"aRK" = (
/obj/structure/prop/dam/large_boulder/boulder2,
@@ -14412,22 +11165,13 @@
/area/desert_dam/exterior/valley/valley_medical)
"aRL" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/desert_dam/building/medical/emergency_room)
"aRM" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_wilderness)
"aRN" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/valley_wilderness)
"aRO" = (
/obj/structure/machinery/power/apc{
@@ -14435,18 +11179,13 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_hydro)
"aRP" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"aRQ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -14458,67 +11197,45 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
"aRR" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"aRS" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/exterior/telecomm/lz1_south)
"aRT" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/interior/caves/east_caves)
"aRU" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"aRV" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/interior/caves/east_caves)
"aRW" = (
-/turf/open/floor/coagulation{
- icon_state = "7,1"
- },
+/turf/open/floor/coagulation/icon7_1,
/area/desert_dam/building/water_treatment_two)
"aRX" = (
/obj/structure/closet/secure_closet/engineering_welding,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/desert_dam/interior/dam_interior/garage)
"aRZ" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/landing_pad_one)
"aSa" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/landing_pad_one)
"aSb" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/landing_pad_one)
"aSc" = (
/obj/structure/desertdam/decals/road_edge{
@@ -14533,46 +11250,32 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/landing_pad_one)
"aSe" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/desert_dam/building/substation/northwest)
"aSf" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/desert_dam/building/substation/northwest)
"aSg" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_labs)
"aSh" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "3,7"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/building/water_treatment_two)
"aSi" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_wilderness)
"aSj" = (
/obj/structure/desertdam/decals/road_edge,
@@ -14582,10 +11285,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
"aSk" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_wilderness)
"aSl" = (
/obj/effect/decal/warning_stripes{
@@ -14603,19 +11303,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"aSn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aSo" = (
/obj/structure/disposalpipe/junction{
@@ -14629,37 +11324,27 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aSr" = (
/obj/structure/filtration/collector_pipes{
icon_state = "lower_2";
layer = 2
},
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/desert_dam/building/water_treatment_two/purification)
"aSs" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/garage)
"aSt" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/garage)
"aSu" = (
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
"aSv" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/exterior/valley/valley_telecoms)
"aSw" = (
/obj/structure/window/framed/hangar/reinforced,
@@ -14682,18 +11367,13 @@
/obj/item/tool/stamp,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"aSC" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/substation/northwest)
"aSD" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -14707,28 +11387,20 @@
icon_state = "lower_2";
layer = 2
},
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/desert_dam/building/water_treatment_two/purification)
"aSG" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_medical)
"aSH" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_mining)
"aSI" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_telecoms)
"aSJ" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -14740,54 +11412,34 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_telecoms)
"aSL" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_telecoms)
"aSM" = (
-/turf/open/floor/coagulation{
- icon_state = "0,4"
- },
+/turf/open/floor/coagulation/icon0_4,
/area/desert_dam/building/water_treatment_two/purification)
"aSN" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/exterior/valley/valley_telecoms)
"aSP" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/building/mining/workshop)
"aSQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"aSR" = (
-/turf/open/floor/coagulation{
- icon_state = "8,7-2"
- },
+/turf/open/floor/coagulation/icon8_7_2,
/area/desert_dam/building/water_treatment_two/purification)
"aST" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"aSU" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/lobby)
"aSV" = (
/obj/structure/desertdam/decals/road_stop{
@@ -14797,9 +11449,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
"aSW" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"aSX" = (
/obj/effect/decal/cleanable/dirt,
@@ -14820,76 +11470,54 @@
/obj/structure/filtration/coagulation{
icon_state = "6,7"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/building/water_treatment_two)
"aTa" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "1,5"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/building/water_treatment_two)
"aTb" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "6,6"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/building/water_treatment_two)
"aTc" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "7,6"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/building/water_treatment_two)
"aTe" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/mining/workshop)
"aTg" = (
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/desert_dam/building/substation/northwest)
"aTh" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/desert_dam/building/substation/northwest)
"aTi" = (
/obj/effect/blocker/toxic_water/Group_2,
/obj/structure/filtration/machine_32x32{
icon_state = "filtration_segment_A_1"
},
-/turf/open/floor/coagulation{
- icon_state = "2,0"
- },
+/turf/open/floor/coagulation/icon2_0,
/area/desert_dam/building/water_treatment_two/purification)
"aTj" = (
/obj/structure/largecrate/random/secure,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"aTk" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/desert_dam/exterior/river/riverside_central_north)
"aTl" = (
/obj/structure/desertdam/decals/road_edge{
@@ -14899,32 +11527,24 @@
/area/desert_dam/exterior/valley/valley_telecoms)
"aTm" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/exterior/river/riverside_central_north)
"aTn" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/north_valley_dam)
"aTo" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/floor/coagulation{
- icon_state = "2,0"
- },
+/turf/open/floor/coagulation/icon2_0,
/area/desert_dam/building/water_treatment_two/purification)
"aTp" = (
/obj/effect/blocker/toxic_water/Group_2,
/obj/structure/filtration/machine_32x32{
icon_state = "filtration_segment_A_0"
},
-/turf/open/floor/coagulation{
- icon_state = "2,0"
- },
+/turf/open/floor/coagulation/icon2_0,
/area/desert_dam/building/water_treatment_two/purification)
"aTq" = (
/obj/structure/cargo_container/kelland/right,
@@ -14932,9 +11552,7 @@
/area/desert_dam/exterior/valley/valley_crashsite)
"aTr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_crashsite)
"aTs" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -14945,15 +11563,11 @@
/area/desert_dam/exterior/valley/valley_civilian)
"aTt" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_medical)
"aTu" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/floor/coagulation{
- icon_state = "0,0"
- },
+/turf/open/floor/coagulation/icon0_0,
/area/desert_dam/building/water_treatment_two/purification)
"aTv" = (
/obj/effect/decal/warning_stripes/asteroid{
@@ -14966,22 +11580,15 @@
/turf/open/asphalt,
/area/desert_dam/building/warehouse/loading)
"aTw" = (
-/turf/open/desert/rock/deep/transition{
- dir = 9
- },
+/turf/open/desert/rock/deep/transition/northwest,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"aTx" = (
/obj/structure/largecrate,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"aTy" = (
/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/security/staffroom)
"aTz" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
@@ -14989,21 +11596,14 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_civilian)
"aTB" = (
-/turf/open/floor/coagulation{
- icon_state = "7,7"
- },
+/turf/open/floor/coagulation/icon7_7,
/area/desert_dam/building/water_treatment_two)
"aTC" = (
/obj/structure/prop/dam/boulder/boulder3,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/landing_pad_one)
"aTF" = (
-/turf/open/desert/rock/deep/transition{
- dir = 5
- },
+/turf/open/desert/rock/deep/transition/northeast,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"aTG" = (
/turf/closed/wall/hangar{
@@ -15011,9 +11611,7 @@
},
/area/desert_dam/building/water_treatment_two/control_room)
"aTH" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_telecoms)
"aTI" = (
/obj/structure/platform{
@@ -15024,24 +11622,18 @@
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"aTJ" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_telecoms)
"aTK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_telecoms)
"aTL" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_civilian)
"aTM" = (
/obj/structure/window/framed/hangar,
@@ -15051,10 +11643,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/mining/workshop)
"aTO" = (
/obj/structure/machinery/power/apc{
@@ -15062,10 +11651,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/mining/workshop)
"aTP" = (
/obj/structure/desertdam/decals/road_stop{
@@ -15076,9 +11662,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
"aTQ" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"aTR" = (
/obj/structure/machinery/shower{
@@ -15088,15 +11672,10 @@
/turf/open/floor/plating,
/area/desert_dam/building/security/staffroom)
"aTS" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/desert_dam/building/mining/workshop)
"aTU" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_telecoms)
"aTW" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -15104,18 +11683,12 @@
name = "\improper Filtration"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aTX" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/mining/workshop)
"aTY" = (
/obj/structure/surface/rack,
@@ -15123,10 +11696,7 @@
/obj/item/stack/sheet/plasteel{
amount = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"aTZ" = (
/turf/closed/wall/r_wall/prison,
@@ -15134,16 +11704,10 @@
"aUa" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"aUb" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"aUc" = (
/turf/closed/wall/hangar{
@@ -15156,20 +11720,14 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/security/staffroom)
"aUe" = (
/obj/structure/window/framed/prison/reinforced,
/turf/open/floor/plating,
/area/desert_dam/building/security/courtroom)
"aUf" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/desert_dam/building/security/lobby)
"aUg" = (
/obj/structure/prop/dam/boulder/boulder2,
@@ -15191,42 +11749,30 @@
/area/desert_dam/building/substation/northwest)
"aUk" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river/riverside_central_north)
"aUl" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_north)
"aUm" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"aUn" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/river/riverside_central_north)
"aUo" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"aUp" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/exterior/telecomm/lz1_south)
"aUq" = (
/obj/structure/prop/dam/wide_boulder/boulder1,
@@ -15236,10 +11782,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Courtroom"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/courtroom)
"aUs" = (
/obj/structure/window/framed/hangar,
@@ -15250,19 +11793,14 @@
/turf/open/floor/prison,
/area/desert_dam/building/mining/workshop)
"aUu" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_telecoms)
"aUv" = (
/obj/structure/machinery/atm{
name = "Weyland-Yutani Automatic Teller Machine";
pixel_y = 30
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/desert_dam/building/security/lobby)
"aUw" = (
/obj/structure/desertdam/decals/road_edge{
@@ -15284,10 +11822,7 @@
name = "\improper Decontamination"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/equipment)
"aUA" = (
/obj/structure/desertdam/decals/road_edge{
@@ -15305,41 +11840,27 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
"aUC" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/landing_pad_one)
"aUD" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/landing_pad_one)
"aUE" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/landing_pad_one)
"aUH" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/landing_pad_one)
"aUK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/courtroom)
"aUL" = (
/obj/structure/flora/tree/joshua,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_northwest)
"aUM" = (
/obj/effect/decal/cleanable/dirt,
@@ -15349,10 +11870,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
"aUN" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/equipment)
"aUO" = (
/obj/effect/decal/cleanable/liquid_fuel,
@@ -15371,9 +11889,7 @@
/area/desert_dam/building/security/observation)
"aUT" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/building/water_treatment_two)
"aUU" = (
/turf/closed/wall/hangar{
@@ -15386,10 +11902,7 @@
/area/desert_dam/building/mining/workshop)
"aUW" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"aUX" = (
/obj/structure/surface/rack,
@@ -15417,10 +11930,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/mining/workshop)
"aVc" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/building/mining/workshop)
"aVd" = (
/turf/closed/wall/hangar{
@@ -15435,30 +11945,22 @@
/turf/closed/wall,
/area/desert_dam/building/mining/workshop_foyer)
"aVg" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/landing_pad_one)
"aVh" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/landing_pad_one)
"aVi" = (
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/landing_pad_one)
"aVj" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_one)
"aVk" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_one)
"aVm" = (
/turf/closed/wall/r_wall,
@@ -15468,33 +11970,21 @@
/turf/open/floor/plating,
/area/desert_dam/building/water_treatment_two/hallway)
"aVp" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/lobby)
"aVr" = (
/obj/structure/machinery/computer/area_atmos,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/control_room)
"aVs" = (
/obj/structure/machinery/computer/turbine_computer,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/control_room)
"aVu" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Workshop Foyer"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop_foyer)
"aVw" = (
/turf/closed/wall/r_wall/prison,
@@ -15503,10 +11993,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/building/mining/workshop)
"aVB" = (
/obj/structure/window/framed/prison/reinforced,
@@ -15518,20 +12005,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"aVD" = (
/obj/structure/surface/table,
/obj/structure/machinery/filtration_button{
id = "filter 2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/control_room)
"aVE" = (
/obj/structure/surface/rack,
@@ -15545,14 +12026,10 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/landing_pad_one)
"aVG" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/landing_pad_one)
"aVI" = (
/turf/closed/wall/r_wall,
@@ -15566,16 +12043,11 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/desert_dam/building/administration/office)
"aVL" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_northwing)
"aVM" = (
/obj/structure/window/framed/prison/reinforced,
@@ -15613,21 +12085,14 @@
/area/desert_dam/exterior/valley/south_valley_dam)
"aVS" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"aVT" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/river/riverside_central_north)
"aVU" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"aVV" = (
/obj/structure/surface/table,
@@ -15635,23 +12100,15 @@
name = "Security Cameras - Habitation";
network = list("chigusa_2")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/control_room)
"aVW" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/emails,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/control_room)
"aVY" = (
-/turf/open/asphalt/cement{
- icon_state = "cement13"
- },
+/turf/open/asphalt/cement/cement13,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aVZ" = (
/turf/open/asphalt,
@@ -15707,60 +12164,39 @@
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/landing_pad_one)
"aWj" = (
/obj/structure/surface/table,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/administration/control_room)
"aWk" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/desert_dam/building/administration/control_room)
"aWl" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aWm" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aWn" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/building/administration/control_room)
"aWo" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/building/administration/control_room)
"aWp" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/desert_dam/building/administration/control_room)
"aWq" = (
/turf/open/floor/wood,
@@ -15770,10 +12206,7 @@
dir = 4;
layer = 3.25
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/desert_dam/building/administration/office)
"aWs" = (
/obj/structure/platform{
@@ -15783,18 +12216,13 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/valley/south_valley_dam)
"aWt" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet11-12"
- },
+/turf/open/floor/carpet11_12/west,
/area/desert_dam/building/administration/office)
"aWv" = (
/obj/structure/pipes/vents/pump,
@@ -15808,27 +12236,17 @@
/area/desert_dam/building/administration/office)
"aWx" = (
/obj/structure/closet/l3closet/virology,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_two/equipment)
"aWy" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/exterior/telecomm/lz1_south)
"aWz" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_wilderness)
"aWA" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_wilderness)
"aWB" = (
/obj/effect/decal/warning_stripes{
@@ -15859,42 +12277,31 @@
/turf/open/floor/interior/wood,
/area/desert_dam/building/security/office)
"aWG" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_two/equipment)
"aWH" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/river/riverside_east)
"aWI" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "1,2"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/building/water_treatment_two)
"aWJ" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "7,2"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/building/water_treatment_two)
"aWK" = (
/turf/closed/wall/r_wall/prison,
/area/desert_dam/building/security/evidence)
"aWL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/equipment)
"aWM" = (
/obj/structure/window/framed/colony/reinforced,
@@ -15902,15 +12309,10 @@
/area/desert_dam/building/administration/control_room)
"aWN" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/administration/hallway)
"aWO" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/administration/control_room)
"aWQ" = (
/obj/structure/machinery/power/apc{
@@ -15921,22 +12323,13 @@
/turf/open/floor/interior/wood,
/area/desert_dam/building/security/office)
"aWR" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet5-1"
- },
+/turf/open/floor/carpet5_1/west,
/area/desert_dam/building/administration/office)
"aWS" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/desert_dam/building/administration/office)
"aWT" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet9-4"
- },
+/turf/open/floor/carpet9_4/west,
/area/desert_dam/building/administration/office)
"aWU" = (
/obj/structure/disposalpipe/segment{
@@ -15964,18 +12357,14 @@
/area/desert_dam/building/administration/hallway)
"aWZ" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_central_north)
"aXa" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_two/equipment)
"aXb" = (
/obj/structure/flora/pottedplant,
@@ -15995,10 +12384,7 @@
"aXf" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/garage)
"aXg" = (
/obj/structure/machinery/light{
@@ -16010,58 +12396,41 @@
/area/desert_dam/building/water_treatment_two/control_room)
"aXh" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/control_room)
"aXi" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/control_room)
"aXj" = (
/obj/structure/filtration/machine_32x32{
icon_state = "filtration_catwalk"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aXk" = (
/obj/structure/filtration/machine_64x96{
icon_state = "sedimentation_1";
pixel_y = -16
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aXl" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "2,1"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/building/water_treatment_two)
"aXm" = (
/obj/structure/filtration/machine_96x96{
icon_state = "sedimentation_A_1";
pixel_y = -16
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aXo" = (
/obj/structure/machinery/disposal,
@@ -16080,10 +12449,7 @@
/obj/structure/filtration/machine_32x32{
icon_state = "filtration_segment_B_0"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aXr" = (
/obj/structure/disposalpipe/segment,
@@ -16099,49 +12465,33 @@
dir = 1;
name = "\improper Colony Administration Office"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/office)
"aXu" = (
/obj/structure/filtration/machine_64x96{
icon_state = "filtration_machine_A_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aXv" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_wilderness)
"aXy" = (
/obj/structure/filtration/machine_32x32{
icon_state = "filtration_segment_B_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aXz" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/desert_dam/building/security/lobby)
"aXA" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/lobby)
"aXC" = (
/obj/structure/desertdam/decals/road_edge{
@@ -16153,10 +12503,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/desert_dam/building/security/lobby)
"aXE" = (
/obj/structure/machinery/recharger,
@@ -16170,24 +12517,17 @@
dir = 1;
name = "\improper Colony Administration Office"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/office)
"aXJ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2;
name = "\improper Toilet Unit"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/administration/hallway)
"aXK" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/desert_dam/building/administration/control_room)
"aXL" = (
/obj/structure/window/framed/colony/reinforced,
@@ -16203,32 +12543,23 @@
/area/desert_dam/building/security/detective)
"aXO" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/hallway)
"aXP" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/hallway)
"aXQ" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/hallway)
"aXR" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/administration/hallway)
"aXS" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -16241,14 +12572,10 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_wilderness)
"aXU" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_wilderness)
"aXV" = (
/obj/structure/bookcase/manuals/engineering,
@@ -16266,9 +12593,7 @@
/turf/open/floor/interior/wood,
/area/desert_dam/building/security/marshals_office)
"aXY" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/valley_wilderness)
"aXZ" = (
/obj/structure/filingcabinet/security,
@@ -16286,10 +12611,7 @@
"aYb" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/control_room)
"aYd" = (
/turf/closed/wall/r_wall/prison,
@@ -16300,9 +12622,7 @@
/area/desert_dam/exterior/valley/valley_wilderness)
"aYf" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_wilderness)
"aYg" = (
/obj/structure/surface/rack,
@@ -16312,101 +12632,66 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"aYi" = (
/obj/structure/filtration/machine_64x96{
icon_state = "filtration_machine_B_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_two/purification)
"aYj" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/desert_dam/building/administration/hallway)
"aYk" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"aYl" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/desert_dam/building/administration/hallway)
"aYm" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/administration/hallway)
"aYn" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"aYo" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/hallway)
"aYp" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/administration/hallway)
"aYq" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/administration/hallway)
"aYr" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/administration/hallway)
"aYs" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/administration/hallway)
"aYt" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/administration/hallway)
"aYu" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/building/administration/control_room)
"aYv" = (
/obj/structure/window/reinforced/tinted{
@@ -16418,9 +12703,7 @@
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
/obj/item/tool/stamp,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aYw" = (
/obj/structure/window/reinforced/tinted{
@@ -16432,9 +12715,7 @@
/obj/structure/surface/table/reinforced,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aYx" = (
/obj/structure/flora/bush/desert/cactus/multiple{
@@ -16447,15 +12728,10 @@
dir = 8
},
/obj/structure/platform,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_wilderness)
"aYz" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_wilderness)
"aYD" = (
/obj/structure/surface/rack,
@@ -16472,16 +12748,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"aYG" = (
/obj/structure/disposalpipe/junction,
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"aYH" = (
/obj/structure/disposalpipe/segment{
@@ -16491,34 +12763,26 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"aYI" = (
/obj/structure/disposalpipe/junction,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"aYJ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Restroom"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/administration/hallway)
"aYK" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aYL" = (
/obj/structure/window/reinforced/tinted{
@@ -16526,9 +12790,7 @@
},
/obj/structure/machinery/computer/atmos_alert,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aYM" = (
/obj/structure/window/reinforced/tinted{
@@ -16536,9 +12798,7 @@
},
/obj/structure/machinery/computer/communications,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aYN" = (
/obj/structure/closet/secure_closet/detective,
@@ -16547,40 +12807,30 @@
"aYQ" = (
/obj/structure/filtration/coagulation_arm,
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/building/water_treatment_two)
"aYR" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/floor/coagulation{
- icon_state = "8,7"
- },
+/turf/open/floor/coagulation/icon8_7,
/area/desert_dam/exterior/valley/valley_mining)
"aYS" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aYT" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aYU" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
dir = 1;
name = "\improper Administration Control Room"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aYV" = (
/obj/structure/bed/chair/office/light{
@@ -16595,14 +12845,10 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"aYX" = (
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/desert_dam/building/administration/hallway)
"aYY" = (
/obj/structure/window/reinforced/tinted{
@@ -16612,9 +12858,7 @@
/obj/structure/surface/table/reinforced,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aYZ" = (
/obj/structure/window/reinforced/tinted{
@@ -16624,64 +12868,44 @@
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
/obj/item/tool/stamp,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aZa" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/desert_dam/building/administration/control_room)
"aZb" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/desert_dam/building/administration/hallway)
"aZc" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/desert_dam/building/administration/hallway)
"aZd" = (
/obj/structure/platform{
dir = 8
},
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_labs)
"aZe" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_central_north)
"aZg" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_central_north)
"aZh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"aZi" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "6,1"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/building/water_treatment_two)
"aZj" = (
/obj/item/paper/courtroom{
@@ -16705,9 +12929,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_wilderness)
"aZm" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/south_tunnel)
"aZn" = (
/obj/structure/bed/chair{
@@ -16729,63 +12951,43 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/desert_dam/building/security/lobby)
"aZu" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"aZv" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/exterior/river/filtration_a)
"aZw" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/building/administration/hallway)
"aZx" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/building/administration/control_room)
"aZy" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"aZz" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/building/administration/control_room)
"aZA" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
name = "\improper Administration Hallway"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"aZB" = (
/obj/structure/machinery/power/apc{
@@ -16793,10 +12995,7 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/building/administration/hallway)
"aZC" = (
/turf/closed/wall/r_wall,
@@ -16805,16 +13004,12 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/valley_labs)
"aZI" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_crashsite)
"aZJ" = (
/obj/structure/machinery/computer/cameras/wooden_tv,
@@ -16834,19 +13029,14 @@
/area/desert_dam/building/security/marshals_office)
"aZN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_telecoms)
"aZO" = (
/obj/structure/machinery/photocopier,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/building/administration/control_room)
"aZP" = (
/obj/structure/window/framed/colony/reinforced,
@@ -16857,10 +13047,7 @@
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/desert_dam/building/administration/lobby)
"aZR" = (
/obj/structure/window/framed/colony/reinforced,
@@ -16868,21 +13055,13 @@
/turf/open/floor/plating,
/area/desert_dam/building/administration/hallway)
"aZS" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/desert_dam/building/administration/lobby)
"aZT" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/lobby)
"aZU" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/desert_dam/building/administration/lobby)
"aZV" = (
/obj/structure/surface/table,
@@ -16898,16 +13077,12 @@
pixel_x = -3;
pixel_y = -1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"aZW" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"aZX" = (
/obj/structure/machinery/power/apc{
@@ -16915,29 +13090,21 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"aZY" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"aZZ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"baa" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"bab" = (
/obj/structure/platform{
@@ -16955,9 +13122,7 @@
/area/desert_dam/building/water_treatment_two/hallway)
"bae" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_telecoms)
"baf" = (
/obj/structure/flora/pottedplant,
@@ -16968,35 +13133,23 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_telecoms)
"bai" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/building/administration/hallway)
"baj" = (
/obj/structure/surface/table,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/building/administration/control_room)
"bak" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/building/administration/lobby)
"bal" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/building/administration/control_room)
"bam" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -17012,25 +13165,17 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_telecoms)
"bap" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/desert_dam/building/administration/lobby)
"baq" = (
/obj/structure/closet/secure_closet/security,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/desert_dam/building/administration/lobby)
"bar" = (
/obj/structure/machinery/power/apc{
@@ -17038,10 +13183,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/desert_dam/building/administration/lobby)
"bas" = (
/obj/structure/disposalpipe/segment{
@@ -17051,9 +13193,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/lobby)
"bat" = (
/obj/structure/surface/table,
@@ -17065,49 +13205,36 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"bau" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"bav" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"baw" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"bax" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"baz" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_telecoms)
"baA" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -17119,9 +13246,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"baC" = (
/obj/structure/surface/table/reinforced,
@@ -17138,55 +13263,38 @@
pixel_x = -6
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/lobby)
"baD" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/desert_dam/building/administration/lobby)
"baE" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/east,
/area/desert_dam/building/administration/lobby)
"baF" = (
/obj/structure/surface/table,
/obj/item/tool/hand_labeler,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"baG" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"baH" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"baI" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_northwest)
"baL" = (
/obj/structure/machinery/light{
@@ -17219,39 +13327,28 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/hallway)
"baQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/desert_dam/building/administration/control_room)
"baR" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/desert_dam/building/administration/control_room)
"baS" = (
/obj/structure/surface/table,
/obj/item/tool/stamp{
icon_state = "stamp-ce"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"baT" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"baV" = (
/obj/structure/surface/table,
/obj/item/paper,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"baW" = (
/obj/structure/desertdam/decals/road_edge{
@@ -17265,26 +13362,17 @@
/area/desert_dam/exterior/landing_pad_one)
"baX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"baZ" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bba" = (
-/turf/open/desert/rock/deep/transition{
- dir = 9
- },
+/turf/open/desert/rock/deep/transition/northwest,
/area/desert_dam/interior/dam_interior/south_tunnel)
"bbb" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/desert_dam/building/administration/control_room)
"bbc" = (
/obj/structure/surface/table,
@@ -17292,68 +13380,46 @@
dir = 8
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/desert_dam/building/administration/lobby)
"bbd" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/desert_dam/building/administration/lobby)
"bbe" = (
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/desert_dam/building/administration/lobby)
"bbf" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bbg" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/building/administration/hallway)
"bbh" = (
/obj/structure/surface/table,
/obj/item/tool/stamp,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/desert_dam/building/administration/lobby)
"bbi" = (
/obj/structure/surface/table,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/desert_dam/building/administration/lobby)
"bbj" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/desert_dam/building/administration/lobby)
"bbk" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/desert_dam/building/administration/lobby)
"bbl" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -17362,26 +13428,20 @@
},
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/archives)
"bbm" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
dir = 1;
name = "\improper Colony Archives"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/archives)
"bbn" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
name = "\improper Administration Lobby"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/lobby)
"bbo" = (
/obj/structure/window/framed/prison/reinforced,
@@ -17395,28 +13455,20 @@
/area/desert_dam/exterior/valley/valley_northwest)
"bbs" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"bbv" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_wilderness)
"bbw" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_wilderness)
"bbx" = (
-/turf/open/desert/rock/deep/transition{
- dir = 5
- },
+/turf/open/desert/rock/deep/transition/northeast,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bby" = (
/obj/structure/machinery/light{
@@ -17424,16 +13476,10 @@
},
/obj/structure/closet/toolcloset,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/desert_dam/building/mining/workshop_foyer)
"bbz" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/valley_telecoms)
"bbA" = (
/obj/structure/disposalpipe/segment,
@@ -17443,9 +13489,7 @@
"bbB" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bbC" = (
/turf/closed/wall/r_wall,
@@ -17457,9 +13501,7 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bbE" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -17474,31 +13516,23 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_telecoms)
"bbH" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_northwest)
"bbI" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_northwest)
"bbK" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bbL" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -17536,9 +13570,7 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bbT" = (
/obj/structure/desertdam/decals/road_edge{
@@ -17550,9 +13582,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bbV" = (
/obj/structure/machinery/door_control{
@@ -17568,23 +13598,17 @@
dir = 1;
name = "\improper Administration Hallway"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bbX" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/desert_dam/building/administration/hallway)
"bbY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_northwest)
"bbZ" = (
/obj/structure/stairs{
@@ -17596,9 +13620,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_northwest)
"bca" = (
/obj/structure/platform_decoration{
@@ -17610,9 +13632,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_northwest)
"bcb" = (
/obj/structure/disposalpipe/segment{
@@ -17621,9 +13641,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_northwest)
"bcc" = (
/obj/structure/disposalpipe/segment{
@@ -17632,85 +13650,61 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_northwest)
"bck" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_telecoms)
"bcn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"bco" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_northwest)
"bcp" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_northwest)
"bcq" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/desert_dam/building/administration/hallway)
"bcr" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
name = "\improper Breakroom"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/meetingrooom)
"bcs" = (
/obj/structure/stairs{
dir = 4
},
/obj/structure/platform,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_northwest)
"bct" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_northwest)
"bcu" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_northwest)
"bcv" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_northwest)
"bcy" = (
/obj/structure/flora/bush/desert/cactus{
@@ -17722,9 +13716,7 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bcA" = (
/obj/structure/surface/table/reinforced,
@@ -17739,10 +13731,7 @@
name = "Security Cameras - Habitation";
network = list("chigusa_2")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/building/security/lobby)
"bcC" = (
/obj/structure/desertdam/decals/road_edge{
@@ -17755,16 +13744,12 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_northwest)
"bcE" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/meetingrooom)
"bcF" = (
/obj/structure/platform_decoration{
@@ -17773,33 +13758,23 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"bcH" = (
-/turf/open/desert/rock/deep/transition{
- dir = 6
- },
+/turf/open/desert/rock/deep/transition/southeast,
/area/desert_dam/interior/dam_interior/south_tunnel)
"bcI" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"bcJ" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Holding"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/holding)
"bcK" = (
/obj/structure/window/framed/hangar/reinforced,
@@ -17814,10 +13789,7 @@
/area/desert_dam/building/security/prison)
"bcO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"bcQ" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -17837,17 +13809,11 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/building/administration/hallway)
"bcW" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bcX" = (
/obj/structure/platform{
@@ -17856,22 +13822,15 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"bcY" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"bda" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"bdb" = (
/obj/structure/machinery/light{
@@ -17889,18 +13848,12 @@
dir = 1
},
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/building/security/lobby)
"bde" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/northleft,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/building/security/lobby)
"bdf" = (
/turf/closed/wall/r_wall,
@@ -17911,16 +13864,11 @@
/area/desert_dam/building/administration/overseer_office)
"bdh" = (
/obj/structure/machinery/computer/crew,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/northwest,
/area/desert_dam/building/medical/chemistry)
"bdi" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/administration/meetingrooom)
"bdj" = (
/turf/open/floor/wood,
@@ -17953,15 +13901,11 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"bdt" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bdw" = (
/obj/structure/surface/table/reinforced,
@@ -17969,10 +13913,7 @@
dir = 1
},
/obj/item/storage/donut_box,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/building/security/lobby)
"bdz" = (
/obj/structure/surface/table/reinforced,
@@ -17984,18 +13925,13 @@
health = 80
},
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/building/security/lobby)
"bdA" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_northwest)
"bdB" = (
/obj/structure/closet/secure_closet/personal,
@@ -18013,16 +13949,11 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bdE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"bdF" = (
/obj/structure/disposalpipe/trunk{
@@ -18033,17 +13964,12 @@
/area/desert_dam/building/administration/overseer_office)
"bdG" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/administration/meetingrooom)
"bdH" = (
/obj/structure/pipes/vents/pump,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/lobby)
"bdI" = (
/obj/structure/pipes/vents/pump{
@@ -18060,9 +13986,7 @@
/area/desert_dam/exterior/valley/valley_northwest)
"bdK" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river/riverside_central_north)
"bdM" = (
/obj/item/ashtray/bronze,
@@ -18074,10 +13998,7 @@
/obj/structure/surface/table,
/obj/item/tool/wirecutters,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"bdO" = (
/obj/effect/decal/warning_stripes{
@@ -18102,10 +14023,7 @@
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"bdT" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -18120,80 +14038,54 @@
/area/desert_dam/building/security/detective)
"bdV" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_northwest)
"bdW" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_northwest)
"bdX" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_northwest)
"bdY" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet6-2"
- },
+/turf/open/floor/carpet6_2/west,
/area/desert_dam/building/administration/overseer_office)
"bdZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/desert_dam/building/administration/overseer_office)
"bec" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_medical)
"bed" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/administration/meetingrooom)
"bee" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/carpet/edge{
- dir = 9
- },
+/turf/open/floor/carpet/edge/northwest,
/area/desert_dam/building/administration/meetingrooom)
"bef" = (
-/turf/open/floor/carpet/edge{
- dir = 1
- },
+/turf/open/floor/carpet/edge/north,
/area/desert_dam/building/administration/meetingrooom)
"beg" = (
/obj/structure/bed/chair/wood/normal,
-/turf/open/floor/carpet/edge{
- dir = 1
- },
+/turf/open/floor/carpet/edge/north,
/area/desert_dam/building/administration/meetingrooom)
"beh" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/carpet/edge{
- dir = 1
- },
+/turf/open/floor/carpet/edge/north,
/area/desert_dam/building/administration/meetingrooom)
"bei" = (
-/turf/open/floor/carpet/edge{
- dir = 5
- },
+/turf/open/floor/carpet/edge/northeast,
/area/desert_dam/building/administration/meetingrooom)
"bej" = (
/obj/structure/flora/grass/desert/heavygrass_3,
@@ -18204,22 +14096,14 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river/riverside_central_north)
"bel" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/interior/caves/central_caves)
"bem" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/mining/workshop_foyer)
"ben" = (
/obj/structure/machinery/floodlight/landing,
@@ -18227,9 +14111,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/landing_pad_one)
"beo" = (
/obj/structure/machinery/light{
@@ -18241,21 +14123,15 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"beq" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/river/riverside_east)
"ber" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bes" = (
/obj/structure/bed/chair/comfy/black,
@@ -18266,15 +14142,11 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/administration/meetingrooom)
"beu" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/carpet/edge{
- dir = 8
- },
+/turf/open/floor/carpet/edge/west,
/area/desert_dam/building/administration/meetingrooom)
"bev" = (
/obj/structure/bed/chair/wood/normal{
@@ -18294,9 +14166,7 @@
/turf/open/floor/carpet,
/area/desert_dam/building/administration/meetingrooom)
"bey" = (
-/turf/open/floor/carpet/edge{
- dir = 4
- },
+/turf/open/floor/carpet/edge/east,
/area/desert_dam/building/administration/meetingrooom)
"bez" = (
/obj/structure/machinery/light{
@@ -18305,10 +14175,7 @@
/turf/open/floor/wood,
/area/desert_dam/building/administration/meetingrooom)
"beB" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/interior/caves/central_caves)
"beC" = (
/turf/open/desert/rock,
@@ -18327,26 +14194,18 @@
/obj/structure/bed/chair/comfy/beige{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/desert_dam/building/administration/overseer_office)
"beG" = (
/obj/structure/disposalpipe/segment,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/river/riverside_east)
"beH" = (
/obj/structure/bed/chair/comfy/beige{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet11-12"
- },
+/turf/open/floor/carpet11_12/west,
/area/desert_dam/building/administration/overseer_office)
"beI" = (
/obj/structure/machinery/light{
@@ -18359,9 +14218,7 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/administration/meetingrooom)
"beK" = (
/obj/structure/disposalpipe/segment{
@@ -18374,42 +14231,28 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/carpet/edge{
- dir = 8
- },
+/turf/open/floor/carpet/edge/west,
/area/desert_dam/building/administration/meetingrooom)
"beM" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/interior/caves/central_caves)
"beN" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"beO" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_telecoms)
"beP" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_telecoms)
"beQ" = (
/obj/structure/surface/table,
/obj/item/tool/wrench,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"beS" = (
/obj/structure/machinery/power/apc{
@@ -18437,23 +14280,16 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_northwest)
"beX" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_northwest)
"beY" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet5-1"
- },
+/turf/open/floor/carpet5_1/west,
/area/desert_dam/building/administration/overseer_office)
"beZ" = (
/obj/structure/platform{
@@ -18463,21 +14299,14 @@
/turf/open/gm/river/desert/shallow_edge,
/area/desert_dam/exterior/river/riverside_east)
"bfa" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet9-4"
- },
+/turf/open/floor/carpet9_4/west,
/area/desert_dam/building/administration/overseer_office)
"bfb" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/administration/meetingrooom)
"bfc" = (
-/turf/open/floor/carpet/edge{
- dir = 10
- },
+/turf/open/floor/carpet/edge/southwest,
/area/desert_dam/building/administration/meetingrooom)
"bfd" = (
/turf/open/floor/carpet/edge,
@@ -18494,10 +14323,7 @@
network = list("chigusa_1")
},
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/desert_dam/building/administration/lobby)
"bfg" = (
/obj/structure/prop/dam/large_boulder{
@@ -18506,24 +14332,16 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_northwest)
"bfh" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/interior/caves/central_caves)
"bfi" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/interior/caves/central_caves)
"bfj" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bfk" = (
/obj/item/restraint/handcuffs,
@@ -18536,10 +14354,7 @@
dir = 2;
name = "\improper East Filtration"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"bfm" = (
/turf/closed/wall/hangar{
@@ -18561,9 +14376,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/landing_pad_one)
"bfp" = (
/obj/structure/flora/grass/desert/heavygrass_9,
@@ -18576,10 +14389,7 @@
"bfr" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"bfs" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -18595,9 +14405,7 @@
/area/desert_dam/exterior/valley/valley_telecoms)
"bfu" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_telecoms)
"bfw" = (
/obj/structure/machinery/photocopier,
@@ -18628,18 +14436,14 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_northwest)
"bfC" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_northwest)
"bfD" = (
/obj/structure/filtration/machine_64x128{
@@ -18653,9 +14457,7 @@
/area/desert_dam/building/water_treatment_two/purification)
"bfG" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_telecoms)
"bfH" = (
/obj/structure/prop/dam/large_boulder/boulder2,
@@ -18665,9 +14467,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_northwest)
"bfK" = (
/obj/structure/platform_decoration{
@@ -18679,50 +14479,38 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_northwest)
"bfM" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_northwest)
"bfN" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"bfO" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_northwest)
"bfP" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bfQ" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"bfR" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -18730,10 +14518,7 @@
name = "\improper East Filtration"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"bfS" = (
/obj/effect/decal/cleanable/blood,
@@ -18743,17 +14528,13 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bfU" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bfV" = (
/obj/structure/platform{
@@ -18762,9 +14543,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/west_tunnel)
"bfX" = (
/obj/effect/decal/cleanable/dirt,
@@ -18798,26 +14577,19 @@
/area/desert_dam/building/water_treatment_one/breakroom)
"bge" = (
/obj/structure/prop/dam/boulder/boulder2,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/landing_pad_one)
"bgf" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_northwest)
"bgg" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_northwest)
"bgh" = (
/obj/structure/platform_decoration{
@@ -18829,14 +14601,10 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"bgj" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"bgk" = (
/obj/structure/curtain/open/shower,
@@ -18865,9 +14633,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"bgq" = (
/obj/structure/machinery/shower{
@@ -18877,9 +14643,7 @@
/turf/open/floor/plating,
/area/desert_dam/building/water_treatment_one/equipment)
"bgr" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/exterior/valley/valley_wilderness)
"bgs" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -18894,56 +14658,39 @@
name = "\improper Treatment Hallway"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/hallway)
"bgu" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "2,7"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bgx" = (
-/turf/open/desert/rock/deep/transition{
- dir = 4
- },
+/turf/open/desert/rock/deep/transition/east,
/area/desert_dam/interior/dam_interior/south_tunnel)
"bgy" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "3,7"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bgz" = (
/turf/open/floor/interior/wood/alt,
/area/desert_dam/building/security/courtroom)
"bgA" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/north_valley_dam)
"bgC" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/exterior/valley/valley_wilderness)
"bgD" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/energy/taser,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/desert_dam/building/water_treatment_two/lobby)
"bgE" = (
/obj/effect/decal/cleanable/dirt,
@@ -18956,9 +14703,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/purification)
"bgH" = (
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/exterior/valley/valley_wilderness)
"bgI" = (
/obj/structure/surface/table,
@@ -18968,16 +14713,12 @@
/area/desert_dam/building/water_treatment_two/control_room)
"bgJ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_two/equipment)
"bgL" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_two/equipment)
"bgM" = (
/obj/structure/machinery/light{
@@ -18987,9 +14728,7 @@
dir = 4;
pixel_x = 11
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_two/equipment)
"bgN" = (
/obj/effect/decal/warning_stripes{
@@ -19002,39 +14741,24 @@
/area/desert_dam/exterior/landing_pad_one)
"bgO" = (
/obj/structure/prop/dam/wide_boulder/boulder1,
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/north_valley_dam)
"bgP" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/north_valley_dam)
"bgQ" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/north_valley_dam)
"bgR" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/north_valley_dam)
"bgT" = (
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"bgU" = (
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_north)
"bgV" = (
/obj/structure/machinery/power/apc{
@@ -19045,10 +14769,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/control_room)
"bgW" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/control_room)
"bgZ" = (
/obj/structure/surface/rack,
@@ -19064,10 +14785,7 @@
"bhb" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/equipment)
"bhc" = (
/obj/structure/platform,
@@ -19078,53 +14796,38 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached17"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached17,
/area/desert_dam/exterior/landing_pad_one)
"bhf" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/landing_pad_one)
"bhg" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/landing_pad_one)
"bhh" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/landing_pad_one)
"bhi" = (
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/north_valley_dam)
"bhj" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/north_valley_dam)
"bhk" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"bhl" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"bhn" = (
/obj/structure/machinery/power/apc{
@@ -19137,9 +14840,7 @@
pixel_x = 11
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_two/equipment)
"bho" = (
/obj/structure/surface/table,
@@ -19163,10 +14864,7 @@
name = "Security Cameras - Habitation";
network = list("chigusa_2")
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/desert_dam/building/water_treatment_two/lobby)
"bht" = (
/turf/closed/wall/r_wall/bunker{
@@ -19182,15 +14880,11 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_one)
"bhw" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_crashsite)
"bhx" = (
/obj/structure/bed/chair{
@@ -19200,65 +14894,43 @@
/area/desert_dam/building/security/office)
"bhy" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bhz" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bhA" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bhC" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached17"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached17,
/area/desert_dam/exterior/valley/valley_northwest)
"bhD" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/north_valley_dam)
"bhE" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/north_valley_dam)
"bhF" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/north_valley_dam)
"bhG" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/north_valley_dam)
"bhH" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/north_valley_dam)
"bhI" = (
/obj/structure/machinery/power/apc{
@@ -19269,108 +14941,72 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/lobby)
"bhL" = (
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/desert_dam/building/substation/northwest)
"bhM" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/dam_interior/south_tunnel)
"bhN" = (
/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bhO" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
/obj/item/tool/warning_cone,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/hanger)
"bhP" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bhQ" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/desert_dam/interior/dam_interior/hanger)
"bhR" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/desert_dam/interior/dam_interior/hanger)
"bhS" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
/obj/item/tool/warning_cone,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/hanger)
"bhT" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bhV" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_northwest)
"bhW" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_northwest)
"bhX" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_northwest)
"bhY" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_northwest)
"bhZ" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/north_valley_dam)
"bia" = (
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/north_valley_dam)
"bib" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/north_valley_dam)
"bic" = (
/obj/structure/stairs{
@@ -19379,25 +15015,19 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/bar_valley_dam)
"bie" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"bif" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"big" = (
/obj/structure/bed/chair,
@@ -19405,54 +15035,37 @@
/area/desert_dam/building/water_treatment_two/lobby)
"bih" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/lobby)
"bii" = (
/obj/structure/platform,
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"bij" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/exterior/valley/valley_wilderness)
"bik" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bil" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/hanger)
"bim" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/hanger)
"bin" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bio" = (
/obj/structure/desertdam/decals/road_stop{
@@ -19463,17 +15076,13 @@
/area/desert_dam/exterior/valley/valley_northwest)
"bip" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_northwest)
"biq" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_northwest)
"bir" = (
/obj/structure/desertdam/decals/road_edge{
@@ -19488,18 +15097,14 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/north_valley_dam)
"bit" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/north_valley_dam)
"biu" = (
/obj/structure/stairs{
dir = 4
},
/obj/structure/platform,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/bar_valley_dam)
"biw" = (
/obj/structure/machinery/colony_floodlight,
@@ -19526,29 +15131,20 @@
dir = 8
},
/obj/item/evidencebag,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/building/security/lobby)
"biC" = (
/obj/structure/machinery/disposal,
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/lobby)
"biD" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/east,
/area/desert_dam/interior/dam_interior/hanger)
"biE" = (
/obj/structure/shuttle/diagonal{
icon_state = "swall_f6"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"biF" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -19558,23 +15154,14 @@
/obj/structure/shuttle/diagonal{
icon_state = "swall_f10"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"biH" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/west,
/area/desert_dam/interior/dam_interior/hanger)
"biI" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"biJ" = (
/obj/structure/disposalpipe/segment{
@@ -19633,23 +15220,16 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"biT" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/north_valley_dam)
"biV" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/building/security/lobby)
"biW" = (
/obj/structure/window/framed/hangar/reinforced,
@@ -19659,32 +15239,22 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Treatment Controlroom"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/control_room)
"biY" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/desert_dam/building/water_treatment_two/lobby)
"biZ" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bjd" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bje" = (
/obj/effect/decal/warning_stripes{
@@ -19706,10 +15276,7 @@
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/building/security/lobby)
"bjj" = (
/obj/structure/surface/table/reinforced,
@@ -19719,10 +15286,7 @@
},
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/building/security/lobby)
"bjk" = (
/turf/closed/shuttle{
@@ -19731,9 +15295,7 @@
/area/desert_dam/interior/dam_interior/hanger)
"bjn" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bjo" = (
/obj/structure/desertdam/decals/road_edge{
@@ -19765,23 +15327,17 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/north_valley_dam)
"bjt" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/north_valley_dam)
"bju" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/north_valley_dam)
"bjv" = (
/obj/effect/decal/cleanable/blood,
@@ -19792,10 +15348,7 @@
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/desert_dam/building/water_treatment_two/lobby)
"bjy" = (
/turf/closed/shuttle{
@@ -19819,17 +15372,13 @@
/area/desert_dam/interior/dam_interior/hanger)
"bjE" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/north_valley_dam)
"bjF" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/north_valley_dam)
"bjG" = (
/obj/structure/desertdam/decals/road_edge,
@@ -19838,10 +15387,7 @@
"bjH" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/lobby)
"bjI" = (
/obj/structure/bed/chair{
@@ -19853,17 +15399,13 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"bjK" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"bjL" = (
/obj/structure/platform{
@@ -19872,14 +15414,10 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"bjM" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/north_valley_dam)
"bjN" = (
/obj/structure/desertdam/decals/road_edge{
@@ -19907,16 +15445,12 @@
/obj/item/tool/pen/blue{
pixel_x = -6
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/water_treatment_two/lobby)
"bjQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"bjR" = (
/obj/structure/bed/chair{
@@ -19934,33 +15468,22 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_mining)
"bjZ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/lobby)
"bka" = (
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_two/lobby)
"bkb" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_mining)
"bkc" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bkf" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/north_valley_dam)
"bkg" = (
/obj/structure/prop/dam/boulder/boulder2,
@@ -19970,9 +15493,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/north_valley_dam)
"bki" = (
/obj/effect/decal/warning_stripes{
@@ -19993,16 +15514,10 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/desert_dam/building/water_treatment_two/lobby)
"bkm" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_mining)
"bkn" = (
/turf/closed/shuttle{
@@ -20010,22 +15525,14 @@
},
/area/desert_dam/interior/dam_interior/hanger)
"bkt" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/north_valley_dam)
"bku" = (
/obj/structure/prop/dam/boulder/boulder1,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/north_valley_dam)
"bkv" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/north_valley_dam)
"bkw" = (
/obj/structure/flora/bush/desert/cactus,
@@ -20045,17 +15552,11 @@
/area/desert_dam/interior/dam_interior/west_tunnel)
"bkC" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/desert_dam/building/water_treatment_two/lobby)
"bkD" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/lobby)
"bkE" = (
/obj/effect/decal/warning_stripes{
@@ -20094,46 +15595,30 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"bkM" = (
/obj/structure/surface/table,
/obj/item/tool/stamp,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/desert_dam/building/water_treatment_two/lobby)
"bkN" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/desert_dam/building/water_treatment_two/lobby)
"bkO" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/desert_dam/building/water_treatment_two/lobby)
"bkP" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_mining)
"bkR" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/east,
/area/desert_dam/interior/dam_interior/hanger)
"bkS" = (
/obj/structure/shuttle/engine/heater,
@@ -20145,10 +15630,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/west,
/area/desert_dam/interior/dam_interior/hanger)
"bkU" = (
/turf/closed/wall/r_wall/bunker{
@@ -20158,9 +15640,7 @@
"bkV" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"bkW" = (
/turf/open/asphalt,
@@ -20172,20 +15652,13 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bkY" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/north_valley_dam)
"bkZ" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/north_valley_dam)
"bla" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/desert_dam/building/security/lobby)
"blb" = (
/obj/structure/machinery/power/apc{
@@ -20193,24 +15666,16 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/east,
/area/desert_dam/building/mining/workshop_foyer)
"blc" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop_foyer)
"bld" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/observation)
"ble" = (
/obj/structure/cargo_container/hd/left,
@@ -20225,9 +15690,7 @@
dir = 4
},
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/north_valley_dam)
"blh" = (
/obj/structure/desertdam/decals/road_edge{
@@ -20251,10 +15714,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Treatment Lobby"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_two/lobby)
"bln" = (
/obj/structure/cargo_container/hd/mid,
@@ -20265,42 +15725,31 @@
/obj/structure/filtration/coagulation{
icon_state = "6,7"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/exterior/river/filtration_a)
"blq" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "2,7"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/exterior/river/filtration_a)
"blr" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "3,7"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/exterior/river/filtration_a)
"blt" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_mining)
"blv" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "6,7"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/exterior/river/filtration_a)
"blx" = (
/turf/closed/shuttle{
@@ -20322,10 +15771,7 @@
name = "Security Cameras - Operations";
network = list("chigusa_1")
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"blC" = (
/obj/structure/window/framed/bunker/reinforced,
@@ -20335,9 +15781,7 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/landing_pad_one)
"blE" = (
/obj/structure/desertdam/decals/road_edge,
@@ -20359,9 +15803,7 @@
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/north_tunnel)
"blI" = (
/turf/open/desert/rock/deep,
@@ -20370,9 +15812,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/north_valley_dam)
"blK" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -20381,14 +15821,10 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/north_valley_dam)
"blL" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/north_valley_dam)
"blM" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/north_valley_dam)
"blN" = (
/obj/effect/decal/warning_stripes{
@@ -20397,36 +15833,28 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/north_valley_dam)
"blO" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached20"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached20,
/area/desert_dam/exterior/valley/south_valley_dam)
"blQ" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "1,5"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/exterior/river/filtration_a)
"blR" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "6,6"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/exterior/river/filtration_a)
"blS" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "7,6"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/exterior/river/filtration_a)
"blT" = (
/obj/structure/disposalpipe/segment{
@@ -20439,18 +15867,14 @@
/obj/structure/filtration/coagulation{
icon_state = "1,5"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/exterior/river/filtration_a)
"blV" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "6,6"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/exterior/river/filtration_a)
"blW" = (
/obj/structure/surface/table/reinforced,
@@ -20459,10 +15883,7 @@
},
/obj/structure/machinery/light,
/obj/item/trash/kepler,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/building/security/lobby)
"blX" = (
/obj/structure/surface/table/reinforced,
@@ -20472,16 +15893,10 @@
},
/obj/structure/machinery/light,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/building/security/lobby)
"blY" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/desert_dam/building/security/lobby)
"blZ" = (
/turf/closed/wall/r_wall/bunker{
@@ -20491,24 +15906,16 @@
"bma" = (
/obj/structure/closet/secure_closet/security,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bmb" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bmc" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bmd" = (
/obj/structure/surface/table/reinforced,
@@ -20523,23 +15930,17 @@
name = "Security Desk"
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bme" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "7,6"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bmf" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bmg" = (
/obj/structure/desertdam/decals/road_edge{
@@ -20558,18 +15959,14 @@
/obj/structure/filtration/coagulation{
icon_state = "1,2"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bmj" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "7,2"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bmk" = (
/obj/structure/bed/chair{
@@ -20580,29 +15977,19 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/observation)
"bml" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/observation)
"bmm" = (
/obj/structure/dispenser,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/desert_dam/interior/dam_interior/tech_storage)
"bmn" = (
/obj/structure/dispenser,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/interior/dam_interior/tech_storage)
"bmo" = (
/obj/structure/safe,
@@ -20611,10 +15998,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/interior/dam_interior/tech_storage)
"bmp" = (
/obj/structure/surface/rack,
@@ -20624,56 +16008,39 @@
/obj/item/stack/sheet/plasteel{
amount = 15
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/interior/dam_interior/tech_storage)
"bmq" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/plasteel{
amount = 15
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/desert_dam/interior/dam_interior/tech_storage)
"bmr" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bms" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bmu" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"bmv" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"bmw" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/north_valley_dam)
"bmx" = (
/obj/structure/window/framed/prison/reinforced,
@@ -20683,19 +16050,14 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bmz" = (
/obj/structure/cargo_container/hd/right,
/turf/open/floor/plating,
/area/desert_dam/exterior/valley/valley_crashsite)
"bmA" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"bmB" = (
/obj/structure/cargo_container/kelland/left,
@@ -20703,9 +16065,7 @@
/area/desert_dam/exterior/valley/valley_crashsite)
"bmC" = (
/obj/structure/flora/grass/desert/lightgrass_1,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_medical)
"bmD" = (
/turf/closed/shuttle{
@@ -20714,101 +16074,70 @@
/area/desert_dam/interior/dam_interior/hanger)
"bmE" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/desert_dam/interior/dam_interior/tech_storage)
"bmF" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/desert_dam/interior/dam_interior/tech_storage)
"bmG" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/tech_storage)
"bmI" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/desert_dam/interior/dam_interior/tech_storage)
"bmJ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/west_tunnel)
"bmK" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"bmL" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/north_valley_dam)
"bmN" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "1,2"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bmQ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/desert_dam/building/mining/workshop_foyer)
"bmR" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "7,2"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bmS" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "2,1"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bmT" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "6,1"
},
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bmV" = (
/obj/structure/bed/chair,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/interrogation)
"bmW" = (
/obj/structure/machinery/power/apc{
@@ -20840,35 +16169,24 @@
/obj/structure/shuttle/diagonal{
icon_state = "swall_f5"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bnf" = (
/obj/structure/shuttle/diagonal{
icon_state = "swall_f9"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bng" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bnh" = (
/obj/structure/cargo_container/kelland/right,
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/hanger)
"bni" = (
/turf/closed/wall/r_wall/bunker{
@@ -20877,35 +16195,23 @@
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bnj" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/desert_dam/interior/dam_interior/tech_storage)
"bnl" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/computer/crew,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/desert_dam/interior/dam_interior/tech_storage)
"bnm" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bnp" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bnr" = (
/obj/structure/desertdam/decals/road_edge{
@@ -20928,9 +16234,7 @@
/area/desert_dam/exterior/valley/north_valley_dam)
"bnu" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"bnv" = (
/obj/structure/flora/bush/desert/cactus{
@@ -20939,19 +16243,14 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_telecoms)
"bnw" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/mining/workshop_foyer)
"bnx" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "2,1"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bny" = (
/obj/structure/flora/grass/desert/lightgrass_8,
@@ -20961,39 +16260,28 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_telecoms)
"bnA" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"bnB" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_telecoms)
"bnC" = (
/obj/structure/surface/table,
/obj/item/ammo_magazine/shotgun/slugs,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bnD" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Security Office Space"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/office)
"bnF" = (
/turf/closed/wall/r_wall/prison,
@@ -21009,60 +16297,40 @@
/area/desert_dam/interior/dam_interior/hanger)
"bnI" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/east,
/area/desert_dam/interior/dam_interior/hanger)
"bnJ" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
/obj/structure/largecrate/random/case,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/hanger)
"bnK" = (
/obj/effect/blocker/toxic_water,
/obj/structure/filtration/coagulation{
icon_state = "6,1"
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bnL" = (
/obj/structure/surface/table,
/obj/item/tool/lighter/zippo,
/obj/item/tool/lighter/zippo,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bnM" = (
/obj/structure/surface/table,
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bnN" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bnO" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bnP" = (
/obj/structure/machinery/power/apc{
@@ -21070,17 +16338,11 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/interior/dam_interior/tech_storage)
"bnQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/desert_dam/building/administration/control_room)
"bnT" = (
/obj/structure/surface/rack,
@@ -21102,31 +16364,20 @@
/obj/item/circuitboard/airlock,
/obj/item/circuitboard/airlock,
/obj/item/circuitboard/airlock,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/interior/dam_interior/tech_storage)
"bnX" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bnZ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bob" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/north_valley_dam)
"boc" = (
/obj/structure/disposalpipe/segment{
@@ -21138,32 +16389,23 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/north_valley_dam)
"boe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/north_valley_dam)
"bof" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/north_valley_dam)
"bog" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/south_valley_dam)
"boh" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -21171,51 +16413,33 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bom" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bop" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/desert_dam/building/mining/workshop_foyer)
"boq" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/security/staffroom)
"bor" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Showers"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/security/staffroom)
"bos" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Marshal Checkpoint"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bot" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -21223,34 +16447,23 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Marshal Office"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bou" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bov" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Detectives Office"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/detective)
"bow" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"box" = (
/obj/structure/machinery/power/apc{
@@ -21258,9 +16471,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/interrogation)
"boy" = (
/turf/closed/shuttle{
@@ -21271,29 +16482,18 @@
/obj/structure/surface/table,
/obj/item/cell/high/empty,
/obj/structure/machinery/cell_charger,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"boA" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"boB" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"boC" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/trackimp,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/interior/dam_interior/tech_storage)
"boD" = (
/obj/structure/disposalpipe/segment{
@@ -21305,9 +16505,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"boF" = (
/obj/structure/surface/rack,
@@ -21317,10 +16515,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/interior/dam_interior/tech_storage)
"boG" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -21332,15 +16527,11 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"boI" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/north_valley_dam)
"boJ" = (
/turf/closed/wall/hangar{
@@ -21350,34 +16541,25 @@
"boK" = (
/obj/structure/filtration/flacculation_arm,
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/desert_dam/exterior/river/filtration_a)
"boL" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"boM" = (
/obj/structure/machinery/colony_floodlight,
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"boN" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Marshals Office"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/marshals_office)
"boO" = (
/obj/structure/window/framed/colony/reinforced,
@@ -21390,47 +16572,34 @@
/area/desert_dam/building/warehouse/breakroom)
"boQ" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/breakroom)
"boR" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2;
name = "\improper Toilet Unit"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/breakroom)
"boS" = (
/obj/structure/machinery/colony_floodlight,
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"boT" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/north_valley_dam)
"boV" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_one)
"boW" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/desert_dam/building/security/northern_hallway)
"boX" = (
/obj/structure/disposalpipe/segment{
@@ -21441,39 +16610,24 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"bpa" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/desert_dam/building/security/northern_hallway)
"bpb" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/desert_dam/building/security/northern_hallway)
"bpe" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/desert_dam/building/security/northern_hallway)
"bpf" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/desert_dam/building/security/northern_hallway)
"bpg" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bph" = (
/obj/structure/machinery/power/apc{
@@ -21481,27 +16635,18 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/desert_dam/building/security/northern_hallway)
"bpi" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/desert_dam/building/security/northern_hallway)
"bpj" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bpk" = (
/obj/structure/barricade/sandbags{
@@ -21513,68 +16658,47 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bpl" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/desert_dam/exterior/valley/valley_telecoms)
"bpq" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/desert_dam/building/security/northern_hallway)
"bpr" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/desert_dam/exterior/valley/valley_mining)
"bps" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/desert_dam/exterior/valley/valley_telecoms)
"bpt" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/security/staffroom)
"bpu" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/landing_pad_one)
"bpv" = (
/obj/structure/surface/table,
/obj/item/trash/kepler,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bpw" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21585,29 +16709,21 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"bpx" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/recharge_station,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bpy" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/interior/dam_interior/tech_storage)
"bpz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21618,9 +16734,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bpA" = (
/obj/structure/surface/rack,
@@ -21629,10 +16743,7 @@
/area/desert_dam/interior/dam_interior/tech_storage)
"bpB" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/interior/dam_interior/tech_storage)
"bpC" = (
/obj/effect/decal/sand_overlay/sand2{
@@ -21657,9 +16768,7 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bpL" = (
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bpM" = (
/turf/closed/wall/r_wall/bunker{
@@ -21667,31 +16776,21 @@
},
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bpN" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/desert_dam/building/security/evidence)
"bpO" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bpP" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bpQ" = (
/obj/structure/machinery/landinglight/ds1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_one)
"bpR" = (
/obj/structure/surface/table,
@@ -21703,45 +16802,32 @@
icon_state = "pipe-c"
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/smes_main)
"bpS" = (
/obj/structure/filtration/coagulation_arm,
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/shallow/toxic,
/area/desert_dam/exterior/river/filtration_a)
"bpT" = (
/obj/structure/machinery/landinglight/ds1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/landing_pad_one)
"bpU" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/phoron{
amount = 15
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/smes_main)
"bpV" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/metal{
amount = 10
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/smes_main)
"bpW" = (
/obj/structure/surface/table,
@@ -21751,19 +16837,13 @@
/obj/item/stack/sheet/mineral/phoron{
amount = 15
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/smes_main)
"bpX" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/desert_dam/exterior/valley/valley_telecoms)
"bpY" = (
/obj/structure/window/framed/colony/reinforced,
@@ -21771,28 +16851,19 @@
/area/desert_dam/building/warehouse/breakroom)
"bqa" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/interior/caves/central_caves)
"bqc" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/bar_valley_dam)
"bqd" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_telecoms)
"bqe" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bqf" = (
/obj/structure/platform{
@@ -21801,71 +16872,49 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bqg" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bqh" = (
/obj/structure/closet,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/desert_dam/building/security/evidence)
"bqi" = (
/obj/structure/barricade/sandbags{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bqk" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/landing_pad_one)
"bql" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bqm" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bqn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bqp" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/valley_mining)
"bqq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21873,10 +16922,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bqt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21884,19 +16930,13 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bqu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bqw" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -21905,10 +16945,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bqx" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21918,10 +16955,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bqy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21930,10 +16964,7 @@
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bqA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21945,47 +16976,30 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bqH" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bqI" = (
/obj/structure/surface/rack,
/obj/item/cell/high/empty,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bqJ" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/lights/mixed,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/interior/dam_interior/tech_storage)
"bqK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/tech_storage)
"bqL" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/interior/dam_interior/tech_storage)
"bqM" = (
/obj/structure/platform{
@@ -21998,80 +17012,49 @@
/area/desert_dam/interior/dam_interior/north_tunnel)
"bqN" = (
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bqO" = (
/obj/structure/platform,
/obj/structure/machinery/light,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bqP" = (
/obj/structure/platform,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bqQ" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bqU" = (
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bqV" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bqW" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bqX" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bqY" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/smes_main)
"bqZ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"bra" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"brb" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/smes_main)
"brc" = (
/turf/closed/wall/hangar{
@@ -22082,23 +17065,14 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Break Room"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/warehouse/breakroom)
"bre" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"brf" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"brg" = (
/turf/closed/wall/r_wall,
@@ -22112,28 +17086,18 @@
/obj/structure/machinery/power/terminal{
dir = 1
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/desert_dam/building/substation/northwest)
"brj" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_mining)
"brm" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/desert_dam/building/security/evidence)
"brn" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/holding)
"bro" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -22143,25 +17107,16 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"brp" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"brq" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/exterior/valley/valley_telecoms)
"brr" = (
/turf/open/floor/plating,
@@ -22171,41 +17126,27 @@
dir = 1;
name = "\improper Marshal Office"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"brt" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bru" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"brz" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_mining)
"brA" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/mining/workshop)
"brB" = (
/obj/structure/machinery/light{
@@ -22214,27 +17155,19 @@
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"brC" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/desert_dam/interior/dam_interior/hanger)
"brD" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/desert_dam/interior/dam_interior/hanger)
"brE" = (
/obj/structure/machinery/power/apc{
@@ -22242,9 +17175,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"brF" = (
/turf/closed/wall/hangar{
@@ -22254,26 +17185,17 @@
"brG" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"brH" = (
/obj/structure/surface/rack,
/obj/item/cell/high/empty,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"brI" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/building/security/holding)
"brK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22283,38 +17205,26 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"brL" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/warehouse/breakroom)
"brM" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/desert_dam/interior/dam_interior/tech_storage)
"brN" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/desert_dam/interior/dam_interior/tech_storage)
"brO" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"brP" = (
/obj/structure/desertdam/decals/road_edge{
@@ -22344,27 +17254,19 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"brV" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"brW" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/landing_pad_one)
"brX" = (
/turf/open/floor/greengrid,
@@ -22376,105 +17278,67 @@
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bsa" = (
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/desert_dam/building/substation/northwest)
"bsb" = (
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/desert_dam/building/security/northern_hallway)
"bsc" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bsd" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bse" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bsf" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bsg" = (
/obj/structure/coatrack,
/turf/open/floor/wood,
/area/desert_dam/building/warehouse/breakroom)
"bsh" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/desert_dam/building/security/northern_hallway)
"bsi" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bsj" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bsk" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/northern_hallway)
"bsl" = (
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/desert_dam/building/security/northern_hallway)
"bsm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/desert_dam/building/security/northern_hallway)
"bsn" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/desert_dam/building/security/northern_hallway)
"bso" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/desert_dam/building/security/northern_hallway)
"bsp" = (
/obj/structure/window/framed/prison/reinforced,
@@ -22487,45 +17351,28 @@
name = "\improper Marshal Office"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/southern_hallway)
"bsr" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bss" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/hanger)
"bst" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/hanger)
"bsu" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/interior/dam_interior/hanger)
"bsw" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/hanger)
"bsy" = (
/obj/structure/surface/table,
@@ -22534,18 +17381,12 @@
pixel_x = -24
},
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bsz" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bsA" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -22553,9 +17394,7 @@
name = "\improper Secure Tech Storage"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/tech_storage)
"bsC" = (
/obj/effect/decal/warning_stripes{
@@ -22565,36 +17404,23 @@
/area/desert_dam/interior/dam_interior/north_tunnel)
"bsE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bsF" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bsG" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/interior/dam_interior/smes_main)
"bsH" = (
/obj/structure/pipes/vents/pump/on,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"bsJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bsK" = (
/obj/structure/machinery/power/terminal{
@@ -22609,9 +17435,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bsM" = (
/obj/structure/closet/radiation,
@@ -22621,34 +17445,21 @@
name = "General Listening Channel";
pixel_x = -30
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bsN" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bsO" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bsP" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/exterior/valley/valley_wilderness)
"bsQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/security/southern_hallway)
"bsR" = (
/obj/structure/filingcabinet,
@@ -22656,10 +17467,7 @@
/turf/open/floor/wood,
/area/desert_dam/building/warehouse/breakroom)
"bsS" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/building/security/southern_hallway)
"bsT" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -22674,59 +17482,36 @@
"btf" = (
/obj/structure/closet/secure_closet/security_empty,
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/staffroom)
"bth" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bti" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"btj" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/northwest,
/area/desert_dam/interior/dam_interior/hanger)
"btk" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"btl" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners3"
- },
+/turf/open/floor/prison/darkbrowncorners3/north,
/area/desert_dam/interior/dam_interior/hanger)
"btm" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners3"
- },
+/turf/open/floor/prison/darkbrowncorners3/east,
/area/desert_dam/interior/dam_interior/hanger)
"btp" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/east,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"btq" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"btr" = (
/obj/structure/machinery/power/apc{
@@ -22734,45 +17519,27 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bts" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"btt" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"btu" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"btv" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"btw" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"btx" = (
/obj/structure/closet/secure_closet/engineering_electrical,
@@ -22780,10 +17547,7 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bty" = (
/turf/closed/wall/r_wall,
@@ -22804,26 +17568,16 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"btD" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/north_tunnel)
"btE" = (
-/turf/open/desert/rock/deep/transition{
- dir = 4
- },
+/turf/open/desert/rock/deep/transition/east,
/area/desert_dam/interior/caves/east_caves)
"btF" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"btG" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"btH" = (
/obj/structure/disposalpipe/segment{
@@ -22832,37 +17586,26 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"btI" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"btJ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/desert_dam/building/administration/hallway)
"btK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/desert_dam/building/administration/hallway)
"btL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/desert_dam/building/administration/hallway)
"btM" = (
/obj/structure/disposalpipe/segment,
@@ -22870,18 +17613,14 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"btP" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
name = "\improper Administration Hallway"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"btQ" = (
/turf/closed/wall/hangar{
@@ -22890,52 +17629,35 @@
/area/desert_dam/interior/dam_interior/engine_room)
"btR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_mining)
"btS" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 2;
name = "\improper Engine Room"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_room)
"btT" = (
/obj/structure/closet/toolcloset,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"btU" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"btV" = (
/obj/structure/surface/table,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"btW" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/desert_dam/building/security/holding)
"btX" = (
/turf/open/floor/prison,
@@ -22945,10 +17667,7 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_medical)
"btZ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/southern_hallway)
"bua" = (
/obj/structure/closet/secure_closet/personal,
@@ -22959,9 +17678,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/exterior/valley/valley_telecoms)
"buc" = (
/turf/open/floor/wood,
@@ -22976,38 +17693,26 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/holding)
"buf" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/exterior/valley/valley_telecoms)
"bug" = (
/obj/structure/closet/secure_closet/security,
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/staffroom)
"buh" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_mining)
"bui" = (
/obj/structure/closet/bombclosetsecurity,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/staffroom)
"buj" = (
/turf/open/asphalt/cement,
@@ -23020,19 +17725,13 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"bul" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_mining)
"bum" = (
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"but" = (
/obj/structure/window/framed/wood/reinforced,
@@ -23043,29 +17742,19 @@
pixel_x = -32
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/building/security/staffroom)
"buv" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/floor/coagulation{
- icon_state = "8,4"
- },
+/turf/open/floor/coagulation/icon8_4,
/area/desert_dam/exterior/valley/valley_mining)
"bux" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_mining)
"buz" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"buA" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -23079,10 +17768,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"buC" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -23091,10 +17777,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"buD" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -23103,10 +17786,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"buI" = (
/obj/structure/machinery/door_control{
@@ -23119,9 +17799,7 @@
/area/desert_dam/interior/dam_interior/hanger)
"buJ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/lobby)
"buK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -23130,49 +17808,32 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"buM" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/building/administration/hallway)
"buN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/lobby)
"buO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/desert_dam/building/administration/hallway)
"buP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"buQ" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"buR" = (
/obj/structure/desertdam/decals/road_edge{
@@ -23198,18 +17859,14 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"buX" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"buY" = (
/obj/structure/disposalpipe/segment{
@@ -23217,32 +17874,21 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"buZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/administration/hallway)
"bva" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/desert_dam/building/administration/hallway)
"bvb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bvc" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -23252,62 +17898,41 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"bvd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"bve" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"bvh" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_northwest)
"bvi" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_room)
"bvj" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_room)
"bvk" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_room)
"bvl" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bvm" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -23315,28 +17940,20 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bvn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bvo" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bvp" = (
/obj/structure/bed/chair/wood/normal{
@@ -23349,10 +17966,7 @@
amount = 10
},
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"bvr" = (
/obj/structure/stairs{
@@ -23361,27 +17975,19 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bvu" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/building/mining/workshop)
"bvv" = (
/obj/structure/window/framed/colony,
/turf/open/floor/plating,
/area/desert_dam/building/mining/workshop)
"bvw" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/east,
/area/desert_dam/building/mining/workshop_foyer)
"bvx" = (
/turf/open/floor/prison,
@@ -23390,15 +17996,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/building/security/southern_hallway)
"bvz" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_mining)
"bvA" = (
/turf/closed/wall/hangar{
@@ -23410,9 +18011,7 @@
/obj/structure/machinery/computer/objective{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"bvD" = (
/turf/open/floor/prison,
@@ -23421,10 +18020,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/desert_dam/building/security/staffroom)
"bvF" = (
/obj/structure/disposalpipe/trunk{
@@ -23432,10 +18028,7 @@
icon_state = "pipe-u"
},
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/staffroom)
"bvG" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -23444,83 +18037,52 @@
icon_state = "pipe-j2"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/desert_dam/building/security/southern_hallway)
"bvH" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/desert_dam/building/security/southern_hallway)
"bvJ" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bvK" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/staffroom)
"bvL" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/staffroom)
"bvM" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/staffroom)
"bvS" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/staffroom)
"bvT" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/desert_dam/building/security/staffroom)
"bvU" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bvV" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bvW" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bvX" = (
/obj/structure/disposalpipe/segment{
@@ -23528,15 +18090,10 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bvY" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bwa" = (
/obj/structure/disposalpipe/junction{
@@ -23546,57 +18103,40 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bwb" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bwc" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bwd" = (
/obj/structure/platform,
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bwe" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bwf" = (
/obj/structure/surface/rack,
/obj/item/tool/extinguisher/mini,
/obj/item/circuitboard/airlock,
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bwg" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bwh" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bwi" = (
/obj/structure/surface/table,
@@ -23605,10 +18145,7 @@
},
/obj/item/storage/toolbox/emergency,
/obj/item/circuitboard/firealarm,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bwj" = (
/obj/structure/surface/table,
@@ -23617,19 +18154,13 @@
/obj/item/device/assembly/igniter,
/obj/item/device/assembly/signaller,
/obj/item/circuitboard/airlock,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bwk" = (
/obj/structure/surface/table,
/obj/item/device/assembly/infra,
/obj/item/device/assembly/voice,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bwl" = (
/obj/structure/machinery/power/apc{
@@ -23637,105 +18168,64 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bwn" = (
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bwo" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/interior/dam_interior/smes_main)
"bwp" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"bwr" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper SMES"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/interior/dam_interior/smes_main)
"bwt" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northwest,
/area/desert_dam/interior/dam_interior/engine_room)
"bwu" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/desert_dam/interior/dam_interior/engine_room)
"bwv" = (
-/turf/open/floor{
- icon_state = "neutral"
- },
+/turf/open/floor/neutral,
/area/desert_dam/interior/dam_interior/engine_room)
"bww" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northeast,
/area/desert_dam/interior/dam_interior/engine_room)
"bwx" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/cans/thirteenloko,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bwy" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bwz" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bwA" = (
/obj/structure/machinery/power/port_gen/pacman/super,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bwB" = (
/obj/structure/machinery/power/port_gen/pacman/super,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bwD" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -32
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/building/security/staffroom)
"bwE" = (
/obj/structure/bed/chair,
@@ -23747,29 +18237,21 @@
/turf/open/floor/interior/wood,
/area/desert_dam/building/security/courtroom)
"bwH" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/observation)
"bwI" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/observation)
"bwK" = (
/obj/structure/surface/table,
/obj/item/device/flashlight/lamp,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/interrogation)
"bwL" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/interrogation)
"bwM" = (
/obj/structure/machinery/power/apc{
@@ -23777,15 +18259,11 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/desert_dam/building/security/evidence)
"bwO" = (
/obj/effect/landmark/corpsespawner/security/marshal,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/desert_dam/building/security/evidence)
"bwQ" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -23800,73 +18278,49 @@
/turf/open/floor/prison,
/area/desert_dam/building/security/holding)
"bwT" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bwU" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bwV" = (
/obj/structure/machinery/light,
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bwW" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners3"
- },
+/turf/open/floor/prison/darkbrowncorners3/west,
/area/desert_dam/interior/dam_interior/hanger)
"bwX" = (
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners3"
- },
+/turf/open/floor/prison/darkbrowncorners3,
/area/desert_dam/interior/dam_interior/hanger)
"bwY" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bwZ" = (
/obj/structure/largecrate/random/barrel/white,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bxa" = (
/obj/structure/largecrate/random/barrel/blue,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bxb" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bxc" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners3"
- },
+/turf/open/floor/prison/darkbrowncorners3/west,
/area/desert_dam/interior/dam_interior/hanger)
"bxd" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bxe" = (
/obj/structure/disposalpipe/segment{
@@ -23877,43 +18331,29 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bxf" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bxg" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bxh" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bxi" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bxj" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/landing_pad_one)
"bxk" = (
/obj/structure/surface/table,
@@ -23924,17 +18364,13 @@
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bxl" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bxm" = (
/obj/structure/disposalpipe/segment{
@@ -23943,16 +18379,11 @@
},
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bxn" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bxo" = (
/obj/effect/decal/warning_stripes{
@@ -23966,9 +18397,7 @@
},
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bxr" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bxs" = (
/obj/structure/stairs{
@@ -23977,30 +18406,21 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bxt" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bxu" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bxv" = (
/obj/structure/surface/rack,
/obj/item/explosive/grenade/custom/metal_foam,
/obj/item/explosive/grenade/custom/metal_foam,
/obj/item/device/flashlight,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bxy" = (
/obj/structure/disposalpipe/junction{
@@ -24010,9 +18430,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bxz" = (
/obj/structure/machinery/power/apc{
@@ -24020,78 +18438,51 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/smes_main)
"bxB" = (
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/smes_main)
"bxD" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "warning"
- },
+/turf/open/floor/warning/west,
/area/desert_dam/interior/dam_interior/engine_room)
"bxF" = (
/obj/effect/landmark/good_item,
/turf/open/floor/plating,
/area/desert_dam/building/warehouse/breakroom)
"bxJ" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "warning"
- },
+/turf/open/floor/warning/east,
/area/desert_dam/interior/dam_interior/engine_room)
"bxK" = (
/obj/structure/surface/table,
/obj/item/device/flashlight/flare,
/obj/item/device/radio,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bxL" = (
/obj/structure/bed/stool,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bxM" = (
/obj/effect/spawner/random/powercell,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bxN" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bxQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bxR" = (
/obj/structure/barricade/sandbags,
/obj/structure/barricade/sandbags{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bxS" = (
/obj/structure/platform{
@@ -24101,9 +18492,7 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_east)
"bxT" = (
/obj/structure/platform{
@@ -24113,9 +18502,7 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_east)
"bxU" = (
/obj/structure/platform{
@@ -24125,18 +18512,14 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/desert_dam/exterior/river/riverside_east)
"bxV" = (
/obj/structure/platform_decoration{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_east)
"bxW" = (
/obj/structure/platform{
@@ -24155,9 +18538,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bxZ" = (
/obj/structure/disposalpipe/segment,
@@ -24167,23 +18548,16 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"byb" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/building/security/southern_hallway)
"bym" = (
-/turf/open/desert/rock/deep/transition{
- dir = 5
- },
+/turf/open/desert/rock/deep/transition/northeast,
/area/desert_dam/interior/caves/east_caves)
"byn" = (
/turf/closed/wall/r_wall/bunker{
@@ -24198,19 +18572,13 @@
"byp" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/effect/landmark/corpsespawner/security/liaison,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/desert_dam/building/administration/overseer_office)
"byq" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Hangar"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"byr" = (
/obj/structure/machinery/door_control{
@@ -24225,24 +18593,15 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"byt" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"byu" = (
/obj/structure/surface/table,
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"byv" = (
/obj/structure/machinery/light{
@@ -24251,29 +18610,21 @@
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"byw" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"byx" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"byy" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"byz" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -24283,9 +18634,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"byA" = (
/obj/structure/disposalpipe/junction{
@@ -24295,18 +18644,14 @@
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"byB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"byC" = (
/obj/structure/window/framed/hangar,
@@ -24318,50 +18663,35 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"byE" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"byL" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_room)
"byP" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/desert_dam/building/substation/northwest)
"byQ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/staffroom)
"byR" = (
/obj/structure/closet/secure_closet/marshal,
/obj/item/clothing/suit/storage/CMB,
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/staffroom)
"byS" = (
/obj/structure/disposalpipe/segment{
@@ -24373,9 +18703,7 @@
/area/desert_dam/interior/dam_interior/engine_east_wing)
"byT" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/exterior/valley/valley_wilderness)
"byU" = (
/obj/structure/window/framed/colony/reinforced,
@@ -24383,15 +18711,11 @@
/area/desert_dam/building/security/staffroom)
"byV" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/floor/coagulation{
- icon_state = "7,0"
- },
+/turf/open/floor/coagulation/icon7_0,
/area/desert_dam/exterior/valley/valley_mining)
"byW" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/floor/coagulation{
- icon_state = "7,0"
- },
+/turf/open/floor/coagulation/icon7_0,
/area/desert_dam/exterior/valley/valley_mining)
"byX" = (
/obj/structure/machinery/light{
@@ -24404,14 +18728,10 @@
dir = 1
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_wilderness)
"byZ" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/exterior/valley/valley_wilderness)
"bza" = (
/obj/structure/surface/table,
@@ -24445,14 +18765,10 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bzi" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bzj" = (
/obj/structure/machinery/power/apc{
@@ -24460,70 +18776,44 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bzk" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/west,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bzl" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bzm" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bzn" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/east,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bzo" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bzp" = (
/obj/structure/largecrate/random,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bzq" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bzr" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bzt" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bzu" = (
/turf/closed/wall/hangar{
@@ -24532,35 +18822,25 @@
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bzv" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bzw" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bzx" = (
/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bzy" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bzz" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bzA" = (
/obj/structure/desertdam/decals/road_edge,
@@ -24573,40 +18853,28 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bzD" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Tool Storage"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bzE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bzF" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bzG" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bzH" = (
/turf/closed/wall/hangar{
@@ -24620,10 +18888,7 @@
/obj/effect/decal/warning_stripes{
pixel_y = 30
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/control_room)
"bzJ" = (
/obj/structure/disposalpipe/segment,
@@ -24633,9 +18898,7 @@
name = "\improper Colony Overseer's Office"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/overseer_office)
"bzK" = (
/obj/structure/machinery/power/apc{
@@ -24643,65 +18906,43 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bzL" = (
/obj/structure/machinery/power/monitor{
name = "Core Power Monitoring"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/desert_dam/interior/dam_interior/control_room)
"bzM" = (
/obj/structure/surface/table,
/obj/item/device/analyzer,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/desert_dam/interior/dam_interior/control_room)
"bzN" = (
/obj/structure/machinery/computer3/powermonitor,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/desert_dam/interior/dam_interior/control_room)
"bzO" = (
/obj/structure/machinery/computer/atmos_alert,
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/desert_dam/interior/dam_interior/control_room)
"bzP" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "neutral"
- },
+/turf/open/floor/neutral,
/area/desert_dam/interior/dam_interior/engine_room)
"bzQ" = (
/obj/structure/surface/table,
/obj/item/storage/box/lights/mixed,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bzR" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/exterior/valley/valley_wilderness)
"bzS" = (
/obj/structure/prop/dam/boulder/boulder3,
@@ -24709,21 +18950,14 @@
/area/desert_dam/exterior/valley/valley_wilderness)
"bzT" = (
/obj/structure/closet/crate/secure,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/mining/workshop_foyer)
"bzU" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/desert_dam/building/substation/northwest)
"bzV" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/exterior/valley/valley_wilderness)
"bzW" = (
/obj/effect/landmark/survivor_spawner,
@@ -24732,9 +18966,7 @@
"bzX" = (
/obj/structure/surface/table,
/obj/item/device/taperecorder,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/interrogation)
"bzY" = (
/turf/open/asphalt/cement_sunbleached,
@@ -24746,9 +18978,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/desert_dam/building/security/evidence)
"bAa" = (
/obj/structure/machinery/power/apc{
@@ -24756,16 +18986,10 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/staffroom)
"bAb" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/building/security/staffroom)
"bAc" = (
/obj/structure/bed/chair,
@@ -24773,9 +18997,7 @@
/area/desert_dam/building/security/staffroom)
"bAh" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bAm" = (
/obj/structure/window/framed/hangar,
@@ -24786,9 +19008,7 @@
icon_state = "gib6"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"bAp" = (
/obj/structure/machinery/power/apc{
@@ -24796,9 +19016,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bAq" = (
/obj/effect/decal/warning_stripes{
@@ -24816,63 +19034,41 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bAt" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bAv" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bAw" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/caves/east_caves)
"bAy" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bAz" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bAA" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bAB" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bAC" = (
/obj/structure/machinery/pipedispenser,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bAD" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bAE" = (
/obj/structure/disposalpipe/segment{
@@ -24887,22 +19083,16 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/landing_pad_one)
"bAG" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bAH" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bAI" = (
/obj/structure/disposalpipe/segment{
@@ -24912,10 +19102,7 @@
/turf/open/floor/wood,
/area/desert_dam/building/administration/overseer_office)
"bAJ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/control_room)
"bAK" = (
/turf/open/floor/greengrid,
@@ -24923,95 +19110,64 @@
"bAM" = (
/obj/structure/surface/table,
/obj/item/storage/box/lightstick,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bAN" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/exterior/valley/valley_wilderness)
"bAO" = (
/obj/structure/stairs,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/exterior/valley/valley_wilderness)
"bAP" = (
/obj/structure/stairs,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/exterior/valley/valley_wilderness)
"bAR" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/exterior/valley/valley_wilderness)
"bAS" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_wilderness)
"bAY" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/floor/coagulation{
- icon_state = "2,0"
- },
+/turf/open/floor/coagulation/icon2_0,
/area/desert_dam/exterior/valley/valley_mining)
"bAZ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/floor/coagulation{
- icon_state = "8,0"
- },
+/turf/open/floor/coagulation/icon8_0,
/area/desert_dam/exterior/valley/valley_mining)
"bBb" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/desert_dam/building/security/evidence)
"bBc" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/desert_dam/building/security/holding)
"bBd" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/southwest,
/area/desert_dam/building/security/holding)
"bBe" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/southern_hallway)
"bBf" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/desert_dam/exterior/valley/valley_telecoms)
"bBg" = (
/obj/structure/bed/chair,
@@ -25021,25 +19177,17 @@
"bBh" = (
/obj/structure/powerloader_wreckage,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bBi" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet10-8"
- },
+/turf/open/floor/carpet10_8/west,
/area/desert_dam/building/administration/overseer_office)
"bBj" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bBk" = (
/obj/structure/machinery/power/apc{
@@ -25061,19 +19209,13 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bBp" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bBq" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bBr" = (
/obj/structure/platform_decoration{
@@ -25094,10 +19236,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bBv" = (
/obj/structure/machinery/power/apc{
@@ -25105,19 +19244,14 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/control_room)
"bBw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bBx" = (
/obj/structure/surface/table/reinforced,
@@ -25125,10 +19259,7 @@
id = "dam_checkpoint_northwest";
name = "Checkpoint Lockdown"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bBy" = (
/obj/effect/decal/cleanable/dirt,
@@ -25137,59 +19268,42 @@
/area/desert_dam/building/security/staffroom)
"bBD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bBF" = (
/obj/structure/surface/table,
/obj/structure/machinery/cell_charger,
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bBG" = (
/obj/structure/surface/table,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bBH" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bBI" = (
/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bBL" = (
/turf/closed/wall/r_wall/prison,
/area/desert_dam/building/security/deathrow)
"bBM" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/mining/workshop_foyer)
"bBO" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/deathrow)
"bBP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bBQ" = (
/obj/structure/platform{
@@ -25198,15 +19312,10 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bBR" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/building/mining/workshop_foyer)
"bBS" = (
/obj/structure/bed/chair,
@@ -25224,16 +19333,11 @@
/area/desert_dam/building/security/staffroom)
"bCe" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bCf" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/desert_dam/interior/dam_interior/tech_storage)
"bCg" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -25250,9 +19354,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bCj" = (
/obj/structure/platform_decoration,
@@ -25274,33 +19376,25 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bCn" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bCo" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bCp" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bCq" = (
/obj/structure/machinery/power/apc{
@@ -25311,15 +19405,11 @@
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bCr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bCs" = (
/obj/structure/window/framed/hangar,
@@ -25327,36 +19417,21 @@
/turf/open/floor/plating,
/area/desert_dam/interior/dam_interior/engine_room)
"bCt" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/lobby)
"bCu" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/interior/dam_interior/lobby)
"bCv" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"bCw" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"bCx" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/lobby)
"bCy" = (
/obj/structure/window/framed/hangar,
@@ -25364,48 +19439,31 @@
/turf/open/floor/plating,
/area/desert_dam/interior/dam_interior/engine_room)
"bCz" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/interior/dam_interior/control_room)
"bCA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/tech_storage)
"bCB" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/control_room)
"bCD" = (
/obj/structure/surface/table,
/obj/structure/machinery/cell_charger,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bCH" = (
/obj/structure/cargo_container/grant/left,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"bCI" = (
/obj/structure/cargo_container/grant/rightmid,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"bCJ" = (
/obj/structure/cargo_container/grant/right,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"bCK" = (
/obj/structure/flora/grass/desert/heavygrass_4,
@@ -25415,16 +19473,12 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/interrogation)
"bCN" = (
/obj/structure/surface/table/reinforced,
/obj/item/evidencebag,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/desert_dam/building/security/evidence)
"bCO" = (
/obj/effect/decal/cleanable/dirt,
@@ -25435,48 +19489,34 @@
/area/desert_dam/exterior/valley/valley_hydro)
"bCP" = (
/obj/structure/cargo_container/hd/left/alt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bCQ" = (
/obj/structure/cargo_container/hd/mid/alt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bCR" = (
/obj/structure/cargo_container/hd/right/alt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bCS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bCT" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bCU" = (
/obj/structure/pipes/vents/pump/on,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/tech_storage)
"bCV" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bCW" = (
/obj/structure/stairs{
@@ -25491,14 +19531,10 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bCY" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bCZ" = (
/obj/structure/platform_decoration{
@@ -25516,9 +19552,7 @@
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bDb" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bDc" = (
/obj/structure/disposalpipe/segment{
@@ -25537,17 +19571,13 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bDg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bDh" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -25556,16 +19586,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bDi" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bDj" = (
/obj/structure/surface/rack,
@@ -25577,10 +19602,7 @@
icon_state = "W"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/hanger)
"bDl" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -25590,40 +19612,26 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"bDm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"bDn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bDo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bDp" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bDu" = (
/obj/structure/machinery/power/apc{
@@ -25631,9 +19639,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "neutral"
- },
+/turf/open/floor/neutral,
/area/desert_dam/interior/dam_interior/engine_room)
"bDw" = (
/obj/structure/machinery/power/apc{
@@ -25641,10 +19647,7 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bDx" = (
/turf/closed/wall/r_wall/bunker{
@@ -25652,23 +19655,15 @@
},
/area/desert_dam/interior/dam_interior/atmos_storage)
"bDy" = (
-/turf/open/desert/rock/deep{
- icon_state = "rock4"
- },
+/turf/open/desert/rock/deep/rock4,
/area/desert_dam/interior/caves/east_caves)
"bDz" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bDA" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bDB" = (
/obj/structure/machinery/power/apc{
@@ -25676,39 +19671,25 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bDC" = (
/obj/structure/machinery/floodlight,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bDD" = (
/obj/structure/machinery/floodlight,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bDE" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/desert_dam/building/security/evidence)
"bDI" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/southern_hallway)
"bDJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -25723,15 +19704,10 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bDL" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/southern_hallway)
"bDM" = (
/obj/structure/pipes/vents/pump{
@@ -25746,9 +19722,7 @@
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/landing_pad_one)
"bDR" = (
/obj/structure/window/framed/hangar,
@@ -25776,9 +19750,7 @@
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_civilian)
"bDZ" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -25794,46 +19766,32 @@
dir = 2;
name = "\improper Workshop"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"bEc" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/desert_dam/building/dorms/restroom)
"bEd" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bEe" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bEf" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bEg" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bEh" = (
/obj/structure/stairs,
@@ -25846,46 +19804,34 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bEj" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bEk" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bEl" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bEo" = (
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bEp" = (
/obj/structure/platform,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bEq" = (
/obj/structure/stairs{
@@ -25897,9 +19843,7 @@
"bEr" = (
/obj/structure/platform,
/obj/structure/machinery/light,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bEu" = (
/obj/structure/platform_decoration,
@@ -25927,17 +19871,11 @@
/area/desert_dam/interior/dam_interior/tech_storage)
"bEz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/west,
/area/desert_dam/interior/dam_interior/hanger)
"bEA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"bEB" = (
/obj/effect/decal/warning_stripes{
@@ -25945,17 +19883,11 @@
},
/obj/item/tool/warning_cone,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/hanger)
"bEC" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/desert_dam/interior/dam_interior/tech_storage)
"bED" = (
/obj/effect/decal/warning_stripes{
@@ -25975,25 +19907,16 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"bEF" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bEG" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bEH" = (
/obj/structure/disposalpipe/segment{
@@ -26003,10 +19926,7 @@
dir = 8;
icon_state = "pipe-j2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"bEI" = (
/obj/structure/disposalpipe/segment{
@@ -26016,19 +19936,13 @@
dir = 2;
name = "\improper Engineering Hallway"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bEJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bEK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26037,10 +19951,7 @@
/obj/structure/disposalpipe/junction{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bEL" = (
/obj/effect/decal/cleanable/dirt,
@@ -26058,17 +19969,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bEO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/hanger)
"bEP" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -26081,10 +19986,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_room)
"bEQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26093,9 +19995,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/desert_dam/interior/dam_interior/engine_room)
"bER" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26104,9 +20004,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "neutral"
- },
+/turf/open/floor/neutral,
/area/desert_dam/interior/dam_interior/engine_room)
"bES" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -26115,9 +20013,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "neutral"
- },
+/turf/open/floor/neutral,
/area/desert_dam/interior/dam_interior/engine_room)
"bET" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26130,10 +20026,7 @@
dir = 2;
name = "\improper Engine Room"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_room)
"bEU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26142,10 +20035,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bEV" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -26155,27 +20045,17 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bFa" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bFb" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bFc" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/interior/caves/east_caves)
"bFd" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -26184,49 +20064,34 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"bFe" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"bFf" = (
/obj/structure/surface/table,
/obj/item/restraint/handcuffs,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/desert_dam/building/security/holding)
"bFg" = (
/obj/structure/machinery/landinglight/ds1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/landing_pad_one)
"bFi" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/southern_hallway)
"bFk" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/southern_hallway)
"bFl" = (
/obj/structure/machinery/power/apc{
@@ -26234,36 +20099,25 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/southern_hallway)
"bFm" = (
/obj/structure/surface/table,
/obj/item/device/taperecorder,
/obj/item/clothing/glasses/sunglasses,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/holding)
"bFn" = (
/obj/structure/surface/table,
/obj/item/storage/donut_box,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/holding)
"bFo" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/holding)
"bFp" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/holding)
"bFq" = (
/obj/structure/surface/rack,
@@ -26272,36 +20126,23 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/desert_dam/building/substation/northwest)
"bFr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/building/security/southern_hallway)
"bFs" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/desert_dam/building/security/southern_hallway)
"bFt" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/desert_dam/exterior/valley/valley_telecoms)
"bFu" = (
/obj/structure/target,
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/desert_dam/exterior/valley/valley_telecoms)
"bFv" = (
/obj/structure/surface/table,
@@ -26318,16 +20159,11 @@
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/desert_dam/building/security/holding)
"bFx" = (
/obj/structure/closet/secure_closet/brig,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/deathrow)
"bFy" = (
/obj/structure/surface/table,
@@ -26338,9 +20174,7 @@
"bFA" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bFB" = (
/obj/structure/machinery/landinglight/ds1{
@@ -26355,49 +20189,30 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/landing_pad_two)
"bFD" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/mining/workshop_foyer)
"bFF" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_mining)
"bFG" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bFH" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/west,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bFI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/interior/dam_interior/hanger)
"bFJ" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners3"
- },
+/turf/open/floor/prison/darkbrowncorners3/north,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bFK" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/north,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bFL" = (
/obj/structure/platform{
@@ -26412,9 +20227,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bFN" = (
/obj/structure/platform_decoration{
@@ -26424,15 +20237,11 @@
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bFO" = (
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bFP" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bFQ" = (
/obj/structure/disposalpipe/segment{
@@ -26440,55 +20249,34 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bFR" = (
/obj/structure/pipes/vents/pump/on,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bFS" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/interior/dam_interior/lobby)
"bFT" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"bFU" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/lobby)
"bFV" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/control_room)
"bFW" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/interior/dam_interior/control_room)
"bFX" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bFY" = (
/obj/structure/machinery/power/smes/buildable{
@@ -26499,25 +20287,19 @@
/turf/open/floor/plating,
/area/desert_dam/interior/dam_interior/smes_main)
"bFZ" = (
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/control_room)
"bGa" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/control_room)
"bGb" = (
/obj/structure/surface/table,
/obj/structure/machinery/cell_charger,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/control_room)
"bGc" = (
/obj/structure/window/framed/colony/reinforced,
@@ -26527,79 +20309,53 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_mining)
"bGg" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "neutral"
- },
+/turf/open/floor/neutral,
/area/desert_dam/interior/dam_interior/engine_room)
"bGh" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bGi" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bGj" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper Atmospheric Storage"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bGk" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bGn" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/south_tunnel)
"bGp" = (
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/caves/east_caves)
"bGs" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_mining)
"bGt" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/building/mining/workshop_foyer)
"bGu" = (
/obj/structure/platform,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bGv" = (
/obj/structure/surface/table,
@@ -26614,9 +20370,7 @@
/area/desert_dam/building/security/staffroom)
"bGx" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/deathrow)
"bGy" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -26687,10 +20441,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/desert_dam/building/security/southern_hallway)
"bGJ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -26703,9 +20454,7 @@
dir = 1;
name = "\improper Observation"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/observation)
"bGL" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -26715,10 +20464,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/desert_dam/building/security/southern_hallway)
"bGO" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -26728,20 +20474,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/desert_dam/building/security/southern_hallway)
"bGP" = (
/obj/structure/machinery/computer/med_data,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/north,
/area/desert_dam/building/medical/chemistry)
"bGQ" = (
/obj/structure/machinery/power/terminal{
@@ -26754,18 +20494,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bGT" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bGU" = (
/obj/structure/desertdam/decals/road_edge{
@@ -26799,25 +20534,16 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Engineering Central"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bHa" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bHb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Engineering Central"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bHc" = (
/turf/closed/wall/hangar{
@@ -26849,19 +20575,14 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/desert_dam/building/security/southern_hallway)
"bHh" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 2
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/lobby)
"bHi" = (
/obj/structure/machinery/power/apc{
@@ -26869,20 +20590,14 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/lobby)
"bHl" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/lobby)
"bHm" = (
/turf/closed/wall/hangar{
@@ -26898,31 +20613,21 @@
name = "\improper Backup SMES"
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"bHp" = (
/obj/structure/pipes/vents/pump/on,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bHq" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_room)
"bHr" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southwest,
/area/desert_dam/interior/dam_interior/engine_room)
"bHs" = (
/obj/structure/prop/dam/boulder/boulder3,
@@ -26933,40 +20638,26 @@
/turf/open/floor/prison,
/area/desert_dam/building/security/staffroom)
"bHv" = (
-/turf/open/floor{
- dir = 7;
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/desert_dam/interior/dam_interior/engine_room)
"bHw" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southeast,
/area/desert_dam/interior/dam_interior/engine_room)
"bHx" = (
/obj/structure/surface/table,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bHy" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bHz" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bHB" = (
/obj/structure/closet/crate,
@@ -26983,32 +20674,23 @@
},
/obj/item/storage/briefcase/inflatable,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bHD" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/interior/caves/central_caves)
"bHE" = (
-/turf/open/desert/rock/deep/transition{
- dir = 9
- },
+/turf/open/desert/rock/deep/transition/northwest,
/area/desert_dam/interior/caves/east_caves)
"bHF" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/prison,
/area/desert_dam/building/security/staffroom)
"bHG" = (
-/turf/open/desert/rock/deep/transition{
- dir = 6
- },
+/turf/open/desert/rock/deep/transition/southeast,
/area/desert_dam/interior/caves/east_caves)
"bHI" = (
/obj/structure/surface/table,
@@ -27036,26 +20718,17 @@
/area/desert_dam/building/security/staffroom)
"bHM" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/staffroom)
"bHN" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/desert_dam/building/security/staffroom)
"bHQ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "\improper Cargo Bay"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bHR" = (
/obj/structure/stairs{
@@ -27075,34 +20748,20 @@
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bHT" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bHV" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bHW" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bHX" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bHY" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bHZ" = (
/obj/structure/surface/rack,
@@ -27117,18 +20776,12 @@
/obj/item/ammo_magazine/smg/nailgun,
/obj/item/ammo_magazine/smg/nailgun,
/obj/item/ammo_magazine/smg/nailgun,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bIb" = (
/obj/structure/closet/secure_closet/engineering_welding,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bIc" = (
/obj/structure/closet/secure_closet/engineering_welding,
@@ -27136,16 +20789,10 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bId" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bIe" = (
/obj/item/reagent_container/glass/bucket/mopbucket,
@@ -27161,19 +20808,13 @@
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bIh" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners3"
- },
+/turf/open/floor/prison/darkbrowncorners3/north,
/area/desert_dam/interior/dam_interior/hanger)
"bIl" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/lobby)
"bIm" = (
/obj/structure/machinery/power/apc{
@@ -27181,74 +20822,46 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"bIn" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"bIq" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/smes_backup)
"bIr" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/smes_backup)
"bIs" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/interior/dam_interior/smes_backup)
"bIt" = (
/turf/open/floor/plating,
/area/desert_dam/interior/dam_interior/smes_backup)
"bIu" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_room)
"bIv" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bIw" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"bIx" = (
/obj/structure/surface/rack,
/obj/item/clothing/mask/gas,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bIy" = (
/obj/structure/surface/rack,
/obj/item/clothing/mask/gas,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bIz" = (
/obj/structure/surface/rack,
@@ -27260,28 +20873,19 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/item/fuel_cell,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bIA" = (
/obj/structure/machinery/portable_atmospherics/powered/pump,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bIB" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bIC" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/desert_dam/interior/dam_interior/atmos_storage)
"bID" = (
/turf/closed/wall/r_wall/bunker{
@@ -27317,19 +20921,13 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/desert_dam/building/security/southern_hallway)
"bIU" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/desert_dam/exterior/valley/valley_telecoms)
"bIV" = (
/obj/structure/surface/table/woodentable,
@@ -27337,30 +20935,21 @@
/turf/open/floor/interior/wood,
/area/desert_dam/building/bar/backroom)
"bIW" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/southern_hallway)
"bIX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/southern_hallway)
"bIY" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/interrogation)
"bIZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/desert_dam/building/security/southern_hallway)
"bJa" = (
/obj/effect/decal/cleanable/dirt,
@@ -27368,31 +20957,21 @@
/area/desert_dam/building/security/southern_hallway)
"bJb" = (
/obj/structure/cargo_container/arious/leftmid,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bJc" = (
/obj/structure/cargo_container/arious/rightmid,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bJd" = (
/obj/structure/cargo_container/arious/right,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bJe" = (
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners3"
- },
+/turf/open/floor/prison/darkbrowncorners3,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bJf" = (
-/turf/open/floor/prison{
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bJg" = (
/obj/structure/platform_decoration{
@@ -27410,21 +20989,15 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bJj" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bJk" = (
/obj/structure/platform,
/obj/structure/machinery/light,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bJl" = (
/obj/structure/surface/table/reinforced,
@@ -27433,25 +21006,17 @@
},
/obj/item/clothing/glasses/welding,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bJm" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bJn" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/smes_main)
"bJo" = (
/obj/structure/surface/table,
@@ -27463,15 +21028,10 @@
/turf/open/floor/plating,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bJq" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/desert_dam/interior/dam_interior/lobby)
"bJr" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/lobby)
"bJs" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -27479,10 +21039,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bJt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -27492,18 +21049,12 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bJv" = (
/obj/structure/bed/stool,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/smes_backup)
"bJx" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -27513,16 +21064,10 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bJz" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"bJB" = (
/obj/structure/machinery/power/port_gen/pacman,
@@ -27539,15 +21084,10 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/south_tunnel)
"bJF" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/south_tunnel)
"bJH" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/southwest,
/area/desert_dam/building/security/southern_hallway)
"bJI" = (
/obj/structure/bed/chair{
@@ -27560,51 +21100,33 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/southern_hallway)
"bJK" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/desert_dam/building/security/southern_hallway)
"bJL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/desert_dam/building/security/southern_hallway)
"bJM" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/desert_dam/building/security/southern_hallway)
"bJN" = (
/obj/effect/blocker/toxic_water/Group_2,
/obj/structure/platform,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bJO" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/southwest,
/area/desert_dam/building/security/staffroom)
"bJP" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/staffroom)
"bJQ" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
@@ -27618,21 +21140,13 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/desert_dam/building/security/southern_hallway)
"bJS" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/staffroom)
"bJT" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/desert_dam/building/security/staffroom)
"bJU" = (
/turf/closed/wall/r_wall/prison,
@@ -27646,24 +21160,18 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bKc" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bKe" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Evidence"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/evidence)
"bKf" = (
/obj/structure/bed/chair,
@@ -27675,10 +21183,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/desert_dam/building/security/southern_hallway)
"bKj" = (
/obj/item/stack/sheet/wood,
@@ -27700,22 +21205,16 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bKn" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bKo" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bKp" = (
/obj/structure/surface/table/almayer,
@@ -27723,9 +21222,7 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bKq" = (
/obj/structure/desertdam/decals/road_edge{
@@ -27747,9 +21244,7 @@
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bKt" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/workshop)
"bKv" = (
/obj/structure/platform_decoration{
@@ -27761,10 +21256,7 @@
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bKx" = (
/obj/structure/disposalpipe/segment{
@@ -27774,17 +21266,11 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bKy" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bKz" = (
/obj/structure/machinery/light,
@@ -27802,10 +21288,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/lobby)
"bKC" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
@@ -27818,35 +21301,21 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"bKE" = (
/obj/structure/machinery/power/terminal,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"bKF" = (
/obj/structure/machinery/power/terminal,
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/desert_dam/interior/dam_interior/smes_backup)
"bKG" = (
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"bKH" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/desert_dam/interior/dam_interior/smes_backup)
"bKI" = (
/obj/structure/machinery/colony_floodlight,
@@ -27860,10 +21329,7 @@
/area/desert_dam/building/security/courtroom)
"bKK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/desert_dam/building/security/southern_hallway)
"bKL" = (
/obj/structure/window/framed/hangar,
@@ -27881,33 +21347,24 @@
/obj/structure/machinery/door/window/brigdoor/eastleft{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/warden)
"bKP" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Visitation"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/security/southern_hallway)
"bKQ" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/desert_dam/building/security/staffroom)
"bKR" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/staffroom)
"bKZ" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -27916,32 +21373,21 @@
/area/desert_dam/building/security/courtroom)
"bLa" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/building/security/southern_hallway)
"bLb" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/southern_hallway)
"bLc" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/southwest,
/area/desert_dam/building/security/southern_hallway)
"bLd" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/security/southern_hallway)
"bLe" = (
/obj/structure/surface/table/woodentable,
@@ -27964,10 +21410,7 @@
},
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bLh" = (
/obj/structure/desertdam/decals/road_edge{
@@ -27979,20 +21422,14 @@
/obj/structure/surface/table/reinforced,
/obj/item/device/lightreplacer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bLk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bLl" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -28000,44 +21437,29 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bLm" = (
/obj/effect/spawner/random/toolbox,
/obj/structure/surface/table/reinforced,
/obj/item/device/radio,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bLn" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/desert_dam/building/mining/workshop)
"bLo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bLp" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/smes_main)
"bLq" = (
/turf/closed/wall/r_wall/bunker{
@@ -28054,44 +21476,28 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/interior/dam_interior/lobby)
"bLu" = (
/obj/structure/closet/secure_closet/medical_doctor,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/north,
/area/desert_dam/building/medical/chemistry)
"bLv" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/interior/dam_interior/lobby)
"bLw" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/lobby)
"bLx" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"bLy" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/interior/dam_interior/lobby)
"bLz" = (
/obj/structure/window/framed/hangar/reinforced,
@@ -28102,10 +21508,7 @@
capacity = 1e+006;
dir = 1
},
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"bLC" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -28113,21 +21516,13 @@
name = "\improper Tool Storage"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bLD" = (
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/smes_backup)
"bLE" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/interior/dam_interior/smes_backup)
"bLF" = (
/obj/structure/platform{
@@ -28142,25 +21537,19 @@
/turf/open/gm/river/desert/deep,
/area/desert_dam/exterior/river/riverside_east)
"bLK" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/mining/workshop)
"bLL" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/security/southern_hallway)
"bLM" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/security/southern_hallway)
"bLN" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -28169,39 +21558,26 @@
/turf/open/floor/prison,
/area/desert_dam/building/security/southern_hallway)
"bLO" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/building/security/southern_hallway)
"bLP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/desert_dam/building/security/southern_hallway)
"bLQ" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/desert_dam/building/security/staffroom)
"bLR" = (
/obj/structure/largecrate/random/barrel/yellow,
/turf/open/floor/plating,
/area/desert_dam/building/warehouse/breakroom)
"bLS" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/breakroom)
"bLT" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/staffroom)
"bLU" = (
/turf/closed/wall/r_wall/bunker{
@@ -28212,32 +21588,22 @@
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bLW" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bLX" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/workshop)
"bLY" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/workshop)
"bLZ" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bMa" = (
/obj/structure/closet/toolcloset,
@@ -28245,9 +21611,7 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bMb" = (
/turf/closed/wall/hangar{
@@ -28256,10 +21620,7 @@
/area/desert_dam/interior/dam_interior/workshop)
"bMc" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bMd" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -28270,29 +21631,20 @@
"bMe" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bMf" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bMg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bMi" = (
/obj/structure/surface/table/reinforced,
@@ -28300,10 +21652,7 @@
dir = 4
},
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bMj" = (
/obj/structure/surface/table/reinforced,
@@ -28311,32 +21660,20 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bMk" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bMl" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bMm" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"bMn" = (
/obj/structure/machinery/disposal,
@@ -28346,24 +21683,17 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"bMo" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/smes_backup)
"bMp" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/phoron{
amount = 50
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/smes_backup)
"bMq" = (
/obj/structure/surface/rack,
@@ -28373,52 +21703,37 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/interior/dam_interior/smes_backup)
"bMr" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/desert_dam/building/security/warden)
"bMs" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/warden)
"bMt" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bMu" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/river/riverside_central_north)
"bMv" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river/riverside_central_north)
"bMw" = (
/obj/structure/window/framed/hangar/reinforced,
@@ -28430,34 +21745,24 @@
name = "Security Cameras - Habitation";
network = list("chigusa_2")
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/building/security/warden)
"bMD" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bME" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/wood{
amount = 10
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bMG" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bMH" = (
/obj/effect/decal/warning_stripes{
@@ -28475,68 +21780,45 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bML" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bMM" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bMN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bMO" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/junction,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bMP" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bMQ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/south_valley_dam)
"bMT" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_mining)
"bMW" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/workshop)
"bMX" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/desert_dam/building/security/southern_hallway)
"bMY" = (
/obj/structure/machinery/light{
@@ -28547,9 +21829,7 @@
"bMZ" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/security/courtroom)
"bNa" = (
/obj/structure/machinery/light{
@@ -28561,16 +21841,12 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/breakroom)
"bNc" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/workshop)
"bNd" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -28581,10 +21857,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/desert_dam/building/security/southern_hallway)
"bNe" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -28596,10 +21869,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/security/southern_hallway)
"bNf" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/desert_dam/building/security/southern_hallway)
"bNg" = (
/obj/structure/machinery/door_control{
@@ -28611,10 +21881,7 @@
"bNh" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/southern_hallway)
"bNi" = (
/turf/open/floor/prison,
@@ -28647,32 +21914,22 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bNo" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/garage)
"bNp" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bNq" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/south_valley_dam)
"bNr" = (
/obj/structure/platform{
@@ -28682,27 +21939,21 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_south)
"bNs" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_south)
"bNt" = (
/obj/structure/platform_decoration{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bNu" = (
/obj/effect/landmark/xeno_spawn,
@@ -28710,10 +21961,7 @@
/turf/open/desert/rock/deep/transition,
/area/desert_dam/interior/caves/east_caves)
"bNv" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/warden)
"bNw" = (
/turf/closed/wall/r_wall/prison,
@@ -28729,9 +21977,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"bNE" = (
/turf/closed/wall/r_wall/prison,
@@ -28761,10 +22007,7 @@
pixel_x = -3;
pixel_y = 2
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/desert_dam/building/security/warden)
"bNJ" = (
/obj/structure/bed/chair/office/dark{
@@ -28776,63 +22019,43 @@
/obj/structure/stairs{
dir = 8
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/security/courtroom)
"bNL" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/building/security/southern_hallway)
"bNM" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/desert_dam/building/security/southern_hallway)
"bNN" = (
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/security/courtroom)
"bNO" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/security/courtroom)
"bNP" = (
/obj/effect/decal/cleanable/blood,
/turf/open/floor/prison,
/area/desert_dam/building/security/warden)
"bNQ" = (
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/warden)
"bNS" = (
/obj/structure/surface/rack,
/obj/item/clothing/mask/gas,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/desert_dam/building/security/armory)
"bNT" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/building/security/armory)
"bNY" = (
/turf/closed/wall/r_wall/bunker,
@@ -28840,15 +22063,11 @@
"bNZ" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bOa" = (
/obj/structure/machinery/autolathe,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bOb" = (
/obj/structure/platform{
@@ -28856,7 +22075,6 @@
},
/obj/structure/platform,
/obj/structure/machinery/light,
-/obj/structure/machinery/light,
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bOc" = (
@@ -28864,15 +22082,11 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/workshop)
"bOf" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_telecoms)
"bOh" = (
/obj/structure/platform_decoration{
@@ -28892,20 +22106,13 @@
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bOk" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bOl" = (
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bOm" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bOn" = (
/obj/structure/surface/table/reinforced,
@@ -28913,38 +22120,26 @@
/obj/item/stack/sheet/glass{
amount = 30
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bOo" = (
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bOp" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/constructable_frame,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bOq" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bOr" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"bOs" = (
/obj/structure/surface/table/reinforced,
@@ -28952,17 +22147,12 @@
amount = 30
},
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bOt" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/multitool,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bOu" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -28978,9 +22168,7 @@
"bOw" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_north)
"bOx" = (
/obj/structure/platform,
@@ -28991,9 +22179,7 @@
/obj/structure/stairs{
dir = 4
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/security/courtroom)
"bOB" = (
/obj/structure/bed/chair/wood/normal{
@@ -29015,10 +22201,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/building/security/prison)
"bOG" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -29029,10 +22212,7 @@
"bOH" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/building/security/southern_hallway)
"bOI" = (
/obj/effect/decal/cleanable/dirt,
@@ -29040,10 +22220,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/security/prison)
"bOJ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/prison)
"bOK" = (
/obj/structure/machinery/power/apc{
@@ -29051,31 +22228,22 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/armory)
"bOM" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bON" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners3"
- },
+/turf/open/floor/prison/darkbrowncorners3,
/area/desert_dam/interior/dam_interior/hanger)
"bOO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/workshop)
"bOP" = (
/turf/closed/wall/r_wall/bunker,
@@ -29092,9 +22260,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/west_tunnel)
"bOU" = (
/obj/structure/desertdam/decals/road_edge,
@@ -29110,18 +22276,14 @@
/turf/closed/wall/r_wall/bunker,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bOY" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bOZ" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bPa" = (
/obj/structure/stairs{
@@ -29130,9 +22292,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bPb" = (
/turf/closed/wall/hangar{
@@ -29143,10 +22303,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bPe" = (
/obj/structure/machinery/disposal,
@@ -29154,16 +22311,11 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bPf" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bPg" = (
/obj/structure/machinery/power/apc{
@@ -29171,19 +22323,13 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bPh" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bPi" = (
/obj/structure/platform{
@@ -29193,48 +22339,36 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_south)
"bPj" = (
/obj/structure/platform_decoration{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_south)
"bPk" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river/riverside_central_north)
"bPl" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_wilderness)
"bPm" = (
/obj/structure/machinery/colony_floodlight,
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"bPn" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"bPv" = (
/obj/structure/window/framed/hangar,
@@ -29246,25 +22380,19 @@
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bPz" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/security/prison)
"bPA" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bPB" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bPC" = (
/obj/structure/surface/table,
@@ -29272,9 +22400,7 @@
name = "Security Cameras - Habitation";
network = list("chigusa_2")
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/security/prison)
"bPD" = (
/obj/structure/surface/table/reinforced,
@@ -29282,24 +22408,16 @@
dir = 8;
health = 80
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/security/prison)
"bPE" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/warehouse/breakroom)
"bPF" = (
/obj/structure/surface/table,
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/warehouse/breakroom)
"bPG" = (
/obj/structure/bed/chair{
@@ -29319,9 +22437,7 @@
dir = 8
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/security/prison)
"bPJ" = (
/obj/structure/machinery/disposal,
@@ -29329,29 +22445,20 @@
dir = 2;
icon_state = "pipe-u"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/warehouse/breakroom)
"bPK" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/security/prison)
"bPL" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/security/prison)
"bPM" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/security/prison)
"bPN" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -29368,15 +22475,11 @@
amount = 10
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bPQ" = (
/obj/structure/machinery/mill,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bPR" = (
/obj/structure/machinery/power/apc{
@@ -29384,23 +22487,17 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bPT" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"bPU" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"bPV" = (
/obj/structure/desertdam/decals/road_edge,
@@ -29416,32 +22513,23 @@
/obj/structure/surface/table/woodentable/fancy,
/obj/item/storage/briefcase,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/desert_dam/building/administration/overseer_office)
"bPX" = (
/obj/structure/surface/table,
/obj/item/device/radio,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"bPY" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bPZ" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bQa" = (
/obj/structure/stairs{
@@ -29450,9 +22538,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bQb" = (
/turf/open/asphalt/cement,
@@ -29461,9 +22547,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bQd" = (
/obj/structure/machinery/power/monitor{
@@ -29472,16 +22556,10 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/interior/dam_interior/CE_office)
"bQe" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/CE_office)
"bQf" = (
/obj/structure/machinery/light{
@@ -29492,38 +22570,23 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/desert_dam/interior/dam_interior/CE_office)
"bQg" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bQh" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bQj" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bQk" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bQl" = (
/obj/structure/machinery/power/port_gen/pacman,
@@ -29531,57 +22594,43 @@
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bQm" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/south_valley_dam)
"bQn" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"bQo" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"bQp" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"bQq" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/south_valley_dam)
"bQr" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/south_valley_dam)
"bQs" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/south_valley_dam)
"bQt" = (
/turf/open/asphalt,
@@ -29591,10 +22640,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/security/prison)
"bQv" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/desert_dam/building/security/prison)
"bQw" = (
/obj/structure/closet/l3closet/security,
@@ -29602,16 +22648,12 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked,
/area/desert_dam/building/security/armory)
"bQx" = (
/obj/structure/closet/l3closet/security,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked,
/area/desert_dam/building/security/armory)
"bQy" = (
/obj/structure/machinery/power/apc{
@@ -29619,30 +22661,19 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/building/warehouse/breakroom)
"bQz" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor/prison{
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked,
/area/desert_dam/building/security/armory)
"bQA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/desert_dam/building/security/southern_hallway)
"bQB" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/desert_dam/building/warehouse/breakroom)
"bQC" = (
/obj/structure/surface/table,
@@ -29651,24 +22682,16 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/desert_dam/building/security/warden)
"bQE" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/desert_dam/building/security/southern_hallway)
"bQF" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge/covered{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/covered/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bQG" = (
/obj/effect/landmark/corpsespawner/security/marshal,
@@ -29685,10 +22708,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/warden)
"bQM" = (
/obj/structure/disposalpipe/trunk{
@@ -29698,30 +22718,20 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/warden)
"bQN" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/north,
/area/desert_dam/exterior/valley/valley_telecoms)
"bQO" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bQP" = (
/turf/open/gm/river/desert/shallow,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bQQ" = (
/obj/structure/flora/grass/desert/lightgrass_2,
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_medical)
"bQR" = (
/obj/structure/machinery/power/apc{
@@ -29732,14 +22742,10 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bQS" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bQT" = (
/obj/structure/machinery/light{
@@ -29748,37 +22754,27 @@
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bQU" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bQV" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bQW" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bQY" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bQZ" = (
/obj/structure/machinery/power/apc{
@@ -29786,29 +22782,21 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"bRb" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"bRc" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"bRd" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bRe" = (
/obj/effect/decal/warning_stripes{
@@ -29823,23 +22811,16 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bRg" = (
-/turf/open/desert/rock/deep/transition{
- dir = 6
- },
+/turf/open/desert/rock/deep/transition/southeast,
/area/desert_dam/exterior/valley/valley_wilderness)
"bRh" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bRi" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/CE_office)
"bRj" = (
/obj/structure/window/framed/hangar/reinforced,
@@ -29850,10 +22831,7 @@
/turf/open/floor/plating,
/area/desert_dam/interior/dam_interior/office)
"bRl" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/CE_office)
"bRn" = (
/obj/effect/landmark/static_comms/net_one,
@@ -29866,9 +22844,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"bRq" = (
/obj/structure/desertdam/decals/road_edge{
@@ -29895,24 +22871,17 @@
/turf/open/asphalt,
/area/desert_dam/exterior/river/riverside_central_north)
"bRv" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/northeast,
/area/desert_dam/exterior/valley/valley_telecoms)
"bRw" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bRx" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/security/prison)
"bRy" = (
/obj/structure/window/framed/hangar/reinforced,
@@ -29920,17 +22889,11 @@
/area/desert_dam/interior/dam_interior/CE_office)
"bRz" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/desert_dam/building/security/prison)
"bRA" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/warehouse/breakroom)
"bRB" = (
/obj/structure/machinery/door_control{
@@ -29947,25 +22910,16 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/desert_dam/building/security/prison)
"bRD" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/desert_dam/building/security/prison)
"bRE" = (
/obj/structure/surface/rack,
/obj/item/clothing/mask/gas,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/building/security/armory)
"bRF" = (
/turf/open/floor/prison,
@@ -29983,14 +22937,10 @@
/turf/open/gm/river/desert/shallow_corner,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bRJ" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bRK" = (
-/turf/open/desert/cave/cave_shore{
- dir = 5
- },
+/turf/open/desert/cave/cave_shore/northeast,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bRL" = (
/obj/effect/decal/sand_overlay/sand2{
@@ -30008,10 +22958,7 @@
/obj/item/clothing/head/welding,
/obj/structure/surface/rack,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"bRO" = (
/obj/structure/window/framed/hangar,
@@ -30019,16 +22966,11 @@
/area/desert_dam/interior/dam_interior/smes_backup)
"bRQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bRR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bRS" = (
/obj/structure/pipes/vents/pump{
@@ -30039,35 +22981,26 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bRT" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bRU" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"bRV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"bRW" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -30075,14 +23008,10 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"bRX" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"bRY" = (
/obj/structure/surface/table,
@@ -30090,31 +23019,21 @@
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/tool,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"bRZ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bSa" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/desert_dam/building/security/prison)
"bSb" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/desert_dam/building/security/prison)
"bSc" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -30125,10 +23044,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bSd" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -30138,10 +23054,7 @@
dir = 2
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bSe" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -30149,40 +23062,26 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bSf" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bSg" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bSh" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bSi" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/phoron{
amount = 50
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bSj" = (
/obj/structure/surface/rack,
@@ -30209,27 +23108,18 @@
"bSm" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/desert_dam/building/security/southern_hallway)
"bSn" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/desert_dam/building/security/prison)
"bSo" = (
/obj/structure/machinery/vending/cola,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/desert_dam/building/security/prison)
"bSs" = (
/obj/structure/machinery/power/apc{
@@ -30237,144 +23127,90 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/desert_dam/building/security/prison)
"bSu" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/desert_dam/building/security/armory)
"bSv" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/northwest,
/area/desert_dam/exterior/valley/valley_telecoms)
"bSw" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bSx" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/armory)
"bSy" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/armory)
"bSz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bSA" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/desert_dam/building/security/armory)
"bSB" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/building/security/warden)
"bSG" = (
/obj/structure/holohoop{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/west,
/area/desert_dam/exterior/valley/valley_telecoms)
"bSH" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/exterior/valley/valley_telecoms)
"bSI" = (
/obj/structure/holohoop{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/east,
/area/desert_dam/exterior/valley/valley_telecoms)
"bSJ" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bSK" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bSL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bSM" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bSO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bSP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bSQ" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/workshop)
"bSR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bSS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -30384,25 +23220,19 @@
/area/desert_dam/interior/dam_interior/workshop)
"bST" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bSU" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/workshop)
"bSV" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bSW" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -30411,15 +23241,10 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"bSX" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/desert_dam/building/security/prison)
"bSY" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -30427,9 +23252,7 @@
/area/desert_dam/exterior/river/riverside_central_north)
"bSZ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/CE_office)
"bTa" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -30437,59 +23260,43 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bTb" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bTc" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bTd" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bTe" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bTf" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bTh" = (
/obj/structure/bed,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/building/security/prison)
"bTi" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -30497,10 +23304,7 @@
/area/desert_dam/exterior/river/riverside_central_north)
"bTj" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/building/security/prison)
"bTk" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -30516,23 +23320,14 @@
/turf/open/floor/plating,
/area/desert_dam/building/security/prison)
"bTm" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/desert_dam/building/security/prison)
"bTn" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bTo" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bTp" = (
/obj/structure/pipes/vents/pump{
@@ -30540,29 +23335,20 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bTq" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/desert_dam/building/security/southern_hallway)
"bTr" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Cell 1"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/building/security/prison)
"bTs" = (
/obj/structure/machinery/squeezer,
@@ -30580,9 +23366,7 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/southern_hallway)
"bTw" = (
/obj/structure/disposalpipe/segment,
@@ -30590,42 +23374,29 @@
/turf/open/floor/prison,
/area/desert_dam/building/security/warden)
"bTz" = (
-/turf/open/desert/cave/cave_shore{
- dir = 4
- },
+/turf/open/desert/cave/cave_shore/east,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bTA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bTB" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bTC" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bTD" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bTE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bTF" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -30635,9 +23406,7 @@
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bTG" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/west_tunnel)
"bTH" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -30651,23 +23420,16 @@
/area/desert_dam/interior/dam_interior/west_tunnel)
"bTJ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bTL" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/desert_dam/interior/dam_interior/CE_office)
"bTM" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/workshop)
"bTN" = (
/obj/structure/machinery/light{
@@ -30677,17 +23439,11 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/interior/dam_interior/CE_office)
"bTO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bTP" = (
/obj/structure/machinery/light{
@@ -30695,10 +23451,7 @@
},
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"bTR" = (
/obj/structure/flora/grass/desert/lightgrass_1,
@@ -30708,14 +23461,10 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"bTV" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_mining)
"bTW" = (
/turf/open/asphalt,
@@ -30730,54 +23479,37 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_mining)
"bUa" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/building/mining/workshop)
"bUb" = (
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/building/mining/workshop)
"bUd" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bUe" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bUf" = (
-/turf/open/desert/cave/cave_shore{
- dir = 6
- },
+/turf/open/desert/cave/cave_shore/southeast,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bUg" = (
/turf/open/desert/cave/cave_shore,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"bUj" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bUk" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bUl" = (
/obj/structure/disposalpipe/junction,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bUm" = (
/obj/effect/decal/cleanable/dirt,
@@ -30786,9 +23518,7 @@
"bUo" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/workshop)
"bUp" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -30804,24 +23534,17 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bUr" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/west_tunnel)
"bUs" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Tool Storage"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"bUt" = (
/obj/structure/flora/grass/desert/heavygrass_4,
@@ -30855,27 +23578,21 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/south_valley_dam)
"bUB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"bUC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"bUD" = (
/obj/structure/disposalpipe/segment{
@@ -30884,25 +23601,19 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"bUE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/south_valley_dam)
"bUF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/south_valley_dam)
"bUG" = (
/obj/structure/desertdam/decals/road_edge,
@@ -30939,10 +23650,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/south_valley_dam)
"bUM" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/desert_dam/building/security/warden)
"bUN" = (
/obj/structure/platform,
@@ -30951,39 +23659,24 @@
/area/desert_dam/exterior/river/riverside_east)
"bUQ" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"bUR" = (
-/turf/open/floor{
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite,
/area/desert_dam/exterior/valley/valley_telecoms)
"bUS" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/southeast,
/area/desert_dam/exterior/valley/valley_telecoms)
"bUT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bUU" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/building/security/prison)
"bUV" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/building/security/prison)
"bUW" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -30993,36 +23686,26 @@
/area/desert_dam/building/security/prison)
"bUX" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bUY" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bUZ" = (
/obj/structure/surface/table,
/obj/item/tool/lighter/random,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bVa" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"bVb" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bVc" = (
/obj/structure/machinery/light,
@@ -31030,32 +23713,24 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bVd" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bVe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bVf" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/workshop)
"bVg" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -31063,51 +23738,37 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bVh" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bVj" = (
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bVk" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bVl" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bVm" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bVn" = (
/obj/structure/machinery/power/apc{
@@ -31115,24 +23776,17 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bVo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/west,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bVp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bVq" = (
/turf/closed/wall/r_wall/bunker{
@@ -31165,24 +23819,18 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_south)
"bVx" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/desert_dam/exterior/river/riverside_central_south)
"bVy" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_south)
"bVz" = (
/obj/structure/platform{
@@ -31193,10 +23841,7 @@
/turf/open/gm/river/desert/shallow,
/area/desert_dam/exterior/river/riverside_central_south)
"bVA" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/desert_dam/building/security/prison)
"bVD" = (
/turf/closed/wall/r_wall,
@@ -31206,15 +23851,11 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/south_valley_dam)
"bVF" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached17"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached17,
/area/desert_dam/exterior/valley/south_valley_dam)
"bVG" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/south_valley_dam)
"bVI" = (
/obj/structure/machinery/power/apc{
@@ -31222,16 +23863,10 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/warden)
"bVJ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/building/security/armory)
"bVK" = (
/obj/structure/barricade/sandbags{
@@ -31240,42 +23875,29 @@
/obj/structure/barricade/sandbags{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bVN" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/armory)
"bVO" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bVP" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bVQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bVR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -31287,9 +23909,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/workshop)
"bVS" = (
/obj/structure/stairs{
@@ -31316,17 +23936,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/desert_dam/interior/dam_interior/west_tunnel)
"bVV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bVW" = (
/obj/structure/platform_decoration{
@@ -31335,9 +23951,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bVX" = (
/obj/structure/stairs{
@@ -31356,9 +23970,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bVZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -31367,9 +23979,7 @@
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bWa" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bWb" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
@@ -31377,24 +23987,18 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bWc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bWe" = (
/obj/structure/machinery/flasher/portable,
-/turf/open/floor/prison{
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked,
/area/desert_dam/building/security/armory)
"bWf" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -31418,9 +24022,7 @@
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bWh" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bWi" = (
/obj/structure/flora/grass/desert/heavygrass_5,
@@ -31438,22 +24040,16 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_south)
"bWn" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_south)
"bWo" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/north_valley_dam)
"bWq" = (
/obj/structure/platform{
@@ -31469,9 +24065,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"bWt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -31505,9 +24099,7 @@
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bWA" = (
/obj/structure/pipes/vents/pump{
@@ -31527,9 +24119,7 @@
/area/desert_dam/building/security/warden)
"bWD" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_mining)
"bWE" = (
/obj/structure/desertdam/decals/road_stop{
@@ -31545,23 +24135,17 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_mining)
"bWH" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_mining)
"bWI" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"bWJ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"bWK" = (
/obj/structure/desertdam/decals/road_edge{
@@ -31578,10 +24162,7 @@
"bWM" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bWN" = (
/obj/structure/disposalpipe/segment{
@@ -31589,10 +24170,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bWO" = (
/obj/item/reagent_container/food/drinks/flask/detflask,
@@ -31605,24 +24183,17 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"bWR" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/west_tunnel)
"bWS" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/east,
/area/desert_dam/interior/dam_interior/hangar_storage)
"bWT" = (
/obj/structure/stairs{
@@ -31638,15 +24209,11 @@
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/west_tunnel)
"bWV" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/desert_dam/interior/dam_interior/west_tunnel)
"bWW" = (
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bWX" = (
/obj/structure/stairs{
@@ -31658,14 +24225,10 @@
"bWY" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"bXa" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bXc" = (
/obj/structure/flora/grass/desert/lightgrass_4,
@@ -31680,69 +24243,51 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"bXf" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_south)
"bXg" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/desert_dam/exterior/river/riverside_central_north)
"bXh" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/desert_dam/exterior/river/riverside_central_north)
"bXi" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bXj" = (
/obj/structure/platform_decoration{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river/riverside_central_north)
"bXk" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bXl" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/river/riverside_central_north)
"bXm" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/river/riverside_central_north)
"bXn" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -31752,25 +24297,19 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"bXp" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"bXq" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"bXr" = (
/obj/structure/platform,
@@ -31778,9 +24317,7 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bXs" = (
/obj/structure/platform,
@@ -31790,9 +24327,7 @@
"bXt" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bXu" = (
/obj/structure/platform,
@@ -31825,21 +24360,15 @@
"bXz" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_central_north)
"bXA" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bXB" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_mining)
"bXC" = (
/obj/structure/desertdam/decals/road_edge{
@@ -31857,10 +24386,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bXF" = (
/obj/structure/desertdam/decals/road_edge{
@@ -31870,10 +24396,7 @@
/area/desert_dam/exterior/valley/valley_mining)
"bXG" = (
/obj/structure/prop/dam/wide_boulder/boulder1,
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_mining)
"bXH" = (
/obj/structure/desertdam/decals/road_edge,
@@ -31903,9 +24426,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"bXN" = (
/obj/structure/desertdam/decals/road_edge,
@@ -31920,17 +24441,12 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bXP" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bXQ" = (
/turf/closed/wall/r_wall/bunker{
@@ -31954,9 +24470,7 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/west_tunnel)
"bXU" = (
/obj/structure/disposalpipe/segment{
@@ -31967,21 +24481,15 @@
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bXV" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bXW" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bXX" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bXY" = (
/obj/structure/platform{
@@ -31995,27 +24503,19 @@
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_south)
"bYa" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_south)
"bYb" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/river/riverside_central_south)
"bYc" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/north_valley_dam)
"bYd" = (
/obj/effect/decal/warning_stripes{
@@ -32040,9 +24540,7 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_north)
"bYg" = (
/obj/effect/decal/cleanable/dirt,
@@ -32079,16 +24577,11 @@
/turf/open/gm/river/desert/deep,
/area/desert_dam/exterior/river/riverside_central_north)
"bYl" = (
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/desert_dam/building/security/prison)
"bYm" = (
/obj/structure/bed,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/building/security/prison)
"bYo" = (
/obj/structure/surface/rack,
@@ -32135,10 +24628,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/building/security/deathrow)
"bYt" = (
/turf/open/floor/prison,
@@ -32146,10 +24636,7 @@
"bYv" = (
/obj/structure/bed,
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/deathrow)
"bYw" = (
/obj/structure/desertdam/decals/road_edge{
@@ -32176,34 +24663,25 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bYB" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
/obj/item/device/flashlight/flare,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/north,
/area/desert_dam/interior/dam_interior/disposals)
"bYC" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/west_tunnel)
"bYD" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bYE" = (
/turf/closed/wall/hangar{
@@ -32212,9 +24690,7 @@
/area/desert_dam/interior/dam_interior/break_room)
"bYF" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge/covered{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/covered/east,
/area/desert_dam/exterior/river/riverside_central_north)
"bYG" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -32228,9 +24704,7 @@
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"bYH" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/break_room)
"bYI" = (
/obj/structure/platform{
@@ -32271,22 +24745,15 @@
/area/desert_dam/exterior/valley/valley_mining)
"bYN" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_mining)
"bYO" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/desert_dam/building/mining/workshop_foyer)
"bYP" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/decal/cleanable/blood,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"bYQ" = (
/obj/structure/surface/rack,
@@ -32298,27 +24765,18 @@
/turf/open/floor/prison,
/area/desert_dam/building/security/armory)
"bYR" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/southwest,
/area/desert_dam/exterior/valley/valley_telecoms)
"bYS" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bYT" = (
/obj/structure/surface/table/reinforced,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bYV" = (
/obj/structure/desertdam/decals/road_edge{
@@ -32332,10 +24790,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bYX" = (
/obj/structure/machinery/conveyor{
@@ -32367,20 +24822,13 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"bZb" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/disposals)
"bZc" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/west_tunnel)
"bZd" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -32391,10 +24839,7 @@
icon_state = "pipe-j2"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"bZe" = (
/turf/closed/wall/r_wall/bunker{
@@ -32403,9 +24848,7 @@
/area/desert_dam/interior/dam_interior/break_room)
"bZf" = (
/obj/structure/toilet,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/dam_interior/break_room)
"bZg" = (
/obj/structure/machinery/power/apc{
@@ -32413,16 +24856,10 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northwest,
/area/desert_dam/interior/dam_interior/break_room)
"bZh" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/north,
/area/desert_dam/interior/dam_interior/break_room)
"bZi" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -32430,28 +24867,20 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"bZj" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/break_room)
"bZk" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"bZl" = (
/obj/structure/machinery/disposal,
@@ -32461,54 +24890,36 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/desert_dam/interior/dam_interior/break_room)
"bZm" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/desert_dam/interior/dam_interior/break_room)
"bZn" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/desert_dam/interior/dam_interior/break_room)
"bZo" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northeast,
/area/desert_dam/interior/dam_interior/break_room)
"bZp" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"bZq" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/river/riverside_central_south)
"bZr" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/desert_dam/exterior/river/riverside_central_south)
"bZs" = (
/obj/structure/platform{
@@ -32529,16 +24940,10 @@
/area/desert_dam/exterior/river/riverside_central_north)
"bZu" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/deathrow)
"bZv" = (
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/desert_dam/exterior/valley/valley_telecoms)
"bZw" = (
/turf/closed/wall/r_wall/prison,
@@ -32549,39 +24954,27 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/north_wing_hallway)
"bZy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/north_wing_hallway)
"bZz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/north_wing_hallway)
"bZA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/north_wing_hallway)
"bZC" = (
/obj/effect/decal/cleanable/dirt,
@@ -32615,19 +25008,13 @@
"bZG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bZH" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/desert_dam/building/security/prison)
"bZI" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -32635,20 +25022,14 @@
name = "\improper Rec Yard"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"bZJ" = (
/turf/open/floor/prison,
/area/desert_dam/building/security/execution_chamber)
"bZK" = (
/obj/structure/target,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/desert_dam/exterior/valley/valley_telecoms)
"bZL" = (
/obj/structure/machinery/power/apc{
@@ -32698,68 +25079,47 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"bZU" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bZV" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2;
name = "\improper Toilet Unit"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/dam_interior/break_room)
"bZW" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/desert_dam/interior/dam_interior/break_room)
"bZX" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"bZY" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"bZZ" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/desert_dam/exterior/river/riverside_central_south)
"cac" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_medical)
"cad" = (
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/caves/central_caves)
"cae" = (
/obj/structure/desertdam/decals/road_stop{
@@ -32784,51 +25144,31 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/workshop)
"cai" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/desert_dam/building/security/prison)
"caj" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/southwest,
/area/desert_dam/building/mining/workshop_foyer)
"cak" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/desert_dam/building/security/prison)
"cal" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"cam" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Cell 2"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/building/security/prison)
"can" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/desert_dam/exterior/valley/valley_telecoms)
"cao" = (
/obj/structure/bed/chair,
@@ -32838,32 +25178,20 @@
/turf/open/floor/prison,
/area/desert_dam/building/security/execution_chamber)
"cap" = (
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/desert_dam/exterior/valley/valley_telecoms)
"caq" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/building/security/deathrow)
"car" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/desert_dam/building/security/deathrow)
"cat" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/warehouse/breakroom)
"cau" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -32872,9 +25200,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_medical)
"cav" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -32883,16 +25209,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_medical)
"caw" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/warehouse/breakroom)
"cax" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -32901,9 +25222,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_medical)
"cay" = (
/obj/structure/machinery/conveyor{
@@ -32913,22 +25232,16 @@
/turf/open/floor/plating,
/area/desert_dam/interior/dam_interior/disposals)
"caB" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/west_tunnel)
"caC" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/dam_interior/break_room)
"caD" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/dam_interior/break_room)
"caF" = (
/obj/effect/decal/cleanable/dirt,
@@ -32936,14 +25249,10 @@
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"caG" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/desert_dam/exterior/river/riverside_central_south)
"caH" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"caI" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -32963,18 +25272,14 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_north)
"caM" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_north)
"caO" = (
/obj/structure/surface/rack,
@@ -32995,18 +25300,12 @@
/area/desert_dam/building/security/prison)
"caR" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/desert_dam/building/security/prison)
"caS" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/desert_dam/building/security/prison)
"caT" = (
/obj/structure/barricade/sandbags,
@@ -33014,9 +25313,7 @@
dir = 4
},
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"caU" = (
/obj/effect/landmark/crap_item,
@@ -33077,9 +25374,7 @@
dir = 8;
icon_state = "pipe-j2"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"cbg" = (
/obj/structure/window/framed/hangar,
@@ -33091,9 +25386,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cbi" = (
/obj/structure/sink{
@@ -33101,9 +25394,7 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/dam_interior/break_room)
"cbj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33113,9 +25404,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"cbk" = (
/obj/structure/surface/table,
@@ -33125,21 +25414,14 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"cbl" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"cbm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"cbn" = (
/obj/structure/disposalpipe/segment,
@@ -33152,10 +25434,7 @@
name = "\improper Engineering Hallway"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"cbq" = (
/obj/structure/disposalpipe/segment{
@@ -33163,10 +25442,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"cbr" = (
/obj/structure/disposalpipe/segment{
@@ -33174,10 +25450,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"cbs" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33188,28 +25461,21 @@
icon_state = "pipe-j2"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"cbt" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/desert_dam/exterior/river/riverside_central_south)
"cbu" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/river/riverside_central_south)
"cbv" = (
/obj/structure/platform{
@@ -33237,9 +25503,7 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_north)
"cbz" = (
/obj/structure/platform{
@@ -33247,9 +25511,7 @@
},
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_central_north)
"cbA" = (
/obj/structure/window/framed/prison/cell,
@@ -33264,18 +25526,13 @@
/obj/structure/disposalpipe/junction{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/north_wing_hallway)
"cbD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_medical)
"cbE" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -33285,31 +25542,22 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"cbF" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_medical)
"cbG" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_medical)
"cbH" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_medical)
"cbI" = (
/obj/structure/disposalpipe/trunk{
@@ -33317,9 +25565,7 @@
},
/obj/structure/machinery/disposal,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/desert_dam/building/security/prison)
"cbJ" = (
/obj/structure/machinery/light{
@@ -33334,9 +25580,7 @@
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"cbM" = (
/obj/structure/machinery/light{
@@ -33363,18 +25607,13 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"cbR" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/dam_interior/break_room)
"cbS" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -33382,29 +25621,20 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"cbT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/north_tunnel)
"cbU" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"cbV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"cbW" = (
/obj/structure/surface/table,
@@ -33413,62 +25643,43 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"cbY" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"cbZ" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"cca" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"ccc" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"ccd" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_south)
"cce" = (
/obj/structure/platform_decoration{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/desert_dam/exterior/river/riverside_central_south)
"ccf" = (
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_south)
"ccg" = (
/obj/structure/platform{
@@ -33500,9 +25711,7 @@
},
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_north)
"cck" = (
/obj/effect/decal/warning_stripes{
@@ -33512,34 +25721,21 @@
id = "hangar_dam_2";
name = "\improper Hangar Shutters"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"ccl" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/desert_dam/interior/dam_interior/engine_room)
"ccm" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_telecoms)
"ccn" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/desert_dam/interior/dam_interior/engine_room)
"cco" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/interior/caves/central_caves)
"ccp" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -33550,37 +25746,26 @@
/turf/open/floor/greengrid,
/area/desert_dam/interior/dam_interior/engine_room)
"ccs" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/desert_dam/building/security/prison)
"cct" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/desert_dam/building/security/prison)
"ccu" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"ccv" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/desert_dam/building/security/deathrow)
"ccw" = (
/turf/open/floor,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"ccx" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"ccy" = (
/turf/open/floor/plating,
@@ -33588,10 +25773,7 @@
"ccz" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/control_room)
"ccA" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -33599,48 +25781,33 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"ccB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"ccC" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southwest,
/area/desert_dam/interior/dam_interior/break_room)
"ccD" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/interior/dam_interior/break_room)
"ccE" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/interior/dam_interior/break_room)
"ccF" = (
/obj/structure/surface/table,
/obj/item/tool/lighter/random,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/interior/dam_interior/break_room)
"ccG" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33650,83 +25817,58 @@
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"ccH" = (
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/interior/dam_interior/break_room)
"ccI" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"ccJ" = (
-/turf/open/desert/rock/deep/transition{
- dir = 5
- },
+/turf/open/desert/rock/deep/transition/northeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"ccK" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/caves/central_caves)
"ccL" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_central_south)
"ccM" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"ccN" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"ccO" = (
/obj/structure/platform,
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"ccP" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"ccQ" = (
/obj/structure/platform_decoration,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"ccR" = (
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"ccY" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/desert_dam/building/security/deathrow)
"ccZ" = (
/obj/structure/desertdam/decals/road_edge,
@@ -33756,23 +25898,15 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/building/security/deathrow)
"cdf" = (
/obj/structure/surface/table,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/desert_dam/building/warehouse/warehouse)
"cdg" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/warden)
"cdh" = (
/turf/closed/wall/r_wall/bunker,
@@ -33780,17 +25914,13 @@
"cdi" = (
/obj/structure/machinery/computer/station_alert,
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"cdj" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/exterior/valley/valley_telecoms)
"cdk" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
@@ -33811,16 +25941,12 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cdo" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cdp" = (
/obj/effect/decal/sand_overlay/sand2{
@@ -33830,9 +25956,7 @@
/area/desert_dam/interior/dam_interior/south_tunnel)
"cdq" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"cdr" = (
/obj/structure/machinery/power/apc{
@@ -33842,9 +25966,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"cds" = (
/obj/effect/decal/cleanable/blood,
@@ -33859,16 +25981,10 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/desert_dam/building/security/prison)
"cdv" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_medical)
"cdw" = (
/turf/open/desert/dirt,
@@ -33877,9 +25993,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"cdy" = (
/obj/structure/stairs{
@@ -33888,9 +26002,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_medical)
"cdz" = (
/obj/structure/stairs{
@@ -33899,24 +26011,18 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_medical)
"cdA" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"cdB" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"cdC" = (
/turf/open/asphalt,
@@ -33925,28 +26031,19 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"cdE" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_medical)
"cdF" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_medical)
"cdG" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/security/prison)
"cdH" = (
/obj/structure/closet/secure_closet/injection,
@@ -33965,9 +26062,7 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Toilet Unit"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/security/prison)
"cdK" = (
/obj/structure/desertdam/decals/road_edge,
@@ -33978,23 +26073,17 @@
/area/desert_dam/exterior/valley/valley_civilian)
"cdL" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"cdN" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/security/prison)
"cdO" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/west_tunnel)
"cdP" = (
/obj/structure/platform{
@@ -34004,9 +26093,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/west_tunnel)
"cdQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -34015,9 +26102,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/workshop)
"cdR" = (
/obj/structure/platform{
@@ -34057,38 +26142,28 @@
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cdX" = (
-/turf/open/desert/rock/deep/transition{
- dir = 6
- },
+/turf/open/desert/rock/deep/transition/southeast,
/area/desert_dam/interior/caves/central_caves)
"cdY" = (
/obj/structure/surface/table/woodentable,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"cdZ" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"cea" = (
/obj/structure/surface/table/woodentable,
/obj/item/trash/cheesie,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"ceb" = (
/obj/structure/surface/table/woodentable,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"cec" = (
/obj/structure/machinery/vending/coffee,
@@ -34106,9 +26181,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"cef" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/exterior/river/riverside_central_south)
"ceg" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -34119,15 +26192,11 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_south)
"cei" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/river/riverside_central_south)
"cej" = (
/obj/structure/flora/grass/desert/lightgrass_6,
@@ -34137,14 +26206,10 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"cel" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_medical)
"cen" = (
/turf/closed/wall/r_wall,
@@ -34162,15 +26227,10 @@
"ceq" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached20"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached20,
/area/desert_dam/exterior/valley/valley_medical)
"cer" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_medical)
"cet" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -34185,16 +26245,11 @@
/obj/structure/surface/table/reinforced,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/chemistry)
"cev" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge/covered{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/covered/west,
/area/desert_dam/exterior/river/riverside_central_south)
"cew" = (
/obj/structure/platform_decoration{
@@ -34203,9 +26258,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_telecoms)
"cex" = (
/obj/structure/stairs{
@@ -34214,23 +26267,16 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_telecoms)
"cey" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_telecoms)
"cez" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_telecoms)
"ceA" = (
/turf/open/desert/dirt,
@@ -34239,24 +26285,17 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_telecoms)
"ceC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"ceD" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_telecoms)
"ceF" = (
/obj/structure/machinery/vending/cola,
@@ -34264,10 +26303,7 @@
/turf/open/floor/interior/wood,
/area/desert_dam/building/bar/bar)
"ceG" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_telecoms)
"ceH" = (
/obj/structure/machinery/vending/cigarette/colony,
@@ -34280,9 +26316,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/west_tunnel)
"ceJ" = (
/obj/structure/machinery/disposal,
@@ -34299,53 +26333,38 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"ceM" = (
/obj/structure/bed/stool,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"ceN" = (
/obj/structure/bed/stool,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"ceO" = (
/obj/structure/bed/stool,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"ceP" = (
/obj/structure/bed/stool,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"ceQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/south_tunnel)
"ceR" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/bar_valley_dam)
"ceS" = (
/obj/structure/desertdam/decals/road_edge,
@@ -34356,45 +26375,30 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"ceT" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/river/riverside_central_south)
"ceU" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_south)
"ceV" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/desert_dam/building/dorms/pool)
"ceW" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_medical)
"ceX" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_medical)
"ceY" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_medical)
"ceZ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"cfa" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -34407,25 +26411,17 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached17"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached17,
/area/desert_dam/exterior/valley/valley_medical)
"cfd" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_cargo)
"cfe" = (
-/turf/open/desert/rock/edge1{
- dir = 4
- },
+/turf/open/desert/rock/edge1/east,
/area/desert_dam/exterior/valley/valley_telecoms)
"cff" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_telecoms)
"cfg" = (
/obj/structure/desertdam/decals/road_edge{
@@ -34457,61 +26453,43 @@
"cfm" = (
/obj/structure/machinery/computer/atmos_alert,
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"cfn" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river/riverside_central_south)
"cfo" = (
/obj/structure/platform_decoration,
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_telecoms)
"cfp" = (
/obj/structure/stairs{
dir = 8
},
/obj/structure/platform,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_telecoms)
"cfq" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_cargo)
"cfr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"cfs" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"cft" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/valley_medical)
"cfv" = (
/obj/structure/desertdam/decals/road_edge{
@@ -34577,22 +26555,16 @@
dir = 8
},
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river_mouth/southern)
"cfE" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/rock/edge1{
- dir = 4
- },
+/turf/open/desert/rock/edge1/east,
/area/desert_dam/exterior/valley/valley_telecoms)
"cfG" = (
-/turf/open/desert/rock/edge1{
- dir = 4
- },
+/turf/open/desert/rock/edge1/east,
/area/desert_dam/exterior/valley/valley_cargo)
"cfH" = (
/obj/effect/blocker/toxic_water,
@@ -34602,16 +26574,12 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cfN" = (
/obj/structure/surface/table,
/obj/item/ammo_magazine/shotgun/slugs,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/warden)
"cfP" = (
/obj/effect/decal/warning_stripes{
@@ -34624,9 +26592,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cfR" = (
/obj/structure/disposalpipe/segment{
@@ -34663,9 +26629,7 @@
},
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_central_south)
"cga" = (
/obj/structure/platform_decoration{
@@ -34678,14 +26642,10 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_telecoms)
"cgc" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_medical)
"cgd" = (
/obj/structure/desertdam/decals/road_edge,
@@ -34708,15 +26668,11 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_medical)
"cgh" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/landing_pad_two)
"cgi" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/floor{
- icon_state = "neutral"
- },
+/turf/open/floor/neutral,
/area/desert_dam/interior/dam_interior/engine_room)
"cgj" = (
/obj/structure/platform{
@@ -34725,9 +26681,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"cgk" = (
/obj/structure/platform{
@@ -34739,24 +26693,17 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"cgm" = (
/turf/closed/wall/r_wall/bunker,
/area/desert_dam/building/substation/west)
"cgn" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/building/substation/west)
"cgo" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river_mouth/southern)
"cgp" = (
/obj/structure/surface/table,
@@ -34774,9 +26721,7 @@
dir = 8
},
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/river_mouth/southern)
"cgs" = (
/obj/structure/platform{
@@ -34803,15 +26748,11 @@
/turf/open/floor/interior/wood,
/area/desert_dam/building/bar/bar)
"cgB" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cgC" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge/covered{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/covered/east,
/area/desert_dam/exterior/river/riverside_central_south)
"cgD" = (
/obj/structure/disposalpipe/segment,
@@ -34830,9 +26771,7 @@
/turf/open/floor/plating,
/area/desert_dam/building/substation/west)
"cgK" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/valley_medical)
"cgL" = (
/obj/effect/decal/warning_stripes{
@@ -34869,29 +26808,19 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/floor{
- icon_state = "neutral"
- },
+/turf/open/floor/neutral,
/area/desert_dam/interior/dam_interior/engine_room)
"cgY" = (
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/desert_dam/building/substation/west)
"cgZ" = (
/obj/structure/machinery/power/terminal{
dir = 1
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/desert_dam/building/substation/west)
"cha" = (
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/desert_dam/building/substation/west)
"chb" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -34901,9 +26830,7 @@
/obj/structure/urinal{
pixel_y = 32
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/security/prison)
"che" = (
/obj/structure/desertdam/decals/road_edge{
@@ -34947,9 +26874,7 @@
/area/desert_dam/building/bar/bar)
"chl" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/rock/deep/transition{
- dir = 5
- },
+/turf/open/desert/rock/deep/transition/northeast,
/area/desert_dam/interior/caves/east_caves)
"chm" = (
/obj/structure/platform{
@@ -34960,9 +26885,7 @@
/area/desert_dam/exterior/river/riverside_south)
"chn" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_south)
"cho" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -34970,9 +26893,7 @@
/area/desert_dam/exterior/river/riverside_south)
"chp" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_south)
"chq" = (
/obj/structure/desertdam/decals/road_edge{
@@ -35019,17 +26940,13 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"chy" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"chz" = (
/obj/structure/platform{
@@ -35066,9 +26983,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"chD" = (
/obj/effect/decal/warning_stripes{
@@ -35084,9 +26999,7 @@
/area/desert_dam/interior/caves/temple)
"chG" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_telecoms)
"chJ" = (
/obj/effect/decal/sand_overlay/sand2,
@@ -35122,15 +27035,11 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/river/riverside_south)
"chU" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/river/riverside_south)
"chV" = (
/obj/structure/platform{
@@ -35147,50 +27056,33 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_south)
"chX" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/desert_dam/exterior/river/riverside_south)
"chY" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_medical)
"chZ" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_medical)
"cia" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_medical)
"cib" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_medical)
"cic" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/building/substation/west)
"cid" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_medical)
"cie" = (
/obj/structure/platform{
@@ -35241,33 +27133,25 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/west_tunnel)
"cin" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/west_tunnel)
"cio" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/west_tunnel)
"cip" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/west_tunnel)
"cir" = (
/obj/effect/decal/sand_overlay/sand2{
@@ -35283,16 +27167,12 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_medical)
"civ" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_medical)
"ciw" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/north_tunnel)
"cix" = (
/obj/structure/desertdam/decals/road_edge{
@@ -35320,9 +27200,7 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_south)
"ciE" = (
/obj/structure/platform{
@@ -35356,19 +27234,14 @@
amount = 50
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/building/substation/west)
"ciK" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/security/prison)
"ciL" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -35377,9 +27250,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/security/deathrow)
"ciM" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/central_tunnel)
"ciN" = (
/obj/effect/decal/sand_overlay/sand2{
@@ -35389,15 +27260,11 @@
/area/desert_dam/interior/dam_interior/south_tunnel)
"ciO" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"ciP" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/exterior/river/riverside_south)
"ciQ" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -35412,15 +27279,10 @@
/area/desert_dam/building/medical/chemistry)
"ciT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"ciU" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_medical)
"ciV" = (
/turf/closed/wall/r_wall,
@@ -35447,34 +27309,26 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cji" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_cargo)
"cjj" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cjk" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/river/riverside_south)
"cjl" = (
/obj/structure/platform{
@@ -35489,47 +27343,30 @@
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_south)
"cjn" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/desert_dam/building/medical/chemistry)
"cjo" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/stamp,
/obj/item/paper_bin,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/desert_dam/building/medical/chemistry)
"cjp" = (
/obj/structure/surface/table/reinforced,
/obj/item/packageWrap,
/obj/item/tool/hand_labeler,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/desert_dam/building/medical/chemistry)
"cjq" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/north,
/area/desert_dam/building/medical/chemistry)
"cjr" = (
/obj/structure/closet/secure_closet/chemical,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/north,
/area/desert_dam/building/medical/chemistry)
"cjs" = (
/obj/structure/window/framed/colony/reinforced,
@@ -35539,19 +27376,13 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Medical"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/west_wing_hallway)
"cju" = (
/obj/structure/filingcabinet,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/desert_dam/interior/dam_interior/lobby)
"cjv" = (
/turf/closed/wall/r_wall,
@@ -35562,16 +27393,10 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/break_room)
"cjx" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/break_room)
"cjy" = (
/turf/closed/wall,
@@ -35581,37 +27406,22 @@
dir = 1
},
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/medical/break_room)
"cjA" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/medical/break_room)
"cjB" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/medical/break_room)
"cjC" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/medical/break_room)
"cjD" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/desert_dam/building/medical/break_room)
"cjE" = (
/obj/structure/machinery/power/apc{
@@ -35644,14 +27454,10 @@
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"cjO" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"cjP" = (
/obj/structure/machinery/power/apc{
@@ -35659,16 +27465,11 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cjQ" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_south)
"cjR" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -35676,86 +27477,56 @@
/area/desert_dam/exterior/river/riverside_south)
"cjS" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_south)
"cjT" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_medical)
"cjU" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/north,
/area/desert_dam/building/medical/chemistry)
"cjV" = (
/obj/structure/window/framed/colony,
/turf/open/floor/plating,
/area/desert_dam/building/medical/chemistry)
"cjW" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/west_wing_hallway)
"cjX" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/west_wing_hallway)
"cjY" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/lobby)
"cjZ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"cka" = (
/turf/closed/wall,
/area/desert_dam/building/medical/morgue)
"ckb" = (
/obj/structure/morgue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/morgue)
"ckc" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/morgue)
"ckd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/lobby)
"cke" = (
/obj/structure/surface/table,
/obj/item/bodybag,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/morgue)
"ckf" = (
/obj/structure/machinery/power/apc{
@@ -35763,27 +27534,18 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/morgue)
"ckg" = (
/obj/structure/morgue{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/morgue)
"ckh" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"cki" = (
/turf/open/floor/prison,
@@ -35793,39 +27555,27 @@
/turf/open/floor/prison,
/area/desert_dam/building/medical/break_room)
"ckk" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/building/medical/break_room)
"ckm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/interior/dam_interior/smes_backup)
"ckn" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river/riverside_south)
"cko" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"ckp" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached17"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached17,
/area/desert_dam/exterior/valley/valley_cargo)
"ckq" = (
/obj/effect/landmark/survivor_spawner,
@@ -35837,16 +27587,11 @@
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"cks" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/warehouse/warehouse)
"ckt" = (
/obj/effect/decal/warning_stripes{
@@ -35855,9 +27600,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"cku" = (
/obj/structure/showcase{
@@ -35866,58 +27609,38 @@
/turf/open/floor/greengrid,
/area/desert_dam/building/substation/west)
"ckv" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/substation/west)
"ckw" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Cell 3"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/building/security/prison)
"ckx" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_south)
"cky" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/warehouse/warehouse)
"ckA" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/chemistry)
"ckB" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/chemistry)
"ckC" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/chemistry)
"ckD" = (
/turf/closed/wall,
@@ -35928,34 +27651,25 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"ckF" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"ckG" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"ckH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"ckI" = (
/obj/structure/pipes/vents/pump{
@@ -35964,9 +27678,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"ckJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -35975,15 +27687,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"ckL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"ckM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -35993,62 +27701,39 @@
dir = 1;
icon_state = "pipe-j2"
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/west_wing_hallway)
"ckN" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"ckO" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/morgue)
"ckP" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/morgue)
"ckQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"ckR" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/break_room)
"ckS" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/desert_dam/building/medical/break_room)
"ckT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"ckU" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -36059,23 +27744,15 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"ckW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/desert_dam/interior/dam_interior/lobby)
"ckX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/lobby)
"ckY" = (
/obj/structure/reagent_dispensers/watertank,
@@ -36092,9 +27769,7 @@
dir = 9
},
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/central_tunnel)
"clb" = (
/obj/structure/largecrate/random/barrel,
@@ -36116,18 +27791,14 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_south)
"clf" = (
/obj/structure/platform_decoration{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_south)
"clg" = (
/obj/structure/platform{
@@ -36137,24 +27808,18 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river/riverside_central_south)
"clh" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_south)
"cli" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_central_south)
"clj" = (
/turf/open/floor/plating,
@@ -36162,9 +27827,7 @@
"clk" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_south)
"cll" = (
/obj/structure/platform{
@@ -36176,15 +27839,11 @@
/area/desert_dam/exterior/river/riverside_central_south)
"clm" = (
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river_mouth/southern)
"cln" = (
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river_mouth/southern)
"clo" = (
/obj/structure/platform{
@@ -36210,30 +27869,20 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper Lab Maintenance"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/breakroom)
"clr" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Restroom"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/breakroom)
"clt" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/warehouse/breakroom)
"clw" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/building/substation/west)
"clz" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -36242,9 +27891,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/security/prison)
"clA" = (
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/mining/workshop_foyer)
"clB" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -36252,10 +27899,7 @@
/area/desert_dam/exterior/river/riverside_central_south)
"clC" = (
/obj/structure/prop/dam/large_boulder/boulder2,
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/bar_valley_dam)
"clD" = (
/obj/structure/platform{
@@ -36266,9 +27910,7 @@
/area/desert_dam/exterior/river/riverside_south)
"clE" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_south)
"clF" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -36280,21 +27922,13 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Medical Office"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/chemistry)
"clH" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/chemistry)
"clI" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"clJ" = (
/obj/structure/surface/table/reinforced,
@@ -36304,68 +27938,47 @@
pixel_y = 3
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"clK" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/glass/beaker/large,
/obj/item/reagent_container/glass/beaker/large,
/obj/item/reagent_container/glass/beaker,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"clL" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 2;
name = "\improper Medical Chemistry"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"clM" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/west_wing_hallway)
"clN" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"clO" = (
/obj/structure/surface/table,
/obj/item/device/autopsy_scanner,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/morgue)
"clP" = (
/obj/structure/machinery/optable,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/morgue)
"clQ" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/medical/break_room)
"clR" = (
/obj/structure/disposalpipe/segment{
@@ -36378,9 +27991,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/lobby)
"clT" = (
/obj/structure/surface/table/reinforced,
@@ -36388,39 +27999,28 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/desert_dam/interior/dam_interior/lobby)
"clU" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/central_tunnel)
"clV" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/central_tunnel)
"clW" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"clX" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"clY" = (
/obj/structure/desertdam/decals/road_edge,
@@ -36441,9 +28041,7 @@
/area/desert_dam/exterior/valley/valley_civilian)
"cmc" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"cmf" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -36451,10 +28049,7 @@
id = "dam_shutter_hangar";
name = "\improper Hangar Lock"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/west,
/area/desert_dam/interior/dam_interior/hanger)
"cmg" = (
/obj/structure/platform{
@@ -36470,30 +28065,22 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"cmi" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"cmj" = (
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"cmk" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"cml" = (
/turf/open/floor/greengrid,
@@ -36512,74 +28099,48 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_south)
"cms" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/warehouse/breakroom)
"cmt" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/chemistry)
"cmu" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/chemistry)
"cmv" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/pillbottles,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"cmw" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"cmx" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/desert_dam/building/medical/west_wing_hallway)
"cmB" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2;
name = "\improper Toilet Unit"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/break_room)
"cmC" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/medical/break_room)
"cmD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"cmE" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -36616,23 +28177,16 @@
/turf/open/floor/carpet,
/area/desert_dam/building/warehouse/breakroom)
"cmM" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_civilian)
"cmN" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_civilian)
"cmO" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/warehouse/warehouse)
"cmP" = (
/obj/structure/bed/chair/office/light{
@@ -36651,17 +28205,13 @@
/turf/open/gm/river/desert/deep,
/area/desert_dam/exterior/river/filtration_a)
"cmR" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_civilian)
"cmS" = (
/turf/open/floor/prison,
/area/desert_dam/building/warehouse/warehouse)
"cmU" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_civilian)
"cmV" = (
/obj/structure/machinery/light,
@@ -36676,34 +28226,24 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"cmY" = (
/obj/structure/largecrate/random/barrel/white,
/turf/open/floor/plating,
/area/desert_dam/building/warehouse/breakroom)
"cmZ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/building/substation/west)
"cna" = (
/obj/structure/sink{
dir = 1;
pixel_y = -10
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/breakroom)
"cnb" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/building/warehouse/breakroom)
"cnc" = (
/obj/structure/pipes/vents/pump,
@@ -36711,19 +28251,13 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/warehouse/breakroom)
"cne" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/warehouse/breakroom)
"cnf" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -36733,20 +28267,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/warehouse/breakroom)
"cng" = (
/obj/effect/landmark/crap_item,
/turf/open/floor/interior/wood/alt,
/area/desert_dam/building/bar/bar)
"cni" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/north,
/area/desert_dam/building/substation/west)
"cnp" = (
/obj/structure/disposalpipe/segment{
@@ -36767,10 +28295,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"cnu" = (
/obj/structure/surface/table/woodentable,
@@ -36788,23 +28313,17 @@
/obj/structure/surface/table,
/obj/structure/machinery/light,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/interior/dam_interior/lobby)
"cnx" = (
/obj/structure/prop/dam/boulder/boulder2,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cny" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cnz" = (
/obj/structure/bed/chair/comfy/beige{
@@ -36836,9 +28355,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"cnE" = (
/obj/structure/prop/dam/wide_boulder/boulder1,
@@ -36850,31 +28367,21 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"cnG" = (
-/turf/open/floor{
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple,
/area/desert_dam/building/medical/chemistry)
"cnH" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple,
/area/desert_dam/building/medical/chemistry)
"cnI" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"cnJ" = (
/obj/structure/machinery/smartfridge/chemistry,
@@ -36884,40 +28391,25 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/west_wing_hallway)
"cnL" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/morgue)
"cnN" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/break_room)
"cnO" = (
/obj/structure/surface/table,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/desert_dam/building/medical/break_room)
"cnP" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/desert_dam/building/medical/break_room)
"cnQ" = (
/obj/structure/machinery/light,
@@ -36930,10 +28422,7 @@
"cnS" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/shuttle/dropship/flight/lz2,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/landing/console2)
"cnT" = (
/obj/effect/decal/warning_stripes{
@@ -36955,55 +28444,35 @@
/area/desert_dam/building/warehouse/warehouse)
"cnW" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"cnX" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"cnZ" = (
/obj/structure/largecrate,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/warehouse/warehouse)
"coa" = (
/obj/structure/cargo_container/wy/left,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/warehouse/warehouse)
"cob" = (
/obj/structure/cargo_container/wy/mid,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/warehouse/warehouse)
"coc" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"cod" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_civilian)
"coe" = (
/obj/structure/cargo_container/wy/right,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/desert_dam/building/warehouse/warehouse)
"cof" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -37020,10 +28489,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/warehouse/breakroom)
"coj" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -37033,15 +28499,10 @@
id = "dam_shutter_hangar";
name = "\improper Hangar Lock"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"cok" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_civilian)
"col" = (
/obj/structure/bed/chair{
@@ -37051,24 +28512,16 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/warehouse/breakroom)
"com" = (
/obj/effect/blocker/toxic_water,
-/turf/open/floor/filtrationside{
- dir = 4
- },
+/turf/open/floor/filtrationside/east,
/area/desert_dam/exterior/valley/valley_hydro)
"con" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/junction,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/warehouse/breakroom)
"coo" = (
/obj/effect/blocker/toxic_water,
@@ -37076,22 +28529,16 @@
/area/desert_dam/exterior/river_mouth/southern)
"cop" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river_mouth/southern)
"cos" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_telecoms)
"cou" = (
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/building/warehouse/breakroom)
"cov" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -37121,40 +28568,29 @@
"coB" = (
/obj/structure/surface/rack,
/obj/item/clothing/suit/storage/hazardvest,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/warehouse/warehouse)
"coC" = (
/obj/structure/cargo_container/grant/left,
/turf/open/floor/prison,
/area/desert_dam/building/warehouse/warehouse)
"coE" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/bar_valley_dam)
"coF" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/river/riverside_south)
"coG" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_medical)
"coH" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_medical)
"coI" = (
/obj/structure/flora/grass/desert/heavygrass_4,
@@ -37168,9 +28604,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/valley_medical)
"coL" = (
/obj/structure/desertdam/decals/road_edge,
@@ -37181,50 +28615,36 @@
/area/desert_dam/exterior/valley/valley_medical)
"coM" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered,
/area/desert_dam/building/medical/chemistry)
"coN" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered,
/area/desert_dam/building/medical/chemistry)
"coO" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner,
/area/desert_dam/building/medical/chemistry)
"coP" = (
-/turf/open/floor{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner,
/area/desert_dam/building/medical/chemistry)
"coQ" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner,
/area/desert_dam/building/medical/chemistry)
"coR" = (
/obj/structure/bed/stool,
-/turf/open/floor{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner,
/area/desert_dam/building/medical/chemistry)
"coS" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/northleft{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"coT" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -37232,10 +28652,7 @@
name = "\improper Morgue"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/morgue)
"coU" = (
/obj/structure/window/framed/colony,
@@ -37243,10 +28660,7 @@
/area/desert_dam/building/medical/break_room)
"coV" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_backup)
"coW" = (
/obj/structure/cargo_container/grant/rightmid,
@@ -37274,29 +28688,19 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"cpc" = (
/obj/structure/largecrate,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/desert_dam/building/warehouse/warehouse)
"cpd" = (
/obj/structure/platform_decoration,
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river_mouth/southern)
"cpf" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/warehouse/warehouse)
"cpg" = (
/obj/structure/machinery/power/apc{
@@ -37304,31 +28708,19 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/east,
/area/desert_dam/building/warehouse/warehouse)
"cph" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/desert_dam/building/warehouse/warehouse)
"cpi" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/desert_dam/building/warehouse/warehouse)
"cpj" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet6-2"
- },
+/turf/open/floor/carpet6_2/west,
/area/desert_dam/building/bar/bar)
"cpm" = (
/obj/structure/machinery/light{
@@ -37341,32 +28733,22 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cpp" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/desert_dam/building/warehouse/breakroom)
"cpq" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/desert_dam/building/bar/bar)
"cps" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/warehouse/breakroom)
"cpu" = (
/obj/structure/flora/grass/desert/lightgrass_3,
@@ -37377,73 +28759,49 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_south)
"cpw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"cpx" = (
/obj/structure/machinery/computer/crew,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/northwest,
/area/desert_dam/building/medical/office1)
"cpy" = (
/obj/structure/closet,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/northeast,
/area/desert_dam/building/medical/office1)
"cpz" = (
/obj/structure/machinery/computer/crew,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/northwest,
/area/desert_dam/building/medical/office2)
"cpA" = (
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner,
/area/desert_dam/building/medical/chemistry)
"cpB" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner,
/area/desert_dam/building/medical/chemistry)
"cpC" = (
/obj/structure/machinery/reagentgrinder,
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner,
/area/desert_dam/building/medical/chemistry)
"cpD" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner,
/area/desert_dam/building/medical/chemistry)
"cpE" = (
/obj/structure/machinery/power/port_gen/pacman,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/interior/dam_interior/smes_backup)
"cpF" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -37451,47 +28809,29 @@
dir = 1;
icon_state = "pipe-j2"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"cpG" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/desert_dam/building/medical/west_wing_hallway)
"cpH" = (
/obj/structure/window/framed/colony/reinforced,
/turf/open/floor/plating,
/area/desert_dam/building/medical/north_wing_hallway)
"cpI" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/north_wing_hallway)
"cpJ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/north_wing_hallway)
"cpL" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/desert_dam/building/medical/north_wing_hallway)
"cpM" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/north_wing_hallway)
"cpN" = (
/obj/structure/machinery/power/apc{
@@ -37499,18 +28839,13 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/north_wing_hallway)
"cpP" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_medical)
"cpQ" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -37539,48 +28874,35 @@
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_central_south)
"cpV" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_central_south)
"cpW" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"cpX" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_civilian)
"cpY" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"cpZ" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_civilian)
"cqa" = (
/turf/open/asphalt/cement,
@@ -37589,75 +28911,51 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/warehouse/breakroom)
"cqc" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/building/warehouse/breakroom)
"cqd" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/east,
/area/desert_dam/building/substation/west)
"cqf" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/warehouse/breakroom)
"cqg" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/building/warehouse/breakroom)
"cqh" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/building/warehouse/breakroom)
"cqj" = (
/obj/structure/surface/table,
/obj/item/restraint/handcuffs,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/warden)
"cqk" = (
/obj/structure/surface/table,
/obj/item/ammo_magazine/shotgun/slugs,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/warden)
"cql" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_cargo)
"cqm" = (
/obj/structure/surface/table,
/obj/item/ammo_magazine/shotgun/buckshot,
/obj/item/clothing/head/beret/sec/warden,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/warden)
"cqn" = (
/turf/closed/wall/r_wall/bunker{
@@ -37668,9 +28966,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_telecoms)
"cqq" = (
/obj/structure/flora/grass/desert/lightgrass_6,
@@ -37681,26 +28977,18 @@
/obj/structure/machinery/door/window/brigdoor/northleft{
dir = 2
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"cqt" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/west_wing_hallway)
"cqu" = (
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cqv" = (
/obj/structure/machinery/disposal,
@@ -37716,10 +29004,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/west_wing_hallway)
"cqx" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -37728,18 +29013,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/north_wing_hallway)
"cqy" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cqA" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -37748,42 +29027,28 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/north_wing_hallway)
"cqC" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/interior/dam_interior/lobby)
"cqE" = (
/obj/structure/pipes/vents/pump,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cqF" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/glasses/welding,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cqG" = (
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_telecoms)
"cqH" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -37797,18 +29062,12 @@
/obj/item/folder,
/obj/item/device/assembly/signaller,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cqJ" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cqK" = (
/obj/structure/machinery/light,
@@ -37822,19 +29081,14 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_wilderness)
"cqT" = (
/obj/structure/flora/grass/desert/lightgrass_2,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_civilian)
"cqU" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_civilian)
"cra" = (
/obj/structure/platform{
@@ -37852,16 +29106,12 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"crd" = (
/obj/structure/machinery/computer/telecomms/traffic,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"crg" = (
/obj/structure/surface/table,
@@ -37870,25 +29120,19 @@
pixel_y = 2
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"crh" = (
/obj/structure/surface/table,
/obj/item/device/analyzer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"cri" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"crj" = (
/obj/structure/showcase{
@@ -37897,10 +29141,7 @@
/turf/open/floor/greengrid,
/area/desert_dam/building/substation/west)
"crk" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/building/substation/west)
"crl" = (
/obj/structure/surface/table,
@@ -37910,19 +29151,14 @@
pixel_y = 2
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/building/substation/west)
"crm" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"crn" = (
/obj/effect/decal/warning_stripes{
@@ -37931,9 +29167,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"cro" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -37943,15 +29177,10 @@
/turf/open/floor/prison,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"crq" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/valley_cargo)
"crr" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_cargo)
"cru" = (
/obj/structure/flora/grass/desert/lightgrass_3,
@@ -37986,34 +29215,19 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/lobby)
"crC" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/lobby)
"crD" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/lobby)
"crE" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/lobby)
"crF" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/lobby)
"crG" = (
/obj/structure/machinery/power/apc{
@@ -38021,10 +29235,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/lobby)
"crH" = (
/obj/structure/window/framed/colony,
@@ -38032,28 +29243,20 @@
/area/desert_dam/building/medical/lobby)
"crI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/lobby)
"crK" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/west_wing_hallway)
"crL" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 1;
name = "\improper Medical Hallway"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/north_wing_hallway)
"crM" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/north_wing_hallway)
"crN" = (
/obj/structure/machinery/power/smes/buildable{
@@ -38061,18 +29264,13 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/desert_dam/interior/dam_interior/smes_backup)
"crO" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/exterior/valley/valley_telecoms)
"crP" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -38080,39 +29278,26 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/north_wing_hallway)
"crQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/workshop)
"crR" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/north_wing_hallway)
"crS" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/northwestern_tunnel)
"crV" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southeast,
/area/desert_dam/building/mining/workshop_foyer)
"crW" = (
/obj/structure/desertdam/decals/road_edge{
@@ -38152,14 +29337,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/workshop)
"csf" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/valley_civilian)
"csg" = (
/obj/structure/platform{
@@ -38169,30 +29350,20 @@
/turf/open/gm/river/desert/deep,
/area/desert_dam/exterior/river/filtration_a)
"csh" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/desert_dam/building/security/prison)
"csi" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_civilian)
"csj" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"csl" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/desert_dam/building/security/prison)
"csm" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38216,9 +29387,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"csp" = (
/obj/structure/machinery/power/apc{
@@ -38226,26 +29395,17 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/substation/west)
"css" = (
/obj/structure/surface/table,
/obj/item/device/analyzer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/building/substation/west)
"cst" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/building/substation/west)
"csu" = (
/obj/structure/stairs,
@@ -38253,10 +29413,7 @@
/area/desert_dam/exterior/valley/valley_telecoms)
"csw" = (
/obj/structure/machinery/computer/telecomms/traffic,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/building/substation/west)
"csx" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38265,10 +29422,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/security/execution_chamber)
"csy" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/desert_dam/building/bar/bar)
"csz" = (
/obj/structure/desertdam/decals/road_edge,
@@ -38280,27 +29434,16 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"csA" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/valley_cargo)
"csB" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_cargo)
"csC" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_cargo)
"csD" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_cargo)
"csE" = (
/obj/structure/flora/grass/desert/lightgrass_2,
@@ -38325,35 +29468,23 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_medical)
"csI" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/desert_dam/building/medical/lobby)
"csJ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/desert_dam/building/medical/lobby)
"csK" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/lobby)
"csL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"csM" = (
/obj/effect/spawner/random/toolbox,
@@ -38363,10 +29494,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"csN" = (
/obj/structure/surface/table/reinforced,
@@ -38375,65 +29503,41 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"csO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/west_wing_hallway)
"csP" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"csQ" = (
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/desert_dam/building/medical/west_wing_hallway)
"csR" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/north_wing_hallway)
"csS" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/desert_dam/building/medical/north_wing_hallway)
"csT" = (
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/desert_dam/building/medical/north_wing_hallway)
"csU" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/north_wing_hallway)
"csV" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/north_wing_hallway)
"csW" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -38445,16 +29549,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/workshop)
"csY" = (
/obj/structure/disposalpipe/junction,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/workshop)
"csZ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -38462,21 +29562,15 @@
name = "\improper Workshop"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/workshop)
"cta" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_civilian)
"ctb" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/west_tunnel)
"ctc" = (
/obj/structure/disposalpipe/segment{
@@ -38485,123 +29579,80 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/west_tunnel)
"ctd" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_civilian)
"cte" = (
/obj/structure/machinery/computer/telecomms/server,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/west)
"ctf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/west_tunnel)
"ctg" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/interior/dam_interior/west_tunnel)
"cth" = (
/obj/structure/machinery/computer/telecomms/monitor,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/west)
"cti" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/west_tunnel)
"ctj" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"ctl" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"ctm" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_civilian)
"ctn" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_civilian)
"cto" = (
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_civilian)
"ctp" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_civilian)
"ctq" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_civilian)
"cts" = (
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"ctt" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"ctu" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"ctv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"ctw" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/west)
"ctz" = (
/obj/structure/platform{
@@ -38610,40 +29661,28 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"ctA" = (
/obj/item/device/flashlight,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/substation/west)
"ctB" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/east,
/area/desert_dam/building/substation/west)
"ctD" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/northeastern_tunnel)
"ctE" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"ctF" = (
/obj/effect/decal/warning_stripes{
@@ -38662,29 +29701,21 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"ctL" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_medical)
"ctM" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_medical)
"ctN" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_medical)
"ctO" = (
/obj/structure/desertdam/decals/road_stop{
@@ -38698,36 +29729,23 @@
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"ctQ" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/lobby)
"ctR" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/lobby)
"ctS" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/lobby)
"ctT" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 2;
name = "\improper Medical Lobby"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/lobby)
"ctV" = (
/obj/structure/surface/table/reinforced,
@@ -38738,10 +29756,7 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"ctW" = (
/turf/closed/wall,
@@ -38757,16 +29772,10 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Observation"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgury_observation)
"cua" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgury_observation)
"cub" = (
/obj/structure/window/framed/colony,
@@ -38776,18 +29785,12 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Medical Hallway"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cud" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/east_wing_hallway)
"cue" = (
/turf/closed/wall,
@@ -38810,9 +29813,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cuk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38824,9 +29825,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cul" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38837,9 +29836,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cum" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38849,9 +29846,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cun" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38861,49 +29856,35 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cuo" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cup" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"cuq" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cur" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cus" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cut" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cuu" = (
/obj/structure/platform{
@@ -38912,37 +29893,25 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cuv" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cuw" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_civilian)
"cux" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_civilian)
"cuy" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_telecoms)
"cuz" = (
/obj/structure/desertdam/decals/road_edge{
@@ -38954,27 +29923,20 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_cargo)
"cuA" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/desert_dam/building/substation/west)
"cuB" = (
/obj/effect/landmark/survivor_spawner,
/turf/open/floor/prison,
/area/desert_dam/building/substation/west)
"cuH" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_cargo)
"cuI" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cuJ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -38989,9 +29951,7 @@
/obj/effect/decal/sand_overlay/sand2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cuL" = (
/obj/structure/desertdam/decals/road_edge{
@@ -39028,15 +29988,11 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cuQ" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_south)
"cuR" = (
/obj/structure/platform{
@@ -39047,18 +30003,14 @@
},
/obj/effect/blocker/toxic_water/Group_2,
/obj/item/clothing/head/soft/ferret,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river/riverside_central_south)
"cuS" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/desert_dam/exterior/river/riverside_south)
"cuT" = (
/obj/structure/platform{
@@ -39067,73 +30019,46 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_south)
"cuU" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_medical)
"cuV" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/desert_dam/building/medical/lobby)
"cuW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/smes_backup)
"cuX" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/glasses/hud/health,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"cuY" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/northwest,
/area/desert_dam/building/medical/primary_storage)
"cuZ" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/north,
/area/desert_dam/building/medical/primary_storage)
"cva" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/northeast,
/area/desert_dam/building/medical/primary_storage)
"cvb" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/surgury_observation)
"cvc" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/surgury_observation)
"cvd" = (
/obj/structure/machinery/power/apc{
@@ -39141,31 +30066,20 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/surgury_observation)
"cve" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cvf" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"cvg" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/east_wing_hallway)
"cvh" = (
/obj/structure/closet/secure_closet/medical_doctor,
@@ -39181,10 +30095,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"cvk" = (
/obj/structure/machinery/computer/crew,
@@ -39198,21 +30109,14 @@
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cvn" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_civilian)
"cvo" = (
/obj/structure/flora/tree/joshua,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cvp" = (
/obj/effect/decal/cleanable/dirt,
@@ -39222,10 +30126,7 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cvq" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet10-8"
- },
+/turf/open/floor/carpet10_8/west,
/area/desert_dam/building/bar/bar)
"cvr" = (
/obj/effect/decal/cleanable/dirt,
@@ -39246,70 +30147,48 @@
/turf/open/floor/interior/tatami,
/area/desert_dam/building/bar/bar)
"cvv" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cvw" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_civilian)
"cvx" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_civilian)
"cvz" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cvA" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cvB" = (
/obj/structure/surface/table,
/obj/item/folder/black_random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/desert_dam/building/substation/west)
"cvC" = (
/obj/structure/surface/table,
/obj/item/folder/yellow,
/obj/structure/machinery/light,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/substation/west)
"cvD" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_telecoms)
"cvE" = (
/obj/structure/surface/table,
/obj/item/device/encryptionkey,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/building/substation/west)
"cvF" = (
-/turf/open/floor/prison{
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner,
/area/desert_dam/building/substation/west)
"cvG" = (
/obj/effect/decal/warning_stripes{
@@ -39318,10 +30197,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_cargo)
"cvH" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cvI" = (
/obj/structure/desertdam/decals/road_stop{
@@ -39338,15 +30214,11 @@
/area/desert_dam/exterior/valley/valley_cargo)
"cvK" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/desert_dam/exterior/river/riverside_south)
"cvL" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/river/riverside_south)
"cvM" = (
/turf/closed/wall/r_wall,
@@ -39358,10 +30230,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/lobby)
"cvO" = (
/obj/structure/surface/table/reinforced,
@@ -39372,20 +30241,14 @@
dir = 8;
health = 80
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/lobby)
"cvP" = (
/obj/structure/machinery/computer/med_data,
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/lobby)
"cvQ" = (
/obj/structure/machinery/computer/crew,
@@ -39395,73 +30258,47 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/lobby)
"cvS" = (
/obj/structure/cargo_container/trijent/mid/alt,
/turf/open/floor/prison,
/area/desert_dam/building/warehouse/warehouse)
"cvT" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/primary_storage)
"cvU" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/primary_storage)
"cvV" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cvW" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/surgury_observation)
"cvZ" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Observation"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgury_observation)
"cwb" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cwc" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cwd" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/desert_dam/building/medical/east_wing_hallway)
"cwf" = (
/obj/structure/bed/chair/office/light{
@@ -39483,21 +30320,14 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/building/substation/west)
"cwl" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_telecoms)
"cwm" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_telecoms)
"cwn" = (
/obj/effect/decal/cleanable/dirt,
@@ -39505,18 +30335,13 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_civilian)
"cwo" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/valley_civilian)
"cwp" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"cwq" = (
/obj/structure/desertdam/decals/road_edge{
@@ -39533,10 +30358,7 @@
id = "dam_shutter_hangar";
name = "\improper Hangar Lock"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"cws" = (
/obj/structure/disposalpipe/segment{
@@ -39545,39 +30367,25 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/west_tunnel)
"cwu" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/valley_civilian)
"cww" = (
/obj/structure/surface/table,
/obj/item/tool/hand_labeler,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/substation/west)
"cwx" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/southwest,
/area/desert_dam/building/substation/west)
"cwy" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/phoron{
amount = 50
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/substation/west)
"cwz" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_cargo)
"cwA" = (
/obj/structure/desertdam/decals/road_edge{
@@ -39589,17 +30397,12 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cwB" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_cargo)
"cwC" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/decal/cleanable/blood,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_civilian)
"cwD" = (
/obj/structure/disposalpipe/segment{
@@ -39631,10 +30434,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/lobby)
"cwI" = (
/obj/structure/surface/table/reinforced,
@@ -39642,106 +30442,68 @@
dir = 8
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/lobby)
"cwJ" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/lobby)
"cwK" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/lobby)
"cwL" = (
/obj/structure/machinery/door/airlock/almayer/generic,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/lobby)
"cwM" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/pillbottles,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"cwN" = (
/obj/structure/bed/chair/wheelchair,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/primary_storage)
"cwO" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/primary_storage)
"cwP" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/primary_storage)
"cwQ" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/surgury_observation)
"cwR" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/surgury_observation)
"cwS" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cwT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cwU" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cwV" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -39750,10 +30512,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cwW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -39765,10 +30524,7 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper CMO's Officer"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/CMO)
"cwX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -39811,9 +30567,7 @@
dir = 1;
icon_state = "pipe-j2"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cxf" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -39835,14 +30589,10 @@
"cxj" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"cxk" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_telecoms)
"cxl" = (
/obj/item/stack/sheet/wood,
@@ -39853,25 +30603,17 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_civilian)
"cxm" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_civilian)
"cxn" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_telecoms)
"cxo" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/phoron{
amount = 50
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/building/substation/west)
"cxq" = (
/obj/structure/platform{
@@ -39880,18 +30622,13 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_cargo)
"cxr" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_cargo)
"cxt" = (
/obj/structure/platform{
@@ -39906,17 +30643,13 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cxv" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_telecoms)
"cxw" = (
/obj/structure/desertdam/decals/road_edge{
@@ -39945,9 +30678,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_medical)
"cxA" = (
/obj/structure/surface/table/reinforced,
@@ -39957,25 +30688,17 @@
},
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/lobby)
"cxB" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/prison/whiteredcorner/east,
/area/desert_dam/building/medical/primary_storage)
"cxC" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Workshop"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/workshop)
"cxD" = (
/obj/structure/surface/table,
@@ -39986,10 +30709,7 @@
/obj/item/storage/pill_bottle/inaprovaline{
pixel_x = 7
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/primary_storage)
"cxE" = (
/obj/structure/window/framed/colony,
@@ -40001,15 +30721,10 @@
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cxH" = (
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/desert_dam/building/medical/east_wing_hallway)
"cxI" = (
/obj/structure/disposalpipe/segment,
@@ -40017,10 +30732,7 @@
/area/desert_dam/building/medical/CMO)
"cxJ" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/substation/west)
"cxK" = (
/obj/structure/machinery/autolathe,
@@ -40034,10 +30746,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/mining/workshop)
"cxN" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/building/substation/west)
"cxP" = (
/obj/structure/platform{
@@ -40056,34 +30765,23 @@
/area/desert_dam/exterior/valley/valley_cargo)
"cxR" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony,
-/turf/open/floor/prison{
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner,
/area/desert_dam/building/substation/west)
"cxS" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_cargo)
"cxT" = (
/obj/structure/flora/grass/desert/lightgrass_6,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_cargo)
"cxU" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_cargo)
"cxV" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_cargo)
"cxW" = (
/obj/structure/platform{
@@ -40091,28 +30789,20 @@
},
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_south)
"cxY" = (
/obj/structure/window/reinforced,
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/lobby)
"cxZ" = (
/obj/structure/window/reinforced,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/lobby)
"cyb" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -40122,10 +30812,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"cyc" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -40135,10 +30822,7 @@
dir = 8;
icon_state = "pipe-j2"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/west_wing_hallway)
"cyd" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -40147,10 +30831,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/primary_storage)
"cye" = (
/obj/structure/pipes/vents/pump{
@@ -40160,10 +30841,7 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/primary_storage)
"cyf" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -40177,16 +30855,10 @@
/obj/structure/machinery/bioprinter{
stored_metal = 1000
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/northwest,
/area/desert_dam/building/medical/surgery_room_one)
"cyh" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/north,
/area/desert_dam/building/medical/surgery_room_one)
"cyj" = (
/obj/structure/closet/secure_closet/medical2,
@@ -40195,10 +30867,7 @@
pixel_y = -5
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/northeast,
/area/desert_dam/building/medical/surgery_room_one)
"cyk" = (
/turf/closed/wall,
@@ -40207,23 +30876,14 @@
/obj/structure/machinery/bioprinter{
stored_metal = 1000
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/northwest,
/area/desert_dam/building/medical/surgery_room_two)
"cym" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/north,
/area/desert_dam/building/medical/surgery_room_two)
"cyn" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/north,
/area/desert_dam/building/medical/surgery_room_two)
"cyo" = (
/obj/structure/closet/secure_closet/medical2,
@@ -40232,10 +30892,7 @@
pixel_y = -5
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/northeast,
/area/desert_dam/building/medical/surgery_room_two)
"cyp" = (
/turf/closed/wall,
@@ -40261,10 +30918,7 @@
/area/desert_dam/building/medical/CMO)
"cyt" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/desert_dam/building/mining/workshop)
"cyv" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
@@ -40273,60 +30927,43 @@
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cyw" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/desert_dam/building/mining/workshop_foyer)
"cyx" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/mining/workshop_foyer)
"cyB" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_cargo)
"cyC" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_cargo)
"cyD" = (
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"cyE" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_cargo)
"cyG" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_cargo)
"cyH" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/armory)
"cyL" = (
/obj/structure/prop/dam/boulder/boulder1,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_cargo)
"cyN" = (
/obj/structure/flora/grass/desert/lightgrass_11,
@@ -40343,42 +30980,31 @@
"cyR" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_south)
"cyS" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_medical)
"cyU" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/workshop)
"cyV" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/west_wing_hallway)
"cyW" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "\improper Medical Storage"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/primary_storage)
"cyX" = (
/obj/structure/surface/table,
@@ -40387,40 +31013,23 @@
pixel_x = 5;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/primary_storage)
"cyY" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/surgery_room_one)
"cyZ" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgery_room_one)
"cza" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/mining/workshop_foyer)
"czb" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/surgery_room_two)
"czc" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgery_room_two)
"czd" = (
/obj/item/tool/surgery/surgicaldrill,
@@ -40429,19 +31038,13 @@
/obj/item/tool/surgery/FixOVein,
/obj/item/stack/nanopaste,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/surgery_room_two)
"cze" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/east_wing_hallway)
"czf" = (
/turf/closed/wall,
@@ -40453,9 +31056,7 @@
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/mining/workshop_foyer)
"czj" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -40463,31 +31064,22 @@
/area/desert_dam/exterior/river/riverside_central_south)
"czk" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"czn" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/mining/workshop_foyer)
"czq" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_cargo)
"czt" = (
/obj/structure/prop/dam/boulder/boulder2,
-/turf/open/desert/rock/edge1{
- dir = 4
- },
+/turf/open/desert/rock/edge1/east,
/area/desert_dam/exterior/valley/valley_cargo)
"czv" = (
/obj/structure/flora/grass/desert/lightgrass_1,
@@ -40497,10 +31089,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_cargo)
"czx" = (
/obj/structure/flora/grass/desert/lightgrass_8,
@@ -40508,30 +31097,19 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"czy" = (
/obj/structure/prop/dam/boulder/boulder2,
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/bar_valley_dam)
"czz" = (
/obj/structure/prop/dam/boulder/boulder1,
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/bar_valley_dam)
"czA" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/landing_pad_two)
"czB" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_south)
"czC" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -40540,16 +31118,11 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"czD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/CE_office)
"czE" = (
/obj/structure/surface/table,
@@ -40566,27 +31139,18 @@
pixel_x = -5;
pixel_y = -5
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/prison/whiteredcorner/west,
/area/desert_dam/building/medical/primary_storage)
"czF" = (
/obj/structure/surface/table,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/primary_storage)
"czG" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/surgery_room_one)
"czH" = (
/obj/item/tool/surgery/scalpel,
@@ -40596,19 +31160,13 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/surgery_room_one)
"czI" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/surgery_room_two)
"czJ" = (
/obj/item/tool/surgery/scalpel,
@@ -40618,32 +31176,20 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/surgery_room_two)
"czL" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/central)
"czM" = (
/obj/structure/machinery/power/smes/batteryrack/substation,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/central)
"czN" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/central)
"czO" = (
/turf/closed/wall/r_wall,
@@ -40670,9 +31216,7 @@
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"czS" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_central_south)
"czT" = (
/obj/structure/platform{
@@ -40682,17 +31226,13 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/river/riverside_east)
"czU" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"czV" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -40700,32 +31240,23 @@
/area/desert_dam/exterior/river/riverside_south)
"czW" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_cargo)
"czX" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge/covered{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/covered/east,
/area/desert_dam/exterior/river/riverside_south)
"czY" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_cargo)
"czZ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached17"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached17,
/area/desert_dam/exterior/valley/valley_cargo)
"cAa" = (
/obj/structure/platform{
@@ -40760,110 +31291,80 @@
},
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river/riverside_south)
"cAf" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/river/riverside_south)
"cAg" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/river/riverside_east)
"cAh" = (
/obj/structure/platform_decoration{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/river/riverside_east)
"cAi" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_south)
"cAj" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_south)
"cAk" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river/riverside_south)
"cAl" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_south)
"cAm" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_south)
"cAn" = (
/obj/structure/surface/table,
/obj/item/bodybag/cryobag,
/obj/item/storage/box/syringes,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/primary_storage)
"cAo" = (
/obj/structure/closet/secure_closet/medical3{
req_access_txt = "100"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/primary_storage)
"cAp" = (
/obj/structure/sink{
dir = 8;
pixel_x = -11
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/surgery_room_one)
"cAq" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cAr" = (
/obj/item/tool/surgery/retractor,
@@ -40874,27 +31375,18 @@
desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
name = "Surgery Cleaner"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/surgery_room_one)
"cAs" = (
/obj/structure/sink{
dir = 8;
pixel_x = -11
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/surgery_room_two)
"cAt" = (
/obj/structure/machinery/optable,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgery_room_two)
"cAu" = (
/obj/item/tool/surgery/retractor,
@@ -40905,10 +31397,7 @@
desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
name = "Surgery Cleaner"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/surgery_room_two)
"cAv" = (
/obj/structure/machinery/power/apc{
@@ -40916,10 +31405,7 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/substation/central)
"cAx" = (
/obj/structure/machinery/power/terminal{
@@ -40937,33 +31423,22 @@
"cAC" = (
/obj/structure/closet,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/northeast,
/area/desert_dam/building/medical/office2)
"cAD" = (
/obj/structure/machinery/computer/med_data,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/north,
/area/desert_dam/building/medical/office1)
"cAE" = (
/obj/structure/closet/secure_closet/medical_doctor,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/north,
/area/desert_dam/building/medical/office1)
"cAF" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_cargo)
"cAG" = (
/turf/closed/wall,
@@ -40980,32 +31455,20 @@
},
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/emergency_room)
"cAI" = (
/obj/structure/machinery/computer/med_data,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/north,
/area/desert_dam/building/medical/office2)
"cAJ" = (
/obj/structure/closet/secure_closet/medical_doctor,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/north,
/area/desert_dam/building/medical/office2)
"cAK" = (
/obj/structure/disposalpipe/segment,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/desert_dam/building/medical/emergency_room)
"cAL" = (
/obj/structure/flora/grass/desert/lightgrass_8,
@@ -41047,9 +31510,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_cargo)
"cAR" = (
/obj/structure/platform_decoration{
@@ -41058,9 +31519,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_cargo)
"cAT" = (
/obj/structure/desertdam/decals/road_edge{
@@ -41072,10 +31531,7 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cAU" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/desert_dam/building/bar/bar)
"cAV" = (
/obj/structure/desertdam/decals/road_edge{
@@ -41095,36 +31551,26 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river/riverside_south)
"cAY" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_south)
"cAZ" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_south)
"cBa" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_south)
"cBb" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached17"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached17,
/area/desert_dam/exterior/valley/valley_medical)
"cBc" = (
/obj/structure/desertdam/decals/road_edge{
@@ -41143,53 +31589,36 @@
},
/obj/structure/machinery/light,
/obj/structure/flora/pottedplant,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/desert_dam/building/medical/lobby)
"cBe" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottom"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/lobby)
"cBf" = (
/obj/effect/decal/medical_decals{
dir = 4;
icon_state = "triagedecalbottomleft"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/lobby)
"cBg" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/lobby)
"cBh" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottom"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/desert_dam/building/medical/west_wing_hallway)
"cBi" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottom"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/west_wing_hallway)
"cBj" = (
/obj/effect/decal/medical_decals{
@@ -41197,19 +31626,13 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"cBk" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottom"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"cBl" = (
/obj/structure/surface/table,
@@ -41218,10 +31641,7 @@
pixel_x = 5;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/primary_storage)
"cBm" = (
/obj/structure/machinery/power/apc{
@@ -41229,27 +31649,18 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/surgery_room_one)
"cBo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cBp" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/surgery_room_one)
"cBq" = (
/obj/structure/machinery/power/apc{
@@ -41257,55 +31668,37 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/surgery_room_two)
"cBr" = (
/obj/structure/closet/secure_closet/engineering_welding,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/building/substation/west)
"cBs" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgery_room_two)
"cBt" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/surgery_room_two)
"cBu" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/substation/central)
"cBx" = (
/turf/open/floor/prison,
/area/desert_dam/building/substation/central)
"cBy" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/building/substation/central)
"cBz" = (
/turf/open/floor/plating,
@@ -41314,74 +31707,50 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/office1)
"cBC" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/office1)
"cBD" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/office1)
"cBF" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/office2)
"cBG" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/office2)
"cBH" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/office2)
"cBI" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 10
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cBJ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_civilian)
"cBL" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_civilian)
"cBN" = (
/obj/effect/decal/cleanable/dirt,
@@ -41406,16 +31775,12 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_civilian)
"cBS" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/landing_pad_two)
"cBT" = (
/obj/structure/machinery/light,
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"cBU" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -41427,9 +31792,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_cargo)
"cBW" = (
/obj/structure/flora/bush/desert/cactus{
@@ -41440,10 +31803,7 @@
"cBX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/desert_dam/building/bar/bar)
"cBY" = (
/obj/structure/flora/grass/desert/lightgrass_5,
@@ -41458,10 +31818,7 @@
/area/desert_dam/exterior/valley/south_valley_dam)
"cCa" = (
/obj/structure/prop/dam/boulder/boulder3,
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cCb" = (
/obj/structure/platform{
@@ -41493,15 +31850,10 @@
"cCh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"cCi" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/emergency_room)
"cCj" = (
/obj/structure/window/framed/colony/reinforced,
@@ -41511,114 +31863,70 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Emergency Room"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/emergency_room)
"cCl" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/emergency_room)
"cCm" = (
/obj/item/device/defibrillator,
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/southwest,
/area/desert_dam/building/medical/primary_storage)
"cCn" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/prison{
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered,
/area/desert_dam/building/medical/primary_storage)
"cCo" = (
/obj/structure/closet/secure_closet/medical3{
req_access_txt = "100"
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/southeast,
/area/desert_dam/building/medical/primary_storage)
"cCp" = (
/obj/structure/machinery/medical_pod/bodyscanner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/southwest,
/area/desert_dam/building/medical/surgery_room_one)
"cCq" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/prison/whiteredcorner/west,
/area/desert_dam/building/medical/surgery_room_one)
"cCr" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgery_room_one)
"cCs" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/surgery_room_one)
"cCt" = (
/obj/structure/machinery/medical_pod/bodyscanner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/southwest,
/area/desert_dam/building/medical/surgery_room_two)
"cCu" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/prison/whiteredcorner/west,
/area/desert_dam/building/medical/surgery_room_two)
"cCv" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgery_room_two)
"cCw" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/surgery_room_two)
"cCx" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/substation/central)
"cCy" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/phoron{
amount = 50
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/building/substation/central)
"cCz" = (
/obj/structure/surface/rack,
@@ -41628,10 +31936,7 @@
/turf/open/floor/plating,
/area/desert_dam/building/substation/central)
"cCA" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/office1)
"cCC" = (
/obj/structure/bed,
@@ -41640,10 +31945,7 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/office1)
"cCE" = (
/obj/structure/bed,
@@ -41652,19 +31954,14 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/office2)
"cCF" = (
/turf/closed/wall/r_wall,
/area/desert_dam/building/medical/east_wing_hallway)
"cCG" = (
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"cCH" = (
/obj/structure/desertdam/decals/road_edge{
@@ -41686,99 +31983,73 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_telecoms)
"cCL" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/valley_cargo)
"cCM" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_telecoms)
"cCO" = (
/obj/structure/stairs{
dir = 4
},
/obj/structure/platform,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_cargo)
"cCP" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/CE_office)
"cCQ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/CE_office)
"cCR" = (
/obj/effect/blocker/toxic_water/Group_2,
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/gm/river/desert/shallow_edge/covered{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/covered/east,
/area/desert_dam/exterior/river/riverside_central_north)
"cCS" = (
/obj/effect/blocker/toxic_water/Group_2,
/obj/effect/blocker/toxic_water/Group_2,
/obj/structure/barricade/wooden,
-/turf/open/gm/river/desert/shallow_edge/covered{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/covered/east,
/area/desert_dam/exterior/river/riverside_central_north)
"cCT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cCU" = (
/obj/structure/platform_decoration{
dir = 1
},
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_cargo)
"cCW" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/mining/workshop_foyer)
"cCZ" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/landing_pad_two)
"cDb" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/landing_pad_two)
"cDc" = (
/obj/structure/flora/grass/desert/heavygrass_4,
@@ -41795,10 +32066,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/building/medical/garage)
"cDf" = (
/turf/open/floor/plating,
@@ -41807,15 +32075,10 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/building/medical/garage)
"cDh" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/garage)
"cDi" = (
/obj/structure/pipes/portables_connector{
@@ -41825,10 +32088,7 @@
/obj/structure/pipes/standard/cap/hidden{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/emergency_room)
"cDj" = (
/obj/structure/machinery/light{
@@ -41837,16 +32097,11 @@
/obj/structure/pipes/standard/simple/hidden{
dir = 10
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/emergency_room)
"cDk" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/CE_office)
"cDl" = (
/obj/structure/machinery/cryo_cell,
@@ -41854,19 +32109,13 @@
icon_state = "cryotop"
},
/obj/structure/pipes/standard/cap/hidden,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/emergency_room)
"cDm" = (
/obj/structure/pipes/unary/freezer{
icon_state = "freezer_1"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/emergency_room)
"cDn" = (
/obj/effect/decal/medical_decals{
@@ -41874,10 +32123,7 @@
},
/obj/structure/machinery/cryo_cell,
/obj/structure/pipes/standard/cap/hidden,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/emergency_room)
"cDo" = (
/obj/structure/surface/table/almayer,
@@ -41886,30 +32132,18 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/emergency_room)
"cDp" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/emergency_room)
"cDq" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/emergency_room)
"cDr" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/emergency_room)
"cDs" = (
/obj/structure/window/framed/colony,
@@ -41921,10 +32155,7 @@
dir = 1;
name = "\improper Operating Theatre 1"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgery_room_one)
"cDu" = (
/obj/structure/window/framed/colony,
@@ -41936,10 +32167,7 @@
dir = 1;
name = "\improper Operating Theatre 2"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgery_room_two)
"cDy" = (
/obj/structure/window/framed/colony,
@@ -41950,10 +32178,7 @@
dir = 1;
name = "\improper Examination Room"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/office1)
"cDA" = (
/obj/structure/window/framed/colony,
@@ -41964,62 +32189,41 @@
dir = 1;
name = "\improper Examination Room"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/office2)
"cDC" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/east_wing_hallway)
"cDD" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/east_wing_hallway)
"cDE" = (
/obj/structure/machinery/vending/snack,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/east_wing_hallway)
"cDF" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/east_wing_hallway)
"cDK" = (
/obj/structure/machinery/landinglight/ds2,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/landing_pad_two)
"cDL" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/landing_pad_two)
"cDM" = (
/obj/structure/machinery/landinglight/ds2/delaythree,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/landing_pad_two)
"cDN" = (
/turf/open/desert/rock/deep/transition,
@@ -42029,55 +32233,41 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/river/riverside_east)
"cDQ" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/desert_dam/exterior/river/riverside_east)
"cDR" = (
/obj/structure/platform_decoration{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/river/riverside_east)
"cDT" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/fancy/cigarettes/kpack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/CE_office)
"cDU" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/CE_office)
"cDV" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/landing_pad_two)
"cDX" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_two)
"cDY" = (
/turf/open/floor/plating,
@@ -42095,23 +32285,15 @@
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/desert_dam/building/bar/bar)
"cEc" = (
/obj/structure/machinery/landinglight/ds1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/landing_pad_one)
"cEd" = (
/obj/structure/prop/dam/wide_boulder/boulder1,
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cEe" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -42122,24 +32304,16 @@
/turf/open/floor/plating,
/area/desert_dam/building/medical/garage)
"cEg" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/building/medical/garage)
"cEh" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/building/medical/garage)
"cEi" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottom"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/garage)
"cEj" = (
/obj/structure/pipes/portables_connector{
@@ -42149,17 +32323,11 @@
/obj/structure/pipes/standard/cap/hidden{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/emergency_room)
"cEk" = (
/obj/structure/pipes/standard/manifold/hidden,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/emergency_room)
"cEl" = (
/obj/effect/decal/sand_overlay/sand2{
@@ -42169,26 +32337,18 @@
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/western_dam_cave)
"cEn" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"cEo" = (
/obj/effect/decal/medical_decals{
icon_state = "cryomid"
},
/obj/structure/pipes/standard/manifold/hidden,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/emergency_room)
"cEp" = (
/obj/structure/pipes/standard/manifold/hidden,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/emergency_room)
"cEq" = (
/obj/effect/decal/medical_decals{
@@ -42197,16 +32357,10 @@
/obj/structure/pipes/standard/simple/hidden{
dir = 9
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/emergency_room)
"cEr" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/emergency_room)
"cEs" = (
/obj/effect/decal/cleanable/dirt,
@@ -42223,29 +32377,18 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/emergency_room)
"cEv" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"cEy" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cEz" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cEA" = (
/obj/structure/machinery/iv_drip,
@@ -42254,44 +32397,26 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/treatment_room)
"cEB" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/treatment_room)
"cEC" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/treatment_room)
"cED" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/treatment_room)
"cEE" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/desert_dam/building/medical/treatment_room)
"cEF" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/treatment_room)
"cEG" = (
/obj/structure/window/framed/colony,
@@ -42302,10 +32427,7 @@
dir = 4;
icon_state = "triagedecalbottomleft"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/east_wing_hallway)
"cEI" = (
/obj/structure/machinery/power/apc{
@@ -42313,52 +32435,31 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/east_wing_hallway)
"cEJ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/east_wing_hallway)
"cEM" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/east_wing_hallway)
"cEN" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/east_wing_hallway)
"cEO" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/east_wing_hallway)
"cEP" = (
/obj/structure/machinery/light,
/obj/effect/decal/sand_overlay/sand2,
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"cEQ" = (
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cES" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/landing_pad_two)
"cET" = (
/obj/effect/decal/warning_stripes{
@@ -42378,14 +32479,10 @@
/area/desert_dam/exterior/valley/valley_civilian)
"cEW" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/river/riverside_east)
"cEX" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cEY" = (
/obj/structure/desertdam/decals/road_edge{
@@ -42399,9 +32496,7 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/landing_pad_two)
"cFa" = (
/obj/docking_port/stationary/marine_dropship/lz2,
@@ -42411,34 +32506,26 @@
/obj/structure/machinery/landinglight/ds2{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/landing_pad_two)
"cFc" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_two)
"cFd" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_telecoms)
"cFe" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/landing_pad_two)
"cFf" = (
/obj/structure/platform{
@@ -42451,9 +32538,7 @@
/obj/effect/decal/medical_decals{
icon_state = "docdecal1"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/garage)
"cFh" = (
/obj/effect/decal/medical_decals{
@@ -42464,9 +32549,7 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/garage)
"cFi" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -42478,23 +32561,15 @@
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/workshop)
"cFj" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/south_tunnel)
"cFk" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/CE_office)
"cFl" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/emergency_room)
"cFm" = (
/obj/structure/barricade/wooden,
@@ -42505,18 +32580,12 @@
/turf/open/floor/plating,
/area/desert_dam/building/medical/emergency_room)
"cFp" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/treatment_room)
"cFq" = (
/obj/structure/pipes/vents/pump,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/treatment_room)
"cFr" = (
/obj/structure/bed/chair/office/dark{
@@ -42524,9 +32593,7 @@
layer = 3.25
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/CE_office)
"cFs" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -42535,16 +32602,11 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cFt" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet11-12"
- },
+/turf/open/floor/carpet11_12/west,
/area/desert_dam/building/bar/bar)
"cFu" = (
/obj/structure/bed/chair{
@@ -42554,9 +32616,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/CE_office)
"cFv" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -42567,9 +32627,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/interior/dam_interior/CE_office)
"cFw" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -42582,10 +32640,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/CE_office)
"cFx" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -42595,10 +32650,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cFy" = (
/obj/structure/disposalpipe/segment{
@@ -42609,10 +32661,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cFA" = (
/obj/structure/disposalpipe/segment{
@@ -42620,10 +32669,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cFC" = (
/obj/structure/disposalpipe/segment{
@@ -42647,9 +32693,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_civilian)
"cFF" = (
/obj/structure/surface/table/woodentable,
@@ -42681,9 +32725,7 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_two)
"cFJ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -42731,37 +32773,26 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/landing_pad_two)
"cFR" = (
/obj/structure/cargo_container/grant/right,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/desert_dam/building/warehouse/warehouse)
"cFS" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_two)
"cFT" = (
/obj/effect/decal/medical_decals{
icon_state = "docdecal2"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/garage)
"cFV" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/emergency_room)
"cFY" = (
/obj/structure/disposalpipe/segment{
@@ -42769,42 +32800,30 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cFZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{
dir = 2
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cGa" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/landing_pad_two)
"cGb" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_cargo)
"cGc" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_cargo)
"cGe" = (
/obj/effect/decal/medical_decals{
@@ -42817,10 +32836,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/emergency_room)
"cGf" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -42829,10 +32845,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/emergency_room)
"cGg" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -42841,23 +32854,15 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/treatment_room)
"cGh" = (
/obj/structure/flora/grass/desert/lightgrass_4,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_cargo)
"cGi" = (
/obj/structure/flora/grass/desert/lightgrass_5,
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_cargo)
"cGj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -42916,34 +32921,23 @@
dir = 8;
icon_state = "pipe-j2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/east_wing_hallway)
"cGq" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/structure/disposalpipe/junction{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/east_wing_hallway)
"cGr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cGs" = (
/obj/structure/disposalpipe/junction,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cGt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -42952,30 +32946,21 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"cGu" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/landing_pad_two)
"cGv" = (
/obj/structure/flora/bush/desert,
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_cargo)
"cGw" = (
/obj/structure/prop/dam/gravestone,
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_hydro)
"cGx" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
@@ -42985,59 +32970,42 @@
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/workshop)
"cGz" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"cGA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/CE_office)
"cGB" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"cGC" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/desert_dam/building/medical/east_wing_hallway)
"cGD" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_civilian)
"cGF" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_cargo)
"cGG" = (
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/landing_pad_two)
"cGH" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -43050,17 +33018,13 @@
dir = 1
},
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cGJ" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_civilian)
"cGK" = (
/obj/structure/prop/dam/boulder/boulder1,
@@ -43074,9 +33038,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cGN" = (
/obj/structure/machinery/door_control{
@@ -43088,37 +33050,25 @@
},
/area/desert_dam/building/warehouse/warehouse)
"cGO" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/valley_hydro)
"cGP" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/armory)
"cGQ" = (
/obj/structure/machinery/landinglight/ds2{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/landing_pad_two)
"cGR" = (
/obj/structure/prop/dam/boulder/boulder3,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/landing_pad_two)
"cGS" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/landing_pad_two)
"cGT" = (
/obj/structure/platform{
@@ -43131,162 +33081,106 @@
/obj/effect/decal/medical_decals{
icon_state = "docdecal3"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/garage)
"cGV" = (
/obj/effect/decal/medical_decals{
icon_state = "docstriping"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/garage)
"cGW" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 1;
name = "\improper Emergency Room"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/emergency_room)
"cGX" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/desert_dam/building/medical/emergency_room)
"cGY" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/emergency_room)
"cGZ" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/desert_dam/building/medical/emergency_room)
"cHa" = (
/obj/effect/decal/medical_decals{
icon_state = "docdecal2"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/emergency_room)
"cHb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 2;
name = "\improper Surgery"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/emergency_room)
"cHc" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/treatment_room)
"cHd" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/desert_dam/building/medical/treatment_room)
"cHe" = (
/obj/item/reagent_container/hypospray,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/treatment_room)
"cHf" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/desert_dam/building/medical/treatment_room)
"cHg" = (
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/desert_dam/building/medical/treatment_room)
"cHh" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalleft"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cHi" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cHj" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"cHk" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cHl" = (
/obj/structure/flora/grass/desert/heavygrass_3,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_cargo)
"cHn" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/landing_pad_two)
"cHo" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/desert_dam/building/warehouse/warehouse)
"cHp" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/desert_dam/building/warehouse/warehouse)
"cHr" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/desert_dam/building/security/armory)
"cHs" = (
/obj/structure/cargo_container/hd/left,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/desert_dam/building/warehouse/warehouse)
"cHt" = (
/obj/structure/cargo_container/hd/mid,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/desert_dam/building/warehouse/warehouse)
"cHu" = (
/obj/structure/platform_decoration{
@@ -43295,9 +33189,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_cargo)
"cHv" = (
/obj/structure/platform_decoration{
@@ -43306,38 +33198,26 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_cargo)
"cHx" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/desert_dam/building/medical/garage)
"cHy" = (
/obj/effect/decal/medical_decals{
icon_state = "docdecal4"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/garage)
"cHz" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/defibrillator,
/obj/item/device/defibrillator,
/obj/item/device/defibrillator,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/emergency_room)
"cHA" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/desert_dam/building/medical/emergency_room)
"cHB" = (
/obj/effect/decal/warning_stripes{
@@ -43382,27 +33262,17 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecaltopright"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/emergency_room)
"cHI" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/desert_dam/building/medical/treatment_room)
"cHJ" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/treatment_room)
"cHK" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/treatment_room)
"cHL" = (
/turf/closed/wall,
@@ -43424,54 +33294,37 @@
/area/desert_dam/building/medical/virology_wing)
"cHP" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/virology_wing)
"cHQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/virology_wing)
"cHR" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 1;
name = "\improper Patient Room 1"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cHS" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 1;
name = "\improper Patient Room 2"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cHT" = (
/obj/structure/cargo_container/hd/right,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/desert_dam/building/warehouse/warehouse)
"cHU" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 1;
name = "\improper Patient Room 3"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cHV" = (
/obj/structure/flora/grass/tallgrass/desert/corner,
@@ -43491,9 +33344,7 @@
/area/desert_dam/exterior/valley/valley_telecoms)
"cIa" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge/covered{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/covered/north,
/area/desert_dam/exterior/river/riverside_east)
"cIc" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -43514,9 +33365,7 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_telecoms)
"cIh" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_cargo)
"cIi" = (
/obj/structure/desertdam/decals/road_edge{
@@ -43526,17 +33375,13 @@
/area/desert_dam/exterior/valley/valley_cargo)
"cIk" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_hydro)
"cIl" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/desert_dam/building/warehouse/warehouse)
"cIo" = (
/obj/structure/machinery/door_control{
@@ -43548,38 +33393,26 @@
},
/area/desert_dam/building/warehouse/warehouse)
"cIp" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/desert_dam/building/warehouse/loading)
"cIq" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"cIr" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"cIt" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/desert_dam/building/warehouse/loading)
"cIu" = (
/obj/structure/surface/table,
/obj/item/clothing/head/welding,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/desert_dam/building/warehouse/loading)
"cIv" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -43589,17 +33422,13 @@
/area/desert_dam/exterior/valley/valley_cargo)
"cIx" = (
/obj/structure/largecrate,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/desert_dam/building/warehouse/loading)
"cIy" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/desert_dam/building/warehouse/loading)
"cIz" = (
/obj/structure/surface/table/reinforced,
@@ -43629,35 +33458,24 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/garage)
"cID" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/emergency_room)
"cIE" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/desert_dam/building/medical/emergency_room)
"cIF" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 1;
name = "\improper Medical Office"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/treatment_room)
"cIG" = (
/turf/closed/wall,
@@ -43665,25 +33483,16 @@
"cIH" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cII" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cIJ" = (
/obj/structure/machinery/iv_drip,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cIK" = (
/turf/open/floor/plating,
@@ -43696,77 +33505,44 @@
"cIM" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/virology_wing)
"cIN" = (
/obj/structure/machinery/computer/crew,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_wing)
"cIO" = (
/obj/structure/machinery/computer/med_data,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_wing)
"cIP" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_wing)
"cIQ" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/virology_wing)
"cIS" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/virology_wing)
"cIT" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/virology_wing)
"cIU" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/virology_wing)
"cIV" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cIW" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cIX" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cIY" = (
/obj/structure/machinery/door_control{
@@ -43814,9 +33590,7 @@
/turf/open/floor/plating,
/area/desert_dam/building/church)
"cJg" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/church)
"cJh" = (
/obj/structure/disposalpipe/segment,
@@ -43835,9 +33609,7 @@
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/church)
"cJl" = (
/obj/structure/flora/grass/desert/lightgrass_12,
@@ -43845,9 +33617,7 @@
/area/desert_dam/exterior/valley/valley_civilian)
"cJm" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_hydro)
"cJn" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -43862,16 +33632,10 @@
/turf/open/asphalt,
/area/desert_dam/building/warehouse/loading)
"cJo" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/desert_dam/exterior/telecomm/lz2_containers)
"cJp" = (
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/desert_dam/exterior/telecomm/lz2_containers)
"cJq" = (
/obj/structure/cargo_container/grant/left,
@@ -43881,9 +33645,7 @@
/obj/structure/surface/rack,
/obj/item/clothing/suit/armor/riot,
/obj/item/clothing/suit/armor/riot,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/armory)
"cJs" = (
/obj/structure/surface/rack,
@@ -43892,9 +33654,7 @@
pixel_y = -2
},
/obj/item/storage/box/flashbangs,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/armory)
"cJt" = (
/obj/structure/surface/rack,
@@ -43903,16 +33663,12 @@
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/armory)
"cJv" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/revolver/cmb,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/armory)
"cJw" = (
/obj/structure/cargo_container/grant/rightmid,
@@ -43922,9 +33678,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_cargo)
"cJz" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -43945,40 +33699,25 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cJC" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/med_data/laptop{
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cJD" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/treatment_room)
"cJE" = (
/obj/structure/machinery/computer/crew,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/treatment_room)
"cJF" = (
/obj/structure/machinery/computer/med_data,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cJG" = (
/turf/closed/wall,
@@ -43995,56 +33734,35 @@
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/virology_wing)
"cJJ" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/virology_wing)
"cJK" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/virology_wing)
"cJL" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/desert_dam/building/medical/virology_wing)
"cJM" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/virology_wing)
"cJN" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/east_wing_hallway)
"cJO" = (
/obj/structure/cargo_container/grant/right,
/turf/open/floor/plating,
/area/desert_dam/exterior/telecomm/lz2_containers)
"cJP" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/exterior/telecomm/lz2_containers)
"cJQ" = (
/obj/effect/decal/cleanable/dirt,
@@ -44054,9 +33772,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_hydro)
"cJS" = (
/obj/structure/cargo_container/hd/left,
@@ -44066,9 +33782,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_hydro)
"cJU" = (
/obj/structure/cargo_container/hd/mid,
@@ -44130,22 +33844,15 @@
/area/desert_dam/building/warehouse/loading)
"cKh" = (
/obj/structure/cargo_container/trijent/right/alt,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/exterior/telecomm/lz2_containers)
"cKi" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/desert_dam/exterior/telecomm/lz2_containers)
"cKj" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/armory)
"cKk" = (
/obj/structure/bed,
@@ -44163,10 +33870,7 @@
/turf/open/floor/interior/tatami,
/area/desert_dam/building/bar/bar)
"cKn" = (
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/desert_dam/exterior/telecomm/lz2_containers)
"cKp" = (
/turf/closed/wall/hangar{
@@ -44201,45 +33905,29 @@
pixel_y = 10
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cKu" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cKv" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/treatment_room)
"cKw" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cKx" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/building/medical/virology_isolation)
"cKy" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/building/medical/virology_isolation)
"cKC" = (
/obj/structure/machinery/light{
@@ -44248,39 +33936,27 @@
/turf/open/floor/plating,
/area/desert_dam/building/medical/east_wing_hallway)
"cKD" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/virology_wing)
"cKE" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/virology_wing)
"cKF" = (
/obj/structure/machinery/door/airlock/almayer/generic,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/virology_wing)
"cKG" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/virology_wing)
"cKH" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -44288,10 +33964,7 @@
dir = 1;
icon_state = "pipe-j2"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/virology_wing)
"cKI" = (
/obj/structure/machinery/power/apc{
@@ -44299,26 +33972,19 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/virology_wing)
"cKJ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_cargo)
"cKK" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
dir = 6
},
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_cargo)
"cKL" = (
/obj/effect/decal/warning_stripes{
@@ -44336,9 +34002,7 @@
/area/desert_dam/building/warehouse/warehouse)
"cKO" = (
/obj/structure/stairs,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cKP" = (
/obj/structure/desertdam/decals/road_edge{
@@ -44349,31 +34013,23 @@
/area/desert_dam/exterior/valley/valley_cargo)
"cKQ" = (
/obj/structure/flora/grass/tallgrass/desert/corner,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_cargo)
"cKR" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
dir = 10
},
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_cargo)
"cKS" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_cargo)
"cKT" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_cargo)
"cKU" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -44383,21 +34039,14 @@
/area/desert_dam/exterior/valley/valley_cargo)
"cKV" = (
/obj/structure/prop/dam/boulder/boulder1,
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_cargo)
"cKX" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/desert_dam/building/security/deathrow)
"cLa" = (
/obj/structure/flora/grass/desert/lightgrass_6,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_cargo)
"cLc" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -44416,18 +34065,14 @@
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/landing_pad_two)
"cLh" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_south)
"cLi" = (
/obj/structure/platform{
@@ -44452,33 +34097,22 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cLm" = (
/obj/structure/surface/table,
/turf/open/floor/plating,
/area/desert_dam/building/medical/east_wing_hallway)
"cLo" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/desert_dam/building/medical/virology_wing)
"cLp" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/virology_wing)
"cLq" = (
/obj/structure/surface/table,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"cLr" = (
/obj/structure/machinery/light{
@@ -44486,31 +34120,21 @@
},
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"cLs" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/building/medical/virology_wing)
"cLt" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/building/medical/virology_wing)
"cLu" = (
/turf/closed/wall/r_wall,
/area/desert_dam/building/medical/virology_wing)
"cLv" = (
/obj/structure/prop/dam/boulder/boulder2,
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_cargo)
"cLG" = (
/turf/open/asphalt,
@@ -44534,9 +34158,7 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/landing_pad_two)
"cLO" = (
/obj/effect/decal/warning_stripes{
@@ -44549,9 +34171,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_cargo)
"cLQ" = (
/obj/effect/decal/warning_stripes{
@@ -44561,26 +34181,17 @@
/area/desert_dam/building/warehouse/warehouse)
"cLR" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cLS" = (
/obj/structure/surface/table/reinforced,
/obj/item/book/manual/medical_diagnostics_manual,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cLT" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/defibrillator,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cLU" = (
/obj/structure/surface/table/reinforced,
@@ -44589,51 +34200,32 @@
pixel_x = 5;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cLV" = (
/obj/structure/surface/table/reinforced,
/obj/item/bodybag/cryobag,
/obj/item/storage/box/syringes,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"cLX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/west_tunnel)
"cLY" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/virology_isolation)
"cMa" = (
/obj/structure/reagent_dispensers/virusfood{
pixel_x = -32
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/virology_wing)
"cMb" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"cMc" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/medical/virology_wing)
"cMd" = (
/obj/effect/decal/warning_stripes{
@@ -44664,9 +34256,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached17"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached17,
/area/desert_dam/exterior/valley/valley_hydro)
"cMj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -44675,9 +34265,7 @@
/turf/open/asphalt,
/area/desert_dam/building/warehouse/loading)
"cMl" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_hydro)
"cMm" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -44698,18 +34286,13 @@
/turf/open/asphalt,
/area/desert_dam/building/warehouse/loading)
"cMo" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_hydro)
"cMq" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/landing_pad_two)
"cMw" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -44736,17 +34319,13 @@
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cMC" = (
/obj/structure/machinery/floodlight/landing,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/landing_pad_two)
"cMD" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/landing_pad_two)
"cME" = (
/obj/structure/disposalpipe/segment{
@@ -44759,10 +34338,7 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_cargo)
"cMI" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/north_valley_dam)
"cMJ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -44774,67 +34350,48 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/landing_pad_two)
"cMM" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_cargo)
"cMN" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"cMO" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"cMP" = (
/turf/closed/wall/r_wall,
/area/desert_dam/building/medical/virology_isolation)
"cMQ" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/virology_isolation)
"cMR" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/virology_isolation)
"cMS" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/exterior/telecomm/lz1_south)
"cMT" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/desert_dam/building/medical/virology_isolation)
"cMU" = (
/obj/structure/surface/table,
@@ -44842,20 +34399,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_isolation)
"cMV" = (
/obj/structure/machinery/computer/operating,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_isolation)
"cMW" = (
/obj/structure/surface/table,
@@ -44866,19 +34417,13 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_isolation)
"cMX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/virology_isolation)
"cMY" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -44886,16 +34431,10 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/virology_isolation)
"cMZ" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/desert_dam/building/medical/virology_isolation)
"cNa" = (
/obj/structure/window/framed/colony,
@@ -44905,46 +34444,31 @@
/obj/structure/machinery/landinglight/ds2{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/landing_pad_two)
"cNc" = (
/obj/structure/closet/l3closet/virology,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_wing)
"cNd" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/virology_wing)
"cNe" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/desert/rock/deep/transition{
- dir = 9
- },
+/turf/open/desert/rock/deep/transition/northwest,
/area/desert_dam/exterior/telecomm/lz1_south)
"cNf" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/virology_wing)
"cNg" = (
/obj/effect/decal/sand_overlay/sand2{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cNh" = (
/obj/structure/desertdam/decals/road_edge,
@@ -44990,9 +34514,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_cargo)
"cNo" = (
/obj/structure/window/framed/colony/reinforced,
@@ -45001,10 +34523,7 @@
"cNr" = (
/obj/structure/closet/crate/hydroponics/prespawned,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 1;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/north,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"cNs" = (
/obj/structure/prop/dam/gravestone,
@@ -45018,10 +34537,7 @@
/obj/structure/bed/chair/wood/normal{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/desert_dam/building/church)
"cNw" = (
/obj/structure/desertdam/decals/road_stop{
@@ -45064,9 +34580,7 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_medical)
"cND" = (
/obj/structure/platform{
@@ -45075,69 +34589,43 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_medical)
"cNE" = (
/obj/structure/surface/table,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/virology_isolation)
"cNF" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/virology_isolation)
"cNG" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_isolation)
"cNH" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_isolation)
"cNI" = (
/obj/structure/bed/stool,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_isolation)
"cNK" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_isolation)
"cNL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_isolation)
"cNM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_wing)
"cNN" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -45145,10 +34633,7 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"cNP" = (
/obj/structure/flora/bush/desert/cactus{
@@ -45176,36 +34661,24 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/desert_dam/building/church)
"cNU" = (
/obj/structure/bed/chair/wood/normal{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/desert_dam/building/church)
"cNV" = (
/obj/structure/flora/grass/desert/lightgrass_3,
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_hydro)
"cNW" = (
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/south_valley_dam)
"cNX" = (
/obj/structure/prop/dam/gravestone,
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/valley_hydro)
"cNY" = (
/obj/structure/bed/chair/wood/normal{
@@ -45214,29 +34687,20 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/desert_dam/building/church)
"cNZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/church)
"cOa" = (
/obj/structure/stairs{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/church)
"cOb" = (
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/church)
"cOc" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -45246,9 +34710,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/church)
"cOe" = (
/obj/structure/machinery/power/apc{
@@ -45256,9 +34718,7 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/church)
"cOf" = (
/obj/structure/pipes/vents/pump{
@@ -45275,31 +34735,22 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_cargo)
"cOk" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_medical)
"cOl" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_medical)
"cOm" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/virology_isolation)
"cOn" = (
/obj/structure/bed/chair/wood/normal{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/desert_dam/building/church)
"cOo" = (
/obj/effect/decal/cleanable/dirt,
@@ -45320,47 +34771,34 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cOs" = (
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"cOt" = (
/obj/structure/bed/chair/wood/normal{
dir = 4
},
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/desert_dam/building/church)
"cOu" = (
/obj/structure/surface/table/woodentable,
/obj/item/storage/fancy/candle_box,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/church)
"cOv" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/church)
"cOw" = (
/obj/structure/surface/table/woodentable,
/obj/item/trash/candle,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/church)
"cOx" = (
/obj/structure/surface/table/woodentable,
@@ -45368,9 +34806,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/church)
"cOy" = (
/obj/effect/decal/cleanable/liquid_fuel,
@@ -45384,23 +34820,14 @@
"cOC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet6-2"
- },
+/turf/open/floor/carpet6_2/west,
/area/desert_dam/building/church)
"cOD" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/desert_dam/building/church)
"cOE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet14-10"
- },
+/turf/open/floor/carpet14_10/west,
/area/desert_dam/building/church)
"cOF" = (
/obj/effect/decal/cleanable/dirt,
@@ -45408,9 +34835,7 @@
/turf/open/asphalt,
/area/desert_dam/building/warehouse/warehouse)
"cOG" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_hydro)
"cOH" = (
/turf/closed/wall/hangar{
@@ -45419,19 +34844,14 @@
/area/desert_dam/building/substation/southwest)
"cOI" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/desert_dam/building/medical/virology_isolation)
"cOJ" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/virology_isolation)
"cOK" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
@@ -45439,57 +34859,38 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cOL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cOM" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/virology_wing)
"cOO" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/virology_wing)
"cOP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"cOQ" = (
/obj/structure/bed/stool,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"cOR" = (
/obj/structure/surface/table,
/obj/item/tank/anesthetic,
/obj/item/storage/pill_bottle/spaceacillin,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"cOS" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet10-8"
- },
+/turf/open/floor/carpet10_8/west,
/area/desert_dam/building/church)
"cOT" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -45503,9 +34904,7 @@
"cOU" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/church)
"cOV" = (
/obj/vehicle/train/cargo/trolley,
@@ -45518,87 +34917,59 @@
/area/desert_dam/building/warehouse/loading)
"cOX" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/church)
"cOY" = (
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/church)
"cOZ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "\improper Chapel"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/church)
"cPd" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet5-1"
- },
+/turf/open/floor/carpet5_1/west,
/area/desert_dam/building/church)
"cPe" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/desert_dam/building/church)
"cPf" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/desert_dam/building/church)
"cPg" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet9-4"
- },
+/turf/open/floor/carpet9_4/west,
/area/desert_dam/building/church)
"cPh" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Backroom"
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/church)
"cPi" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/church)
"cPj" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/desert_dam/building/church)
"cPk" = (
/obj/structure/bed/chair/wood/normal{
dir = 4
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/desert_dam/building/church)
"cPl" = (
/obj/structure/bed/chair/wood/normal{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/desert_dam/building/church)
"cPm" = (
/obj/structure/bed/chair/wood/normal{
@@ -45606,10 +34977,7 @@
},
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/desert_dam/building/church)
"cPn" = (
/obj/structure/disposalpipe/segment{
@@ -45637,24 +35005,17 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_civilian)
"cPq" = (
/obj/structure/machinery/light,
/turf/open/floor/prison,
/area/desert_dam/building/security/execution_chamber)
"cPr" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached6"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached6,
/area/desert_dam/exterior/telecomm/lz2_storage)
"cPt" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/telecomm/lz1_xenoflora)
"cPu" = (
/obj/vehicle/train/cargo/engine,
@@ -45669,9 +35030,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"cPy" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -45687,31 +35046,21 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_civilian)
"cPB" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet5-1"
- },
+/turf/open/floor/carpet5_1/west,
/area/desert_dam/building/bar/bar)
"cPC" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/building/mining/workshop)
"cPF" = (
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/deathrow)
"cPG" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cPH" = (
/obj/structure/machinery/power/apc{
@@ -45719,10 +35068,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/building/substation/southwest)
"cPI" = (
/obj/structure/desertdam/decals/road_stop{
@@ -45737,16 +35083,10 @@
"cPJ" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/southwest)
"cPK" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/desert_dam/building/substation/southwest)
"cPL" = (
/turf/closed/wall,
@@ -45760,9 +35100,7 @@
dir = 1;
name = "\improper Virology Lab Cell"
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/building/medical/virology_isolation)
"cPO" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -45775,58 +35113,38 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"cPQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"cPR" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"cPS" = (
/obj/structure/surface/table,
/obj/structure/machinery/reagentgrinder,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"cPT" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"cPU" = (
/obj/structure/surface/table,
/obj/item/storage/pill_bottle/spaceacillin,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"cPV" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_cargo)
"cPW" = (
/obj/structure/desertdam/decals/road_edge{
@@ -45844,23 +35162,14 @@
"cPX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/desert_dam/building/bar/bar)
"cPY" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet13-5"
- },
+/turf/open/floor/carpet13_5/west,
/area/desert_dam/building/bar/bar)
"cPZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet9-4"
- },
+/turf/open/floor/carpet9_4/west,
/area/desert_dam/building/bar/bar)
"cQa" = (
/obj/structure/bed/chair/wood/normal{
@@ -45915,16 +35224,10 @@
id = "dam_shutter_hangar";
name = "\improper Hangar Lock"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/east,
/area/desert_dam/interior/dam_interior/hanger)
"cQi" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cQk" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -45937,57 +35240,36 @@
/obj/structure/closet/secure_closet/security,
/obj/item/clothing/suit/armor/vest/security,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cQm" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cQn" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/landing_pad_two)
"cQo" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/building/substation/southwest)
"cQq" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/building/substation/southwest)
"cQr" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/southwest)
"cQs" = (
/obj/structure/machinery/power/smes/batteryrack/substation,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/southwest)
"cQv" = (
/obj/structure/machinery/power/port_gen/pacman,
/turf/open/floor/plating,
/area/desert_dam/building/substation/southwest)
"cQw" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cQx" = (
/turf/closed/wall/wood,
@@ -46000,17 +35282,13 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Toilet Unit"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cQA" = (
/obj/structure/toilet{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cQB" = (
/turf/open/floor/plating,
@@ -46026,10 +35304,7 @@
/turf/open/floor/interior/wood/alt,
/area/desert_dam/building/bar/bar)
"cQE" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cQF" = (
/obj/structure/desertdam/decals/road_edge,
@@ -46037,10 +35312,7 @@
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cQG" = (
/obj/structure/sink,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"cQH" = (
/obj/structure/machinery/light{
@@ -46056,19 +35328,13 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"cQJ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Toilet Unit"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"cQK" = (
/obj/structure/flora/grass/desert/lightgrass_11,
@@ -46086,10 +35352,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"cQO" = (
/obj/structure/machinery/computer/cameras{
@@ -46097,19 +35360,13 @@
network = list("chigusa_1")
},
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/desert_dam/interior/dam_interior/lobby)
"cQP" = (
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cQQ" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"cQR" = (
/obj/effect/decal/cleanable/dirt,
@@ -46135,30 +35392,22 @@
/area/desert_dam/building/bar/bar)
"cQV" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/deathrow)
"cQW" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/mask/muzzle,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/deathrow)
"cQX" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/suit/straight_jacket,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/deathrow)
"cQY" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/deathrow)
"cQZ" = (
/obj/structure/bed/chair/wood/normal{
@@ -46184,37 +35433,22 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cRg" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/substation/southwest)
"cRi" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/substation/southwest)
"cRj" = (
/obj/structure/machinery/power/terminal{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/substation/southwest)
"cRk" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/building/substation/southwest)
"cRl" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/building/substation/southwest)
"cRm" = (
/turf/open/floor/plating,
@@ -46225,27 +35459,19 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/building/medical/virology_isolation)
"cRp" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"cRq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"cRr" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -46254,9 +35480,7 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Restroom"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/bar/bar_restroom)
"cRs" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -46306,9 +35530,7 @@
/turf/open/floor/interior/tatami,
/area/desert_dam/building/bar/bar)
"cRB" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/landing_pad_two)
"cRC" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -46317,9 +35539,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cRD" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -46331,9 +35551,7 @@
/turf/open/floor/interior/tatami,
/area/desert_dam/building/bar/bar)
"cRE" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/landing_pad_two)
"cRF" = (
/obj/structure/pipes/vents/pump{
@@ -46343,10 +35561,7 @@
/area/desert_dam/building/bar/bar)
"cRG" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"cRH" = (
/obj/effect/decal/cleanable/generic,
@@ -46363,17 +35578,13 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cRK" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cRL" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_cargo)
"cRM" = (
/obj/structure/desertdam/decals/road_edge,
@@ -46386,15 +35597,11 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/building/medical/virology_isolation)
"cRR" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/building/medical/virology_isolation)
"cRS" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -46403,19 +35610,13 @@
/turf/open/floor/prison,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cRV" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cRW" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cRX" = (
/obj/structure/machinery/light,
@@ -46459,9 +35660,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cSe" = (
/obj/structure/surface/table/reinforced,
@@ -46469,10 +35668,7 @@
name = "Security Cameras - Operations";
network = list("chigusa_1")
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cSg" = (
/obj/structure/machinery/door_control{
@@ -46488,24 +35684,16 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cSl" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_civilian)
"cSn" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/landing_pad_one)
"cSo" = (
/obj/structure/surface/table/reinforced,
@@ -46533,10 +35721,7 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cSr" = (
/turf/open/floor/prison,
@@ -46545,26 +35730,16 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cSu" = (
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/building/substation/southwest)
"cSv" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/substation/southwest)
"cSw" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/building/substation/southwest)
"cSx" = (
/obj/structure/surface/rack,
@@ -46572,10 +35747,7 @@
amount = 50
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/desert_dam/building/substation/southwest)
"cSy" = (
/obj/structure/surface/rack,
@@ -46590,34 +35762,26 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cSA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cSB" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cSC" = (
/turf/closed/wall,
/area/desert_dam/exterior/valley/valley_civilian)
"cSE" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cSF" = (
/obj/structure/surface/table/reinforced,
@@ -46635,25 +35799,18 @@
/turf/open/floor/plating,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cSG" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cSH" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cSK" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"cSL" = (
/obj/effect/decal/warning_stripes{
@@ -46684,23 +35841,17 @@
/area/desert_dam/exterior/valley/valley_cargo)
"cSU" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/mining/workshop)
"cSX" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/mining/workshop)
"cSY" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/mining/workshop)
"cSZ" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -46728,15 +35879,11 @@
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_crashsite)
"cTg" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/mining/workshop)
"cTh" = (
/obj/structure/flora/grass/desert/heavygrass_10,
@@ -46752,44 +35899,27 @@
name = "\improper Restroom"
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cTk" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cTl" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cTm" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cTn" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cTo" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cTp" = (
/obj/structure/flora/bush/desert/cactus/multiple{
@@ -46799,26 +35929,19 @@
/area/desert_dam/exterior/valley/valley_civilian)
"cTq" = (
/obj/structure/fence,
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_civilian)
"cTr" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cTs" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cTu" = (
/obj/structure/desertdam/decals/road_edge,
@@ -46829,42 +35952,28 @@
/area/desert_dam/exterior/valley/valley_cargo)
"cTv" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/desert_dam/building/mining/workshop)
"cTw" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"cTA" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/mining/workshop)
"cTB" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_hydro)
"cTC" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_cargo)
"cTD" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_cargo)
"cTE" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -46874,36 +35983,26 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_hydro)
"cTG" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_cargo)
"cTH" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cTI" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/valley_hydro)
"cTJ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cTL" = (
/obj/structure/surface/table,
@@ -46911,10 +36010,7 @@
dir = 1
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cTM" = (
/obj/structure/machinery/power/apc{
@@ -46922,78 +36018,51 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cTN" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cTO" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cTP" = (
/obj/structure/machinery/atm{
name = "Weyland-Yutani Automatic Teller Machine";
pixel_y = 30
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cTQ" = (
/obj/structure/fence,
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_civilian)
"cTR" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/mining/workshop)
"cTS" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/building/mining/workshop)
"cTU" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"cTZ" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/desert_dam/building/mining/workshop)
"cUa" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/mining/workshop)
"cUb" = (
/obj/structure/disposalpipe/segment{
@@ -47003,45 +36072,31 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_civilian)
"cUc" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_civilian)
"cUd" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/mining/workshop)
"cUf" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cUg" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cUh" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_cargo)
"cUi" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"cUj" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_hydro)
"cUk" = (
/obj/structure/desertdam/decals/road_edge{
@@ -47066,17 +36121,11 @@
/area/desert_dam/exterior/valley/valley_cargo)
"cUs" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cUv" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/building/mining/workshop)
"cUy" = (
/obj/structure/desertdam/decals/road_edge{
@@ -47092,14 +36141,10 @@
/turf/open/asphalt,
/area/desert_dam/building/warehouse/loading)
"cUA" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_cargo)
"cUB" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_cargo)
"cUD" = (
/obj/effect/decal/warning_stripes{
@@ -47117,50 +36162,34 @@
dir = 4
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cUF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cUG" = (
/obj/structure/disposalpipe/junction,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cUH" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cUI" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_hydro)
"cUJ" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_south)
"cUK" = (
/obj/structure/flora/bush/desert/cactus/multiple{
@@ -47172,9 +36201,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"cUP" = (
/obj/structure/desertdam/decals/road_stop{
@@ -47218,98 +36245,64 @@
/turf/open/asphalt/cement,
/area/desert_dam/interior/dam_interior/west_tunnel)
"cUY" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/desert_dam/building/warehouse/warehouse)
"cUZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/desert_dam/building/warehouse/warehouse)
"cVa" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/desert_dam/building/warehouse/warehouse)
"cVh" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/desert_dam/building/warehouse/warehouse)
"cVi" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/desert_dam/building/warehouse/loading)
"cVo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/desert_dam/building/warehouse/loading)
"cVq" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cVr" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cVs" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"cVu" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_civilian)
"cVv" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"cVz" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"cVA" = (
/obj/structure/desertdam/decals/road_edge{
@@ -47327,86 +36320,56 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/desert_dam/building/warehouse/loading)
"cVH" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/warehouse)
"cVI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/warehouse)
"cVJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/warehouse)
"cVK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/warehouse)
"cVL" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/desert_dam/building/mining/workshop)
"cVM" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_civilian)
"cVN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"cVO" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"cVP" = (
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/desert_dam/building/warehouse/loading)
"cVS" = (
/obj/structure/disposalpipe/segment,
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_cargo)
"cVU" = (
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/warehouse/loading)
"cVV" = (
/obj/structure/window/framed/colony/reinforced,
@@ -47417,17 +36380,13 @@
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/river/riverside_south)
"cWa" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_civilian)
"cWb" = (
/obj/structure/desertdam/decals/road_edge{
@@ -47454,9 +36413,7 @@
/area/desert_dam/exterior/valley/valley_civilian)
"cWj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/warehouse/loading)
"cWk" = (
/obj/structure/window/framed/colony/reinforced,
@@ -47467,27 +36424,18 @@
dir = 2;
name = "\improper Loading Bay"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/warehouse)
"cWo" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/warehouse)
"cWp" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"cWq" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -47499,15 +36447,11 @@
dir = 8
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_civilian)
"cWv" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_civilian)
"cWw" = (
/obj/effect/decal/warning_stripes{
@@ -47517,118 +36461,81 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cWx" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_cargo)
"cWy" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_hydro)
"cWA" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cWB" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_hydro)
"cWC" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river/riverside_south)
"cWD" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_hydro)
"cWE" = (
/obj/structure/platform_decoration,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_hydro)
"cWF" = (
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_hydro)
"cWH" = (
/obj/structure/fence,
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_civilian)
"cWN" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_civilian)
"cWP" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_civilian)
"cWV" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_civilian)
"cWW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"cWX" = (
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"cXa" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/building/warehouse/loading)
"cXd" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/item/clothing/head/welding,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"cXh" = (
/obj/structure/desertdam/decals/road_edge{
@@ -47644,25 +36551,19 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cXl" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cXm" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"cXn" = (
/obj/structure/stairs{
@@ -47671,9 +36572,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"cXo" = (
/obj/structure/stairs{
@@ -47682,15 +36581,11 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"cXp" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/river/riverside_south)
"cXt" = (
/obj/effect/decal/warning_stripes{
@@ -47727,16 +36622,11 @@
/turf/open/asphalt,
/area/desert_dam/exterior/landing_pad_two)
"cXD" = (
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/warehouse/warehouse)
"cXI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/desert_dam/building/warehouse/warehouse)
"cXK" = (
/obj/effect/decal/cleanable/dirt,
@@ -47746,44 +36636,32 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/desert_dam/building/warehouse/warehouse)
"cXM" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/warehouse/warehouse)
"cXN" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/warehouse/warehouse)
"cYe" = (
/obj/structure/platform{
dir = 8
},
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_south)
"cYf" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river/riverside_south)
"cYg" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_south)
"cYh" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -47803,24 +36681,17 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_cargo)
"cYp" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"cYs" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_civilian)
"cYu" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -47852,41 +36723,28 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_wilderness)
"cYy" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/desert_dam/building/warehouse/loading)
"cYz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/warehouse/loading)
"cYA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/desert_dam/building/warehouse/loading)
"cYB" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"cYC" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"cYF" = (
/obj/structure/machinery/light{
@@ -47899,19 +36757,14 @@
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/east,
/area/desert_dam/building/dorms/hallway_northwing)
"cYG" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"cYH" = (
/obj/effect/decal/warning_stripes{
@@ -47921,16 +36774,11 @@
icon_state = "E"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"cYI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/warehouse/warehouse)
"cYJ" = (
/obj/effect/decal/cleanable/dirt,
@@ -47939,16 +36787,10 @@
/area/desert_dam/building/warehouse/warehouse)
"cYK" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"cYL" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/building/warehouse/warehouse)
"cYN" = (
/obj/structure/disposalpipe/segment{
@@ -47974,35 +36816,27 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_hydro)
"cYQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_hydro)
"cYR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"cYS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"cYT" = (
/obj/structure/disposalpipe/segment{
@@ -48011,9 +36845,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"cYV" = (
/obj/structure/disposalpipe/segment{
@@ -48027,31 +36859,23 @@
icon_state = "pipe-c"
},
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_hydro)
"cYY" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_cargo)
"cYZ" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_cargo)
"cZb" = (
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_cargo)
"cZc" = (
/obj/structure/largecrate/random,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"cZd" = (
/obj/structure/platform_decoration{
@@ -48062,15 +36886,11 @@
/area/desert_dam/exterior/river/riverside_south)
"cZe" = (
/obj/structure/largecrate/random/barrel/blue,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"cZf" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"cZl" = (
/obj/effect/decal/warning_stripes{
@@ -48080,9 +36900,7 @@
icon_state = "W"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"cZn" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -48112,18 +36930,13 @@
id = "dam_shutter_hangar";
name = "\improper Hangar Lock"
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"cZs" = (
/obj/structure/disposalpipe/junction{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/engine_east_wing)
"cZt" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
@@ -48134,10 +36947,7 @@
/turf/open/floor/plating,
/area/desert_dam/building/cafeteria/cafeteria)
"cZv" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/warehouse/loading)
"cZw" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -48146,25 +36956,16 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_hydro)
"cZx" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/building/warehouse/loading)
"cZy" = (
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"cZz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/warehouse/loading)
"cZB" = (
/turf/closed/wall/hangar{
@@ -48185,9 +36986,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/exterior/valley/valley_wilderness)
"cZF" = (
/obj/structure/prop/dam/wide_boulder/boulder1,
@@ -48198,16 +36997,11 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_medical)
"cZK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/morgue)
"cZP" = (
/obj/effect/decal/cleanable/dirt,
@@ -48225,16 +37019,12 @@
/area/desert_dam/exterior/valley/valley_civilian)
"cZR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_civilian)
"cZS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_civilian)
"cZV" = (
/obj/effect/decal/cleanable/blood,
@@ -48244,14 +37034,10 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/telecomm/lz2_storage)
"dak" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached20"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached20,
/area/desert_dam/exterior/valley/valley_civilian)
"dam" = (
/obj/structure/disposalpipe/segment{
@@ -48290,10 +37076,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/dorms/hallway_northwing)
"daB" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"daD" = (
/obj/structure/desertdam/decals/road_edge{
@@ -48306,38 +37089,23 @@
/area/desert_dam/building/hydroponics/hydroponics)
"daG" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"daH" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"daI" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/desert_dam/building/hydroponics/hydroponics)
"daK" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"daL" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/desert_dam/building/hydroponics/hydroponics)
"daM" = (
/obj/item/reagent_container/glass/bucket/mopbucket,
@@ -48353,15 +37121,11 @@
/area/desert_dam/building/cafeteria/cafeteria)
"daP" = (
/obj/structure/machinery/gibber,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"daQ" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"daT" = (
/obj/structure/desertdam/decals/road_edge,
@@ -48386,10 +37150,7 @@
/area/desert_dam/building/dorms/hallway_northwing)
"daY" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/desert_dam/interior/dam_interior/engine_west_wing)
"dba" = (
/obj/effect/decal/cleanable/blood,
@@ -48405,100 +37166,65 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"dbe" = (
/obj/item/stool,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"dbf" = (
/obj/structure/machinery/conveyor_switch{
id = "cargo_storage"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"dbh" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"dbi" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/warehouse/warehouse)
"dbj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/building/warehouse/warehouse)
"dbk" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"dbm" = (
/obj/structure/largecrate,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"dbn" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/desert_dam/building/hydroponics/hydroponics)
"dbo" = (
/obj/structure/window/framed/colony,
/turf/open/floor/plating,
/area/desert_dam/building/hydroponics/hydroponics)
"dbp" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dbq" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/desert_dam/building/hydroponics/hydroponics)
"dbr" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/desert_dam/building/hydroponics/hydroponics)
"dbs" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/desert_dam/building/hydroponics/hydroponics)
"dbt" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/desert_dam/building/hydroponics/hydroponics)
"dbu" = (
/obj/structure/window/framed/colony/reinforced,
@@ -48515,22 +37241,16 @@
/area/desert_dam/building/cafeteria/backroom)
"dby" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dbz" = (
/obj/structure/machinery/vending/dinnerware,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dbA" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/bigbiteburger,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dbB" = (
/obj/structure/surface/table/reinforced,
@@ -48538,9 +37258,7 @@
pixel_y = 30
},
/obj/item/tool/kitchen/knife/butcher,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dbC" = (
/obj/structure/machinery/conveyor_switch{
@@ -48549,22 +37267,16 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"dbD" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/reagentgrinder,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dbE" = (
/obj/structure/machinery/chem_master/condimaster,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dbF" = (
/obj/structure/machinery/power/apc{
@@ -48574,16 +37286,12 @@
},
/obj/structure/machinery/microwave,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dbG" = (
/obj/structure/machinery/microwave,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dbH" = (
/obj/structure/surface/table/reinforced,
@@ -48591,9 +37299,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dbI" = (
/obj/structure/machinery/conveyor_switch{
@@ -48606,9 +37312,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dbK" = (
/turf/closed/wall,
@@ -48641,28 +37345,20 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"dbP" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"dbQ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_civilian)
"dbR" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_civilian)
"dbT" = (
/obj/item/stool,
@@ -48692,67 +37388,44 @@
/area/desert_dam/exterior/valley/valley_cargo)
"dca" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/desert_dam/building/warehouse/loading)
"dcb" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/desert_dam/building/warehouse/loading)
"dcc" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/warehouse/loading)
"dcf" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/desert_dam/building/hydroponics/hydroponics)
"dcg" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/desert_dam/building/hydroponics/hydroponics)
"dch" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/desert_dam/building/hydroponics/hydroponics)
"dci" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/desert_dam/building/hydroponics/hydroponics)
"dcj" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/desert_dam/building/hydroponics/hydroponics)
"dck" = (
/turf/closed/wall,
@@ -48762,17 +37435,11 @@
/turf/open/floor/plating,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dcn" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dco" = (
/obj/structure/fence,
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_civilian)
"dcp" = (
/obj/structure/machinery/light{
@@ -48789,14 +37456,10 @@
/area/desert_dam/building/cafeteria/backroom)
"dcs" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/backroom)
"dcw" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dcx" = (
/obj/structure/machinery/light{
@@ -48808,17 +37471,13 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"dcz" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"dcD" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -48833,10 +37492,7 @@
start_charge = 0
},
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/primary_storage)
"dcM" = (
/obj/structure/disposalpipe/segment,
@@ -48882,17 +37538,11 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- dir = 1;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/north,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dcW" = (
/obj/structure/closet/crate/hydroponics/prespawned,
-/turf/open/floor{
- dir = 1;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/north,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dcY" = (
/turf/open/floor/prison,
@@ -48910,14 +37560,10 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Loading"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/hydroponics/hydroponics_loading)
"ddd" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/hydroponics/hydroponics_loading)
"dde" = (
/obj/structure/window/framed/colony/reinforced,
@@ -48928,17 +37574,13 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"ddi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"ddl" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -48947,9 +37589,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"ddm" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -48999,25 +37639,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"ddr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"dds" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"ddu" = (
/obj/structure/machinery/power/apc{
@@ -49025,9 +37659,7 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"ddv" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
@@ -49035,9 +37667,7 @@
/area/desert_dam/exterior/valley/valley_civilian)
"ddw" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_civilian)
"ddx" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -49105,16 +37735,11 @@
dir = 2;
name = "\improper Hydroponics"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"ddP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/west_tunnel)
"ddQ" = (
/obj/structure/machinery/disposal,
@@ -49165,15 +37790,10 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/hydroponics/hydroponics_loading)
"ddY" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/hydroponics/hydroponics_loading)
"ddZ" = (
/obj/structure/machinery/power/apc{
@@ -49206,15 +37826,11 @@
/area/desert_dam/building/cafeteria/backroom)
"dee" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"deg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"deh" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -49222,21 +37838,15 @@
/area/desert_dam/building/cafeteria/loading)
"dej" = (
/obj/structure/kitchenspike,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"dek" = (
/obj/structure/closet/crate/freezer/rations,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"del" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_civilian)
"dem" = (
/obj/structure/disposalpipe/segment{
@@ -49267,18 +37877,12 @@
/area/desert_dam/building/warehouse/loading)
"dep" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/warehouse/loading)
"deq" = (
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/warehouse/loading)
"der" = (
/obj/effect/decal/warning_stripes{
@@ -49290,40 +37894,27 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_civilian)
"des" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/desert_dam/building/hydroponics/hydroponics)
"det" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/west_tunnel)
"deu" = (
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/desert_dam/building/hydroponics/hydroponics)
"dev" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dex" = (
/obj/structure/machinery/seed_extractor,
/turf/open/floor/prison,
/area/desert_dam/building/hydroponics/hydroponics)
"dey" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/north,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dez" = (
/obj/structure/desertdam/decals/road_stop{
@@ -49335,10 +37926,7 @@
/area/desert_dam/exterior/landing_pad_one)
"deA" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/hydroponics/hydroponics_loading)
"deB" = (
/obj/structure/machinery/light{
@@ -49346,54 +37934,37 @@
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"deC" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"deD" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"deE" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"deF" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"deG" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"deH" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"deI" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/building/substation/central)
"deJ" = (
/obj/effect/decal/cleanable/dirt,
@@ -49413,36 +37984,24 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_civilian)
"deP" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/warehouse/loading)
"deQ" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/warehouse/loading)
"deR" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/warehouse/loading)
"deS" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"deU" = (
/obj/effect/decal/warning_stripes{
@@ -49463,9 +38022,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"deX" = (
/obj/effect/decal/warning_stripes{
@@ -49475,17 +38032,12 @@
icon_state = "S"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"deY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/warehouse/warehouse)
"deZ" = (
/obj/effect/decal/cleanable/dirt,
@@ -49500,9 +38052,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/warehouse)
"dfb" = (
/obj/effect/decal/warning_stripes{
@@ -49525,43 +38075,27 @@
/turf/open/floor/prison,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dfh" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dfi" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dfj" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics_loading)
"dfk" = (
/obj/structure/closet/crate/hydroponics/prespawned,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/hydroponics/hydroponics_loading)
"dfm" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cafeteria)
"dfn" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dfo" = (
/obj/effect/decal/warning_stripes{
@@ -49574,34 +38108,24 @@
/area/desert_dam/building/warehouse/loading)
"dfp" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/warehouse/loading)
"dfq" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dfr" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_wilderness)
"dfs" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dft" = (
/obj/structure/machinery/light{
@@ -49621,67 +38145,43 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_civilian)
"dfx" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_civilian)
"dfy" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "\improper Loading Bay"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"dfz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/desert_dam/building/warehouse/warehouse)
"dfA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/east,
/area/desert_dam/building/warehouse/warehouse)
"dfB" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/east,
/area/desert_dam/building/warehouse/loading)
"dfC" = (
/obj/structure/largecrate,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/warehouse/loading)
"dfD" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/warehouse/loading)
"dfE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/desert_dam/building/warehouse/loading)
"dfG" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -49698,36 +38198,24 @@
"dfJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"dfK" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"dfL" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"dfN" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"dfS" = (
/obj/effect/decal/cleanable/dirt,
@@ -49755,33 +38243,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dgb" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dgc" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dgd" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dge" = (
/obj/effect/decal/warning_stripes{
@@ -49802,9 +38280,7 @@
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/building/warehouse/warehouse)
"dgh" = (
/obj/structure/desertdam/decals/road_edge{
@@ -49855,33 +38331,21 @@
"dgr" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/warehouse/loading)
"dgs" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/warehouse/loading)
"dgt" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"dgu" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/desert_dam/building/warehouse/loading)
"dgv" = (
/obj/effect/decal/warning_stripes{
@@ -49906,23 +38370,14 @@
/obj/structure/machinery/light,
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/desert_dam/building/warehouse/loading)
"dgA" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southeast,
/area/desert_dam/building/warehouse/loading)
"dgC" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"dgD" = (
/obj/effect/decal/warning_stripes{
@@ -49931,10 +38386,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/river/riverside_south)
"dgE" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/desert_dam/building/warehouse/loading)
"dgF" = (
/turf/open/asphalt,
@@ -49964,26 +38416,19 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_hydro)
"dgK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_hydro)
"dgL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dgM" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -50032,46 +38477,31 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_civilian)
"dgY" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dhc" = (
/obj/structure/toilet,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dhd" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2;
name = "\improper Toilet Unit"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dhe" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/cafeteria/loading)
"dhf" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/cafeteria/loading)
"dhg" = (
/obj/effect/decal/warning_stripes{
@@ -50102,37 +38532,27 @@
"dhT" = (
/obj/effect/decal/sand_overlay/sand2,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"dhU" = (
/obj/effect/decal/sand_overlay/sand2/corner2{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/central_tunnel)
"dhX" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dhZ" = (
/turf/open/asphalt,
/area/desert_dam/building/hydroponics/hydroponics_loading)
"dia" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/desert_dam/building/medical/emergency_room)
"dib" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -50152,10 +38572,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/desert_dam/exterior/valley/valley_crashsite)
"dil" = (
/obj/structure/window/framed/hangar/reinforced,
@@ -50179,42 +38596,31 @@
/area/desert_dam/building/substation/northwest)
"diG" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/desert_dam/building/hydroponics/hydroponics)
"diH" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/desert_dam/building/hydroponics/hydroponics)
"diI" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/desert_dam/building/hydroponics/hydroponics)
"diJ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/desert_dam/building/hydroponics/hydroponics)
"diK" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/desert_dam/building/hydroponics/hydroponics)
"diL" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -50238,15 +38644,11 @@
dir = 4
},
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"diP" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_civilian)
"diR" = (
/obj/structure/desertdam/decals/road_edge{
@@ -50288,23 +38690,15 @@
/turf/open/asphalt,
/area/desert_dam/exterior/landing_pad_two)
"djr" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"djs" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/desert_dam/building/hydroponics/hydroponics)
"djt" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/desert_dam/building/hydroponics/hydroponics)
"dju" = (
/obj/structure/machinery/light,
@@ -50312,9 +38706,7 @@
/area/desert_dam/building/hydroponics/hydroponics_loading)
"djw" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river/riverside_south)
"djx" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -50325,9 +38717,7 @@
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_south)
"djz" = (
/obj/structure/platform,
@@ -50366,10 +38756,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/northwest,
/area/desert_dam/interior/dam_interior/disposals)
"djZ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -50383,9 +38770,7 @@
dir = 2;
name = "\improper Loading"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/hydroponics/hydroponics_loading)
"dkb" = (
/obj/structure/stairs{
@@ -50394,9 +38779,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_hydro)
"dkc" = (
/obj/structure/stairs{
@@ -50405,17 +38788,13 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_hydro)
"dkd" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Restroom"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dke" = (
/obj/structure/disposalpipe/segment{
@@ -50446,17 +38825,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/cafeteria/loading)
"dkk" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"dkl" = (
/obj/structure/desertdam/decals/road_edge{
@@ -50499,34 +38874,23 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Hydroponics"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dkH" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Packaging"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dkI" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached20"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached20,
/area/desert_dam/exterior/valley/valley_hydro)
"dkJ" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/building/substation/southwest)
"dkK" = (
/obj/structure/platform,
@@ -50537,9 +38901,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Breakroom"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dkM" = (
/obj/structure/disposalpipe/segment,
@@ -50547,9 +38909,7 @@
/area/desert_dam/building/cafeteria/loading)
"dkN" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_civilian)
"dkZ" = (
/obj/structure/prop/dam/large_boulder/boulder1,
@@ -50574,19 +38934,14 @@
start_charge = 0
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/north,
/area/desert_dam/interior/dam_interior/disposals)
"dle" = (
/obj/structure/toilet,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dlu" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -50596,34 +38951,26 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_hydro)
"dly" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_cargo)
"dlz" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_civilian)
"dlA" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dlB" = (
/obj/structure/window/framed/colony,
@@ -50633,30 +38980,22 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Toilet Unit"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dlD" = (
/obj/structure/sink{
dir = 1;
pixel_y = -10
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dlE" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dlF" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dlJ" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -50674,9 +39013,7 @@
/obj/structure/machinery/light,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dlP" = (
/obj/structure/platform{
@@ -50687,62 +39024,46 @@
dir = 4
},
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/central_tunnel)
"dlQ" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dlR" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dlS" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dlT" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dme" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dmf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dmg" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dmz" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -50774,40 +39095,30 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Mess Hall"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dmO" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dmP" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dmQ" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dmR" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dny" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -50815,9 +39126,7 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/break_room)
"dnB" = (
/obj/structure/desertdam/decals/road_stop{
@@ -50839,14 +39148,10 @@
/turf/open/desert/desert_shore/shore_edge1,
/area/desert_dam/exterior/river/riverside_south)
"dnP" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_medical)
"dod" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/bar_valley_dam)
"dof" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -50854,33 +39159,23 @@
/area/desert_dam/building/cafeteria/backroom)
"doi" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_hydro)
"doj" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_cargo)
"dok" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_hydro)
"dol" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/bar_valley_dam)
"dom" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_civilian)
"doE" = (
/turf/open/desert/dirt,
@@ -50907,40 +39202,24 @@
/area/desert_dam/exterior/river/riverside_south)
"doQ" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_civilian)
"dpc" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_hydro)
"dps" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_civilian)
"dpu" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
-/area/desert_dam/building/water_treatment_one/hallway)
-"dpv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/water_treatment_one/hallway)
"dpw" = (
/obj/structure/disposalpipe/segment{
@@ -50963,9 +39242,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_hydro)
"dpB" = (
/turf/closed/wall/hangar{
@@ -50992,16 +39269,12 @@
"dpF" = (
/obj/structure/machinery/vending/dinnerware,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dpG" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dpH" = (
/obj/effect/decal/warning_stripes{
@@ -51051,11 +39324,6 @@
"dqd" = (
/turf/open/desert/rock/deep,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
-"dqe" = (
-/turf/open/floor{
- icon_state = "wood"
- },
-/area/desert_dam/building/water_treatment_one/hallway)
"dqf" = (
/turf/open/floor/wood,
/area/desert_dam/building/water_treatment_one/hallway)
@@ -51083,23 +39351,16 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_one/control_room)
"dqp" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"dqs" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dqt" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dqu" = (
/obj/structure/machinery/power/apc{
@@ -51108,9 +39369,7 @@
start_charge = 0
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dqJ" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -51123,9 +39382,7 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/water_treatment_one/hallway)
"dqR" = (
/obj/structure/flora/pottedplant,
@@ -51158,16 +39415,11 @@
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"drg" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"drh" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -51180,9 +39432,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"drL" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -51205,10 +39455,7 @@
"drQ" = (
/obj/structure/surface/table,
/obj/item/tool/stamp,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/desert_dam/building/water_treatment_one/lobby)
"drT" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -51234,9 +39481,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"drZ" = (
/obj/structure/surface/table/reinforced,
@@ -51253,26 +39498,18 @@
pixel_x = -6
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/water_treatment_one/lobby)
"dsa" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/desert_dam/building/water_treatment_one/lobby)
"dsb" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/desert_dam/building/water_treatment_one/lobby)
"dsc" = (
/obj/effect/landmark/survivor_spawner,
@@ -51280,9 +39517,7 @@
/area/desert_dam/building/water_treatment_one/lobby)
"dsf" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/desert_dam/exterior/river/riverside_central_south)
"dsg" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -51290,33 +39525,24 @@
/area/desert_dam/exterior/river/riverside_central_south)
"dsh" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_central_south)
"dsi" = (
/obj/structure/platform_decoration{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_central_south)
"dsk" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_central_south)
"dsA" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/desert_dam/building/water_treatment_one/lobby)
"dsE" = (
/obj/structure/flora/grass/tallgrass/desert/corner,
@@ -51333,10 +39559,7 @@
/area/desert_dam/building/water_treatment_one/garage)
"dsO" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/desert_dam/building/water_treatment_one/lobby)
"dsR" = (
/obj/structure/machinery/disposal,
@@ -51344,36 +39567,26 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_one/control_room)
"dsS" = (
-/turf/open/floor/filtrationside{
- dir = 9
- },
+/turf/open/floor/filtrationside/northwest,
/area/desert_dam/exterior/valley/valley_hydro)
"dsT" = (
-/turf/open/floor/filtrationside{
- dir = 1
- },
+/turf/open/floor/filtrationside/north,
/area/desert_dam/exterior/valley/valley_hydro)
"dsU" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_south)
"dsV" = (
-/turf/open/floor/filtrationside{
- dir = 5
- },
+/turf/open/floor/filtrationside/northeast,
/area/desert_dam/exterior/valley/valley_hydro)
"dsW" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_central_south)
"dto" = (
/obj/structure/surface/table,
@@ -51385,10 +39598,7 @@
"dtq" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"dtr" = (
/turf/open/asphalt,
@@ -51402,10 +39612,7 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_one/garage)
"dtu" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/garage)
"dtw" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -51415,76 +39622,53 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dtx" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"dty" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"dtz" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_one/control_room)
"dtE" = (
-/turf/open/floor/filtrationside{
- dir = 8
- },
+/turf/open/floor/filtrationside/west,
/area/desert_dam/exterior/valley/valley_hydro)
"dtF" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/valley/valley_civilian)
"dtG" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/valley/valley_civilian)
"dtH" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/desert_dam/exterior/river/riverside_south)
"dtI" = (
-/turf/open/floor/filtrationside{
- dir = 4
- },
+/turf/open/floor/filtrationside/east,
/area/desert_dam/exterior/valley/valley_hydro)
"dtT" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/central_tunnel)
"dtX" = (
/obj/structure/platform_decoration,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_south)
"dtY" = (
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_south)
"duc" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -51501,18 +39685,12 @@
"dun" = (
/obj/structure/machinery/computer/med_data/laptop,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/desert_dam/building/administration/office)
"duo" = (
/obj/structure/machinery/computer/guestpass,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet11-12"
- },
+/turf/open/floor/carpet11_12/west,
/area/desert_dam/building/administration/office)
"duq" = (
/obj/structure/desertdam/decals/road_edge,
@@ -51528,10 +39706,7 @@
/area/desert_dam/building/water_treatment_one/hallway)
"dut" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"duu" = (
/obj/structure/machinery/power/apc{
@@ -51560,9 +39735,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"duy" = (
/obj/structure/platform{
@@ -51576,38 +39749,26 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/valley/valley_civilian)
"duA" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river/riverside_south)
"duB" = (
/obj/structure/fence,
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_civilian)
"duC" = (
/turf/closed/wall,
/area/desert_dam/building/dorms/hallway_northwing)
"duD" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_civilian)
"duJ" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/bar_valley_dam)
"duP" = (
/obj/structure/window/reinforced{
@@ -51616,16 +39777,11 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/west,
/area/desert_dam/interior/dam_interior/disposals)
"duR" = (
/obj/structure/xenoautopsy/tank/broken,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/desert_dam/interior/caves/temple)
"duU" = (
/obj/structure/machinery/computer/med_data/laptop,
@@ -51649,18 +39805,12 @@
"duY" = (
/obj/structure/machinery/computer/cameras/wooden_tv,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet7-3"
- },
+/turf/open/floor/carpet7_3/west,
/area/desert_dam/building/administration/overseer_office)
"duZ" = (
/obj/structure/machinery/computer/med_data/laptop,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/desert_dam/building/administration/overseer_office)
"dvf" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -51668,40 +39818,28 @@
name = "\improper Kitchen"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dvg" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dvj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_civilian)
"dvk" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_civilian)
"dvm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_civilian)
"dvn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dvo" = (
/obj/effect/decal/cleanable/dirt,
@@ -51714,9 +39852,7 @@
"dvx" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_south)
"dvy" = (
/obj/structure/platform_decoration{
@@ -51727,41 +39863,31 @@
/area/desert_dam/exterior/river/riverside_south)
"dvz" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/river/riverside_south)
"dvA" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"dvB" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_south)
"dvD" = (
/obj/structure/bed,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_northwing)
"dvE" = (
/obj/structure/closet/cabinet,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_northwing)
"dvW" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -51783,10 +39909,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/interior/dam_interior/smes_main)
"dwe" = (
/obj/structure/surface/table,
@@ -51794,19 +39917,13 @@
amount = 25
},
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/smes_main)
"dwf" = (
/obj/structure/surface/table,
/obj/item/stack/cable_coil,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/smes_main)
"dwg" = (
/obj/structure/surface/table,
@@ -51815,26 +39932,18 @@
},
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/desert_dam/interior/dam_interior/smes_main)
"dwh" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/control_room)
"dwl" = (
/obj/structure/surface/table,
/obj/structure/bedsheetbin,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"dwm" = (
/obj/structure/surface/table,
@@ -51842,9 +39951,7 @@
dir = 1
},
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/restroom)
"dws" = (
/turf/open/asphalt,
@@ -51854,22 +39961,16 @@
/turf/open/floor/prison,
/area/desert_dam/building/water_treatment_one/control_room)
"dwC" = (
-/turf/open/floor/filtrationside{
- dir = 10
- },
+/turf/open/floor/filtrationside/southwest,
/area/desert_dam/exterior/valley/valley_hydro)
"dwD" = (
/turf/open/floor/filtrationside,
/area/desert_dam/exterior/valley/valley_hydro)
"dwE" = (
-/turf/open/floor/filtrationside{
- dir = 6
- },
+/turf/open/floor/filtrationside/southeast,
/area/desert_dam/exterior/valley/valley_hydro)
"dwF" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_northwing)
"dwG" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -51897,19 +39998,13 @@
icon_state = "pipe-c"
},
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/smes_backup)
"dwX" = (
/obj/structure/surface/table/reinforced,
/obj/structure/disposalpipe/segment,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/smes_backup)
"dxb" = (
/obj/effect/decal/warning_stripes{
@@ -51939,77 +40034,51 @@
dir = 1;
name = "\improper Dormitories Bedroom"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_northwing)
"dxg" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/desert_dam/building/dorms/hallway_northwing)
"dxh" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"dxi" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"dxj" = (
/obj/structure/machinery/atm{
name = "Weyland-Yutani Automatic Teller Machine";
pixel_y = 30
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/east,
/area/desert_dam/building/dorms/hallway_northwing)
"dxk" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/north,
/area/desert_dam/building/dorms/hallway_northwing)
"dxl" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"dxm" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"dxL" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Hydroponics Breakroom"
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"dxM" = (
/obj/structure/surface/table/reinforced,
@@ -52017,16 +40086,12 @@
pixel_y = 30
},
/obj/item/reagent_container/food/snacks/cheesewedge,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dxN" = (
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dxO" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -52037,10 +40102,7 @@
"dxR" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/donut,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dxS" = (
/obj/structure/disposalpipe/segment{
@@ -52048,24 +40110,16 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dxT" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/candy,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dxW" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/desert_dam/building/water_treatment_one/garage)
"dxX" = (
/obj/structure/machinery/disposal,
@@ -52083,9 +40137,7 @@
"dya" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/water_treatment_one/garage)
"dyb" = (
/turf/closed/wall/hangar{
@@ -52118,30 +40170,19 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_civilian)
"dym" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"dyn" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"dyo" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/east,
/area/desert_dam/building/dorms/hallway_northwing)
"dyp" = (
/obj/structure/bed/chair{
@@ -52155,20 +40196,14 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/dorms/pool)
"dyS" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/chips,
/obj/item/reagent_container/food/snacks/cookie,
/obj/item/reagent_container/food/snacks/donkpocket,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dyT" = (
/obj/structure/disposalpipe/segment{
@@ -52178,55 +40213,36 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dyU" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dyW" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/substation/central)
"dyX" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northwest,
/area/desert_dam/building/water_treatment_one/breakroom)
"dyY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/north,
/area/desert_dam/building/water_treatment_one/breakroom)
"dzb" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/building/water_treatment_one/breakroom)
"dzc" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/desert_dam/building/water_treatment_one/breakroom)
"dzd" = (
/obj/effect/blocker/toxic_water,
@@ -52234,21 +40250,13 @@
/area/desert_dam/exterior/river/filtration_a)
"dze" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northeast,
/area/desert_dam/building/water_treatment_one/breakroom)
"dzf" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/equipment)
"dzg" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/equipment)
"dzh" = (
/obj/structure/filtration/collector_pipes{
@@ -52264,16 +40272,12 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/equipment)
"dzj" = (
/obj/structure/closet/l3closet/virology,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/equipment)
"dzk" = (
/obj/structure/desertdam/decals/road_edge{
@@ -52288,16 +40292,11 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/west_tunnel)
"dzm" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/floodgate_control)
"dzo" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/river/riverside_south)
"dzr" = (
/turf/closed/wall/hangar{
@@ -52336,9 +40335,7 @@
/area/desert_dam/building/dorms/hallway_northwing)
"dzy" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_civilian)
"dzz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -52355,9 +40352,7 @@
name = "\improper Mess Hall"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cafeteria)
"dzB" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -52365,28 +40360,21 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dzC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dzD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dzE" = (
/obj/structure/flora/grass/desert/lightgrass_10,
@@ -52395,10 +40383,7 @@
"dzO" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"dzU" = (
/obj/structure/desertdam/decals/road_edge{
@@ -52416,37 +40401,25 @@
/obj/item/reagent_container/food/snacks/chips,
/obj/item/reagent_container/food/snacks/cookie,
/obj/item/reagent_container/food/snacks/donut,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dAf" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/cheesewedge,
/obj/item/reagent_container/food/snacks/chips,
/obj/item/reagent_container/food/snacks/cookie,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dAg" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/chips,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dAk" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/bun,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dAl" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -52455,18 +40428,14 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_hydro)
"dAn" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"dAo" = (
/obj/effect/blocker/toxic_water,
/turf/open/gm/river/desert/deep/covered,
/area/desert_dam/exterior/river_mouth/southern)
"dAq" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/water_treatment_one/breakroom)
"dAr" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -52490,20 +40459,13 @@
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_east)
"dAD" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_northwing)
"dAF" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/desert_dam/building/dorms/hallway_northwing)
"dAG" = (
/obj/structure/bed/chair{
@@ -52511,30 +40473,21 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dAH" = (
-/turf/open/floor/prison{
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner,
/area/desert_dam/building/dorms/hallway_northwing)
"dAI" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_northwing)
"dAJ" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_northwing)
"dAK" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -52544,18 +40497,12 @@
"dAL" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dBb" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/cookie,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dBc" = (
/obj/structure/surface/table,
@@ -52565,10 +40512,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dBd" = (
/obj/structure/surface/table,
@@ -52576,28 +40520,19 @@
/obj/item/reagent_container/food/snacks/bun,
/obj/item/reagent_container/food/snacks/cheesewedge,
/obj/item/reagent_container/food/snacks/donut,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dBe" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dBf" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/candy,
/obj/item/reagent_container/food/snacks/bun,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dBh" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -52607,9 +40542,7 @@
/area/desert_dam/exterior/valley/valley_medical)
"dBi" = (
/obj/structure/machinery/door/airlock/almayer/generic,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"dBj" = (
/obj/structure/machinery/power/apc{
@@ -52617,10 +40550,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/north,
/area/desert_dam/building/water_treatment_one/breakroom)
"dBo" = (
/obj/structure/window/framed/colony,
@@ -52635,48 +40565,30 @@
/area/desert_dam/building/dorms/hallway_westwing)
"dBs" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/desert_dam/building/dorms/hallway_northwing)
"dBt" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/desert_dam/building/dorms/hallway_northwing)
"dBu" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/desert_dam/building/dorms/hallway_northwing)
"dBv" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/desert_dam/building/dorms/hallway_northwing)
"dBw" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/desert_dam/building/dorms/hallway_northwing)
"dBx" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/desert_dam/building/dorms/hallway_northwing)
"dBy" = (
/turf/closed/wall,
@@ -52688,9 +40600,7 @@
dir = 1;
name = "\improper Restroom"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dBC" = (
/obj/item/weapon/baseballbat/metal,
@@ -52701,34 +40611,25 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/building/dorms/pool)
"dBD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"dBF" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/break_room)
"dBJ" = (
/obj/structure/machinery/computer/pod/old{
name = "Personal Computer"
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/water_treatment_one/hallway)
"dBK" = (
/obj/structure/disposalpipe/segment,
@@ -52741,22 +40642,15 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dBN" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_medical)
"dBO" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_medical)
"dBP" = (
/obj/structure/machinery/colony_floodlight,
@@ -52768,58 +40662,41 @@
/area/desert_dam/exterior/valley/valley_medical)
"dBR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/disposals)
"dBT" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/water_treatment_one/breakroom)
"dBU" = (
/obj/structure/surface/table,
/obj/item/clothing/head/soft/ferret,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/water_treatment_one/breakroom)
"dBV" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/water_treatment_one/breakroom)
"dBW" = (
-/turf/open/floor{
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner,
/area/desert_dam/building/water_treatment_one/breakroom)
"dBY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/disposals)
"dCb" = (
/turf/open/floor/prison,
/area/desert_dam/building/dorms/hallway_westwing)
"dCc" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/desert_dam/building/dorms/hallway_westwing)
"dCd" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dCe" = (
/obj/effect/decal/cleanable/dirt,
@@ -52827,18 +40704,13 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dCf" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Toilet Unit"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dCg" = (
/obj/structure/toilet{
@@ -52847,27 +40719,19 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dCj" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull,
/area/desert_dam/building/dorms/pool)
"dCo" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"dCt" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"dCw" = (
/obj/structure/surface/table/almayer,
@@ -52881,9 +40745,7 @@
name = "\improper Disposals"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/disposals)
"dCz" = (
/obj/structure/pipes/vents/pump{
@@ -52899,10 +40761,7 @@
"dCD" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dCE" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -52910,56 +40769,39 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/desert_dam/building/medical/west_wing_hallway)
"dCF" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"dCG" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/west,
/area/desert_dam/building/water_treatment_one/breakroom)
"dCH" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/building/water_treatment_one/breakroom)
"dCI" = (
/obj/structure/surface/table,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/building/dorms/pool)
"dCJ" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/building/water_treatment_one/breakroom)
"dCK" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southeast,
/area/desert_dam/building/water_treatment_one/breakroom)
"dCL" = (
/turf/closed/wall/hangar{
@@ -52967,203 +40809,132 @@
},
/area/desert_dam/building/water_treatment_one/equipment)
"dCM" = (
-/turf/open/floor/coagulation{
- icon_state = "0,8"
- },
+/turf/open/floor/coagulation/icon0_8,
/area/desert_dam/exterior/valley/valley_hydro)
"dCN" = (
-/turf/open/floor/coagulation{
- icon_state = "5,8"
- },
+/turf/open/floor/coagulation/icon5_8,
/area/desert_dam/exterior/valley/valley_hydro)
"dCO" = (
-/turf/open/floor/coagulation{
- icon_state = "4,8"
- },
+/turf/open/floor/coagulation/icon4_8,
/area/desert_dam/exterior/valley/valley_hydro)
"dCP" = (
-/turf/open/floor/coagulation{
- icon_state = "6,8"
- },
+/turf/open/floor/coagulation/icon6_8,
/area/desert_dam/exterior/valley/valley_hydro)
"dCQ" = (
-/turf/open/floor/coagulation{
- icon_state = "7,8"
- },
+/turf/open/floor/coagulation/icon7_8,
/area/desert_dam/exterior/valley/valley_hydro)
"dCR" = (
-/turf/open/floor/coagulation{
- icon_state = "8,8"
- },
+/turf/open/floor/coagulation/icon8_8,
/area/desert_dam/exterior/valley/valley_hydro)
"dCS" = (
-/turf/open/floor/coagulation{
- icon_state = "6,8-2"
- },
+/turf/open/floor/coagulation/icon6_8_2,
/area/desert_dam/exterior/valley/valley_hydro)
"dCT" = (
-/turf/open/floor/coagulation{
- icon_state = "7,8-2"
- },
+/turf/open/floor/coagulation/icon7_8_2,
/area/desert_dam/exterior/valley/valley_hydro)
"dCU" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river/riverside_east)
"dCV" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull,
/area/desert_dam/building/dorms/pool)
"dCW" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/north,
/area/desert_dam/building/dorms/hallway_westwing)
"dCX" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/restroom)
"dCY" = (
/obj/structure/surface/table,
/obj/structure/bedsheetbin,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/restroom)
"dDa" = (
/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/restroom)
"dDb" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dDk" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/north,
/area/desert_dam/building/medical/surgery_room_one)
"dDs" = (
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/desert_dam/exterior/valley/valley_hydro)
"dDt" = (
-/turf/open/floor/coagulation{
- icon_state = "1,7"
- },
+/turf/open/floor/coagulation/icon1_7,
/area/desert_dam/exterior/valley/valley_hydro)
"dDv" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/head/welding,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/desert_dam/interior/dam_interior/tech_storage)
"dDw" = (
/obj/structure/surface/table,
/obj/item/clothing/head/welding,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"dDx" = (
/obj/item/clothing/head/welding,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"dDz" = (
-/turf/open/floor/coagulation{
- icon_state = "7,7"
- },
+/turf/open/floor/coagulation/icon7_7,
/area/desert_dam/exterior/valley/valley_hydro)
"dDA" = (
-/turf/open/floor/coagulation{
- icon_state = "8,7"
- },
+/turf/open/floor/coagulation/icon8_7,
/area/desert_dam/exterior/valley/valley_hydro)
"dDB" = (
/obj/structure/flora/tree/joshua,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/landing_pad_one)
"dDD" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/head/welding,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"dDG" = (
-/turf/open/floor/coagulation{
- icon_state = "7,7-2"
- },
+/turf/open/floor/coagulation/icon7_7_2,
/area/desert_dam/exterior/valley/valley_hydro)
"dDH" = (
-/turf/open/floor/coagulation{
- icon_state = "8,7-2"
- },
+/turf/open/floor/coagulation/icon8_7_2,
/area/desert_dam/exterior/valley/valley_hydro)
"dDI" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/river/riverside_south)
"dDJ" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/desert_dam/building/dorms/hallway_westwing)
"dDK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dDL" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/restroom)
"dDM" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Showers"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/restroom)
"dDQ" = (
/obj/item/seeds/soyaseed,
@@ -53171,66 +40942,48 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/desert_dam/building/hydroponics/hydroponics)
"dDZ" = (
/obj/structure/toilet{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"dEb" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dEe" = (
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/desert_dam/exterior/valley/valley_hydro)
"dEj" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/desert_dam/exterior/river/riverside_east)
"dEk" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/river/riverside_east)
"dEl" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_east)
"dEm" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/river/riverside_east)
"dEn" = (
/obj/structure/platform{
@@ -53251,15 +41004,11 @@
/area/desert_dam/exterior/river/riverside_south)
"dEr" = (
/obj/structure/closet/cabinet,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"dEt" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"dEu" = (
/obj/structure/machinery/power/apc{
@@ -53267,40 +41016,28 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/desert_dam/building/dorms/hallway_westwing)
"dEv" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/chips,
/obj/item/reagent_container/food/snacks/donut,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dEx" = (
-/turf/open/floor/prison{
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner,
/area/desert_dam/building/dorms/hallway_westwing)
"dEP" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"dEV" = (
/obj/structure/filtration/collector_pipes,
-/turf/open/floor/filtrationside{
- dir = 8
- },
+/turf/open/floor/filtrationside/west,
/area/desert_dam/exterior/valley/valley_hydro)
"dEW" = (
/obj/structure/platform{
@@ -53314,24 +41051,18 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_east)
"dEY" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_east)
"dEZ" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river_mouth/southern)
"dFc" = (
/obj/structure/platform_decoration{
@@ -53345,20 +41076,14 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_south)
"dFe" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/floor/filtrationside{
- dir = 4
- },
+/turf/open/floor/filtrationside/east,
/area/desert_dam/exterior/valley/valley_hydro)
"dFf" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"dFg" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -53367,10 +41092,7 @@
"dFh" = (
/obj/item/frame/table,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dFi" = (
/obj/structure/catwalk,
@@ -53382,19 +41104,14 @@
pixel_x = -30;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dFk" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dFn" = (
/obj/structure/desertdam/decals/road_edge{
@@ -53415,35 +41132,25 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/desert_dam/building/hydroponics/hydroponics)
"dFD" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners3"
- },
+/turf/open/floor/prison/darkbrowncorners3,
/area/desert_dam/interior/dam_interior/disposals)
"dFL" = (
/obj/structure/sink{
dir = 1;
pixel_y = -10
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"dFM" = (
-/turf/open/floor/coagulation{
- icon_state = "0,4"
- },
+/turf/open/floor/coagulation/icon0_4,
/area/desert_dam/exterior/valley/valley_hydro)
"dFN" = (
-/turf/open/floor/coagulation{
- icon_state = "8,4"
- },
+/turf/open/floor/coagulation/icon8_4,
/area/desert_dam/exterior/valley/valley_hydro)
"dFP" = (
/obj/structure/platform,
@@ -53473,45 +41180,33 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_south)
"dFU" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Dormitories Bedroom"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"dFV" = (
/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/desert_dam/building/dorms/restroom)
"dFW" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/desert_dam/building/dorms/restroom)
"dFX" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/desert_dam/building/dorms/restroom)
"dFZ" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dGa" = (
/obj/structure/surface/table,
@@ -53520,33 +41215,23 @@
/obj/item/reagent_container/food/snacks/candy,
/obj/item/reagent_container/food/snacks/donkpocket,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dGr" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/desert_dam/exterior/valley/valley_hydro)
"dGs" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/desert_dam/exterior/valley/valley_civilian)
"dGt" = (
/obj/structure/filtration/collector_pipes{
icon_state = "lower_1"
},
-/turf/open/floor/filtrationside{
- dir = 8
- },
+/turf/open/floor/filtrationside/west,
/area/desert_dam/exterior/valley/valley_hydro)
"dGu" = (
/obj/structure/platform{
@@ -53573,27 +41258,20 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"dGy" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_medical)
"dGz" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_east)
"dGA" = (
/obj/structure/platform{
@@ -53608,43 +41286,27 @@
},
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_south)
"dGC" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_westwing)
"dGD" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/donkpocket,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dGE" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/east,
/area/desert_dam/building/dorms/hallway_westwing)
"dGF" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/desert_dam/building/dorms/hallway_westwing)
"dGG" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/desert_dam/building/dorms/restroom)
"dGI" = (
/obj/structure/disposalpipe/segment,
@@ -53657,18 +41319,13 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"dGQ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/desert_dam/exterior/valley/valley_civilian)
"dGU" = (
/obj/docking_port/stationary/marine_dropship/lz1,
@@ -53678,22 +41335,16 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/desert_dam/exterior/valley/valley_hydro)
"dGY" = (
-/turf/open/floor/coagulation{
- icon_state = "8,6"
- },
+/turf/open/floor/coagulation/icon8_6,
/area/desert_dam/exterior/valley/valley_hydro)
"dHa" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_cargo)
"dHb" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -53712,9 +41363,7 @@
dir = 8
},
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river_mouth/southern)
"dHe" = (
/obj/structure/platform{
@@ -53726,9 +41375,7 @@
"dHf" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_south)
"dHg" = (
/obj/structure/platform,
@@ -53743,19 +41390,13 @@
/area/desert_dam/building/dorms/hallway_westwing)
"dHi" = (
/obj/item/frame/table,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dHj" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/candy,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dHk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -53768,33 +41409,22 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dHm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"dHo" = (
/obj/structure/surface/table,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dHp" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dHr" = (
/obj/structure/surface/table,
@@ -53803,56 +41433,39 @@
},
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"dHs" = (
/obj/structure/surface/table,
/obj/item/clothing/head/welding,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"dHt" = (
-/turf/open/floor/coagulation{
- icon_state = "1,1"
- },
+/turf/open/floor/coagulation/icon1_1,
/area/desert_dam/exterior/valley/valley_hydro)
"dHv" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/desert_dam/exterior/valley/valley_civilian)
"dHw" = (
-/turf/open/floor/coagulation{
- icon_state = "7,1"
- },
+/turf/open/floor/coagulation/icon7_1,
/area/desert_dam/exterior/valley/valley_hydro)
"dHx" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/desert_dam/exterior/valley/valley_hydro)
"dHy" = (
/obj/effect/blocker/toxic_water,
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/desert_dam/exterior/river_mouth/southern)
"dHA" = (
/obj/structure/platform{
@@ -53867,32 +41480,22 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/river/riverside_south)
"dHD" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_westwing)
"dHE" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_westwing)
"dHF" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/desert_dam/building/dorms/restroom)
"dHG" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dHI" = (
/obj/structure/surface/table,
@@ -53901,10 +41504,7 @@
/obj/item/reagent_container/food/snacks/candy,
/obj/item/reagent_container/food/snacks/chips,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dHK" = (
/obj/effect/landmark/crap_item,
@@ -53927,74 +41527,52 @@
},
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dHS" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dHT" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/floor/coagulation{
- icon_state = "0,0"
- },
+/turf/open/floor/coagulation/icon0_0,
/area/desert_dam/exterior/valley/valley_hydro)
"dHX" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/floor/coagulation{
- icon_state = "7,0"
- },
+/turf/open/floor/coagulation/icon7_0,
/area/desert_dam/exterior/valley/valley_hydro)
"dHY" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/floor/coagulation{
- icon_state = "2,0"
- },
+/turf/open/floor/coagulation/icon2_0,
/area/desert_dam/exterior/valley/valley_hydro)
"dIa" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/floor/coagulation{
- icon_state = "8,0"
- },
+/turf/open/floor/coagulation/icon8_0,
/area/desert_dam/exterior/valley/valley_hydro)
"dId" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/floor/coagulation{
- icon_state = "7,0"
- },
+/turf/open/floor/coagulation/icon7_0,
/area/desert_dam/exterior/valley/valley_hydro)
"dIe" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/floor/coagulation{
- icon_state = "8,0"
- },
+/turf/open/floor/coagulation/icon8_0,
/area/desert_dam/exterior/valley/valley_hydro)
"dIf" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"dIh" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_central_south)
"dIi" = (
/obj/structure/machinery/colony_floodlight,
@@ -54004,10 +41582,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/desert_dam/exterior/valley/valley_civilian)
"dIk" = (
/turf/closed/wall,
@@ -54021,25 +41596,18 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dIn" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"dIo" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2;
name = "\improper Showers"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/desert_dam/building/dorms/pool)
"dIp" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -54048,9 +41616,7 @@
dir = 1;
name = "\improper Restroom"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"dIq" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -54058,15 +41624,10 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dIr" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"dIs" = (
/obj/structure/surface/table,
@@ -54076,30 +41637,22 @@
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dIu" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"dIw" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"dIz" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_hydro)
"dIA" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_hydro)
"dIC" = (
/obj/structure/stairs{
@@ -54108,32 +41661,24 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_hydro)
"dID" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_hydro)
"dIG" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river_mouth/southern)
"dIH" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river_mouth/southern)
"dII" = (
/obj/structure/platform{
@@ -54143,51 +41688,33 @@
/turf/open/desert/desert_shore/shore_corner2,
/area/desert_dam/exterior/river_mouth/southern)
"dIJ" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/desert_dam/building/dorms/pool)
"dIK" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/desert_dam/building/dorms/pool)
"dIL" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/dorms/pool)
"dIM" = (
/obj/structure/machinery/atm{
name = "Weyland-Yutani Automatic Teller Machine";
pixel_y = 30
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/dorms/pool)
"dIN" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/desert_dam/building/dorms/pool)
"dIO" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/dorms/pool)
"dIP" = (
/obj/structure/closet/athletic_mixed,
@@ -54198,10 +41725,7 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/dorms/pool)
"dIQ" = (
/obj/item/clothing/under/shorts/red,
@@ -54209,10 +41733,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/dorms/pool)
"dIR" = (
/obj/structure/machinery/power/apc{
@@ -54223,10 +41744,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/desert_dam/building/dorms/pool)
"dIS" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -54234,123 +41752,85 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"dIT" = (
/obj/structure/closet/lasertag/red,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/desert_dam/building/dorms/pool)
"dJd" = (
/obj/structure/stairs{
dir = 4
},
/obj/structure/platform,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_hydro)
"dJe" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river_mouth/southern)
"dJf" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river_mouth/southern)
"dJg" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/river_mouth/southern)
"dJh" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"dJi" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dJj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"dJm" = (
/obj/item/tool/mop,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/building/dorms/pool)
"dJA" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river_mouth/southern)
"dJB" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_east)
"dJC" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/desert_dam/exterior/river_mouth/southern)
"dJD" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/exterior/river_mouth/southern)
"dJE" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river_mouth/southern)
"dJG" = (
-/turf/open/floor/prison{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull,
/area/desert_dam/building/dorms/pool)
"dJJ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/desert_dam/interior/dam_interior/break_room)
"dJK" = (
/obj/structure/sink{
@@ -54358,40 +41838,29 @@
pixel_x = 11
},
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/administration/hallway)
"dJL" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"dJN" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/lobby)
"dJP" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/lobby)
"dJQ" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/desert_dam/building/administration/lobby)
"dJR" = (
/obj/structure/lz_sign/dam_sign/damaged,
@@ -54402,9 +41871,7 @@
dir = 1
},
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/desert_dam/exterior/river_mouth/southern)
"dJT" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -54414,34 +41881,23 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"dJV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dJW" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dJX" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/desert_dam/building/dorms/pool)
"dJY" = (
/obj/structure/pipes/vents/pump{
@@ -54450,17 +41906,13 @@
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/lobby)
"dJZ" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"dKa" = (
/obj/structure/disposalpipe/segment,
@@ -54474,24 +41926,17 @@
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/hallway)
"dKc" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet11-12"
- },
+/turf/open/floor/carpet11_12/west,
/area/desert_dam/building/administration/overseer_office)
"dKd" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/carpet/edge{
- dir = 6
- },
+/turf/open/floor/carpet/edge/southeast,
/area/desert_dam/building/administration/meetingrooom)
"dKe" = (
/obj/effect/decal/cleanable/blood{
@@ -54522,58 +41967,37 @@
"dKk" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dKl" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dKm" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/desert_dam/building/dorms/pool)
"dKn" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/desert_dam/building/dorms/pool)
"dKo" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/desert_dam/building/dorms/pool)
"dKp" = (
/obj/item/toy/beach_ball,
-/turf/open/floor/prison{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull,
/area/desert_dam/building/dorms/pool)
"dKs" = (
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dKt" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/break_room)
"dKv" = (
/obj/structure/window/reinforced{
@@ -54581,57 +42005,40 @@
health = 80
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/west,
/area/desert_dam/interior/dam_interior/disposals)
"dKx" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/west_tunnel)
"dKz" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/west_tunnel)
"dKA" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_east)
"dKB" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/river_mouth/southern)
"dKE" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/bar_valley_dam)
"dKF" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/desert_dam/building/dorms/pool)
"dKG" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull,
/area/desert_dam/building/dorms/pool)
"dKI" = (
/obj/structure/bed/chair{
@@ -54640,55 +42047,38 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dKJ" = (
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/river_mouth/southern)
"dKK" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/river_mouth/southern)
"dKL" = (
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/exterior/river_mouth/southern)
"dKM" = (
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river_mouth/southern)
"dKN" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/river_mouth/southern)
"dKO" = (
/obj/effect/blocker/toxic_water,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/river_mouth/southern)
"dKP" = (
/obj/effect/blocker/toxic_water,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/river_mouth/southern)
"dKQ" = (
/obj/effect/blocker/toxic_water,
@@ -54700,9 +42090,7 @@
/area/desert_dam/exterior/river_mouth/southern)
"dKS" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_hydro)
"dKT" = (
/obj/structure/surface/table,
@@ -54711,10 +42099,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dKU" = (
/obj/structure/bed/chair{
@@ -54724,39 +42109,28 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dKV" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dKW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dKY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/break_room)
"dKZ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -54767,9 +42141,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/break_room)
"dLa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -54791,10 +42163,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/west,
/area/desert_dam/interior/dam_interior/disposals)
"dLe" = (
/obj/structure/surface/table,
@@ -54803,31 +42172,22 @@
/obj/item/storage/toolbox/emergency,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/east,
/area/desert_dam/interior/dam_interior/disposals)
"dLf" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/river/riverside_east)
"dLg" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/desert_dam/exterior/river/riverside_east)
"dLh" = (
/obj/structure/platform{
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/river/riverside_east)
"dLi" = (
/obj/structure/platform{
@@ -54838,9 +42198,7 @@
/area/desert_dam/exterior/river/riverside_east)
"dLj" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/river/riverside_east)
"dLk" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -54851,27 +42209,21 @@
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_east)
"dLn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/dam_interior/break_room)
"dLp" = (
/obj/structure/platform{
dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_east)
"dLq" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -54883,9 +42235,7 @@
/area/desert_dam/exterior/river/riverside_central_south)
"dLt" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/desert_dam/exterior/river/riverside_east)
"dLu" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -54893,21 +42243,15 @@
/area/desert_dam/exterior/river/riverside_east)
"dLv" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_east)
"dLz" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/desert_dam/exterior/river/riverside_east)
"dLA" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_east)
"dLC" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -54921,9 +42265,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/dam_interior/break_room)
"dLF" = (
/obj/structure/platform{
@@ -54950,9 +42292,7 @@
"dLL" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/river/riverside_central_south)
"dLM" = (
/obj/structure/platform,
@@ -54976,9 +42316,7 @@
/area/desert_dam/exterior/river/riverside_east)
"dLQ" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/river/riverside_east)
"dLR" = (
/obj/structure/platform{
@@ -55023,16 +42361,12 @@
"dLY" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/desert_dam/exterior/river/riverside_east)
"dLZ" = (
/obj/structure/platform,
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/desert_dam/exterior/river/riverside_east)
"dMf" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -55046,10 +42380,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/desert_dam/interior/dam_interior/break_room)
"dMo" = (
/obj/structure/bed/chair{
@@ -55059,10 +42390,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dMq" = (
/obj/structure/platform,
@@ -55071,28 +42399,20 @@
/area/desert_dam/exterior/river/riverside_east)
"dMw" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/river/riverside_east)
"dMx" = (
/obj/structure/surface/table,
/obj/item/clothing/ears/earmuffs,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dMC" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/desert_dam/interior/dam_interior/break_room)
"dMN" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -55116,10 +42436,7 @@
start_charge = 150
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/garage)
"dNa" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -55141,10 +42458,7 @@
/area/desert_dam/interior/dam_interior/west_tunnel)
"dNh" = (
/obj/item/seeds/riceseed,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dNi" = (
/obj/structure/machinery/computer/cameras{
@@ -55152,23 +42466,16 @@
network = list("chigusa_1")
},
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/desert_dam/building/water_treatment_one/lobby)
"dNk" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner,
/area/desert_dam/interior/dam_interior/break_room)
"dNl" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/interior/dam_interior/central_tunnel)
"dNm" = (
/obj/structure/window/reinforced{
@@ -55177,20 +42484,13 @@
},
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/southwest,
/area/desert_dam/interior/dam_interior/disposals)
"dNo" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/valley_hydro)
"dNp" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_hydro)
"dNr" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -55207,51 +42507,37 @@
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"dNu" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"dNv" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_hydro)
"dNw" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_hydro)
"dNx" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"dNB" = (
/obj/structure/surface/table,
/obj/item/storage/box/lightstick/red,
/obj/effect/landmark/good_item,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/desert_dam/interior/dam_interior/disposals)
"dNC" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"dNF" = (
/obj/structure/surface/table,
@@ -55259,25 +42545,18 @@
/obj/effect/spawner/random/tool,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/desert_dam/interior/dam_interior/disposals)
"dNG" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/interior/dam_interior/break_room)
"dNI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_medical)
"dNR" = (
/obj/effect/decal/warning_stripes{
@@ -55300,17 +42579,12 @@
"dNV" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_medical)
"dNW" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"dNX" = (
/obj/effect/decal/cleanable/blood,
@@ -55318,17 +42592,11 @@
/area/desert_dam/building/water_treatment_one/control_room)
"dNY" = (
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"dOa" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"dOc" = (
/obj/structure/disposalpipe/segment,
@@ -55368,10 +42636,7 @@
/area/desert_dam/building/medical/break_room)
"dOj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/west_wing_hallway)
"dOk" = (
/obj/item/shard,
@@ -55383,35 +42648,23 @@
/area/desert_dam/building/water_treatment_one/equipment)
"dOl" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/west_wing_hallway)
"dOm" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/west_wing_hallway)
"dOn" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/morgue)
"dOo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/break_room)
"dOp" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -55431,9 +42684,7 @@
/area/desert_dam/building/medical/break_room)
"dOt" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/medical/chemistry)
"dOu" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -55443,10 +42694,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/west_wing_hallway)
"dOv" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -55456,10 +42704,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/west_wing_hallway)
"dOw" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -55469,27 +42714,18 @@
/area/desert_dam/exterior/valley/valley_civilian)
"dOx" = (
/obj/item/alien_embryo,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/morgue)
"dOy" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/morgue)
"dOA" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/broken_bottle,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/building/medical/break_room)
"dOC" = (
/obj/structure/bed/chair{
@@ -55512,26 +42748,17 @@
/area/desert_dam/building/medical/break_room)
"dOG" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/west_wing_hallway)
"dOH" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"dOI" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/morgue)
"dOJ" = (
/obj/structure/disposalpipe/segment{
@@ -55553,10 +42780,7 @@
"dOL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/building/medical/break_room)
"dOM" = (
/obj/structure/surface/table/almayer,
@@ -55579,20 +42803,14 @@
/area/desert_dam/building/medical/break_room)
"dOS" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/chemistry)
"dOT" = (
/obj/effect/decal/cleanable/blood{
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/morgue)
"dOV" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -55602,10 +42820,7 @@
/area/desert_dam/building/medical/break_room)
"dOW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/building/medical/break_room)
"dOX" = (
/obj/effect/decal/cleanable/dirt,
@@ -55636,22 +42851,15 @@
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple,
/area/desert_dam/building/medical/chemistry)
"dPb" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/morgue)
"dPd" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner,
/area/desert_dam/building/medical/chemistry)
"dPe" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony,
@@ -55668,10 +42876,7 @@
"dPj" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/southwest,
/area/desert_dam/building/medical/chemistry)
"dPk" = (
/obj/structure/disposalpipe/segment{
@@ -55679,44 +42884,29 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/west_wing_hallway)
"dPl" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/north_wing_hallway)
"dPm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/north_wing_hallway)
"dPo" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/north_wing_hallway)
"dPr" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/west_wing_hallway)
"dPs" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -55727,10 +42917,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/desert_dam/building/medical/west_wing_hallway)
"dPt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -55740,10 +42927,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/north_wing_hallway)
"dPu" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -55754,10 +42938,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/north_wing_hallway)
"dPy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -55767,10 +42948,7 @@
dir = 4
},
/obj/item/clothing/gloves/latex,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/north_wing_hallway)
"dPz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -55782,17 +42960,11 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/north_wing_hallway)
"dPG" = (
/obj/item/trash/sosjerky,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/lobby)
"dPH" = (
/obj/structure/disposalpipe/segment{
@@ -55800,23 +42972,16 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/west_wing_hallway)
"dPI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/north_wing_hallway)
"dPJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/north_wing_hallway)
"dPK" = (
/obj/structure/pipes/vents/pump{
@@ -55824,17 +42989,13 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/north_wing_hallway)
"dPL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/raisins,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/north_wing_hallway)
"dPM" = (
/obj/structure/disposalpipe/segment{
@@ -55842,24 +43003,15 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/north_wing_hallway)
"dPN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/desert_dam/building/medical/north_wing_hallway)
"dPO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/north_wing_hallway)
"dPR" = (
/obj/structure/desertdam/decals/road_edge{
@@ -55870,43 +43022,30 @@
/area/desert_dam/exterior/valley/valley_medical)
"dPS" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_medical)
"dPT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/lobby)
"dPU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/lobby)
"dPW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/west_wing_hallway)
"dPX" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/north_wing_hallway)
"dPY" = (
/obj/effect/decal/cleanable/dirt,
@@ -55925,82 +43064,53 @@
name = "\improper Medical Lobby"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/lobby)
"dQb" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/lobby)
"dQc" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/lobby)
"dQd" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/gloves/latex,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/lobby)
"dQe" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/lobby)
"dQf" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/west_wing_hallway)
"dQg" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/desert_dam/building/medical/west_wing_hallway)
"dQh" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/healthanalyzer,
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/desert_dam/building/medical/lobby)
"dQj" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/east_wing_hallway)
"dQk" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/extinguisher,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/west_wing_hallway)
"dQl" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/primary_storage)
"dQm" = (
/obj/structure/disposalpipe/segment{
@@ -56008,10 +43118,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/east_wing_hallway)
"dQn" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -56020,26 +43127,17 @@
icon_state = "pipe-j2"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/east_wing_hallway)
"dQp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/lobby)
"dQq" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/east_wing_hallway)
"dQr" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -56053,28 +43151,19 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/east_wing_hallway)
"dQs" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/lobby)
"dQt" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/primary_storage)
"dQu" = (
/obj/structure/disposalpipe/segment{
@@ -56083,10 +43172,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/east_wing_hallway)
"dQv" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -56099,18 +43185,12 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/east_wing_hallway)
"dQw" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/east_wing_hallway)
"dQx" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -56119,10 +43199,7 @@
/obj/structure/bed/roller,
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/east_wing_hallway)
"dQy" = (
/obj/effect/decal/cleanable/blood{
@@ -56130,17 +43207,11 @@
icon_state = "gib6"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/lobby)
"dQz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/desert_dam/building/medical/lobby)
"dQA" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -56149,10 +43220,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"dQB" = (
/obj/effect/decal/cleanable/dirt,
@@ -56161,74 +43229,45 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/east_wing_hallway)
"dQC" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/desert_dam/building/medical/lobby)
"dQD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/desert_dam/building/medical/lobby)
"dQE" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/broken_bottle,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/lobby)
"dQF" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/lobby)
"dQG" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/west_wing_hallway)
"dQH" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/desert_dam/building/medical/west_wing_hallway)
"dQI" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgery_room_one)
"dQJ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/lobby)
"dQK" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/lobby)
"dQL" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
@@ -56236,33 +43275,22 @@
name = "\improper Medical Lobby"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/lobby)
"dQM" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"dQO" = (
/obj/structure/machinery/optable,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgery_room_one)
"dQP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/kepler,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/east_wing_hallway)
"dQQ" = (
/obj/structure/disposalpipe/segment{
@@ -56272,134 +43300,86 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/surgery_room_one)
"dQR" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Emergency Room"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/emergency_room)
"dQX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/emergency_room)
"dQY" = (
/obj/item/trash/used_stasis_bag,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/desert_dam/building/medical/emergency_room)
"dRc" = (
/obj/structure/pipes/standard/simple/hidden{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/emergency_room)
"dRd" = (
/obj/structure/pipes/standard/simple/hidden{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/emergency_room)
"dRe" = (
/obj/structure/pipes/standard/simple/hidden{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/emergency_room)
"dRf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/emergency_room)
"dRg" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/emergency_room)
"dRh" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/emergency_room)
"dRi" = (
/obj/item/clothing/head/surgery/blue,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/treatment_room)
"dRj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/east_wing_hallway)
"dRk" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/east_wing_hallway)
"dRl" = (
/obj/effect/decal/cleanable/blood{
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/emergency_room)
"dRm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/emergency_room)
"dRn" = (
/obj/effect/decal/medical_decals{
icon_state = "cryocell1decal"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/emergency_room)
"dRo" = (
/obj/effect/decal/medical_decals{
@@ -56407,123 +43387,78 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/desert_dam/building/medical/emergency_room)
"dRp" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/emergency_room)
"dRq" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/treatment_room)
"dRr" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/item/device/healthanalyzer,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/desert_dam/building/medical/treatment_room)
"dRs" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalleft"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/east_wing_hallway)
"dRt" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/east_wing_hallway)
"dRu" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/east_wing_hallway)
"dRv" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/east_wing_hallway)
"dRy" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/east_wing_hallway)
"dRz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/east_wing_hallway)
"dRA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/east_wing_hallway)
"dRC" = (
/obj/item/device/healthanalyzer,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/east_wing_hallway)
"dRD" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/east_wing_hallway)
"dRE" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/emergency_room)
"dRF" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/desert_dam/building/medical/emergency_room)
"dRG" = (
/obj/structure/pipes/vents/pump{
@@ -56531,10 +43466,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/emergency_room)
"dRH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56542,20 +43474,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/desert_dam/building/medical/emergency_room)
"dRI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/emergency_room)
"dRJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56565,10 +43491,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/treatment_room)
"dRL" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56578,10 +43501,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/treatment_room)
"dRM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56591,10 +43511,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"dRN" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -56602,10 +43519,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"dRO" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56615,10 +43529,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/treatment_room)
"dRP" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56628,9 +43539,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/treatment_room)
"dRQ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
@@ -56644,9 +43553,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/treatment_room)
"dRR" = (
/obj/effect/decal/medical_decals{
@@ -56659,9 +43566,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"dRS" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -56669,9 +43574,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"dRT" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56681,9 +43584,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"dRV" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56694,9 +43595,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"dRX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56708,9 +43607,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/broken_bottle,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"dRY" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56721,10 +43618,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/east_wing_hallway)
"dRZ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -56735,10 +43629,7 @@
icon_state = "pipe-j2"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/east_wing_hallway)
"dSa" = (
/obj/structure/disposalpipe/segment{
@@ -56748,9 +43639,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"dSb" = (
/obj/structure/pipes/vents/pump{
@@ -56760,18 +43649,14 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"dSc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"dSd" = (
/obj/structure/disposalpipe/segment{
@@ -56779,86 +43664,55 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"dSe" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/desert_dam/building/medical/emergency_room)
"dSf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/emergency_room)
"dSg" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/desert_dam/building/medical/emergency_room)
"dSh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/desert_dam/building/medical/emergency_room)
"dSi" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/gloves/latex,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/desert_dam/building/medical/emergency_room)
"dSj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/emergency_room)
"dSk" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/desert_dam/building/medical/emergency_room)
"dSl" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/treatment_room)
"dSm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/desert_dam/building/medical/treatment_room)
"dSn" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/east_wing_hallway)
"dSo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/east_wing_hallway)
"dSq" = (
/obj/effect/decal/cleanable/blood{
@@ -56867,135 +43721,91 @@
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dSr" = (
/obj/item/frame/table,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dSs" = (
/obj/structure/machinery/medical_pod/bodyscanner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/emergency_room)
"dSt" = (
/obj/structure/machinery/body_scanconsole,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/emergency_room)
"dSu" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/desert_dam/building/medical/emergency_room)
"dSv" = (
/obj/structure/surface/table/reinforced,
/obj/item/roller,
/obj/item/roller,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/emergency_room)
"dSw" = (
/obj/structure/machinery/medical_pod/sleeper,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/emergency_room)
"dSx" = (
/obj/structure/machinery/sleep_console,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/emergency_room)
"dSy" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/emergency_room)
"dSB" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/virology_wing)
"dSD" = (
/obj/item/trash/semki,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/treatment_room)
"dSF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/virology_wing)
"dSG" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/building/medical/virology_isolation)
"dSH" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/virology_wing)
"dSO" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Containment Pen"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/virology_isolation)
"dSS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/virology_isolation)
"dSU" = (
/obj/item/clothing/gloves/latex,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/virology_wing)
"dSV" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -57003,47 +43813,33 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/virology_wing)
"dSW" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 2;
name = "\improper Containment Pen"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/medical/virology_wing)
"dSX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_isolation)
"dSY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/item/clothing/glasses/meson,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_wing)
"dSZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"dTa" = (
/obj/structure/machinery/chem_master,
@@ -57051,56 +43847,40 @@
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"dTb" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/broken_bottle,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_isolation)
"dTc" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/virology_isolation)
"dTd" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/virology_isolation)
"dTf" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/virology_isolation)
"dTg" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 2
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/virology_isolation)
"dTh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/virology_wing)
"dTi" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
@@ -57108,25 +43888,17 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/virology_wing)
"dTj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"dTk" = (
/obj/structure/bed/stool,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/virology_wing)
"dTl" = (
/obj/structure/window/framed/colony,
@@ -57135,39 +43907,26 @@
/area/desert_dam/building/medical/virology_isolation)
"dTm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/desert_dam/building/medical/virology_wing)
"dTn" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/virology_wing)
"dTo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/desert_dam/building/medical/virology_wing)
"dTp" = (
/obj/item/trash/sosjerky,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/desert_dam/building/medical/virology_wing)
"dTs" = (
/turf/closed/wall/rock/orange,
/area/desert_dam/exterior/rock)
"dTv" = (
/obj/structure/prop/dam/large_boulder/boulder2,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/valley_civilian)
"dTx" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -57181,17 +43940,13 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"dTB" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"dTH" = (
/obj/structure/desertdam/decals/road_edge{
@@ -57199,41 +43954,25 @@
},
/turf/open/asphalt,
/area/desert_dam/exterior/river/riverside_south)
-"dTI" = (
-/turf/open/desert/rock,
-/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"dTK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_hydro)
"dTL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_hydro)
"dTP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dTQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/desert_dam/building/hydroponics/hydroponics)
"dTX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dTY" = (
/obj/effect/decal/cleanable/dirt,
@@ -57242,10 +43981,7 @@
"dTZ" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUa" = (
/obj/structure/disposalpipe/segment{
@@ -57253,27 +43989,19 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUb" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUc" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Kitchen"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dUd" = (
/obj/structure/disposalpipe/segment,
@@ -57284,9 +44012,7 @@
/obj/structure/machinery/door/poddoor/shutters{
dir = 2
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dUf" = (
/obj/structure/surface/table/reinforced,
@@ -57294,149 +44020,98 @@
/obj/structure/machinery/door/poddoor/shutters{
dir = 2
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dUg" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/desert_dam/building/hydroponics/hydroponics)
"dUh" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/desert_dam/building/hydroponics/hydroponics)
"dUi" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/desert_dam/building/hydroponics/hydroponics)
"dUj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/desert_dam/building/hydroponics/hydroponics)
"dUm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/desert_dam/building/hydroponics/hydroponics)
"dUn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUo" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/desert_dam/building/hydroponics/hydroponics)
"dUp" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUq" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dUr" = (
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dUt" = (
/obj/structure/window/framed/colony,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dUu" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/window/framed/colony,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dUv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/desert_dam/building/hydroponics/hydroponics)
"dUw" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/desert_dam/building/hydroponics/hydroponics)
"dUx" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/desert_dam/building/hydroponics/hydroponics)
"dUz" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/interior/caves/central_caves)
"dUA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUB" = (
/obj/structure/disposalpipe/segment{
@@ -57444,10 +44119,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUC" = (
/obj/structure/disposalpipe/segment{
@@ -57456,10 +44128,7 @@
/obj/item/seeds/soyaseed,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUD" = (
/obj/structure/disposalpipe/junction{
@@ -57467,18 +44136,12 @@
icon_state = "pipe-j2"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUF" = (
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUG" = (
/obj/structure/disposalpipe/segment{
@@ -57486,64 +44149,43 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/desert_dam/building/hydroponics/hydroponics)
"dUI" = (
/obj/structure/pipes/vents/pump{
dir = 8;
id_tag = "mining_outpost_pump"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUJ" = (
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dUK" = (
/obj/effect/decal/cleanable/vomit,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dUL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_hydro)
"dUM" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_hydro)
"dUN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_hydro)
"dUO" = (
/obj/structure/desertdam/decals/road_edge{
@@ -57585,16 +44227,11 @@
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/cookie,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dVm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_hydro)
"dVn" = (
/obj/structure/desertdam/decals/road_edge{
@@ -57610,24 +44247,16 @@
/obj/item/reagent_container/food/snacks/bun,
/obj/item/reagent_container/food/snacks/cheesewedge,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dVp" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_hydro)
"dVr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/lobby)
"dVs" = (
/obj/structure/surface/table,
@@ -57645,10 +44274,7 @@
"dVu" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/lobby)
"dVv" = (
/obj/structure/surface/table,
@@ -57657,19 +44283,13 @@
/area/desert_dam/building/water_treatment_one/control_room)
"dVw" = (
/obj/effect/decal/cleanable/blood/gibs/body,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"dVx" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dVy" = (
/obj/effect/decal/cleanable/blood{
@@ -57677,10 +44297,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"dVz" = (
/obj/structure/machinery/door_control{
@@ -57735,10 +44352,7 @@
/obj/effect/landmark/corpsespawner/engineer,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"dVE" = (
/obj/effect/decal/cleanable/dirt,
@@ -57753,34 +44367,22 @@
/area/desert_dam/building/water_treatment_one/garage)
"dVG" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/desert_dam/building/hydroponics/hydroponics)
"dVH" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"dVI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"dVJ" = (
/obj/structure/barricade/wooden,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"dVK" = (
/obj/effect/decal/warning_stripes{
@@ -57792,10 +44394,7 @@
/area/desert_dam/building/water_treatment_one/garage)
"dVL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/garage)
"dVM" = (
/obj/structure/disposalpipe/segment{
@@ -57803,10 +44402,7 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dVN" = (
/obj/structure/machinery/power/apc{
@@ -57820,10 +44416,7 @@
"dVO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"dVP" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -57832,38 +44425,26 @@
"dVR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dVS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/garage)
"dVT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"dVU" = (
/obj/structure/disposalpipe/junction,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"dVY" = (
/obj/structure/disposalpipe/segment{
@@ -57871,10 +44452,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"dVZ" = (
/obj/structure/disposalpipe/segment{
@@ -57884,26 +44462,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dWa" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"dWd" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"dWe" = (
/obj/effect/decal/cleanable/dirt,
@@ -57911,10 +44480,7 @@
/obj/effect/decal/cleanable/blood{
icon_state = "xgib4"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"dWf" = (
/obj/effect/decal/warning_stripes{
@@ -57955,10 +44521,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dWk" = (
/obj/structure/disposalpipe/segment{
@@ -57969,10 +44532,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dWl" = (
/obj/structure/disposalpipe/segment{
@@ -57981,10 +44541,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dWm" = (
/obj/structure/disposalpipe/segment{
@@ -57993,10 +44550,7 @@
/obj/item/seeds/riceseed,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"dWn" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -58009,10 +44563,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dWo" = (
/obj/structure/disposalpipe/segment{
@@ -58022,29 +44573,20 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dWp" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dWq" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"dWr" = (
/obj/effect/decal/cleanable/dirt,
@@ -58057,10 +44599,7 @@
dir = 8;
id_tag = "mining_outpost_pump"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"dWu" = (
/obj/structure/surface/rack,
@@ -58072,18 +44611,13 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/water_treatment_one/breakroom)
"dWy" = (
/obj/structure/surface/rack,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/floodgate_control)
"dWz" = (
/obj/structure/surface/table,
@@ -58099,38 +44633,25 @@
/obj/item/reagent_container/food/snacks/bun,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dWB" = (
/obj/item/shard/shrapnel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"dWC" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/water_treatment_one/breakroom)
"dWE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/water_treatment_one/breakroom)
"dWF" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/floodgate_control)
"dWG" = (
/obj/structure/surface/table,
@@ -58139,9 +44660,7 @@
/area/desert_dam/building/water_treatment_one/floodgate_control)
"dWH" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"dWJ" = (
/obj/structure/pipes/vents/pump,
@@ -58160,49 +44679,37 @@
/area/desert_dam/building/water_treatment_one/floodgate_control)
"dWM" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"dWN" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
/obj/item/tool/pen,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/water_treatment_one/breakroom)
"dWO" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dWP" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/building/water_treatment_one/breakroom)
"dWQ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Mess Hall"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"dWT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_civilian)
"dWV" = (
/obj/structure/desertdam/decals/road_edge{
@@ -58316,27 +44823,21 @@
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"dXr" = (
/obj/structure/barricade/wooden{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_civilian)
"dXs" = (
/obj/structure/barricade/wooden{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_civilian)
"dXt" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
@@ -58346,9 +44847,7 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"dXu" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -58357,15 +44856,11 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"dXv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_civilian)
"dXw" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -58374,9 +44869,7 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"dXx" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -58409,16 +44902,11 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"dXC" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"dXD" = (
/obj/effect/decal/cleanable/dirt,
@@ -58436,9 +44924,7 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/valley_civilian)
"dXI" = (
/obj/structure/pipes/vents/pump{
@@ -58494,29 +44980,20 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"dXY" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_northwing)
"dXZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_northwing)
"dYa" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/desert_dam/building/dorms/hallway_northwing)
"dYb" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -58525,18 +45002,14 @@
/area/desert_dam/building/dorms/hallway_northwing)
"dYc" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner,
/area/desert_dam/building/dorms/hallway_northwing)
"dYi" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dYk" = (
/obj/effect/decal/cleanable/dirt,
@@ -58544,55 +45017,38 @@
/area/desert_dam/building/dorms/hallway_westwing)
"dYm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dYx" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Showers"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/hallway_westwing)
"dYy" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/restroom)
"dYz" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dYC" = (
/obj/structure/surface/table,
/obj/item/device/radio,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"dYD" = (
/obj/structure/surface/table,
/obj/item/ashtray/bronze,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"dYI" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"dYK" = (
/obj/item/trash/boonie,
@@ -58608,24 +45064,16 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/desert_dam/building/dorms/hallway_westwing)
"dYP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dYR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/desert_dam/building/dorms/hallway_westwing)
"dYS" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -58634,29 +45082,20 @@
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"dYX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_westwing)
"dZf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_northwing)
"dZk" = (
/obj/item/stack/sheet/wood,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/valley_civilian)
"dZl" = (
/obj/structure/flora/grass/desert/lightgrass_1,
@@ -58687,29 +45126,21 @@
"dZz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_westwing)
"dZE" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"dZG" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"dZH" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"dZI" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -58717,74 +45148,47 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"dZL" = (
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/desert_dam/building/dorms/pool)
"dZM" = (
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/desert_dam/building/dorms/pool)
"dZN" = (
-/turf/open/gm/river{
- color = "#990000";
- name = "pool"
- },
+/turf/open/gm/river/darkred_pool,
/area/desert_dam/building/dorms/pool)
"dZO" = (
/obj/item/toy/inflatable_duck,
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/desert_dam/building/dorms/pool)
"dZR" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"dZS" = (
/obj/structure/closet/boxinggloves,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"dZT" = (
/obj/structure/closet/athletic_mixed,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"dZU" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/desert_dam/building/dorms/hallway_westwing)
"dZX" = (
/obj/item/stool,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"dZY" = (
/obj/structure/surface/table,
/obj/item/trash/plate,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/desert_dam/building/dorms/hallway_westwing)
"ead" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -58794,19 +45198,13 @@
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/lobby)
"eag" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/lobby)
"eak" = (
/obj/structure/pipes/vents/pump,
@@ -58819,10 +45217,7 @@
/area/desert_dam/building/dorms/hallway_westwing)
"eau" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/garage)
"eav" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -58832,43 +45227,30 @@
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"eaz" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"eaA" = (
/obj/item/stool,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"eaC" = (
/obj/structure/surface/table/gamblingtable,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"eaG" = (
/obj/structure/surface/table/woodentable,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"eaH" = (
/obj/structure/surface/table/woodentable,
/obj/structure/machinery/computer/emails,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"eaK" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -58885,33 +45267,22 @@
/obj/structure/mirror{
pixel_x = -28
},
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"eaO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"eaP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_westwing)
"eaQ" = (
/obj/item/tool/hatchet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_westwing)
"eaT" = (
/obj/structure/disposalpipe/segment{
@@ -58920,16 +45291,11 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/garage)
"eaU" = (
/obj/structure/machinery/light,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_hydro)
"eaV" = (
/obj/structure/machinery/light{
@@ -58947,15 +45313,11 @@
/area/desert_dam/building/water_treatment_one/hallway)
"eaX" = (
/obj/structure/machinery/light,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/valley_hydro)
"eba" = (
/obj/structure/machinery/light,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_hydro)
"ebb" = (
/obj/effect/decal/cleanable/dirt,
@@ -58977,57 +45339,38 @@
dir = 8
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/water_treatment_one/hallway)
"ebi" = (
/obj/effect/landmark/corpsespawner/security/marshal,
-/turf/open/gm/river{
- color = "#990000";
- name = "pool"
- },
+/turf/open/gm/river/darkred_pool,
/area/desert_dam/building/dorms/pool)
"ebj" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_westwing)
"ebk" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/desert_dam/building/dorms/hallway_westwing)
"ebn" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"ebo" = (
/obj/item/weapon/gun/revolver/small,
-/turf/open/floor/prison{
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull,
/area/desert_dam/building/dorms/pool)
"ebp" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/desert_dam/building/dorms/pool)
"ebq" = (
/obj/structure/surface/table,
/obj/item/device/radio,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/desert_dam/building/dorms/pool)
"ebs" = (
/turf/closed/wall/hangar{
@@ -59047,10 +45390,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/desert_dam/building/water_treatment_one/lobby)
"ebv" = (
/obj/structure/machinery/light{
@@ -59077,10 +45417,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"ebA" = (
/obj/structure/surface/table,
@@ -59110,59 +45447,43 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/desert_dam/building/water_treatment_one/breakroom)
"ebF" = (
/obj/structure/closet/l3closet/virology,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/equipment)
"ebG" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"ebJ" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"ebK" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/desert_dam/building/water_treatment_one/breakroom)
"ebL" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"ebM" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/equipment)
"ebN" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -59172,9 +45493,7 @@
/area/desert_dam/exterior/valley/valley_cargo)
"ebO" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner,
/area/desert_dam/building/water_treatment_one/breakroom)
"ebP" = (
/obj/structure/machinery/light{
@@ -59189,16 +45508,11 @@
/area/desert_dam/interior/dam_interior/control_room)
"ebT" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"ebU" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/substation/southwest)
"ebW" = (
/obj/structure/disposalpipe/junction{
@@ -59208,10 +45522,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"ebZ" = (
/obj/structure/window/framed/hangar/reinforced,
@@ -59223,20 +45534,14 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/garage)
"ecf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/garage)
"ecg" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -59246,27 +45551,18 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"ech" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"eci" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"ecj" = (
/obj/structure/disposalpipe/segment{
@@ -59277,10 +45573,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"eck" = (
/obj/structure/disposalpipe/junction{
@@ -59289,10 +45582,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"ecl" = (
/obj/structure/disposalpipe/segment{
@@ -59301,10 +45591,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"ecm" = (
/obj/structure/disposalpipe/segment{
@@ -59314,10 +45601,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"ecn" = (
/obj/structure/disposalpipe/segment{
@@ -59328,10 +45612,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"eco" = (
/obj/structure/disposalpipe/segment{
@@ -59340,10 +45621,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"ecp" = (
/obj/structure/disposalpipe/segment{
@@ -59353,10 +45631,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"ecq" = (
/obj/structure/disposalpipe/segment{
@@ -59367,10 +45642,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"ecr" = (
/obj/structure/disposalpipe/segment{
@@ -59379,10 +45651,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"ect" = (
/obj/structure/disposalpipe/segment{
@@ -59391,10 +45660,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"ecu" = (
/obj/structure/disposalpipe/segment{
@@ -59405,35 +45671,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"ecv" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"ecw" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/garage)
"ecx" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"ecy" = (
/obj/structure/machinery/light,
@@ -59453,10 +45707,7 @@
"ecB" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/breakroom)
"ecD" = (
/obj/structure/disposalpipe/segment{
@@ -59465,74 +45716,54 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/water_treatment_one/breakroom)
"ecE" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/equipment)
"ecH" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"ecI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/water_treatment_one/breakroom)
"ecK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/water_treatment_one/breakroom)
"ecL" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/equipment)
"ecM" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"ecN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"ecO" = (
/obj/structure/pipes/vents/pump{
dir = 8;
id_tag = "mining_outpost_pump"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"edo" = (
/obj/effect/decal/warning_stripes{
@@ -59552,10 +45783,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/lobby)
"edK" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -59563,10 +45791,7 @@
name = "\improper Office"
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"edL" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -59575,17 +45800,11 @@
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"edM" = (
/obj/structure/prop/dam/large_boulder/boulder1,
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_civilian)
"edO" = (
/obj/structure/window/framed/hangar,
@@ -59597,20 +45816,14 @@
name = "\improper Treatment Checkpoint"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/lobby)
"edQ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "\improper Water Treatment"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"edR" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -59623,29 +45836,20 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/control_room)
"edT" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Treatment Breakroom"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/breakroom)
"edU" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Decontamination"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/hallway)
"edY" = (
/obj/structure/window/framed/hangar,
@@ -59658,9 +45862,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"eee" = (
/obj/structure/window/framed/hangar,
@@ -59686,10 +45888,7 @@
dir = 2;
name = "\improper Floodgate Controlroom"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/floodgate_control)
"ees" = (
/obj/effect/decal/warning_stripes{
@@ -59704,56 +45903,40 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Treatment Breakroom"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/breakroom)
"eev" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "\improper Decontamination"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/equipment)
"eez" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Showers"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/water_treatment_one/breakroom)
"eeC" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2;
name = "\improper Restroom"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"eeD" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2;
name = "\improper Treatment Garage"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/water_treatment_one/garage)
"eeE" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Water Treatment"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"eeK" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -59784,10 +45967,7 @@
name = "\improper Hydroponics"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"eeR" = (
/obj/effect/decal/warning_stripes{
@@ -59823,9 +46003,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"eeV" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -59861,9 +46039,7 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Toilet Unit"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"eft" = (
/turf/open/asphalt,
@@ -59877,10 +46053,7 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics)
"ehg" = (
/obj/structure/desertdam/decals/road_edge{
@@ -59894,9 +46067,7 @@
/area/desert_dam/exterior/valley/south_valley_dam)
"ehx" = (
/obj/structure/fence,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_medical)
"ehz" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -59905,132 +46076,90 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_medical)
"ehB" = (
-/turf/open/floor/coagulation{
- icon_state = "0,8"
- },
+/turf/open/floor/coagulation/icon0_8,
/area/desert_dam/building/water_treatment_one/purification)
"ehC" = (
-/turf/open/floor/coagulation{
- icon_state = "4,8"
- },
+/turf/open/floor/coagulation/icon4_8,
/area/desert_dam/building/water_treatment_one/purification)
"ehD" = (
/obj/structure/filtration/machine_64x96{
icon_state = "sedimentation_0"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"ehE" = (
/obj/structure/filtration/machine_96x96{
icon_state = "sedimentation_A_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"ehF" = (
/obj/structure/filtration/machine_64x128{
icon_state = "filtration_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"ehG" = (
/obj/structure/filtration/machine_32x32{
icon_state = "filtration_segment_A_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"ehH" = (
/obj/structure/filtration/machine_32x32{
icon_state = "filtration_segment_A_0"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"ehI" = (
/obj/structure/filtration/machine_32x32{
icon_state = "filtration_catwalk"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"ehJ" = (
/obj/structure/filtration/machine_32x32{
icon_state = "filtration_segment_B_0"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"ehK" = (
/obj/structure/filtration/machine_32x32{
icon_state = "filtration_segment_B_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"ehL" = (
/obj/structure/filtration/machine_64x96{
icon_state = "filtration_machine_A_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"ehM" = (
/obj/structure/filtration/machine_64x96{
icon_state = "filtration_machine_B_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"ehN" = (
-/turf/open/floor/coagulation{
- icon_state = "8,8"
- },
+/turf/open/floor/coagulation/icon8_8,
/area/desert_dam/building/water_treatment_one/purification)
"ehO" = (
/obj/structure/filtration/collector_pipes{
icon_state = "lower_1"
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/desert_dam/building/water_treatment_one/purification)
"ehP" = (
/obj/effect/blocker/toxic_water/Group_1,
/turf/open/gm/river/desert/shallow,
/area/desert_dam/building/water_treatment_one/purification)
"ehQ" = (
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/desert_dam/building/water_treatment_one/purification)
"ehR" = (
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/desert_dam/building/water_treatment_one/purification)
"ehS" = (
/obj/structure/filtration/collector_pipes{
@@ -60042,24 +46171,16 @@
/area/desert_dam/building/water_treatment_one/purification)
"ehT" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/desert_dam/building/water_treatment_one/purification)
"ehU" = (
-/turf/open/floor/coagulation{
- icon_state = "0,0"
- },
+/turf/open/floor/coagulation/icon0_0,
/area/desert_dam/building/water_treatment_one/purification)
"ehV" = (
-/turf/open/floor/coagulation{
- icon_state = "2,0"
- },
+/turf/open/floor/coagulation/icon2_0,
/area/desert_dam/building/water_treatment_one/purification)
"ehW" = (
-/turf/open/floor/coagulation{
- icon_state = "8,0"
- },
+/turf/open/floor/coagulation/icon8_0,
/area/desert_dam/building/water_treatment_one/purification)
"ehX" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -60072,71 +46193,50 @@
/obj/structure/filtration/machine_96x96{
icon_state = "disinfection"
},
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/desert_dam/building/water_treatment_one/purification)
"eia" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/floor/coagulation{
- icon_state = "8,8"
- },
+/turf/open/floor/coagulation/icon8_8,
/area/desert_dam/building/water_treatment_one/purification)
"eib" = (
/obj/effect/blocker/toxic_water/Group_1/delay,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"eic" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"eid" = (
/obj/structure/filtration/machine_64x96{
icon_state = "sedimentation_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/water_treatment_one/purification)
"eiq" = (
/obj/structure/filtration/machine_96x96{
icon_state = "distribution"
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"ejR" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"ekg" = (
/obj/effect/decal/remains/xeno{
pixel_x = 1;
pixel_y = 31
},
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/interior/caves/temple)
"ekH" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/bar_valley_dam)
"ekN" = (
/obj/structure/desertdam/decals/road_edge{
@@ -60148,9 +46248,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"eqo" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -60164,16 +46262,10 @@
/obj/item/tool/surgery/FixOVein,
/obj/item/stack/nanopaste,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/surgery_room_one)
"erF" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/landing_pad_two)
"esG" = (
/obj/effect/decal/warning_stripes{
@@ -60188,9 +46280,7 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/telecomm/lz1_valley)
"euG" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/south_valley_dam)
"eyL" = (
/turf/open/gm/empty,
@@ -60204,10 +46294,7 @@
"eBZ" = (
/obj/item/storage/fancy/vials/random,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"eCk" = (
/obj/structure/desertdam/decals/road_edge{
@@ -60230,9 +46317,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/bar_valley_dam)
"eJh" = (
/obj/structure/flora/grass/tallgrass/desert,
@@ -60240,16 +46325,11 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"eKN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/desert_dam/interior/dam_interior/hanger)
"eNU" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"eRn" = (
/obj/structure/desertdam/decals/road_edge{
@@ -60272,10 +46352,7 @@
"eTi" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/security/prison)
"eVk" = (
/obj/effect/decal/warning_stripes{
@@ -60287,9 +46364,7 @@
"eVo" = (
/obj/structure/closet/secure_closet/brig,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/building/security/deathrow)
"eVJ" = (
/obj/structure/window/framed/chigusa,
@@ -60300,16 +46375,12 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_hydro)
"eWn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_northwing)
"eXM" = (
/obj/effect/decal/cleanable/dirt,
@@ -60325,18 +46396,14 @@
/area/desert_dam/building/medical/CMO)
"eYK" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"eYP" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_civilian)
"eZC" = (
/obj/structure/desertdam/decals/road_edge{
@@ -60376,9 +46443,7 @@
/obj/effect/landmark/nightmare{
insert_tag = "uppcrash-supply"
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"fcE" = (
/obj/structure/flora/bush/desert{
@@ -60390,9 +46455,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/exterior/telecomm/lz1_south)
"fdk" = (
/obj/structure/desertdam/decals/road_edge{
@@ -60401,9 +46464,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
"feU" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_crashsite)
"fgo" = (
/obj/structure/platform/mineral/sandstone/runed{
@@ -60429,23 +46490,16 @@
"flj" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"flq" = (
/obj/structure/closet/l3closet/virology,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_wing)
"flu" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_crashsite)
"fmP" = (
/turf/open/gm/empty,
@@ -60458,9 +46512,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"fpu" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/south_valley_dam)
"fpJ" = (
/obj/structure/disposalpipe/segment{
@@ -60469,44 +46521,30 @@
/turf/closed/wall/rock/orange,
/area/desert_dam/exterior/rock)
"fqj" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/landing_pad_one)
"fqt" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/telecomm/lz2_storage)
"fqy" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"fqI" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"fsK" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"fsP" = (
/obj/structure/surface/table/gamblingtable,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"fxs" = (
/obj/structure/desertdam/decals/road_edge{
@@ -60515,17 +46553,11 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"fyq" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/south_valley_dam)
"fyO" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/garage)
"fBF" = (
/obj/structure/desertdam/decals/road_edge{
@@ -60563,14 +46595,10 @@
/obj/structure/prop/dam/boulder/boulder2{
desc = "A large rock. It looks very hard to get around."
},
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/caves/temple)
"fHg" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/south_valley_dam)
"fHr" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -60578,31 +46606,21 @@
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_crashsite)
"fHJ" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"fHX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/warehouse/loading)
"fNw" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/bar_valley_dam)
"fPc" = (
/turf/closed/wall/r_wall/bunker{
@@ -60611,10 +46629,7 @@
/area/desert_dam/interior/dam_interior/garage)
"fPp" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"fRy" = (
/obj/structure/stairs,
@@ -60622,9 +46637,7 @@
dir = 4
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_crashsite)
"fSc" = (
/obj/structure/flora/grass/desert/lightgrass_12,
@@ -60636,17 +46649,13 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"fUO" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_hydro)
"fYz" = (
/obj/structure/flora/grass/tallgrass/desert/corner,
@@ -60655,27 +46664,20 @@
"fYS" = (
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/cafeteria/loading)
"fZd" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/tech_storage)
"fZj" = (
/obj/effect/landmark/static_comms/net_one,
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/telecomm/lz1_valley)
"gab" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -60683,35 +46685,25 @@
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"gak" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/desert_dam/building/medical/emergency_room)
"gca" = (
/obj/structure/fence,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"gdW" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"gea" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/bar_valley_dam)
"ggn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"ghz" = (
/obj/effect/decal/cleanable/dirt,
@@ -60719,17 +46711,12 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"gls" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/restroom)
"glx" = (
/obj/effect/decal/warning_stripes{
@@ -60742,18 +46729,13 @@
/area/desert_dam/exterior/valley/valley_hydro)
"glz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/desert_dam/interior/dam_interior/garage)
"glD" = (
/obj/structure/surface/table/reinforced/prison{
color = "#6b675e"
},
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/caves/temple)
"glO" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -60762,10 +46744,7 @@
"gmk" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"gmZ" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -60783,23 +46762,17 @@
dir = 1
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"goq" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"goY" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/mars_cave{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars_cave/mars_dirt_5,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"gpi" = (
/obj/structure/prop/dam/large_boulder/boulder1,
@@ -60807,16 +46780,11 @@
/area/desert_dam/exterior/valley/valley_hydro)
"gpZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/caves/temple)
"grk" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/interior/caves/central_caves)
"grQ" = (
/obj/structure/surface/table,
@@ -60835,9 +46803,7 @@
dir = 5
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/central_caves)
"gxo" = (
/obj/structure/surface/table,
@@ -60853,10 +46819,7 @@
pixel_x = -4;
pixel_y = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/desert_dam/interior/dam_interior/garage)
"gBQ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -60871,9 +46834,7 @@
"gBV" = (
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"gCg" = (
/obj/effect/decal/cleanable/liquid_fuel,
@@ -60895,9 +46856,7 @@
/area/desert_dam/exterior/valley/valley_hydro)
"gFr" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"gGC" = (
/turf/closed/wall/mineral/sandstone/runed/decor,
@@ -60905,9 +46864,7 @@
"gIA" = (
/obj/structure/toilet,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/dam_interior/break_room)
"gIS" = (
/obj/structure/stairs/perspective{
@@ -60915,41 +46872,28 @@
dir = 5;
icon_state = "p_stair_full"
},
-/turf/open/desert/rock/deep{
- icon_state = "rock4"
- },
+/turf/open/desert/rock/deep/rock4,
/area/desert_dam/interior/caves/temple)
"gKm" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_civilian)
"gKn" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/caves/temple)
"gKo" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/exterior/valley/valley_wilderness)
"gLb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{
dir = 2
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/garage)
"gLg" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/landing_pad_two)
"gLl" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -60963,16 +46907,12 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_telecoms)
"gNq" = (
/obj/structure/surface/table,
/obj/item/tool/pen,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"gOE" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -60984,9 +46924,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"gRC" = (
/obj/structure/machinery/power/apc{
@@ -61002,23 +46940,16 @@
/area/desert_dam/exterior/telecomm/lz1_south)
"gTW" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/interior/caves/central_caves)
"gUh" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"gUz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/substation/northwest)
"gVm" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -61050,9 +46981,7 @@
/obj/effect/decal/remains/xeno{
pixel_x = 31
},
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_crashsite)
"gYP" = (
/obj/effect/decal/cleanable/dirt,
@@ -61061,55 +46990,39 @@
/turf/open/floor/prison,
/area/desert_dam/building/dorms/hallway_westwing)
"gYT" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/exterior/telecomm/lz1_valley)
"gYU" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/telecomm/lz2_storage)
"hcP" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"het" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/objective,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/desert_dam/building/water_treatment_one/lobby)
"heR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"hhj" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/south_valley_dam)
"hiN" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"hjm" = (
/obj/effect/decal/warning_stripes{
@@ -61125,10 +47038,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/landing_pad_two)
"hjW" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/landing_pad_two)
"hmA" = (
/obj/structure/surface/table/almayer,
@@ -61137,9 +47047,7 @@
/obj/item/folder/black,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/CE_office)
"hnJ" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -61154,9 +47062,7 @@
/turf/open/floor/sandstone/runed,
/area/desert_dam/interior/caves/temple)
"hpw" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/south_valley_dam)
"hpL" = (
/obj/structure/platform/mineral/sandstone/runed{
@@ -61166,19 +47072,13 @@
/turf/open/floor/sandstone/runed,
/area/desert_dam/interior/caves/temple)
"hqp" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_hydro)
"hqT" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/south_valley_dam)
"htc" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/landing_pad_two)
"hvD" = (
/obj/structure/shuttle/diagonal{
@@ -61187,23 +47087,16 @@
/turf/open/shuttle/can_surgery/red,
/area/desert_dam/interior/dam_interior/hanger)
"hvG" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_telecoms)
"hwc" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/south_valley_dam)
"hxj" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_hydro)
"hyH" = (
/obj/structure/tunnel,
@@ -61213,9 +47106,7 @@
/obj/effect/decal/sand_overlay/sand2,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"hzC" = (
/obj/effect/decal/cleanable/dirt,
@@ -61229,9 +47120,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/garage)
"hAv" = (
/obj/item/stack/sheet/mineral/sandstone{
@@ -61251,9 +47140,7 @@
/turf/open/asphalt,
/area/desert_dam/building/hydroponics/hydroponics_loading)
"hBr" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_hydro)
"hCf" = (
/turf/open/asphalt/cement_sunbleached,
@@ -61283,9 +47170,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_civilian)
"hMc" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_telecoms)
"hOt" = (
/obj/structure/computerframe,
@@ -61294,22 +47179,15 @@
"hOv" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_westwing)
"hOA" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"hOK" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_hydro)
"hPB" = (
/obj/structure/desertdam/decals/road_edge{
@@ -61319,17 +47197,12 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_medical)
"hQM" = (
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/caves/temple)
"hRU" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"hTf" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -61339,17 +47212,13 @@
/area/desert_dam/exterior/landing_pad_two)
"hTg" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/church)
"hTr" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"hVs" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -61369,10 +47238,7 @@
dir = 4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/desert_dam/interior/dam_interior/garage)
"ibl" = (
/obj/effect/landmark/static_comms/net_one,
@@ -61385,10 +47251,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_medical)
"ibU" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_hydro)
"ick" = (
/obj/effect/decal/warning_stripes{
@@ -61410,16 +47273,11 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_medical)
"idG" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/telecomm/lz2_storage)
"ieU" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"ifh" = (
/obj/structure/surface/table/reinforced,
@@ -61428,16 +47286,12 @@
pixel_y = 32
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"ifB" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/building/security/observation)
"igf" = (
/obj/structure/desertdam/decals/road_edge{
@@ -61449,18 +47303,12 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"ign" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/landing_pad_one)
"ihT" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/warehouse/breakroom)
"iiQ" = (
/obj/structure/surface/table/reinforced,
@@ -61468,9 +47316,7 @@
/obj/item/roller,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/desert_dam/building/medical/emergency_room)
"iiY" = (
/obj/structure/machinery/power/reactor/colony,
@@ -61481,15 +47327,11 @@
/area/desert_dam/interior/dam_interior/engine_room)
"ijc" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/tech_storage)
"ilq" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"ioA" = (
/turf/open/gm/river/desert/shallow,
@@ -61520,40 +47362,28 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_hydro)
"isz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"isZ" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"iuk" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"iuY" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_northwing)
"ivd" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -61573,26 +47403,17 @@
/obj/structure/machinery/door/airlock/sandstone/runed{
name = "Strange Temple"
},
-/turf/open/desert/rock/deep{
- icon_state = "rock4"
- },
+/turf/open/desert/rock/deep/rock4,
/area/desert_dam/interior/caves/temple)
"ivQ" = (
/obj/structure/xenoautopsy/tank/broken,
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/caves/temple)
"iwh" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/south_valley_dam)
"iwy" = (
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/interior/caves/temple)
"ixe" = (
/obj/structure/machinery/light{
@@ -61602,10 +47423,7 @@
dir = 1
},
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/desert_dam/interior/dam_interior/garage)
"iAf" = (
/obj/effect/decal/warning_stripes{
@@ -61615,29 +47433,19 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_medical)
"iCw" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/garage)
"iCE" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_wilderness)
"iHF" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/landing_pad_two)
"iIB" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"iJC" = (
/obj/structure/surface/rack,
@@ -61654,10 +47462,7 @@
name = "\improper Garage Breakroom"
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southeast,
/area/desert_dam/interior/dam_interior/garage)
"iNF" = (
/turf/open/desert/desert_shore/shore_edge1,
@@ -61670,26 +47475,20 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_hydro)
"iRU" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"iTi" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"iTX" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -61713,9 +47512,7 @@
"iXt" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"iYy" = (
/obj/structure/surface/table,
@@ -61724,27 +47521,20 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown3"
- },
+/turf/open/floor/prison/darkbrown3/east,
/area/desert_dam/interior/dam_interior/disposals)
"iYI" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/bar_valley_dam)
"iZY" = (
/obj/structure/flora/grass/desert/heavygrass_3,
/turf/open/desert/dirt,
/area/desert_dam/exterior/landing_pad_one)
"jbx" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/bar_valley_dam)
"jcb" = (
/obj/structure/flora/grass/desert/lightgrass_6,
@@ -61753,10 +47543,7 @@
"jci" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/security/staffroom)
"jcK" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
@@ -61781,9 +47568,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"jpa" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_hydro)
"jqU" = (
/obj/structure/desertdam/decals/road_edge{
@@ -61796,10 +47581,7 @@
/area/desert_dam/exterior/landing_pad_two)
"jre" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"jrV" = (
/obj/effect/decal/cleanable/dirt,
@@ -61820,17 +47602,12 @@
/area/desert_dam/exterior/river/riverside_south)
"jtz" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"jvo" = (
/obj/structure/closet/l3closet/virology,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_two/equipment)
"jvZ" = (
/obj/structure/platform{
@@ -61839,9 +47616,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/south_valley_dam)
"jxq" = (
/obj/structure/machinery/power/apc{
@@ -61849,35 +47624,24 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/desert_dam/exterior/telecomm/lz1_south)
"jxN" = (
/obj/structure/tunnel,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_crashsite)
"jAr" = (
/obj/structure/closet/crate/hydroponics/prespawned,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 1;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/north,
/area/desert_dam/building/hydroponics/hydroponics_storage)
"jAS" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_civilian)
"jBh" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/atmos_storage)
"jCJ" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -61909,9 +47673,7 @@
"jJn" = (
/obj/structure/closet/crate/freezer/rations,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/cafeteria/cold_room)
"jJE" = (
/obj/effect/landmark/objective_landmark/far,
@@ -61921,9 +47683,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_telecoms)
"jMT" = (
/obj/effect/decal/warning_stripes{
@@ -61939,9 +47699,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_labs)
"jOe" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_hydro)
"jSS" = (
/obj/structure/desertdam/decals/road_edge{
@@ -61952,25 +47710,17 @@
"jTF" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"jVa" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"jVr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/morgue)
"jVv" = (
/obj/effect/decal/cleanable/dirt,
@@ -61986,15 +47736,10 @@
"jXy" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"jZZ" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/valley_telecoms)
"kbo" = (
/obj/structure/prop/dam/boulder/boulder1,
@@ -62005,35 +47750,25 @@
/area/desert_dam/exterior/telecomm/lz2_containers)
"kee" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/dorms/restroom)
"kge" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"kiy" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_crashsite)
"kiP" = (
/obj/structure/flora/grass/tallgrass/desert,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_crashsite)
"kkm" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_hydro)
"kmr" = (
/obj/structure/desertdam/decals/road_edge{
@@ -62049,9 +47784,7 @@
"knm" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/loading)
"kry" = (
/obj/effect/decal/warning_stripes{
@@ -62082,9 +47815,7 @@
},
/obj/item/reagent_container/food/snacks/stew,
/obj/item/tool/kitchen/utensil/spoon,
-/turf/open/desert/rock/deep{
- icon_state = "rock4"
- },
+/turf/open/desert/rock/deep/rock4,
/area/desert_dam/interior/caves/temple)
"kAV" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -62096,10 +47827,7 @@
dir = 4
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/virology_wing)
"kFW" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -62110,15 +47838,10 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"kIl" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"kIP" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -62134,24 +47857,17 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"kMM" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/garage)
"kMT" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"kOC" = (
/obj/structure/machinery/power/reactor/colony,
@@ -62175,36 +47891,23 @@
/area/desert_dam/interior/caves/central_caves)
"kQd" = (
/obj/structure/tunnel,
-/turf/open/desert/rock/deep{
- icon_state = "rock3"
- },
+/turf/open/desert/rock/deep/rock3,
/area/desert_dam/interior/caves/east_caves)
"kRX" = (
/obj/structure/surface/table,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"kTX" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/bar_valley_dam)
"kUz" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southeast,
/area/desert_dam/interior/dam_interior/break_room)
"kVU" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/south_valley_dam)
"kWh" = (
/obj/structure/flora/grass/desert/heavygrass_4,
@@ -62228,18 +47931,12 @@
/area/desert_dam/exterior/valley/valley_labs)
"lei" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/mining/workshop_foyer)
"leJ" = (
/obj/structure/closet/crate/secure,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/mining/workshop_foyer)
"leZ" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -62253,10 +47950,7 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_civilian)
"lfZ" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/telecomm/lz1_valley)
"lib" = (
/obj/structure/surface/table/reinforced,
@@ -62265,10 +47959,7 @@
health = 80
},
/obj/structure/window/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/lobby)
"liN" = (
/obj/structure/disposalpipe/segment{
@@ -62277,10 +47968,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/desert_dam/building/medical/north_wing_hallway)
"ljB" = (
/obj/structure/closet/cabinet,
@@ -62297,23 +47985,16 @@
"lkZ" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/interior/dam_interior/break_room)
"lmq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/smes_main)
"lnG" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"lop" = (
/obj/structure/desertdam/decals/road_edge{
@@ -62325,9 +48006,7 @@
/obj/effect/landmark/nightmare{
insert_tag = "damtemple_intact"
},
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_crashsite)
"lrY" = (
/obj/structure/flora/grass/desert/lightgrass_8,
@@ -62338,10 +48017,7 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/break_room)
"ltE" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -62357,9 +48033,7 @@
/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/engi{
pixel_x = -32
},
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/dam_interior/west_tunnel)
"lxq" = (
/obj/structure/surface/table,
@@ -62380,16 +48054,11 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
"lzs" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/landing_pad_two)
"lzZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/cafeteria/loading)
"lAb" = (
/obj/structure/sink{
@@ -62397,9 +48066,7 @@
pixel_y = -10
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"lDT" = (
/obj/structure/flora/grass/desert/lightgrass_3,
@@ -62415,10 +48082,7 @@
/area/desert_dam/exterior/valley/valley_medical)
"lHW" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"lIt" = (
/turf/open/desert/dirt,
@@ -62436,9 +48100,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"lKW" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -62448,18 +48110,12 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"lKY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/medical/north_wing_hallway)
"lLI" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"lMc" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -62470,10 +48126,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"lNN" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/jungle{
- bushes_spawn = 0;
- icon_state = "grass_impenetrable"
- },
+/turf/open/jungle/impenetrable,
/area/desert_dam/interior/lab_northeast/east_lab_containment)
"lOM" = (
/obj/effect/decal/sand_overlay/sand2/corner2,
@@ -62486,31 +48139,22 @@
/area/desert_dam/building/cafeteria/loading)
"lPn" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_civilian)
"lQM" = (
/obj/structure/stairs{
dir = 4
},
/obj/structure/platform,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"lUl" = (
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet15-15"
- },
+/turf/open/floor/carpet15_15/west,
/area/desert_dam/building/administration/office)
"lUU" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/south_valley_dam)
"lVW" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -62540,9 +48184,7 @@
/obj/effect/spawner/random/tech_supply,
/obj/effect/spawner/random/tech_supply,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"mbl" = (
/obj/structure/surface/table,
@@ -62561,19 +48203,14 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_labs)
"mej" = (
/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{
pixel_x = 32;
shuttleId = "trijentshuttle22"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/desert_dam/building/warehouse/loading)
"meN" = (
/obj/structure/desertdam/decals/road_edge{
@@ -62593,9 +48230,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"mgw" = (
/obj/structure/desertdam/decals/road_stop{
@@ -62614,9 +48249,7 @@
"mhU" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/interior/dam_interior/workshop)
"mjR" = (
/obj/structure/desertdam/decals/road_edge{
@@ -62628,10 +48261,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"mkJ" = (
/obj/structure/flora/grass/desert/lightgrass_4,
@@ -62648,28 +48278,18 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/telecomm/lz1_valley)
"mnc" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/interior/caves/temple)
"mnA" = (
/obj/structure/machinery/floodlight,
/obj/structure/machinery/camera/autoname/almayer,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/interior/dam_interior/atmos_storage)
"moq" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/landing_pad_one)
"mqM" = (
/obj/effect/landmark/monkey_spawn,
@@ -62696,10 +48316,7 @@
icon_state = "pred_mask12_ebony";
unacidable = 0
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"muj" = (
/obj/structure/flora/grass/tallgrass/desert,
@@ -62707,10 +48324,7 @@
/area/desert_dam/exterior/landing_pad_two)
"myx" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"mAm" = (
/obj/effect/decal/cleanable/dirt,
@@ -62756,9 +48370,7 @@
/area/desert_dam/exterior/landing_pad_two)
"mDz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_hydro)
"mDA" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -62770,47 +48382,32 @@
/area/desert_dam/exterior/valley/valley_crashsite)
"mEC" = (
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/auxilary_tool_storage)
"mEV" = (
/obj/structure/machinery/light,
-/turf/open/desert/rock/deep/transition{
- dir = 10
- },
+/turf/open/desert/rock/deep/transition/southwest,
/area/desert_dam/interior/dam_interior/west_tunnel)
"mGo" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"mHf" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"mHV" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/telecomm/lz2_storage)
"mKs" = (
/turf/closed/wall/rock/orange,
/area/desert_dam/exterior/valley/valley_telecoms)
"mKW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"mKZ" = (
/obj/structure/flora/pottedplant,
@@ -62822,16 +48419,10 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/desert_dam/building/security/lobby)
"mMm" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/bar_valley_dam)
"mNk" = (
/turf/closed/wall/r_wall,
@@ -62839,17 +48430,12 @@
"mNn" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"mNC" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"mOS" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -62859,9 +48445,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/bar_valley_dam)
"mTf" = (
/obj/effect/decal/warning_stripes{
@@ -62883,17 +48467,12 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/bar_valley_dam)
"mZa" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/desert_dam/building/cafeteria/cafeteria)
"mZb" = (
/turf/open/desert/dirt,
@@ -62903,9 +48482,7 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_crashsite)
"naF" = (
/obj/effect/landmark/objective_landmark/close,
@@ -62929,10 +48506,7 @@
/turf/open/desert/rock/deep,
/area/desert_dam/interior/dam_interior/east_tunnel_entrance)
"ndF" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/landing_pad_one)
"ndP" = (
/obj/structure/stairs/perspective{
@@ -62944,9 +48518,7 @@
/area/desert_dam/interior/caves/temple)
"ngk" = (
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/administration/control_room)
"ngo" = (
/obj/structure/desertdam/decals/road_edge{
@@ -62955,9 +48527,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/south_valley_dam)
"nil" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/south_valley_dam)
"niN" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -62967,17 +48537,12 @@
/area/desert_dam/exterior/landing_pad_two)
"nji" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/desert_dam/interior/dam_interior/hanger)
"njF" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_crashsite)
"nlH" = (
/obj/effect/decal/cleanable/dirt,
@@ -62986,16 +48551,10 @@
/area/desert_dam/building/dorms/hallway_northwing)
"nlU" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/desert_dam/building/dorms/hallway_westwing)
"nmr" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/south_valley_dam)
"nmP" = (
/obj/structure/desertdam/decals/road_edge{
@@ -63007,15 +48566,10 @@
"nnl" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/restroom)
"nnv" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/landing_pad_one)
"nsf" = (
/obj/structure/desertdam/decals/road_edge{
@@ -63027,15 +48581,10 @@
"ntt" = (
/obj/structure/closet/l3closet/security,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked,
/area/desert_dam/building/security/armory)
"nue" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/south_valley_dam)
"nvr" = (
/obj/structure/flora/grass/desert/heavygrass_3,
@@ -63043,15 +48592,11 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"nyN" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"nyR" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/rock/deep{
- icon_state = "rock4"
- },
+/turf/open/desert/rock/deep/rock4,
/area/desert_dam/interior/caves/temple)
"nzB" = (
/obj/structure/flora/grass/tallgrass/desert,
@@ -63079,24 +48624,17 @@
"nFW" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/administration/meetingrooom)
"nIz" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_northwing)
"nJZ" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/landing_pad_one)
"nMO" = (
/obj/structure/disposalpipe/segment{
@@ -63104,10 +48642,7 @@
},
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/cafeteria/loading)
"nRV" = (
/obj/effect/decal/warning_stripes{
@@ -63119,26 +48654,17 @@
/area/desert_dam/exterior/valley/valley_hydro)
"nSN" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/office2)
"nTa" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/desert_dam/interior/dam_interior/control_room)
"nTn" = (
/obj/structure/closet/secure_closet/engineering_welding,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"nTp" = (
/obj/structure/desertdam/decals/road_edge{
@@ -63167,22 +48693,15 @@
/area/desert_dam/interior/caves/central_caves)
"nYz" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"nYZ" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_medical)
"oaz" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/bar_valley_dam)
"obv" = (
/obj/structure/surface/table/reinforced/prison{
@@ -63198,17 +48717,12 @@
/obj/item/roller,
/obj/item/roller,
/obj/item/roller,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/desert_dam/building/medical/west_wing_hallway)
"odR" = (
/obj/structure/largecrate/random/case/small,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/garage)
"ofB" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -63219,16 +48733,11 @@
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_crashsite)
"ogc" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/landing_pad_one)
"oit" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_crashsite)
"olL" = (
/obj/structure/barricade/wooden{
@@ -63243,24 +48752,18 @@
"onA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"ooQ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/turf/open/desert/rock,
/area/desert_dam/interior/caves/temple)
"ooW" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_labs)
"opZ" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/bar_valley_dam)
"oqy" = (
/obj/structure/desertdam/decals/road_edge{
@@ -63272,10 +48775,7 @@
"osV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"otn" = (
/obj/structure/desertdam/decals/road_edge{
@@ -63287,16 +48787,12 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/bar_valley_dam)
"ouK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"oyf" = (
/obj/effect/decal/cleanable/dirt,
@@ -63335,16 +48831,12 @@
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/landing_pad_one)
"oHw" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/desert_dam/interior/dam_interior/tech_storage)
"oHA" = (
/obj/structure/desertdam/decals/road_stop{
@@ -63364,10 +48856,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"oJw" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_hydro)
"oJT" = (
/obj/structure/flora/grass/desert/lightgrass_2,
@@ -63386,33 +48875,23 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
"oMz" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/landing_pad_one)
"oNS" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/south_valley_dam)
"oOj" = (
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/cafeteria/loading)
"oQx" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_hydro)
"oQK" = (
/obj/structure/sink{
@@ -63421,17 +48900,12 @@
pixel_y = 2
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/interior/dam_interior/break_room)
"oRZ" = (
/obj/structure/closet/radiation,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_excavation)
"oUr" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
@@ -63444,9 +48918,7 @@
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"oVs" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_northwing)
"oWx" = (
/obj/structure/machinery/power/reactor/colony,
@@ -63454,9 +48926,7 @@
/area/desert_dam/interior/dam_interior/engine_room)
"oXx" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"oXK" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -63472,19 +48942,13 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/exterior/telecomm/lz1_valley)
"pac" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"pal" = (
/obj/structure/machinery/colony_floodlight,
@@ -63509,9 +48973,7 @@
dir = 1
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/interior/caves/central_caves)
"pif" = (
/obj/docking_port/stationary/trijent_elevator/empty{
@@ -63524,10 +48986,7 @@
/turf/open/gm/empty,
/area/shuttle/trijent_shuttle/engi)
"pij" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/bar_valley_dam)
"pke" = (
/obj/structure/prop/dam/wide_boulder/boulder1,
@@ -63558,10 +49017,7 @@
"ppS" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/desert_dam/building/medical/virology_isolation)
"puM" = (
/obj/structure/machinery/light{
@@ -63581,23 +49037,16 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
"pvs" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/south_valley_dam)
"pvy" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/desert_dam/interior/lab_northeast/east_lab_central_hallway)
"pwc" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/building/mining/workshop)
"pyP" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -63606,23 +49055,17 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_crashsite)
"pzd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/garage)
"pzk" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/landing_pad_one)
"pzv" = (
/obj/structure/desertdam/decals/road_edge{
@@ -63632,25 +49075,18 @@
/area/desert_dam/exterior/valley/valley_hydro)
"pAE" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"pDd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/desert_dam/building/substation/northwest)
"pDW" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"pEh" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -63666,17 +49102,13 @@
"pFj" = (
/obj/structure/surface/table,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"pFY" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/telecomm/lz2_storage)
"pGn" = (
/obj/effect/decal/cleanable/liquid_fuel,
@@ -63696,10 +49128,7 @@
"pHU" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"pIe" = (
/obj/structure/disposalpipe/segment{
@@ -63711,61 +49140,43 @@
"pIg" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/warehouse/breakroom)
"pJW" = (
/obj/structure/flora/grass/tallgrass/desert,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_telecoms)
"pLm" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/south_valley_dam)
"pNG" = (
/obj/structure/xenoautopsy/tank/broken,
-/turf/open/desert/rock/deep{
- icon_state = "rock4"
- },
+/turf/open/desert/rock/deep/rock4,
/area/desert_dam/interior/caves/temple)
"pOE" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_civilian)
"pRD" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/landing_pad_one)
"pSM" = (
/obj/effect/landmark/nightmare{
insert_tag = "purple-new-bridge"
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"pSV" = (
/obj/item/tool/pen,
/obj/item/paper_bundle,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/water_treatment_one/hallway)
"pTU" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/south_valley_dam)
"pUO" = (
/obj/structure/desertdam/decals/road_edge{
@@ -63786,9 +49197,7 @@
dir = 8
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_crashsite)
"qbC" = (
/obj/structure/surface/table/woodentable,
@@ -63806,9 +49215,7 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_hydro)
"qjg" = (
-/turf/open/desert/rock/deep/transition{
- dir = 6
- },
+/turf/open/desert/rock/deep/transition/southeast,
/area/desert_dam/interior/caves/temple)
"qkz" = (
/obj/effect/decal/warning_stripes{
@@ -63825,9 +49232,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"qkZ" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/exterior/telecomm/lz1_south)
"qlr" = (
/obj/structure/flora/grass/desert/heavygrass_4,
@@ -63836,18 +49241,14 @@
"qlx" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"qlG" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_wilderness)
"qlU" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"qmn" = (
/obj/structure/machinery/light{
@@ -63868,15 +49269,11 @@
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_crashsite)
"qoJ" = (
/obj/structure/machinery/landinglight/ds1/delaytwo,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/landing_pad_one)
"qqR" = (
/obj/structure/desertdam/decals/road_edge{
@@ -63891,17 +49288,12 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_labs)
"qwZ" = (
/obj/structure/bed/chair,
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/medical/surgury_observation)
"qxv" = (
/obj/structure/machinery/colony_floodlight,
@@ -63909,28 +49301,19 @@
/area/desert_dam/exterior/valley/valley_labs)
"qyu" = (
/obj/structure/prop/dam/boulder/boulder1,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"qyD" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/hangar_storage)
"qyX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/desert_dam/interior/dam_interior/garage)
"qzo" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_telecoms)
"qCr" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -63938,27 +49321,18 @@
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_crashsite)
"qCR" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/valley_crashsite)
"qDb" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"qDl" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/landing_pad_one)
"qEJ" = (
/obj/structure/desertdam/decals/road_edge,
@@ -63970,9 +49344,7 @@
"qGb" = (
/obj/structure/closet,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/desert_dam/building/security/evidence)
"qGd" = (
/obj/structure/flora/grass/tallgrass/desert/corner,
@@ -63987,9 +49359,7 @@
"qHt" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"qHF" = (
/obj/structure/flora/grass/desert/lightgrass_10,
@@ -64008,39 +49378,24 @@
/turf/open/floor/plating,
/area/desert_dam/exterior/telecomm/lz1_xenoflora)
"qJU" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/caves/temple)
"qKe" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/interior/dam_interior/south_tunnel)
"qKA" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/bar_valley_dam)
"qKE" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_hydro)
"qLD" = (
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"qLE" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/landing_pad_one)
"qLT" = (
/obj/structure/showcase{
@@ -64048,10 +49403,7 @@
icon_state = "yaut";
name = "alien sarcophagus"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"qNk" = (
/obj/effect/decal/cleanable/dirt,
@@ -64064,16 +49416,11 @@
id = "garage_dd";
name = "\improper Garage"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"qQz" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"qVN" = (
/obj/structure/desertdam/decals/road_edge{
@@ -64086,9 +49433,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/bar_valley_dam)
"qXZ" = (
/obj/structure/surface/table,
@@ -64098,9 +49443,7 @@
"qYC" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/desert_dam/building/administration/archives)
"ray" = (
/obj/effect/decal/cleanable/dirt,
@@ -64110,14 +49453,10 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_telecoms)
"rbp" = (
-/turf/open/desert/desert_shore/shore_corner1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner1/north,
/area/desert_dam/interior/caves/temple)
"rbM" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/telecomm/lz2_storage)
"rdW" = (
/turf/open/asphalt,
@@ -64127,9 +49466,7 @@
dir = 1
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/garage)
"rfm" = (
/obj/effect/decal/cleanable/dirt,
@@ -64148,15 +49485,11 @@
color = "#6b675e"
},
/obj/item/stack/yautja_rope,
-/turf/open/desert/rock/deep{
- icon_state = "rock4"
- },
+/turf/open/desert/rock/deep/rock4,
/area/desert_dam/interior/caves/temple)
"rjd" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/floor/filtrationside{
- dir = 9
- },
+/turf/open/floor/filtrationside/northwest,
/area/desert_dam/exterior/valley/valley_medical)
"rlU" = (
/obj/effect/decal/cleanable/dirt,
@@ -64167,9 +49500,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/bar_valley_dam)
"rob" = (
/obj/structure/desertdam/decals/road_edge{
@@ -64182,9 +49513,7 @@
dir = 8
},
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"rpQ" = (
/obj/effect/decal/cleanable/liquid_fuel,
@@ -64193,21 +49522,15 @@
"rqk" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/desert_dam/interior/dam_interior/tech_storage)
"rtW" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/south_valley_dam)
"ruJ" = (
/obj/structure/tunnel,
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_medical)
"ruS" = (
/turf/open/desert/dirt,
@@ -64230,10 +49553,7 @@
/area/shuttle/trijent_shuttle/lz1)
"ryG" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/desert_dam/interior/dam_interior/garage)
"rAo" = (
/obj/structure/flora/grass/tallgrass/desert,
@@ -64242,9 +49562,7 @@
"rAL" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/powercell,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/exterior/telecomm/lz1_south)
"rAP" = (
/obj/effect/decal/cleanable/dirt,
@@ -64254,18 +49572,13 @@
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/building/mining/workshop)
"rBP" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"rCp" = (
/obj/structure/platform/mineral/sandstone/runed,
@@ -64275,9 +49588,7 @@
"rDa" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"rEa" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -64286,19 +49597,14 @@
"rEH" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/desert_dam/building/water_treatment_one/breakroom)
"rFi" = (
/turf/open/gm/empty,
/area/shuttle/trijent_shuttle/lz2)
"rFz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/substation/northwest)
"rFU" = (
/obj/effect/decal/warning_stripes{
@@ -64308,24 +49614,18 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"rGu" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_hydro)
"rHw" = (
/turf/open/floor/plating,
/area/desert_dam/exterior/telecomm/lz2_containers)
"rIY" = (
/obj/structure/tunnel,
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_hydro)
"rJA" = (
/obj/structure/lz_sign/dam_sign,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_cargo)
"rJK" = (
/obj/structure/desertdam/decals/road_edge,
@@ -64339,16 +49639,12 @@
unacidable = 0
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"rOa" = (
/obj/structure/toilet,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/building/warehouse/breakroom)
"rPp" = (
/obj/effect/decal/cleanable/dirt,
@@ -64358,9 +49654,7 @@
"rQJ" = (
/obj/structure/largecrate/random/barrel/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/desert_dam/interior/dam_interior/garage)
"rQQ" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -64378,9 +49672,7 @@
pixel_x = 30;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"rTV" = (
/turf/closed/wall/r_wall/bunker{
@@ -64389,9 +49681,7 @@
/area/desert_dam/exterior/rock)
"rUA" = (
/obj/structure/fence,
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_hydro)
"rUK" = (
/obj/structure/flora/grass/desert/lightgrass_1,
@@ -64399,10 +49689,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"rUZ" = (
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"rVo" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
@@ -64423,9 +49710,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_medical)
"sav" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/landing_pad_two)
"saQ" = (
/obj/structure/fence,
@@ -64438,9 +49723,7 @@
"sbP" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_hydro)
"scm" = (
/obj/structure/desertdam/decals/road_stop{
@@ -64451,26 +49734,18 @@
/area/desert_dam/exterior/valley/valley_hydro)
"scv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/desert_dam/interior/dam_interior/garage)
"sdq" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/telecomm/lz1_valley)
"sdu" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"ser" = (
/obj/structure/surface/table,
@@ -64483,25 +49758,16 @@
pixel_y = 6
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northwest,
/area/desert_dam/interior/dam_interior/garage)
"sfK" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/garage)
"shm" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/south_valley_dam)
"sia" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"sjN" = (
/obj/structure/machinery/light{
@@ -64541,10 +49807,7 @@
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"snD" = (
/obj/structure/desertdam/decals/road_edge{
@@ -64560,17 +49823,13 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"srf" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"ssy" = (
/obj/effect/decal/warning_stripes{
@@ -64583,9 +49842,7 @@
name = "\improper Research Hallway"
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_hallway)
"svy" = (
/obj/effect/decal/warning_stripes{
@@ -64595,9 +49852,7 @@
/area/desert_dam/exterior/valley/south_valley_dam)
"swg" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_workshop)
"swK" = (
/obj/structure/shuttle/diagonal{
@@ -64614,15 +49869,10 @@
dir = 1
},
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_hydro)
"sAm" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/landing_pad_two)
"sAZ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -64636,17 +49886,13 @@
/area/desert_dam/exterior/landing_pad_one)
"sDf" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/tech_storage)
"sEL" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/south_valley_dam)
"sFe" = (
/obj/effect/decal/warning_stripes{
@@ -64695,14 +49941,10 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_medical)
"sNn" = (
-/turf/open/desert/rock/deep/transition{
- dir = 1
- },
+/turf/open/desert/rock/deep/transition/north,
/area/desert_dam/exterior/telecomm/lz1_south)
"sNQ" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/telecomm/lz2_storage)
"sNX" = (
/obj/structure/desertdam/decals/road_edge{
@@ -64720,50 +49962,35 @@
pixel_y = 32
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"sPL" = (
/obj/structure/closet/secure_closet/medical3{
req_access_txt = "100"
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/east,
/area/desert_dam/building/medical/primary_storage)
"sPS" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/interior/caves/temple)
"sQE" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/landing_pad_one)
"sRl" = (
/obj/effect/landmark/nightmare{
insert_tag = "uppcrash"
},
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_hydro)
"sUe" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"sUr" = (
/turf/open/asphalt,
@@ -64772,9 +49999,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/landing_pad_one)
"sWS" = (
/obj/structure/disposalpipe/segment,
@@ -64815,18 +50040,13 @@
"sYU" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/desert_dam/building/dorms/hallway_westwing)
"tai" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"taG" = (
/obj/structure/desertdam/decals/road_stop{
@@ -64837,10 +50057,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
"taH" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_hydro)
"tbb" = (
/obj/structure/desertdam/decals/road_edge,
@@ -64853,9 +50070,7 @@
"tdf" = (
/obj/structure/surface/table,
/obj/item/folder/yellow,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/desert_dam/interior/dam_interior/office)
"teR" = (
/obj/structure/bed/chair/comfy/beige{
@@ -64866,10 +50081,7 @@
"thd" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/hydroponics/hydroponics_loading)
"thp" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -64893,9 +50105,7 @@
/area/desert_dam/exterior/landing_pad_two)
"tni" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"tnu" = (
/obj/structure/desertdam/decals/road_edge{
@@ -64915,9 +50125,7 @@
/turf/open/desert/rock/deep,
/area/desert_dam/interior/caves/temple)
"tsL" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/telecomm/lz2_storage)
"tuA" = (
/obj/structure/closet/secure_closet/bar,
@@ -64928,16 +50136,10 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"txr" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/landing_pad_one)
"txD" = (
/obj/structure/toilet{
@@ -64947,10 +50149,7 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/desert_dam/building/security/staffroom)
"tyc" = (
/obj/structure/desertdam/decals/road_edge{
@@ -64959,9 +50158,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"tAs" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_telecoms)
"tAt" = (
/obj/effect/decal/warning_stripes{
@@ -64976,9 +50173,7 @@
"tAG" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"tBD" = (
/obj/structure/desertdam/decals/road_edge{
@@ -64989,9 +50184,7 @@
"tCn" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"tEn" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -65000,16 +50193,12 @@
name = "\improper Checkpoint Lock"
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_east_entrance)
"tFi" = (
/obj/effect/decal/sand_overlay/sand2,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/interior/caves/central_caves)
"tFG" = (
/obj/structure/machinery/light{
@@ -65022,44 +50211,32 @@
/obj/effect/spawner/random/tool{
pixel_x = -6
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/interior/dam_interior/garage)
"tFS" = (
/obj/effect/decal/remains/human,
/turf/open/desert/rock,
/area/desert_dam/interior/caves/temple)
"tKQ" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_crashsite)
"tKS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/dorms/pool)
"tLo" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/bar_valley_dam)
"tLQ" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/desert_dam/interior/dam_interior/north_tunnel_entrance)
"tMi" = (
/obj/effect/decal/cleanable/dirt,
@@ -65072,10 +50249,7 @@
},
/area/desert_dam/building/mining/workshop)
"tOj" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/telecomm/lz1_xenoflora)
"tPP" = (
/obj/structure/platform,
@@ -65092,24 +50266,15 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/south_valley_dam)
"tUF" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/bar_valley_dam)
"tVX" = (
/obj/structure/sink,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"tXS" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/south_valley_dam)
"tYS" = (
/obj/structure/surface/rack,
@@ -65138,9 +50303,7 @@
},
/area/desert_dam/interior/dam_interior/garage)
"ueS" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/desert_dam/exterior/telecomm/lz1_south)
"ueZ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -65150,18 +50313,13 @@
/area/desert_dam/exterior/valley/south_valley_dam)
"ufP" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_crashsite)
"ufW" = (
/turf/closed/wall/mineral/sandstone/runed,
/area/desert_dam/exterior/rock)
"uhf" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/interior/caves/temple)
"uic" = (
/obj/structure/machinery/colony_floodlight,
@@ -65169,9 +50327,7 @@
/area/desert_dam/exterior/landing_pad_two)
"uis" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_hydro)
"uiH" = (
/obj/structure/machinery/colony_floodlight,
@@ -65180,10 +50336,7 @@
"ujl" = (
/obj/structure/closet/secure_closet/security,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"ukQ" = (
/obj/structure/machinery/light{
@@ -65191,26 +50344,17 @@
},
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/garage)
"ulg" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/telecomm/lz2_storage)
"ulm" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 2
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northeast,
/area/desert_dam/interior/dam_interior/garage)
"uml" = (
/obj/effect/decal/warning_stripes{
@@ -65232,9 +50376,7 @@
color = "#6b675e"
},
/obj/item/weapon/broken_bottle,
-/turf/open/desert/rock/deep{
- icon_state = "rock4"
- },
+/turf/open/desert/rock/deep/rock4,
/area/desert_dam/interior/caves/temple)
"ute" = (
/obj/structure/desertdam/decals/road_stop{
@@ -65257,31 +50399,21 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/security/prison)
"uxs" = (
/obj/structure/disposalpipe/segment,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"uyn" = (
/obj/structure/surface/rack,
/turf/open/floor/plating,
/area/desert_dam/building/cafeteria/backroom)
"uzL" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/telecomm/lz1_valley)
"uAo" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_hydro)
"uBP" = (
/obj/structure/surface/rack,
@@ -65304,9 +50436,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_crashsite)
"uHx" = (
/obj/structure/desertdam/decals/road_edge{
@@ -65321,10 +50451,7 @@
"uIC" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
/obj/structure/medical_supply_link/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/desert_dam/building/medical/treatment_room)
"uJl" = (
/obj/structure/flora/grass/desert/lightgrass_9,
@@ -65340,17 +50467,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/desert_dam/interior/dam_interior/south_tunnel)
"uMk" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"uMr" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -65366,17 +50489,13 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/south_valley_dam)
"uMZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/primary_tool_storage)
"uNF" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
@@ -65389,24 +50508,18 @@
dir = 4
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_civilian)
"uRx" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/desert_dam/interior/dam_interior/tech_storage)
"uRz" = (
/obj/structure/flora/grass/desert/lightgrass_9,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_hydro)
"uSv" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/landing_pad_two)
"uTo" = (
/obj/structure/flora/grass/tallgrass/desert,
@@ -65414,9 +50527,7 @@
/area/desert_dam/exterior/valley/valley_cargo)
"uVm" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_civilian)
"uVK" = (
/obj/item/tool/pickaxe,
@@ -65437,9 +50548,7 @@
"uXk" = (
/obj/effect/decal/sand_overlay/sand2,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_crashsite)
"uYD" = (
/obj/effect/decal/warning_stripes{
@@ -65450,16 +50559,11 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_medical)
"uZr" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/landing_pad_one)
"vfr" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/interior/caves/central_caves)
"vgm" = (
/obj/effect/decal/warning_stripes{
@@ -65469,18 +50573,12 @@
/area/desert_dam/exterior/valley/south_valley_dam)
"vhs" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southwest,
/area/desert_dam/interior/dam_interior/lobby)
"vhA" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/west,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"vir" = (
/obj/effect/decal/warning_stripes{
@@ -65489,10 +50587,7 @@
/obj/effect/landmark/nightmare{
insert_tag = "shipgone_northlz"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/hanger)
"viV" = (
/obj/structure/fence,
@@ -65511,19 +50606,14 @@
/area/desert_dam/exterior/valley/valley_hydro)
"vph" = (
/obj/structure/tunnel,
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/south_valley_dam)
"vpn" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
/obj/structure/machinery/floodlight/landing,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/landing_pad_two)
"vpz" = (
/obj/effect/decal/cleanable/dirt,
@@ -65535,9 +50625,7 @@
/obj/structure/surface/table,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/building/lab_northwest/west_lab_xenoflora)
"vqt" = (
/obj/effect/decal/cleanable/dirt,
@@ -65552,10 +50640,7 @@
/area/desert_dam/exterior/valley/valley_labs)
"vqS" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop_foyer)
"vte" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -65563,9 +50648,7 @@
/area/desert_dam/interior/caves/central_caves)
"vud" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"vuu" = (
/obj/structure/machinery/colony_floodlight,
@@ -65580,14 +50663,10 @@
/area/desert_dam/exterior/valley/valley_telecoms)
"vxt" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/water_treatment_one/breakroom)
"vzj" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_labs)
"vzp" = (
/obj/effect/decal/warning_stripes{
@@ -65611,9 +50690,7 @@
"vAN" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/desert_dam/building/dorms/hallway_northwing)
"vBJ" = (
/obj/structure/desertdam/decals/road_edge,
@@ -65623,9 +50700,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_labs)
"vCE" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_labs)
"vDJ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -65640,14 +50715,10 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"vEW" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/telecomm/lz2_storage)
"vGu" = (
/obj/effect/decal/warning_stripes{
@@ -65665,9 +50736,7 @@
/area/desert_dam/exterior/valley/valley_hydro)
"vHx" = (
/obj/structure/tunnel,
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_civilian)
"vHQ" = (
/turf/open/gm/empty,
@@ -65710,15 +50779,10 @@
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/landing_pad_one)
"vSF" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/telecomm/lz2_storage)
"vSH" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -65726,15 +50790,10 @@
/area/desert_dam/exterior/valley/valley_crashsite)
"vSV" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/bar_valley_dam)
"vTA" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/landing_pad_two)
"vTR" = (
/obj/structure/desertdam/decals/road_edge{
@@ -65753,9 +50812,7 @@
"vYZ" = (
/obj/structure/surface/rack,
/obj/item/tool/pickaxe/drill,
-/turf/open/desert/rock/deep/transition{
- dir = 5
- },
+/turf/open/desert/rock/deep/transition/northeast,
/area/desert_dam/interior/caves/temple)
"wav" = (
/obj/structure/flora/grass/desert/lightgrass_9,
@@ -65772,9 +50829,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
"wbv" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_crashsite)
"wcc" = (
/obj/effect/decal/warning_stripes{
@@ -65790,43 +50845,28 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
"wgv" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/bar_valley_dam)
"wiF" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/desert_dam/interior/dam_interior/garage)
"wiI" = (
/obj/structure/largecrate/random/barrel/blue,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/desert_dam/interior/dam_interior/garage)
"wjC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/cafeteria/loading)
"wnE" = (
/obj/structure/closet/crate/hydroponics/prespawned,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/hydroponics/hydroponics_loading)
"woy" = (
/obj/effect/decal/cleanable/dirt,
@@ -65834,9 +50874,7 @@
/area/desert_dam/interior/dam_interior/garage)
"wpr" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/landing_pad_one)
"wpW" = (
/obj/structure/flora/grass/desert/lightgrass_6,
@@ -65855,10 +50893,7 @@
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/desert_dam/interior/dam_interior/garage)
"wrl" = (
/obj/effect/landmark/nightmare{
@@ -65870,9 +50905,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/dam_interior/garage)
"wta" = (
/obj/structure/bed/chair{
@@ -65882,10 +50915,7 @@
/area/desert_dam/interior/dam_interior/hanger)
"wud" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/desert_dam/interior/dam_interior/garage)
"wuC" = (
/obj/structure/desertdam/decals/road_edge,
@@ -65904,9 +50934,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/valley_hydro)
"wyo" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/desert_dam/interior/caves/temple)
"wyR" = (
/obj/effect/decal/warning_stripes{
@@ -65934,17 +50962,11 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/landing_pad_one)
"wEy" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/landing_pad_one)
"wFv" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/prison/whitered/west,
/area/desert_dam/building/medical/office1)
"wIi" = (
/obj/structure/prop/dam/boulder/boulder2,
@@ -65955,18 +50977,14 @@
/obj/item/ammo_magazine/shotgun/incendiary,
/obj/item/ammo_magazine/shotgun/incendiary,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/desert_dam/interior/lab_northeast/east_lab_security_armory)
"wIr" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"wLq" = (
/obj/structure/bed/chair{
@@ -65975,57 +50993,42 @@
/turf/open/shuttle/can_surgery/red,
/area/desert_dam/interior/dam_interior/hanger)
"wLI" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/desert_dam/exterior/telecomm/lz1_south)
"wLV" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_hydro)
"wMw" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/south_valley_dam)
"wOO" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/building/mining/workshop)
"wPb" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"wQM" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_crashsite)
"wQS" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_hydro)
"wQZ" = (
/obj/structure/flora/grass/tallgrass/desert,
@@ -66035,9 +51038,7 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/landing_pad_two)
"wRi" = (
/obj/effect/decal/cleanable/dirt,
@@ -66048,9 +51049,7 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/south_valley_dam)
"wRX" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_hydro)
"wTP" = (
/obj/structure/closet/crate,
@@ -66066,9 +51065,7 @@
amount = 50
},
/obj/item/storage/briefcase/inflatable,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/desert_dam/interior/dam_interior/atmos_storage)
"wYO" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -66078,10 +51075,7 @@
/area/desert_dam/exterior/valley/valley_crashsite)
"wZM" = (
/obj/structure/flora/tree/joshua,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/valley_labs)
"xab" = (
/obj/structure/machinery/recharge_station,
@@ -66147,10 +51141,7 @@
"xjb" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/desert_dam/building/cafeteria/loading)
"xjY" = (
/obj/effect/decal/warning_stripes{
@@ -66165,9 +51156,7 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/desert_dam/building/cafeteria/cafeteria)
"xkh" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -66178,9 +51167,7 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"xkK" = (
/obj/structure/machinery/power/apc{
@@ -66194,9 +51181,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"xlE" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -66206,22 +51191,15 @@
unacidable = 0
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"xmH" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/desert/rock/deep{
- icon_state = "rock4"
- },
+/turf/open/desert/rock/deep/rock4,
/area/desert_dam/interior/caves/temple)
"xof" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"xoL" = (
/obj/effect/decal/warning_stripes{
@@ -66247,10 +51225,7 @@
/area/desert_dam/exterior/valley/valley_hydro)
"xrx" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_northwest)
"xss" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -66258,19 +51233,14 @@
id = null;
name = "\improper Elevator Lock"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/shuttle/trijent_shuttle/lz1)
"xsQ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_crashsite)
"xsS" = (
/obj/structure/desertdam/decals/road_edge{
@@ -66280,51 +51250,36 @@
/area/desert_dam/exterior/valley/south_valley_dam)
"xuS" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/valley_hydro)
"xvX" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_telecoms)
"xxv" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_hydro)
"xxQ" = (
/obj/structure/platform,
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/telecomm/lz1_valley)
"xzc" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/desert_dam/building/dorms/hallway_westwing)
"xzm" = (
/obj/effect/landmark/nightmare{
insert_tag = "green-new-bridge"
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"xBM" = (
-/turf/open/desert/rock/deep/transition{
- dir = 5
- },
+/turf/open/desert/rock/deep/transition/northeast,
/area/desert_dam/interior/caves/temple)
"xCM" = (
/obj/effect/landmark/static_comms/net_two,
@@ -66336,15 +51291,10 @@
/area/desert_dam/exterior/valley/valley_crashsite)
"xEP" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/desert_dam/interior/lab_northeast/east_lab_lobby)
"xFk" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/valley_hydro)
"xFA" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -66365,10 +51315,7 @@
name = "\improper Garage"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"xIC" = (
/turf/open/desert/dirt,
@@ -66385,10 +51332,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/desert_dam/interior/dam_interior/garage)
"xLS" = (
/obj/structure/flora/grass/desert/lightgrass_5,
@@ -66406,9 +51350,7 @@
/obj/structure/machinery/landinglight/ds1{
dir = 4
},
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/desert_dam/exterior/landing_pad_one)
"xOb" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -66435,39 +51377,25 @@
/obj/effect/spawner/random/tech_supply,
/obj/effect/spawner/random/tech_supply,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/desert_dam/building/substation/southwest)
"xRP" = (
/obj/structure/closet/secure_closet/scientist,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/desert_dam/interior/lab_northeast/east_lab_biology)
"xTH" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_labs)
"xUS" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/landing_pad_two)
"xUU" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/body,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"xWj" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -66478,16 +51406,11 @@
"xYb" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/desert_dam/building/mining/workshop)
"xYc" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony,
-/turf/open/floor{
- dir = 5;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/northeast,
/area/desert_dam/building/substation/central)
"xZE" = (
/obj/structure/desertdam/decals/road_edge{
@@ -66500,9 +51423,7 @@
/area/desert_dam/exterior/valley/valley_wilderness)
"yaA" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/desert/rock/deep/transition{
- dir = 8
- },
+/turf/open/desert/rock/deep/transition/west,
/area/desert_dam/exterior/valley/valley_telecoms)
"ybA" = (
/obj/structure/desertdam/decals/road_edge{
@@ -66527,9 +51448,7 @@
/area/desert_dam/exterior/telecomm/lz2_tcomms)
"yfp" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/telecomm/lz2_storage)
"yfq" = (
/obj/structure/desertdam/decals/road_edge{
@@ -66549,9 +51468,7 @@
unacidable = 0
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/prison{
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2,
/area/desert_dam/interior/lab_northeast/east_lab_west_entrance)
"ylf" = (
/obj/structure/desertdam/decals/road_edge{
@@ -66575,9 +51492,7 @@
/area/desert_dam/interior/dam_interior/south_tunnel)
"ylo" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/hydroponics/hydroponics_breakroom)
"ylS" = (
/obj/effect/decal/warning_stripes{
@@ -66594,10 +51509,7 @@
/obj/item/hardpoint/locomotion/van_wheels{
unacidable = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/desert_dam/interior/dam_interior/garage)
(1,1,1) = {"
@@ -88558,11 +73470,11 @@ lyB
fdk
hOK
dhs
-dpv
-dqe
+dpw
+dqf
dqO
-dqe
-dqe
+dqf
+dqf
edO
dus
dVT
@@ -92967,8 +77879,8 @@ dTs
dTs
dTs
dTs
-dTI
-dTI
+dTs
+dTs
cPL
cTk
cTO
@@ -93201,8 +78113,8 @@ dTs
dTs
dTs
dTs
-dTI
-dTI
+dTs
+dTs
cPL
cTl
cTO
@@ -93436,7 +78348,7 @@ dTs
dTs
dTs
dTs
-abt
+dTs
cPL
cTm
cTO
diff --git a/maps/map_files/DesertDam/greenriver/newbridge.dmm b/maps/map_files/DesertDam/greenriver/newbridge.dmm
index ea0c82fb1c32..df19de868c79 100644
--- a/maps/map_files/DesertDam/greenriver/newbridge.dmm
+++ b/maps/map_files/DesertDam/greenriver/newbridge.dmm
@@ -1,8 +1,6 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_bridge)
"ab" = (
/obj/structure/platform{
@@ -12,21 +10,14 @@
dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- icon_state = "shore_corner2";
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/desert_dam/exterior/river/riverside_east)
"ac" = (
/obj/structure/platform_decoration{
- icon_state = "platform_deco";
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/desert_dam/exterior/river/riverside_east)
"ad" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -40,24 +31,16 @@
/turf/open/gm/river/desert/shallow_corner,
/area/desert_dam/exterior/river/riverside_east)
"af" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_bridge)
"ag" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_bridge)
"ah" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 8;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
- },
-/turf/open/asphalt{
- icon_state = "tile"
+ dir = 8
},
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_bridge)
"ai" = (
/turf/open/desert/dirt,
@@ -70,28 +53,18 @@
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- icon_state = "shore_corner2";
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/desert_dam/exterior/river/riverside_east)
"al" = (
/obj/structure/platform_decoration{
- icon_state = "platform_deco";
dir = 4
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/desert_dam/exterior/river/riverside_east)
"am" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- icon_state = "shallow_c";
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/desert_dam/exterior/river/riverside_east)
"an" = (
/obj/structure/platform{
@@ -101,56 +74,36 @@
/turf/open/gm/river/desert/deep,
/area/desert_dam/exterior/river/riverside_east)
"ao" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_bridge)
"ap" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_bridge)
"aq" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
- dir = 4;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_c"
- },
-/turf/open/asphalt{
- icon_state = "tile"
+ dir = 4
},
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_bridge)
"ar" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 1;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
- },
-/turf/open/asphalt{
- icon_state = "tile"
+ dir = 1
},
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_bridge)
"as" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
- dir = 1;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_c"
- },
-/turf/open/asphalt{
- icon_state = "tile"
+ dir = 1
},
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_bridge)
"at" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_east)
"au" = (
/obj/structure/platform_decoration{
- dir = 8;
- icon_state = "platform_deco"
+ dir = 8
},
/obj/effect/blocker/toxic_water/Group_2,
/turf/open/gm/river/desert/deep,
@@ -171,9 +124,7 @@
/area/desert_dam/exterior/river/riverside_east)
"ax" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge/covered{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/covered/east,
/area/desert_dam/exterior/river/riverside_east)
"ay" = (
/obj/structure/platform{
@@ -190,29 +141,21 @@
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- icon_state = "shore_corner2";
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_east)
"aA" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_edge1{
- icon_state = "shore_edge1";
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river/riverside_east)
"aB" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"aC" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -230,31 +173,19 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_east)
"aF" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_east)
"aG" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/shore_corner2{
- icon_state = "shore_corner2";
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_east)
"aH" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/desert/desert_shore/desert_shore1{
- icon_state = "shore1";
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/desert_dam/exterior/river/riverside_east)
"aI" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -269,17 +200,11 @@
/area/desert_dam/exterior/river/riverside_east)
"aK" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_corner{
- icon_state = "shallow_c";
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_east)
"aL" = (
/obj/effect/blocker/toxic_water/Group_2,
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_east)
"aM" = (
/obj/effect/blocker/toxic_water/Group_2,
@@ -346,39 +271,26 @@
/turf/open/desert/desert_shore/desert_shore1,
/area/desert_dam/exterior/river/riverside_east)
"aY" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"aZ" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_medical)
"ba" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_medical)
"bb" = (
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"bc" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"bd" = (
/obj/structure/platform_decoration{
- dir = 8;
- icon_state = "platform_deco"
- },
-/turf/open/desert/dirt{
- icon_state = "dirt2"
+ dir = 8
},
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"be" = (
/obj/structure/stairs{
@@ -387,57 +299,40 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_medical)
"bf" = (
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_medical)
"bg" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_medical)
"bh" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 8;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
- },
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
+ dir = 8
},
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_medical)
"bi" = (
/obj/structure/platform,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"bj" = (
/obj/structure/platform_decoration{
- icon_state = "platform_deco";
dir = 1
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"bk" = (
/obj/structure/platform_decoration,
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/river/riverside_east)
"bl" = (
/obj/structure/stairs{
dir = 8
},
/obj/structure/platform,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_medical)
"bm" = (
/obj/structure/platform,
@@ -445,13 +340,9 @@
/area/desert_dam/exterior/valley/valley_medical)
"bn" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 8;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
- },
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
+ dir = 8
},
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_medical)
"bo" = (
/obj/structure/stairs{
@@ -460,9 +351,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_medical)
"bp" = (
/obj/structure/stairs{
@@ -471,9 +360,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_medical)
(1,1,1) = {"
diff --git a/maps/map_files/DesertDam/purpleriver/newbridge.dmm b/maps/map_files/DesertDam/purpleriver/newbridge.dmm
index d6de4499493d..7cc7eac77db1 100644
--- a/maps/map_files/DesertDam/purpleriver/newbridge.dmm
+++ b/maps/map_files/DesertDam/purpleriver/newbridge.dmm
@@ -1,35 +1,25 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"ab" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 8;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
- },
-/turf/open/asphalt{
- icon_state = "tile"
+ dir = 8
},
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"ac" = (
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/valley_medical)
"ad" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 4;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
+ dir = 4
},
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_medical)
"ae" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 8;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
+ dir = 8
},
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_medical)
@@ -45,72 +35,48 @@
/area/desert_dam/exterior/river/riverside_south)
"ag" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
- dir = 4;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_c"
- },
-/turf/open/asphalt{
- icon_state = "tile"
+ dir = 4
},
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"ah" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 1;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
- },
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
+ dir = 1
},
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_medical)
"ai" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 1;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
+ dir = 1
},
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_medical)
"aj" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
- dir = 1;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_c"
+ dir = 1
},
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_medical)
"ak" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
- dir = 4;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_c"
+ dir = 4
},
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_medical)
"al" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 1;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
- },
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
+ dir = 1
},
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_medical)
"am" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 8;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
+ dir = 8
},
/obj/effect/decal/sand_overlay/sand1{
- dir = 1;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
- },
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
+ dir = 1
},
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/valley_medical)
"an" = (
/obj/structure/platform{
@@ -120,55 +86,40 @@
/turf/open/gm/river/desert/shallow,
/area/desert_dam/exterior/river/riverside_south)
"ao" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/valley_medical)
"ap" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_medical)
"aq" = (
/turf/open/asphalt/cement_sunbleached,
/area/desert_dam/exterior/valley/valley_medical)
"ar" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 8;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
- },
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
+ dir = 8
},
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/valley_medical)
"as" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"at" = (
/obj/structure/stairs,
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_medical)
"au" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached3"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached3,
/area/desert_dam/exterior/valley/valley_medical)
"av" = (
/obj/structure/platform_decoration{
- dir = 8;
- icon_state = "platform_deco"
+ dir = 8
},
/obj/effect/blocker/toxic_water/Group_1,
/turf/open/gm/river/desert/shallow,
@@ -178,38 +129,26 @@
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- icon_state = "shore_corner2";
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_south)
"ax" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- icon_state = "shore_edge1";
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river/riverside_south)
"ay" = (
/obj/structure/platform_decoration{
- icon_state = "platform_deco";
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_medical)
"az" = (
/obj/structure/platform_decoration{
- dir = 8;
- icon_state = "platform_deco"
- },
-/turf/open/desert/dirt{
- icon_state = "dirt2"
+ dir = 8
},
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_medical)
"aA" = (
/obj/structure/platform{
@@ -218,9 +157,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_medical)
"aB" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -228,44 +165,28 @@
/area/desert_dam/exterior/river/riverside_south)
"aC" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/desert_shore1{
- icon_state = "shore1";
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/desert_dam/exterior/river/riverside_south)
"aD" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_medical)
"aE" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_medical)
"aF" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_south)
"aG" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_corner2{
- icon_state = "shore_corner2";
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/desert_dam/exterior/river/riverside_south)
"aH" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/desert/desert_shore/shore_edge1{
- icon_state = "shore_edge1";
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/desert_dam/exterior/river/riverside_south)
"aI" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -280,10 +201,7 @@
/area/desert_dam/exterior/river/riverside_south)
"aL" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_south)
"aM" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -298,10 +216,7 @@
"aO" = (
/obj/effect/blocker/toxic_water/Group_1,
/obj/structure/platform,
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/desert_dam/exterior/river/riverside_south)
"aP" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -332,41 +247,26 @@
/area/desert_dam/exterior/river/riverside_south)
"aU" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge/covered{
- icon_state = "shallow_edge";
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/covered/northeast,
/area/desert_dam/exterior/river/riverside_south)
"aV" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/river/riverside_south)
"aW" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/valley_medical)
"aX" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge/covered{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/covered/east,
/area/desert_dam/exterior/river/riverside_south)
"aY" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/river/riverside_south)
"aZ" = (
/obj/effect/decal/sand_overlay/sand1{
- dir = 8;
- icon = 'icons/turf/overlays.dmi';
- icon_state = "sand1_s"
- },
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
+ dir = 8
},
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_medical)
"ba" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -390,10 +290,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/desert_dam/exterior/river/riverside_south)
"bd" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -411,30 +308,21 @@
/area/desert_dam/exterior/river/riverside_south)
"bf" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/desert_dam/exterior/river/riverside_south)
"bg" = (
/obj/effect/blocker/toxic_water/Group_1,
/obj/structure/platform{
dir = 4
},
-/turf/open/gm/river/desert/shallow_corner{
- icon_state = "shallow_c";
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_south)
"bh" = (
/obj/effect/blocker/toxic_water/Group_1,
/obj/structure/platform{
dir = 4
},
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_south)
"bi" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -445,10 +333,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/gm/river/desert/shallow_corner{
- icon_state = "shallow_c";
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_south)
"bk" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -465,10 +350,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_south)
"bn" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -476,10 +358,7 @@
/area/desert_dam/exterior/river/riverside_south)
"bo" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_corner{
- icon_state = "shallow_c";
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/desert_dam/exterior/river/riverside_south)
"bp" = (
/obj/effect/blocker/toxic_water/Group_1,
@@ -497,10 +376,7 @@
/area/desert_dam/exterior/river/riverside_south)
"br" = (
/obj/effect/blocker/toxic_water/Group_1,
-/turf/open/gm/river/desert/shallow_edge{
- icon_state = "shallow_edge";
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/desert_dam/exterior/river/riverside_south)
"bs" = (
/obj/structure/platform,
@@ -525,28 +401,21 @@
/area/desert_dam/exterior/river/riverside_south)
"bv" = (
/obj/structure/platform_decoration{
- icon_state = "platform_deco";
dir = 1
},
/obj/effect/blocker/toxic_water/Group_1,
/turf/open/gm/river/desert/shallow,
/area/desert_dam/exterior/river/riverside_south)
"bw" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"by" = (
/obj/structure/largecrate/random/barrel/blue,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"bz" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_cargo)
"bA" = (
/obj/structure/platform{
diff --git a/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm b/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm
index 53aaaee59201..4ebaf4fbb798 100644
--- a/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm
+++ b/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm
@@ -1,9 +1,7 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"av" = (
/obj/structure/xenoautopsy/tank/alien,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/desert_dam/interior/caves/temple)
"aZ" = (
/obj/structure/prop/brazier,
@@ -25,10 +23,7 @@
/area/desert_dam/interior/caves/temple)
"bE" = (
/obj/structure/machinery/optable,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"bJ" = (
/obj/structure/surface/table/reinforced/prison{
@@ -76,10 +71,7 @@
/obj/item/tank/nitrogen{
pixel_x = 5
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"fX" = (
/obj/structure/stairs/perspective{
@@ -115,10 +107,7 @@
name = "ancient clan mask";
pixel_y = 20
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"iM" = (
/obj/structure/surface/table/reinforced/prison{
@@ -143,10 +132,7 @@
pixel_x = -1;
pixel_y = 8
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"ke" = (
/obj/structure/xenoautopsy/tank/larva,
@@ -154,9 +140,7 @@
dir = 8;
health = 80
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/desert_dam/interior/caves/temple)
"kI" = (
/obj/structure/prop/brazier/torch,
@@ -169,10 +153,7 @@
/turf/open/floor/sandstone/runed,
/area/desert_dam/interior/caves/temple)
"mA" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"mB" = (
/turf/open/floor/sandstone/runed,
@@ -186,22 +167,14 @@
desc = "A long-barreled heavy plasma weapon capable of leveling down an entire building. This one seems to be damaged beyond use.";
name = "damaged plasma rifle"
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"mY" = (
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_crashsite)
"oq" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"oH" = (
/obj/structure/surface/rack,
@@ -219,16 +192,10 @@
/obj/item/stack/medical/advanced/ointment/predator{
pixel_x = 5
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"oR" = (
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"pC" = (
/obj/structure/showcase{
@@ -251,10 +218,7 @@
icon_state = "pred_mask12_ebony";
unacidable = 0
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"qv" = (
/obj/effect/decal/remains/xeno{
@@ -268,10 +232,7 @@
/area/desert_dam/interior/caves/central_caves)
"qV" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_crashsite)
"re" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -304,19 +265,13 @@
name = "ancient katana";
unacidable = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"rI" = (
/obj/structure/surface/table/reinforced/prison{
color = "#6b675e"
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"td" = (
/turf/open/desert/rock,
@@ -330,10 +285,7 @@
"tq" = (
/obj/structure/closet/coffin/predator,
/obj/item/storage/large_holster/katana,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"uK" = (
/obj/structure/machinery/door/airlock/sandstone/runed{
@@ -347,9 +299,7 @@
dir = 9;
icon_state = "p_stair_full"
},
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_crashsite)
"vb" = (
/obj/structure/stairs/perspective{
@@ -357,9 +307,7 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/desert/dirt{
- icon_state = "rock1"
- },
+/turf/open/desert/dirt/rock1,
/area/desert_dam/exterior/valley/valley_crashsite)
"vY" = (
/obj/structure/surface/table/reinforced/prison{
@@ -413,10 +361,7 @@
/turf/open/floor/sandstone/runed,
/area/desert_dam/interior/caves/temple)
"AU" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"Bm" = (
/obj/structure/surface/rack{
@@ -428,15 +373,10 @@
/obj/item/stack/sheet/mineral/platinum{
amount = 50
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"Co" = (
-/turf/open/desert/dirt{
- icon_state = "dirt2"
- },
+/turf/open/desert/dirt/dirt2,
/area/desert_dam/exterior/valley/valley_crashsite)
"Dc" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -480,9 +420,7 @@
/area/desert_dam/interior/caves/temple)
"GX" = (
/obj/structure/xenoautopsy/tank/hugger,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/desert_dam/interior/caves/temple)
"Hj" = (
/obj/structure/surface/rack{
@@ -494,10 +432,7 @@
name = "strange jelly"
},
/obj/item/xeno_egg,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"Ix" = (
/obj/structure/surface/rack{
@@ -506,10 +441,7 @@
},
/obj/item/tool/weldingtool,
/obj/item/clothing/glasses/welding/superior,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"IV" = (
/obj/effect/decal/cleanable/cobweb{
@@ -533,10 +465,7 @@
desc = "A bizarre alien device used for trapping and killing prey.";
name = "Alien Mine"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"Jh" = (
/obj/structure/surface/table/reinforced/prison{
@@ -562,10 +491,7 @@
/area/desert_dam/interior/caves/temple)
"JP" = (
/obj/structure/xenoautopsy/tank,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"JU" = (
/obj/structure/platform/mineral/sandstone/runed,
@@ -573,10 +499,7 @@
/area/desert_dam/interior/caves/temple)
"JZ" = (
/obj/structure/machinery/autolathe/yautja,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"Kj" = (
/obj/structure/surface/table/reinforced/prison{
@@ -587,10 +510,7 @@
/area/desert_dam/interior/caves/temple)
"KA" = (
/obj/structure/closet/coffin/predator,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"Li" = (
/turf/open/gm/river/desert/deep,
@@ -612,10 +532,7 @@
/obj/item/tool/surgery/bonesetter/predatorbonesetter,
/obj/item/tool/surgery/bonegel/predatorbonegel,
/obj/item/tool/surgery/FixOVein/predatorFixOVein,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"MH" = (
/turf/closed/wall/mineral/sandstone/runed,
@@ -647,9 +564,7 @@
dir = 8;
health = 80
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/desert_dam/interior/caves/temple)
"Ps" = (
/obj/structure/bed/chair/comfy/beige{
@@ -679,10 +594,7 @@
/obj/structure/machinery/door/window{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"SD" = (
/obj/structure/platform_decoration/mineral/sandstone/runed,
@@ -690,10 +602,7 @@
/area/desert_dam/interior/caves/temple)
"TO" = (
/obj/structure/xenoautopsy,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"TU" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -708,10 +617,7 @@
dir = 4;
name = "plasma power generator"
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/desert_dam/interior/caves/temple)
"Vz" = (
/turf/closed/wall/mineral/sandstone/runed{
@@ -720,10 +626,7 @@
/area/desert_dam/interior/caves/temple)
"WM" = (
/obj/structure/curtain/red,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/desert_dam/interior/caves/temple)
"WV" = (
/obj/structure/prop/brazier/torch,
@@ -737,10 +640,7 @@
/turf/open/floor/sandstone/runed,
/area/desert_dam/interior/caves/temple)
"ZI" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/valley_crashsite)
(1,1,1) = {"
diff --git a/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm b/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm
index 497963d344e4..f6b5b1e368f2 100644
--- a/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm
+++ b/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm
@@ -3,47 +3,29 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/template_noop)
"h" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/template_noop)
"i" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/obj/structure/largecrate/supply/floodlights,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/template_noop)
"j" = (
/obj/structure/powerloader_wreckage,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/template_noop)
"u" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/template_noop)
"x" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/template_noop)
"D" = (
/turf/template_noop,
@@ -53,32 +35,20 @@
icon_state = "S"
},
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/template_noop)
"K" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/template_noop)
"L" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/template_noop)
"O" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/template_noop)
"R" = (
/obj/item/fuel_cell{
@@ -99,10 +69,7 @@
/turf/template_noop,
/area/template_noop)
"Y" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/template_noop)
"Z" = (
/obj/structure/largecrate/random/barrel,
diff --git a/maps/map_files/DesertDam/standalone/crashlanding-upp-alt1.dmm b/maps/map_files/DesertDam/standalone/crashlanding-upp-alt1.dmm
index 94258193f75b..3cdefd6579ad 100644
--- a/maps/map_files/DesertDam/standalone/crashlanding-upp-alt1.dmm
+++ b/maps/map_files/DesertDam/standalone/crashlanding-upp-alt1.dmm
@@ -5,7 +5,7 @@
pixel_y = -5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom,
+/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down,
/area/desert_dam/exterior/valley/valley_civilian)
"bz" = (
/turf/closed/shuttle/ert{
@@ -27,9 +27,7 @@
/area/desert_dam/exterior/valley/valley_civilian)
"cp" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"cG" = (
/obj/structure/flora/grass/desert/lightgrass_9,
@@ -48,14 +46,10 @@
"dN" = (
/obj/structure/flora/grass/desert/lightgrass_1,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"dP" = (
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_civilian)
"eb" = (
/obj/effect/spawner/gibspawner/human,
@@ -68,10 +62,7 @@
},
/area/desert_dam/exterior/valley/valley_civilian)
"eF" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/valley_civilian)
"fa" = (
/turf/closed/shuttle/ert{
@@ -82,15 +73,13 @@
"fg" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom,
+/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down,
/area/desert_dam/exterior/valley/valley_civilian)
"fp" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"ft" = (
/turf/closed/wall,
@@ -119,9 +108,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"hK" = (
/obj/structure/prop/invuln/fire{
@@ -154,28 +141,22 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_civilian)
"jN" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/valley_civilian)
"jU" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/dirt,
-/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom,
+/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down,
/area/desert_dam/exterior/valley/valley_civilian)
"jX" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"kd" = (
/turf/closed/shuttle/ert{
@@ -186,9 +167,7 @@
/area/desert_dam/exterior/valley/valley_civilian)
"kV" = (
/obj/structure/flora/grass/desert/lightgrass_2,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"la" = (
/turf/closed/wall/rock/orange,
@@ -205,28 +184,20 @@
/obj/item/explosive/grenade/high_explosive/upp,
/obj/item/explosive/grenade/high_explosive/upp,
/obj/item/explosive/grenade/high_explosive/upp,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/desert_dam/exterior/valley/valley_civilian)
"mt" = (
/obj/structure/machinery/light/double{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom,
+/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down,
/area/desert_dam/exterior/valley/valley_civilian)
"mw" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/valley_civilian)
"mM" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/valley_civilian)
"mN" = (
/obj/structure/desertdam/decals/road_edge{
@@ -241,17 +212,13 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"nj" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"nn" = (
/obj/structure/desertdam/decals/road_edge{
@@ -275,9 +242,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"nX" = (
/turf/open/desert/dirt,
@@ -297,7 +262,7 @@
/area/desert_dam/exterior/valley/valley_civilian)
"oL" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom,
+/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down,
/area/desert_dam/exterior/valley/valley_civilian)
"oX" = (
/obj/structure/desertdam/decals/road_edge{
@@ -323,14 +288,10 @@
/obj/item/ammo_magazine/rifle/type71/ap,
/obj/item/ammo_magazine/rifle/type71/ap,
/obj/item/ammo_magazine/rifle/type71/ap,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/desert_dam/exterior/valley/valley_civilian)
"sl" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/valley_civilian)
"ss" = (
/obj/structure/flora/bush/desert/cactus/multiple{
@@ -383,9 +344,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"vz" = (
/obj/structure/closet/crate/ammo,
@@ -401,9 +360,7 @@
/obj/item/ammo_magazine/rifle/type71,
/obj/item/weapon/gun/rifle/type71,
/obj/item/weapon/gun/rifle/type71,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/desert_dam/exterior/valley/valley_civilian)
"vJ" = (
/obj/structure/prop/invuln/fire,
@@ -420,9 +377,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"xp" = (
/obj/structure/desertdam/decals/road_edge{
@@ -434,9 +389,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"xz" = (
/obj/structure/girder/displaced,
@@ -469,9 +422,7 @@
/area/desert_dam/exterior/valley/valley_civilian)
"ym" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"yU" = (
/obj/structure/prop/invuln/fire{
@@ -487,9 +438,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/valley_civilian)
"zE" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -501,9 +450,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"zO" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -512,23 +459,16 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 8
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"As" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"AW" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/valley_civilian)
"Bk" = (
/turf/closed/shuttle/ert{
@@ -547,9 +487,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"BM" = (
/obj/structure/flora/grass/desert/lightgrass_3,
@@ -559,9 +497,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached18"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached18,
/area/desert_dam/exterior/valley/valley_civilian)
"BY" = (
/obj/structure/desertdam/decals/road_edge{
@@ -580,15 +516,11 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"CL" = (
/obj/structure/bed/chair/dropship/passenger,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/desert_dam/exterior/valley/valley_civilian)
"Dd" = (
/obj/structure/prop/invuln/fire{
@@ -604,9 +536,7 @@
"DO" = (
/obj/structure/flora/grass/desert/lightgrass_9,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"Eh" = (
/obj/structure/flora/grass/desert/lightgrass_1,
@@ -615,9 +545,7 @@
"EF" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"EL" = (
/obj/structure/flora/grass/desert/lightgrass_2,
@@ -637,9 +565,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"Gt" = (
/turf/closed/shuttle/ert{
@@ -656,10 +582,7 @@
},
/area/desert_dam/exterior/valley/valley_civilian)
"Ho" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/valley_civilian)
"Hs" = (
/obj/structure/prop/invuln/fire{
@@ -702,9 +625,7 @@
dir = 4
},
/obj/effect/decal/sand_overlay/sand1/corner1,
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"Jy" = (
/obj/structure/prop/invuln/fire,
@@ -736,18 +657,13 @@
},
/area/desert_dam/exterior/valley/valley_civilian)
"KC" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/valley_civilian)
"KX" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/valley_civilian)
"Lc" = (
/obj/structure/desertdam/decals/road_edge{
@@ -777,9 +693,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/valley_civilian)
"LD" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -791,17 +705,13 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"Mp" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"MM" = (
/turf/closed/shuttle/ert{
@@ -820,9 +730,7 @@
/obj/structure/closet/crate/ammo,
/obj/item/ammo_magazine/pkp,
/obj/item/weapon/gun/pkp,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/desert_dam/exterior/valley/valley_civilian)
"NP" = (
/turf/closed/shuttle/ert{
@@ -848,21 +756,17 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"OG" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom,
+/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down,
/area/desert_dam/exterior/valley/valley_civilian)
"OJ" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"Pc" = (
/obj/structure/desertdam/decals/road_edge{
@@ -894,9 +798,7 @@
dir = 5
},
/obj/effect/spawner/gibspawner/human,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"Qj" = (
/obj/structure/machinery/colony_floodlight,
@@ -913,17 +815,13 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"Sb" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"Sf" = (
/turf/closed/shuttle/ert{
@@ -943,9 +841,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"SN" = (
/obj/effect/spawner/gibspawner/human,
@@ -988,7 +884,7 @@
pixel_y = 21
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/desert_dam/exterior/valley/valley_civilian)
"UB" = (
/obj/structure/prop/invuln/fire{
@@ -1006,9 +902,7 @@
dir = 8
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"VD" = (
/obj/structure/flora/bush/desert/cactus{
@@ -1026,9 +920,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached2"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached2,
/area/desert_dam/exterior/valley/valley_civilian)
"Wy" = (
/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right,
@@ -1037,32 +929,24 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"WW" = (
-/turf/open/asphalt{
- icon_state = "tile"
- },
+/turf/open/asphalt/tile,
/area/desert_dam/exterior/valley/valley_civilian)
"Xn" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"Xq" = (
/turf/template_noop,
/area/template_noop)
"XT" = (
/obj/structure/flora/tree/joshua,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"Yr" = (
/turf/closed/shuttle/ert{
@@ -1072,9 +956,7 @@
},
/area/desert_dam/exterior/valley/valley_civilian)
"Yv" = (
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"YD" = (
/obj/structure/fence,
@@ -1084,9 +966,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/valley_civilian)
"Zm" = (
/obj/structure/flora/grass/tallgrass/desert,
diff --git a/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm b/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm
index 9cca7b5c3558..61bc40a64e52 100644
--- a/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm
+++ b/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm
@@ -29,16 +29,11 @@
dir = 4
},
/obj/item/ammo_casing/bullet,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/bar_valley_dam)
"aO" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/desert_dam/building/bar/bar)
"aT" = (
/turf/closed/shuttle/ert{
@@ -51,9 +46,7 @@
/obj/item/reagent_container/food/drinks/flask/canteen{
desc = "You take a sip from your trusty UPP canteen..."
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"be" = (
/obj/structure/closet/secure_closet/bar,
@@ -67,9 +60,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"bu" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"bz" = (
/obj/structure/bed/roller,
@@ -89,10 +80,7 @@
/area/desert_dam/building/bar/backroom)
"bI" = (
/obj/item/ammo_casing/bullet,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/bar_valley_dam)
"bJ" = (
/obj/structure/disposalpipe/segment{
@@ -152,18 +140,14 @@
network = null;
pixel_y = 21
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/desert_dam/building/bar/bar)
"cR" = (
/obj/effect/landmark/crap_item,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"cZ" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"da" = (
/obj/structure/flora/grass/desert/heavygrass_4,
@@ -179,15 +163,11 @@
/area/desert_dam/building/bar/bar)
"du" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/desert_dam/building/bar/backroom)
"dJ" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"dQ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -196,16 +176,14 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"dR" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"dX" = (
/obj/structure/surface/table/almayer,
/obj/item/ammo_box/rounds/type71{
bullet_amount = 129
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/desert_dam/building/bar/bar)
"ee" = (
/obj/effect/decal/warning_stripes{
@@ -214,10 +192,7 @@
/turf/open/asphalt,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"eh" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/desert_dam/building/bar/bar_restroom)
"ej" = (
/obj/structure/flora/grass/desert/lightgrass_2,
@@ -277,16 +252,14 @@
icon_state = "paper_words";
item_state = "paper_words"
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/desert_dam/building/bar/bar)
"fk" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"fy" = (
/obj/structure/flora/grass/desert/lightgrass_6,
@@ -306,9 +279,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"fM" = (
/obj/item/stack/rods,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"fN" = (
/obj/structure/disposalpipe/segment,
@@ -327,18 +298,14 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"ga" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
/obj/item/prop/colony/used_flare,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"gm" = (
/obj/structure/desertdam/decals/road_edge,
@@ -351,9 +318,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"gM" = (
/obj/item/trash/candy,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"gN" = (
/obj/item/ammo_casing/bullet,
@@ -366,16 +331,11 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"gR" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"hc" = (
/obj/structure/prop/dam/wide_boulder/boulder1,
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/bar_valley_dam)
"hd" = (
/obj/structure/flora/grass/desert/lightgrass_8,
@@ -434,9 +394,7 @@
/obj/item/ammo_box/rounds/type71/heap/empty{
bullet_amount = 0
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"hO" = (
/obj/effect/decal/warning_stripes{
@@ -451,16 +409,11 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"hY" = (
/obj/structure/bed/stool,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"if" = (
/obj/effect/decal/cleanable/dirt,
@@ -478,9 +431,7 @@
/turf/open/floor/plating,
/area/desert_dam/building/bar/bar)
"is" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"iy" = (
/turf/closed/wall/wood,
@@ -495,10 +446,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"iL" = (
/obj/structure/prop/dam/boulder/boulder1,
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/bar_valley_dam)
"iV" = (
/obj/effect/landmark/crap_item,
@@ -519,9 +467,7 @@
"jj" = (
/obj/item/trash/cheesie,
/obj/item/stack/sheet/wood,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"jm" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -532,9 +478,7 @@
dir = 5;
pixel_y = 8
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"jp" = (
/obj/structure/desertdam/decals/road_edge,
@@ -563,10 +507,7 @@
/area/desert_dam/building/bar/bar)
"jw" = (
/obj/item/ammo_casing/bullet,
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/bar_valley_dam)
"jy" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -579,26 +520,20 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"jI" = (
/obj/structure/barricade/sandbags/wired{
dir = 4
},
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"jJ" = (
/obj/structure/flora/grass/desert/lightgrass_1,
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"kf" = (
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"kh" = (
/obj/structure/desertdam/decals/road_edge{
@@ -609,18 +544,13 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"ki" = (
/obj/item/stack/sandbags,
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/bar_valley_dam)
"kk" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"kp" = (
/obj/effect/decal/cleanable/blood,
@@ -631,9 +561,7 @@
/obj/structure/barricade/sandbags/wired{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached14"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached14,
/area/desert_dam/exterior/valley/bar_valley_dam)
"kD" = (
/turf/open/desert/dirt,
@@ -649,9 +577,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/desert_dam/building/bar/backroom)
"ln" = (
/turf/open/desert/rock,
@@ -661,37 +587,25 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/bar_valley_dam)
"lT" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/bar_valley_dam)
"mb" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"md" = (
/obj/item/ammo_magazine/rifle/type71/heap{
current_rounds = 0
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"mf" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/bar_valley_dam)
"mq" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -704,10 +618,7 @@
dir = 4
},
/obj/item/prop/colony/used_flare,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/desert_dam/building/bar/backroom)
"mF" = (
/obj/structure/disposalpipe/segment,
@@ -731,9 +642,7 @@
/turf/open/desert/dirt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"mV" = (
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/building/bar/bar_restroom)
"nk" = (
/turf/closed/shuttle/ert{
@@ -745,9 +654,7 @@
"np" = (
/obj/structure/flora/grass/desert/lightgrass_1,
/obj/item/ammo_casing/bullet,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"nt" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -778,9 +685,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/desert_dam/building/bar/bar)
"nD" = (
/obj/structure/flora/grass/desert/heavygrass_4,
@@ -796,9 +701,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"oc" = (
/obj/structure/surface/table/reinforced,
@@ -811,15 +714,11 @@
/area/desert_dam/building/bar/bar)
"oo" = (
/obj/structure/flora/grass/desert/heavygrass_4,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"oy" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/bar_valley_dam)
"oD" = (
/obj/structure/machinery/vending/snack,
@@ -830,9 +729,7 @@
/obj/item/ammo_magazine/rifle/type71/heap{
current_rounds = 0
},
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"oK" = (
/obj/effect/decal/sand_overlay/sand1/corner1{
@@ -841,24 +738,18 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 9
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"oN" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/item/ammo_casing/bullet,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/bar_valley_dam)
"pk" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"pq" = (
/obj/structure/desertdam/decals/road_edge{
@@ -868,10 +759,7 @@
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"pu" = (
/obj/structure/machinery/light/double,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"px" = (
/obj/structure/barricade/sandbags/wired{
@@ -890,15 +778,12 @@
"pA" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/rods,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/desert_dam/building/bar/bar)
"pM" = (
/obj/structure/bed/chair/dropship/passenger,
/obj/item/storage/belt/medical/lifesaver/upp,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/desert_dam/building/bar/bar)
"pO" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -921,31 +806,21 @@
pixel_x = 5;
pixel_y = 15
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"qe" = (
/obj/structure/prop/dam/boulder/boulder3,
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/bar_valley_dam)
"qu" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
/obj/item/prop/colony/used_flare,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"qx" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/bar_valley_dam)
"qS" = (
/turf/open/floor/interior/wood/alt,
@@ -976,18 +851,14 @@
/area/desert_dam/building/bar/bar)
"rR" = (
/obj/structure/prop/dam/boulder/boulder1,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"rX" = (
/obj/item/prop/colony/folded_bedroll,
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/desert_dam/building/bar/bar)
"se" = (
/obj/item/trash/semki,
@@ -1003,15 +874,11 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"sp" = (
/obj/structure/machinery/cm_vending/sorted/boozeomat,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"su" = (
/obj/structure/surface/table/reinforced,
@@ -1024,9 +891,7 @@
"sv" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/tool/shovel,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"sE" = (
/obj/structure/machinery/light/double{
@@ -1038,9 +903,7 @@
"sH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/barricade/sandbags/wired,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"sI" = (
/obj/structure/flora/grass/desert/lightgrass_5,
@@ -1056,9 +919,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"tl" = (
/obj/item/ammo_casing/bullet,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"tu" = (
/obj/effect/decal/cleanable/blood,
@@ -1077,9 +938,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"tK" = (
/obj/structure/bed/bedroll,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"tM" = (
/turf/closed/shuttle/ert{
@@ -1121,13 +980,10 @@
pixel_y = 7;
icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi'
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/desert_dam/building/bar/bar)
"uF" = (
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/east,
/area/desert_dam/exterior/valley/bar_valley_dam)
"uZ" = (
/obj/item/roller,
@@ -1146,18 +1002,12 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"vn" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"vq" = (
/obj/structure/sink,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"vy" = (
/obj/item/prop/colony/used_flare,
@@ -1178,16 +1028,11 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"wj" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/desert_dam/building/bar/bar)
"wm" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -1198,9 +1043,7 @@
/area/desert_dam/building/bar/bar)
"wp" = (
/obj/structure/flora/grass/desert/heavygrass_10,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"wq" = (
/obj/structure/flora/grass/desert/lightgrass_2,
@@ -1225,9 +1068,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"wy" = (
/obj/item/trash/candy,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/desert_dam/building/bar/bar_restroom)
"wE" = (
/obj/structure/girder,
@@ -1239,14 +1080,10 @@
},
/obj/structure/bed/bedroll,
/obj/item/reagent_container/food/drinks/bottle/vodka,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"wJ" = (
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"wO" = (
/obj/structure/barricade/sandbags/wired{
@@ -1267,7 +1104,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S-corner"
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/desert_dam/building/bar/bar)
"xg" = (
/obj/structure/prop/dam/boulder/boulder1,
@@ -1278,9 +1115,7 @@
dir = 1
},
/obj/effect/landmark/crap_item,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/bar_valley_dam)
"xm" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -1324,10 +1159,7 @@
start_charge = 0
},
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"xN" = (
/turf/closed/shuttle/ert{
@@ -1338,10 +1170,7 @@
/area/desert_dam/building/bar/bar)
"xP" = (
/obj/item/ammo_casing/bullet,
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/bar_valley_dam)
"xT" = (
/turf/template_noop,
@@ -1361,9 +1190,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/wood,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"yf" = (
/obj/effect/decal/warning_stripes{
@@ -1374,25 +1201,18 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"yk" = (
/obj/structure/prop/dam/large_boulder/boulder2,
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/bar_valley_dam)
"ym" = (
/obj/item/stack/sandbags/large_stack,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"yo" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/desert_dam/building/bar/bar)
"ys" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -1433,9 +1253,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 1
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/bar_valley_dam)
"zl" = (
/obj/structure/disposalpipe/segment{
@@ -1451,10 +1269,7 @@
/obj/structure/machinery/light/double{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"zC" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -1470,21 +1285,13 @@
"zD" = (
/obj/structure/surface/table/woodentable,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"zM" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/desert_dam/building/bar/bar)
"zO" = (
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/bar_valley_dam)
"zS" = (
/obj/structure/flora/grass/desert/heavygrass_4,
@@ -1502,18 +1309,13 @@
/obj/structure/machinery/light/double{
dir = 1
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Ae" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"Ah" = (
/obj/structure/barricade/wooden{
@@ -1543,10 +1345,7 @@
/obj/structure/barricade/sandbags/wired{
dir = 1
},
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/bar_valley_dam)
"AT" = (
/turf/closed/shuttle/ert{
@@ -1567,9 +1366,7 @@
"Bu" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Bx" = (
/obj/structure/surface/table/almayer,
@@ -1588,7 +1385,7 @@
/obj/item/ammo_magazine/rifle/type71/heap{
current_rounds = 0
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/desert_dam/building/bar/bar)
"BB" = (
/turf/closed/shuttle/ert{
@@ -1605,17 +1402,12 @@
/obj/item/reagent_container/food/drinks/flask/canteen{
desc = "You take a sip from your trusty UPP canteen..."
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"BM" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/desert_dam/building/bar/bar)
"BP" = (
/obj/structure/desertdam/decals/road_edge{
@@ -1636,10 +1428,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/desert_dam/building/bar/backroom)
"Cc" = (
/obj/structure/desertdam/decals/road_edge{
@@ -1651,16 +1440,10 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Ce" = (
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/west,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Ch" = (
-/turf/open/desert/dirt{
- dir = 6;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southeast,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Cm" = (
/obj/structure/prop/invuln/lattice_prop{
@@ -1683,9 +1466,7 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"CA" = (
/turf/closed/shuttle/ert{
@@ -1702,9 +1483,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"CH" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/desert_dam/building/bar/bar_restroom)
"CI" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -1714,9 +1493,7 @@
pixel_y = 13
},
/obj/item/clothing/mask/cigarette/cigar,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"CL" = (
/turf/closed/shuttle/ert{
@@ -1729,9 +1506,7 @@
/obj/effect/decal/sand_overlay/sand1/corner1{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Db" = (
/obj/structure/girder,
@@ -1745,9 +1520,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"Di" = (
/obj/item/prop/colony/used_flare,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Dn" = (
/obj/effect/decal/cleanable/dirt,
@@ -1758,9 +1531,7 @@
},
/area/desert_dam/building/bar/bar)
"Dt" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/desert_dam/building/bar/bar_restroom)
"Du" = (
/obj/effect/decal/cleanable/dirt,
@@ -1783,10 +1554,7 @@
/area/desert_dam/building/bar/bar)
"DE" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"DO" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -1795,9 +1563,7 @@
"DR" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/bar_valley_dam)
"DZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -1818,10 +1584,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Eg" = (
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Ek" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1834,33 +1597,24 @@
/obj/structure/barricade/sandbags/wired{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Er" = (
/obj/item/stack/sheet/wood,
/turf/open/floor/interior/wood,
/area/desert_dam/building/bar/bar)
"Ev" = (
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"Ex" = (
/obj/item/prop/colony/used_flare,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/bar_valley_dam)
"EH" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"EO" = (
/turf/closed/shuttle/ert{
@@ -1885,9 +1639,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"Fh" = (
/obj/item/storage/belt/utility,
@@ -1915,10 +1667,7 @@
/obj/structure/barricade/sandbags/wired{
dir = 4
},
-/turf/open/desert/dirt{
- dir = 4;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/east,
/area/desert_dam/exterior/valley/bar_valley_dam)
"FF" = (
/obj/structure/disposalpipe/segment,
@@ -1928,9 +1677,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"FI" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached15"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached15,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Gc" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -1940,9 +1687,7 @@
dir = 4
},
/obj/item/ammo_casing/bullet,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Gd" = (
/obj/effect/decal/warning_stripes{
@@ -1963,9 +1708,7 @@
/area/desert_dam/building/bar/bar)
"GP" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"GY" = (
/obj/item/trash/used_stasis_bag,
@@ -1974,9 +1717,7 @@
/area/desert_dam/building/bar/bar)
"GZ" = (
/obj/item/stack/barbed_wire/small_stack,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Hb" = (
/obj/structure/desertdam/decals/road_edge,
@@ -1986,10 +1727,7 @@
/turf/open/asphalt,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Hl" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/north,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Hq" = (
/obj/structure/barricade/sandbags/wired{
@@ -2002,9 +1740,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/desert_dam/building/bar/bar)
"HH" = (
/obj/effect/decal/warning_stripes{
@@ -2031,9 +1767,7 @@
/obj/item/prop/colony/usedbandage{
dir = 5
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Iu" = (
/turf/open/desert/dirt,
@@ -2049,13 +1783,11 @@
/obj/structure/bed/chair/dropship/passenger{
dir = 8
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/desert_dam/building/bar/bar)
"IU" = (
/obj/item/tool/shovel,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"IW" = (
/turf/closed/shuttle/ert{
@@ -2065,28 +1797,19 @@
},
/area/desert_dam/building/bar/bar)
"Jc" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/desert_dam/building/bar/bar)
"Jd" = (
/obj/structure/flora/grass/desert/lightgrass_5,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Ji" = (
/obj/item/trash/candy,
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/desert_dam/building/bar/bar)
"Jk" = (
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"Js" = (
/obj/structure/disposalpipe/segment{
@@ -2097,9 +1820,7 @@
/area/desert_dam/building/bar/bar)
"Jt" = (
/obj/item/trash/cheesie,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Jx" = (
/obj/structure/desertdam/decals/road_edge,
@@ -2149,9 +1870,7 @@
dir = 8
},
/obj/item/stack/sandbags,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached13"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached13,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Lo" = (
/obj/effect/landmark/survivor_spawner/upp/soldier,
@@ -2167,9 +1886,7 @@
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"Lw" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/desert_dam/building/bar/bar)
"LB" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -2182,24 +1899,15 @@
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"LC" = (
/obj/item/prop/colony/usedbandage,
-/turf/open/desert/dirt{
- dir = 10;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/southwest,
/area/desert_dam/exterior/valley/bar_valley_dam)
"LD" = (
/obj/item/ammo_casing/bullet,
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/bar_valley_dam)
"LF" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"LJ" = (
/obj/structure/machinery/power/apc{
@@ -2208,24 +1916,18 @@
start_charge = 0
},
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/desert_dam/building/bar/backroom)
"LM" = (
/obj/item/prop/colony/used_flare,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached16"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached16,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Ms" = (
/obj/item/ammo_casing/bullet,
/obj/item/prop/colony/usedbandage{
dir = 1
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Mw" = (
/obj/structure/machinery/blackbox_recorder,
@@ -2245,9 +1947,7 @@
/obj/structure/barricade/sandbags/wired{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Ne" = (
/obj/effect/decal/warning_stripes{
@@ -2264,17 +1964,13 @@
/obj/item/ammo_box/rounds/type71/heap/empty{
bullet_amount = 0
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Nj" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 6
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"No" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -2282,10 +1978,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"Nu" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/bar_valley_dam)
"NH" = (
/obj/structure/machinery/light/double{
@@ -2333,15 +2026,11 @@
/obj/effect/decal/sand_overlay/sand1{
dir = 8
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached1"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Ow" = (
/obj/structure/prop/dam/boulder/boulder2,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"OD" = (
/turf/open/asphalt,
@@ -2354,18 +2043,14 @@
dir = 1;
pixel_y = -10
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached19"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached19,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"OO" = (
/turf/closed/wall/r_wall,
/area/desert_dam/exterior/valley/bar_valley_dam)
"OS" = (
/obj/structure/barricade/sandbags/wired,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"OU" = (
/obj/structure/desertdam/decals/road_edge{
@@ -2388,10 +2073,7 @@
/turf/open/floor/interior/wood,
/area/desert_dam/building/bar/bar)
"Pw" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"PH" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -2407,21 +2089,17 @@
pixel_x = 1;
pixel_y = 35
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"PR" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/desert_dam/building/bar/bar)
"PS" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/bar_valley_dam)
"PX" = (
/obj/structure/flora/grass/desert/heavygrass_5,
@@ -2429,9 +2107,7 @@
dir = 5
},
/obj/effect/decal/cleanable/blood,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"PY" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -2441,17 +2117,13 @@
pixel_y = 13
},
/obj/item/toy/plush/farwa,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Qc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/desert_dam/building/bar/bar_restroom)
"Qk" = (
/obj/item/ammo_magazine/rifle/type71/heap{
@@ -2473,17 +2145,13 @@
density = 0;
pixel_y = 32
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"QI" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 10
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"QK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2526,7 +2194,7 @@
/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot,
/obj/item/ammo_box/magazine/misc/flares,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/desert_dam/building/bar/bar)
"Ro" = (
/obj/structure/flora/grass/desert/lightgrass_11,
@@ -2535,17 +2203,13 @@
"Rs" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/desert_dam/building/bar/bar)
"RU" = (
/obj/effect/decal/sand_overlay/sand1{
dir = 5
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached9"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached9,
/area/desert_dam/exterior/valley/bar_valley_dam)
"RW" = (
/obj/effect/decal/warning_stripes{
@@ -2562,19 +2226,13 @@
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"Sh" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/desert_dam/building/bar/bar)
"Sl" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/desert_dam/building/bar/bar)
"So" = (
/obj/effect/decal/cleanable/dirt,
@@ -2600,9 +2258,7 @@
/area/desert_dam/building/bar/backroom)
"SG" = (
/obj/effect/decal/sand_overlay/sand1,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"SL" = (
/obj/item/ammo_magazine/rifle/type71/heap{
@@ -2618,10 +2274,7 @@
/obj/structure/barricade/sandbags/wired{
dir = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/desert_dam/building/bar/bar)
"SY" = (
/obj/effect/decal/cleanable/dirt,
@@ -2633,9 +2286,7 @@
/area/desert_dam/building/bar/bar)
"Ta" = (
/obj/item/prop/colony/used_flare,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Tc" = (
/obj/structure/bed/chair/wood/normal{
@@ -2654,26 +2305,20 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/desert_dam/building/bar/bar)
"Tl" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/item/ammo_magazine/rifle/type71/heap{
current_rounds = 0
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached12"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached12,
/area/desert_dam/exterior/valley/bar_valley_dam)
"TH" = (
/obj/effect/decal/sand_overlay/sand1,
/obj/item/ammo_casing/bullet,
/obj/effect/landmark/crap_item,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"TO" = (
/obj/structure/pipes/vents/pump{
@@ -2683,15 +2328,10 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"TR" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/desert_dam/building/bar/bar_restroom)
"Ug" = (
/obj/item/ammo_casing/bullet,
@@ -2699,10 +2339,7 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"Ui" = (
/obj/structure/prop/dam/boulder/boulder2,
-/turf/open/desert/dirt{
- dir = 8;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/west,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Ul" = (
/obj/effect/decal/cleanable/dirt,
@@ -2720,14 +2357,10 @@
/area/desert_dam/exterior/valley/bar_valley_dam)
"Uq" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/desert/dirt{
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1,
/area/desert_dam/exterior/valley/bar_valley_dam)
"UB" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/desert_dam/building/bar/bar)
"UK" = (
/obj/item/ammo_box/rounds/type71/heap/empty{
@@ -2746,9 +2379,7 @@
pixel_y = 13
},
/obj/item/clothing/head/helmet/marine/veteran/UPP,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"UQ" = (
/obj/structure/surface/table/reinforced,
@@ -2757,9 +2388,7 @@
pixel_y = 32
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"Vc" = (
/obj/structure/desertdam/decals/road_edge,
@@ -2784,9 +2413,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/desert_dam/building/bar/bar)
"Vt" = (
/obj/item/prop/colony/usedbandage{
@@ -2799,17 +2426,11 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/desert_dam/building/bar/bar)
"VG" = (
/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/desert/dirt{
- dir = 9;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northwest,
/area/desert_dam/exterior/valley/bar_valley_dam)
"VI" = (
/turf/open/floor/plating,
@@ -2920,9 +2541,7 @@
desc = "You take a sip from your trusty UPP canteen...";
pixel_y = 4
},
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Xh" = (
/obj/effect/decal/cleanable/dirt,
@@ -2933,15 +2552,11 @@
dir = 6
},
/obj/item/ammo_casing/bullet,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Xv" = (
/obj/structure/prop/dam/boulder/boulder3,
-/turf/open/mars{
- icon_state = "mars_dirt_5"
- },
+/turf/open/mars/mars_dirt_5,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Xw" = (
/turf/open/floor/interior/wood,
@@ -2974,33 +2589,22 @@
/area/desert_dam/interior/dam_interior/south_tunnel_entrance)
"XZ" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/desert/dirt{
- dir = 5;
- icon_state = "desert_transition_edge1"
- },
+/turf/open/desert/dirt/desert_transition_edge1/northeast,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Yf" = (
/obj/effect/spawner/gibspawner/xeno,
/turf/open/floor/interior/wood,
/area/desert_dam/building/bar/bar)
"Yn" = (
-/turf/open/desert/dirt{
- dir = 1;
- icon_state = "desert_transition_corner1"
- },
+/turf/open/desert/dirt/desert_transition_corner1/north,
/area/desert_dam/exterior/valley/bar_valley_dam)
"Yq" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "carpet6-2"
- },
+/turf/open/floor/carpet6_2/west,
/area/desert_dam/building/bar/bar)
"YA" = (
/obj/structure/bed/chair/wood/normal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/desert_dam/building/bar/bar)
"YE" = (
/obj/effect/decal/sand_overlay/sand1,
@@ -3043,9 +2647,7 @@
},
/area/desert_dam/building/bar/bar)
"YZ" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/desert_dam/building/bar/bar_restroom)
"ZA" = (
/obj/effect/decal/sand_overlay/sand1{
@@ -3054,9 +2656,7 @@
/obj/structure/barricade/sandbags/wired{
dir = 4
},
-/turf/open/asphalt/cement_sunbleached{
- icon_state = "cement_sunbleached4"
- },
+/turf/open/asphalt/cement_sunbleached/cement_sunbleached4,
/area/desert_dam/exterior/valley/bar_valley_dam)
"ZB" = (
/obj/effect/decal/sand_overlay/sand1,
diff --git a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm
index d1dd76922ee1..5cccceb54389 100644
--- a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm
+++ b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm
@@ -6,10 +6,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/north)
"aab" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -30,9 +27,7 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding9"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/north)
"aaf" = (
/obj/effect/landmark/corpsespawner/prisoner,
@@ -112,19 +107,13 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/research/secret/testing)
"aap" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/research/secret/testing)
"aaq" = (
/obj/structure/machinery/disposal,
@@ -135,10 +124,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/research/secret/testing)
"aar" = (
/obj/effect/decal/warning_stripes{
@@ -151,20 +137,14 @@
icon_state = "coil1";
name = "cable piece"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/research/secret/testing)
"aas" = (
/obj/structure/machinery/door/window/southright,
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/research/secret/testing)
"aat" = (
/obj/structure/surface/table/reinforced,
@@ -179,20 +159,14 @@
icon_state = "S"
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/research/secret/testing)
"aau" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/research/secret/testing)
"aav" = (
/obj/structure/closet/l3closet,
@@ -200,10 +174,7 @@
dir = 1
},
/obj/item/reagent_container/food/snacks/baguette,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/research/secret/testing)
"aaw" = (
/obj/structure/surface/table/reinforced,
@@ -212,10 +183,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/north)
"aax" = (
/obj/structure/surface/table/reinforced,
@@ -224,10 +192,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/north)
"aay" = (
/obj/effect/decal/warning_stripes{
@@ -236,20 +201,14 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/research/secret/testing)
"aaz" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/obj/structure/machinery/door/window/southleft,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/research/secret/testing)
"aaA" = (
/obj/structure/surface/table/reinforced,
@@ -263,10 +222,7 @@
id = "biological_testing_2";
name = "Containment Shutter Control"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/research/secret/testing)
"aaB" = (
/obj/effect/decal/warning_stripes{
@@ -278,10 +234,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/research/secret/testing)
"aaC" = (
/obj/structure/machinery/light/small{
@@ -290,106 +243,63 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"aaD" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/north)
"aaE" = (
/obj/structure/machinery/smartfridge/secure,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/prison/research/secret/testing)
"aaF" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research/secret/testing)
"aaG" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/testing)
"aaH" = (
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/testing)
"aaI" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/prison/research/secret/testing)
"aaJ" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research/secret/testing)
"aaK" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"aaL" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/north,
/area/prison/research/secret/testing)
"aaM" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research/secret/testing)
"aaN" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research/secret/testing)
"aaO" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/east,
/area/prison/research/secret/testing)
"aaP" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/north,
/area/prison/research/secret/testing)
"aaQ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research/secret/testing)
"aaR" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -409,69 +319,45 @@
/turf/open/space,
/area/space)
"aaT" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/prison/research/secret/testing)
"aaU" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/west,
/area/prison/research/secret/testing)
"aaV" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"aaW" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"aaX" = (
/obj/item/paper/prison_station/test_log,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"aaY" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"aaZ" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abc" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/suit/chef/classic,
/obj/item/tool/kitchen/rollingpin,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/central)
"abd" = (
/obj/structure/surface/rack,
@@ -481,28 +367,19 @@
/obj/item/clothing/mask/muzzle,
/obj/item/clothing/mask/muzzle,
/obj/item/clothing/mask/muzzle,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abe" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abf" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abg" = (
/obj/structure/machinery/disposal,
@@ -512,43 +389,29 @@
/obj/structure/sign/safety/nonpress{
pixel_x = 30
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research/secret/testing)
"abh" = (
/obj/structure/machinery/computer/operating,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/testing)
"abi" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abj" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abk" = (
/obj/structure/surface/table/reinforced,
/obj/item/folder,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abl" = (
/obj/item/paper_bin{
@@ -560,41 +423,26 @@
pixel_y = 8
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abn" = (
/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abo" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abp" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abq" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research/secret/testing)
"abr" = (
/obj/structure/disposalpipe/trunk,
@@ -609,50 +457,32 @@
/obj/structure/machinery/computer/med_data/laptop{
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/testing)
"abt" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research/secret/testing)
"abu" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abv" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abw" = (
-/turf/open/floor/prison{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner,
/area/prison/research/secret/testing)
"abx" = (
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research/secret/testing)
"aby" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/prison/research/secret/testing)
"abz" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -669,25 +499,18 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/testing)
"abC" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/research/secret/testing)
"abD" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"abE" = (
/obj/structure/surface/table/reinforced,
@@ -696,70 +519,50 @@
pixel_y = 4
},
/obj/item/storage/box/syringes,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"abF" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"abG" = (
/obj/structure/pipes/vents/scrubber,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"abH" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/research/secret/bioengineering)
"abI" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/research/secret/bioengineering)
"abJ" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"abK" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"abL" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/med_data/laptop,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"abM" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"abN" = (
/obj/structure/window/reinforced{
@@ -772,26 +575,17 @@
/area/prison/research/secret/bioengineering)
"abO" = (
/obj/structure/xenoautopsy/tank/larva,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/research/secret/bioengineering)
"abP" = (
/obj/structure/xenoautopsy/tank/broken,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/research/secret/bioengineering)
"abQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/north)
"abR" = (
/obj/structure/machinery/flasher{
@@ -824,10 +618,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/north)
"abV" = (
/obj/structure/disposalpipe/segment{
@@ -839,10 +630,7 @@
name = "Cell";
opacity = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"abW" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -853,102 +641,68 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"abZ" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"aca" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"acb" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"acc" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/prison/research/secret/bioengineering)
"acd" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research/secret/bioengineering)
"ace" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/prison/research/secret/bioengineering)
"acf" = (
/obj/structure/window/framed/prison/cell,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"acg" = (
/turf/closed/wall/r_wall/prison,
/area/prison/research/secret/bioengineering)
"ach" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/prison/research/secret/bioengineering)
"acj" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research/secret/bioengineering)
"ack" = (
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/prison/research/secret/bioengineering)
"acl" = (
/obj/effect/decal/warning_stripes{
@@ -978,10 +732,7 @@
dir = 1
},
/obj/structure/machinery/door/window/northleft,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/maxsec/north)
"acp" = (
/obj/effect/landmark/corpsespawner/prisoner,
@@ -1013,10 +764,7 @@
dir = 8;
health = 80
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/maxsec/north)
"acu" = (
/obj/item/ammo_casing,
@@ -1024,39 +772,28 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"acv" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/circular_saw,
/obj/item/tool/surgery/scalpel,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/testing)
"acw" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/testing)
"acx" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research/secret/testing)
"acy" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research/secret/testing)
"acz" = (
/obj/structure/surface/table/reinforced,
@@ -1065,16 +802,11 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/central)
"acA" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research/secret/testing)
"acB" = (
/obj/effect/decal/warning_stripes{
@@ -1087,27 +819,19 @@
/obj/structure/sign/safety/nonpress{
pixel_x = -30
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"acC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research/secret/bioengineering)
"acD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"acE" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -1120,10 +844,7 @@
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research/secret/bioengineering)
"acH" = (
/turf/closed/wall/r_wall/prison,
@@ -1133,10 +854,7 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/research/secret/bioengineering)
"acJ" = (
/obj/structure/machinery/door/airlock/prison{
@@ -1144,10 +862,7 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/research/secret/bioengineering)
"acK" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -1196,25 +911,16 @@
/area/prison/cellblock/maxsec/north)
"acT" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/research/secret/bioengineering)
"acV" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"acW" = (
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research/secret/bioengineering)
"acX" = (
/obj/structure/window/framed/prison/reinforced,
@@ -1254,9 +960,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "Biological Testing"
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/testing)
"adf" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -1265,40 +969,25 @@
/turf/open/floor/plating,
/area/prison/cellblock/maxsec/north)
"adg" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research/secret/bioengineering)
"adh" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research/secret/bioengineering)
"adi" = (
/obj/structure/window/framed/prison/cell,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/research/secret/bioengineering)
"adj" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research/secret/bioengineering)
"adk" = (
/obj/structure/machinery/door/window/eastleft,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research/secret/bioengineering)
"adl" = (
/obj/effect/decal/warning_stripes{
@@ -1360,16 +1049,11 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor/north,
/area/prison/research/secret/testing)
"adu" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/testing)
"adv" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -1380,10 +1064,7 @@
icon_state = "door_open";
name = "Cell Access"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"adw" = (
/obj/effect/decal/warning_stripes{
@@ -1392,31 +1073,19 @@
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor/north,
/area/prison/research/secret/testing)
"adx" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/north,
/area/prison/research/secret/bioengineering)
"ady" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/east,
/area/prison/research/secret/bioengineering)
"adz" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"adA" = (
/obj/effect/landmark/hunter_primary,
@@ -1425,39 +1094,27 @@
"adB" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/up,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"adC" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/up{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"adD" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"adE" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"adF" = (
/obj/structure/machinery/light{
@@ -1489,10 +1146,7 @@
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor/north,
/area/prison/research/secret/testing)
"adJ" = (
/obj/structure/toilet{
@@ -1509,32 +1163,20 @@
pixel_y = 10
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"adL" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"adM" = (
/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"adN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"adO" = (
/obj/structure/surface/table/reinforced,
@@ -1543,30 +1185,21 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/south)
"adP" = (
/obj/structure/machinery/light/small{
dir = 1
},
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"adQ" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"adR" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -1578,10 +1211,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"adS" = (
/obj/structure/disposalpipe/segment{
@@ -1589,10 +1219,7 @@
icon_state = "pipe-c"
},
/obj/item/paper/prison_station/nursery_rhyme,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/north)
"adT" = (
/obj/structure/machinery/light/small{
@@ -1608,10 +1235,7 @@
},
/obj/structure/machinery/door/window/westright,
/obj/item/tool/pen,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/maxsec/north)
"adV" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -1622,10 +1246,7 @@
opacity = 0
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"adW" = (
/obj/structure/window/reinforced,
@@ -1633,10 +1254,7 @@
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/maxsec/north)
"adX" = (
/obj/structure/machinery/light/small{
@@ -1650,20 +1268,14 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/north)
"adZ" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"aea" = (
/obj/structure/bed,
@@ -1684,9 +1296,7 @@
dir = 2;
name = "Human Containment Pen"
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/containment)
"aed" = (
/obj/structure/window/framed/prison/cell,
@@ -1696,17 +1306,11 @@
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"aef" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"aeg" = (
/obj/item/paper_bin{
@@ -1718,25 +1322,16 @@
pixel_y = 8
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"aeh" = (
/obj/item/folder/black,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"aei" = (
/obj/structure/machinery/door/window/eastright,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research/secret/bioengineering)
"aej" = (
/obj/structure/machinery/light{
@@ -1756,19 +1351,13 @@
/area/prison/yard)
"aem" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/north)
"aen" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"aeo" = (
/obj/structure/toilet{
@@ -1776,10 +1365,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/item/paper/prison_station/nursery_rhyme,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/north)
"aep" = (
/obj/structure/machinery/flasher{
@@ -1805,10 +1391,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/maxsec/north)
"aes" = (
/obj/structure/disposaloutlet,
@@ -1818,17 +1401,11 @@
/obj/structure/disposalpipe/up{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/maxsec/north)
"aet" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/maxsec/north)
"aeu" = (
/obj/structure/sink{
@@ -1849,26 +1426,17 @@
pixel_x = -4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/north)
"aex" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"aey" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/north)
"aez" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -1913,16 +1481,10 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/prison/research/secret/containment)
"aeF" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret/containment)
"aeG" = (
/obj/structure/machinery/light{
@@ -1931,10 +1493,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret/containment)
"aeH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -1943,18 +1502,13 @@
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret/containment)
"aeI" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/containment)
"aeK" = (
/obj/structure/disposaloutlet{
@@ -1963,10 +1517,7 @@
/obj/structure/disposalpipe/up{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/north)
"aeL" = (
/obj/item/paper/prison_station/nursery_rhyme,
@@ -2010,10 +1561,7 @@
/obj/structure/disposalpipe/up{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/north)
"aeT" = (
/obj/structure/machinery/light{
@@ -2022,16 +1570,10 @@
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret/containment)
"aeU" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/prison/research/secret/containment)
"aeV" = (
/obj/structure/machinery/light{
@@ -2040,35 +1582,23 @@
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research/secret/bioengineering)
"aeW" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"aeX" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"aeY" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"aeZ" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -2076,10 +1606,7 @@
"afa" = (
/obj/item/shard,
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research/secret/bioengineering)
"afb" = (
/obj/item/shard,
@@ -2105,10 +1632,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/north)
"afe" = (
/obj/structure/disposaloutlet,
@@ -2127,10 +1651,7 @@
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/north)
"afh" = (
/obj/structure/machinery/light{
@@ -2143,10 +1664,7 @@
/obj/structure/xenoautopsy/tank/larva{
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/research/secret/bioengineering)
"afj" = (
/obj/structure/machinery/light,
@@ -2157,77 +1675,52 @@
/turf/open/floor/prison,
/area/prison/security/monitoring/maxsec/panopticon)
"afl" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/prison/research/secret/containment)
"afm" = (
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/research/secret/containment)
"afn" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/research/secret/containment)
"afo" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/west,
/area/prison/research/secret/containment)
"afp" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/prison/research/secret/containment)
"afq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/prison/research/secret/containment)
"afr" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2,
/area/prison/research/secret/containment)
"afs" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/research/secret/containment)
"aft" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/prison/research/secret/containment)
"afu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/structure/machinery/door/airlock/almayer/maint/colony,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/containment)
"afv" = (
/obj/effect/decal/warning_stripes{
@@ -2236,10 +1729,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research/secret/bioengineering)
"afw" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -2248,36 +1738,24 @@
/area/prison/cellblock/highsec/south/north)
"afx" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"afy" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"afA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/bioengineering)
"afB" = (
/obj/structure/machinery/door/window/eastright,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research/secret/bioengineering)
"afC" = (
/obj/effect/decal/warning_stripes{
@@ -2303,68 +1781,42 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Panopticon Monitoring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/security/monitoring/maxsec/panopticon)
"afF" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/security/monitoring/maxsec/panopticon)
"afG" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/prison/research/secret/containment)
"afH" = (
/obj/effect/alien/weeds/node,
/turf/open/floor/prison,
/area/prison/cellblock/highsec/south/north)
"afI" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/research/secret/containment)
"afJ" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research/secret/bioengineering)
"afL" = (
-/turf/open/floor/prison{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner,
/area/prison/research/secret/bioengineering)
"afM" = (
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/prison/research/secret/bioengineering)
"afN" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/north)
"afO" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/north)
"afP" = (
/obj/structure/bed/chair/office/dark{
@@ -2373,52 +1825,37 @@
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
},
-/turf/open/floor/prison{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner,
/area/prison/research/secret/bioengineering)
"afQ" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research/secret/bioengineering)
"afR" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research/secret/bioengineering)
"afS" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research/secret/bioengineering)
"afT" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research/secret/bioengineering)
"afU" = (
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research/secret/bioengineering)
"afV" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/prison/research/secret/bioengineering)
"afW" = (
/obj/structure/bed,
@@ -2430,33 +1867,23 @@
/area/prison/research/secret/containment)
"aga" = (
/obj/structure/machinery/smartfridge/secure/virology,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/prison/research/secret/bioengineering)
"agb" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/prison/research/secret/bioengineering)
"agc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Bioengineering"
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"agd" = (
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/bioengineering)
"age" = (
/obj/structure/window/framed/prison/reinforced,
@@ -2468,9 +1895,7 @@
},
/obj/structure/closet/radiation,
/obj/item/device/motiondetector,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"agg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -2481,9 +1906,7 @@
/obj/item/ammo_magazine/pistol/b92fs,
/obj/item/ammo_magazine/pistol/b92fs,
/obj/item/weapon/gun/pistol/b92fs,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"agh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -2494,15 +1917,11 @@
/obj/item/ammo_magazine/pistol/b92fs,
/obj/item/ammo_magazine/pistol/b92fs,
/obj/item/weapon/gun/pistol/b92fs,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"agi" = (
/obj/structure/closet/radiation,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"agj" = (
/obj/structure/machinery/disposal,
@@ -2530,37 +1949,25 @@
/area/prison/research/secret/containment)
"ago" = (
/obj/structure/machinery/cm_vending/sorted/tech/robotics,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/prison/research/secret)
"agp" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/prison/research/secret)
"agq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret)
"agr" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/prison/research/secret)
"ags" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -2628,30 +2035,21 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"agE" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"agF" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 2;
name = "Panopticon Monitoring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/security/monitoring/maxsec/panopticon)
"agG" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -2659,10 +2057,7 @@
dir = 2;
name = "Panopticon Monitoring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/security/monitoring/maxsec/panopticon)
"agH" = (
/obj/structure/sink{
@@ -2679,10 +2074,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"agJ" = (
/turf/closed/wall/prison,
@@ -2707,10 +2099,7 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"agP" = (
/obj/structure/pipes/vents/scrubber{
@@ -2729,19 +2118,13 @@
/turf/open/floor/prison,
/area/prison/research/secret/containment)
"agS" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/prison/research/secret/containment)
"agT" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret/containment)
"agU" = (
/turf/closed/wall/r_wall/prison,
@@ -2750,10 +2133,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/east,
/area/prison/research/secret/containment)
"agW" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -2771,23 +2151,16 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/containment)
"agZ" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/north,
/area/prison/research/secret/containment)
"aha" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/containment)
"ahb" = (
/obj/structure/toilet{
@@ -2798,10 +2171,7 @@
/area/prison/research/secret/containment)
"ahc" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret/containment)
"ahd" = (
/obj/structure/machinery/power/apc{
@@ -2809,19 +2179,13 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret/containment)
"ahe" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/prison/research/secret/containment)
"ahf" = (
/obj/effect/decal/warning_stripes{
@@ -2861,19 +2225,13 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/prison/research/secret)
"ahj" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret)
"ahk" = (
/obj/structure/machinery/power/apc{
@@ -2882,29 +2240,17 @@
start_charge = 0
},
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret)
"ahl" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret)
"ahm" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/east,
/area/prison/research/secret)
"ahn" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/research/secret)
"aho" = (
/obj/structure/pipes/vents/pump{
@@ -2920,39 +2266,24 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"ahr" = (
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"ahs" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/north)
"aht" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/north)
"ahu" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/north)
"ahv" = (
/obj/structure/machinery/power/apc{
@@ -2960,10 +2291,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/north)
"ahw" = (
/obj/structure/machinery/light/small,
@@ -2983,9 +2311,7 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "Simian Containment Pen"
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/containment)
"ahC" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -2995,32 +2321,20 @@
/obj/structure/surface/table/reinforced,
/obj/item/clothing/suit/chef/classic,
/obj/item/tool/kitchen/rollingpin,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/south)
"ahE" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/prison/research/secret/containment)
"ahF" = (
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/research/secret)
"ahG" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/research/secret)
"ahH" = (
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"ahI" = (
/obj/item/device/motiondetector,
@@ -3031,10 +2345,7 @@
/obj/item/clothing/suit/chef/classic,
/obj/item/tool/kitchen/rollingpin,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/south)
"ahK" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -3050,9 +2361,7 @@
/area/prison/research/secret)
"ahM" = (
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/main)
"ahN" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -3067,10 +2376,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/north)
"ahQ" = (
/obj/structure/surface/table/reinforced,
@@ -3079,10 +2385,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/south)
"ahT" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -3105,10 +2408,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/prison/research/secret/containment)
"aib" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -3118,16 +2418,11 @@
dir = 2;
name = "Test Subject Containment"
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/containment)
"aid" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret)
"aie" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -3137,9 +2432,7 @@
dir = 2;
name = "Test Subject Containment"
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"aif" = (
/obj/effect/decal/warning_stripes{
@@ -3148,16 +2441,10 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/prison/research/secret)
"aih" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/cellblock/highsec/north/south)
"aii" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -3169,41 +2456,27 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/research/secret)
"aik" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Maximum-Security Panopticon"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"ail" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/north)
"ain" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/prison/research/secret/containment)
"aio" = (
/obj/item/paper/prison_station/monkey_note,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/research/secret/containment)
"aip" = (
/obj/structure/machinery/shower{
@@ -3230,28 +2503,20 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/prison/research/secret)
"ais" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/west,
/area/prison/research/secret)
"ait" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"aiu" = (
/obj/structure/surface/rack,
@@ -3259,23 +2524,17 @@
/obj/item/ammo_magazine/pistol/highpower,
/obj/item/ammo_magazine/pistol/highpower,
/obj/item/weapon/gun/pistol/highpower,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"aiv" = (
/obj/structure/largecrate/supply/weapons/flamers,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"aiw" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/shotgun/buckshot,
/obj/item/weapon/gun/shotgun/combat,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"aix" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -3293,35 +2552,24 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Maximum-Security Panopticon"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"aiz" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/north)
"aiB" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/north)
"aiC" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 2;
name = "Simian Containment Pen"
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/containment)
"aiD" = (
/turf/closed/wall/prison,
@@ -3330,34 +2578,24 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"aiF" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/prison/research/secret)
"aiG" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"aiH" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/prison/research/secret)
"aiI" = (
/turf/closed/wall/r_wall/prison,
@@ -3428,26 +2666,17 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/prison/research/secret)
"aiX" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/research/secret)
"aiY" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/prison/research/secret)
"aiZ" = (
/obj/structure/surface/rack,
@@ -3455,10 +2684,7 @@
/obj/item/restraint/handcuffs,
/obj/item/restraint/handcuffs,
/obj/item/restraint/handcuffs,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/prison/research/secret)
"aja" = (
/obj/structure/surface/rack,
@@ -3480,10 +2706,7 @@
dir = 2;
name = "Maximum-Security Panopticon"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"aje" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -3491,10 +2714,7 @@
dir = 2;
name = "Maximum-Security Panopticon"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/north)
"ajf" = (
/obj/structure/machinery/light{
@@ -3509,10 +2729,7 @@
/turf/open/floor/prison,
/area/prison/research/secret/dissection)
"aji" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/prison/research/secret)
"ajj" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -3531,10 +2748,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"ajn" = (
/obj/structure/machinery/optable,
@@ -3544,10 +2758,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/prison/research/secret)
"ajp" = (
/obj/structure/window/framed/prison/reinforced,
@@ -3558,42 +2769,27 @@
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/prison/research/secret/chemistry)
"ajr" = (
/obj/structure/machinery/chem_dispenser,
/obj/item/reagent_container/glass/beaker/bluespace,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research/secret/chemistry)
"ajs" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research/secret/chemistry)
"ajt" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research/secret/chemistry)
"aju" = (
/obj/structure/closet/secure_closet/chemical,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/prison/research/secret/chemistry)
"ajv" = (
/obj/structure/machinery/alarm/almayer{
@@ -3661,20 +2857,14 @@
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"ajE" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"ajF" = (
/obj/structure/machinery/flasher{
@@ -3691,31 +2881,19 @@
/turf/open/floor/prison,
/area/prison/research/secret)
"ajI" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research/secret/chemistry)
"ajJ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/chemistry)
"ajK" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/chemistry)
"ajL" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research/secret/chemistry)
"ajM" = (
/obj/structure/window/framed/prison/reinforced,
@@ -3727,10 +2905,7 @@
/turf/open/floor/plating,
/area/prison/research/secret/chemistry)
"ajN" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/hanger/research)
"ajO" = (
/turf/open/floor/prison,
@@ -3747,10 +2922,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"ajR" = (
/obj/structure/disposalpipe/segment{
@@ -3768,20 +2940,14 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/south)
"ajT" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/south)
"ajU" = (
/obj/structure/machinery/door/airlock/prison{
@@ -3796,16 +2962,10 @@
/area/prison/cellblock/maxsec/south)
"ajV" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"ajW" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"ajX" = (
/obj/structure/disposalpipe/segment{
@@ -3813,10 +2973,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/south)
"ajY" = (
/obj/structure/machinery/light{
@@ -3825,9 +2982,7 @@
/turf/closed/wall/r_wall/prison,
/area/prison/research/secret/containment)
"ajZ" = (
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/containment)
"aka" = (
/obj/structure/sink{
@@ -3849,10 +3004,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/research/secret)
"akf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -3861,42 +3013,28 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "Chemistry"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/research/secret/chemistry)
"akg" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research/secret/chemistry)
"aki" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/chemistry)
"akj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner,
/area/prison/research/secret/chemistry)
"akk" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/prison/research/secret/chemistry)
"akl" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -3917,19 +3055,13 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"akp" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/south)
"akq" = (
/obj/structure/machinery/light{
@@ -3939,10 +3071,7 @@
id = "suspended_WWN";
pixel_x = 24
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"akr" = (
/obj/structure/machinery/light{
@@ -3952,19 +3081,13 @@
id = "suspended_WEN";
pixel_x = -24
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"aks" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/south)
"akt" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -3975,10 +3098,7 @@
icon_state = "door_open";
name = "Cell Access"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"akv" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -3987,20 +3107,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"akw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"akx" = (
/obj/structure/machinery/light{
@@ -4010,10 +3124,7 @@
id = "suspended_EWN";
pixel_x = 24
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"aky" = (
/obj/structure/machinery/light{
@@ -4023,10 +3134,7 @@
id = "suspended_EEN";
pixel_x = -24
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"akA" = (
/obj/structure/largecrate/random,
@@ -4073,20 +3181,14 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"akI" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"akJ" = (
/obj/effect/landmark/corpsespawner/scientist,
@@ -4116,17 +3218,11 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/prison/research/secret)
"akP" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/west,
/area/prison/research/secret)
"akQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -4138,10 +3234,7 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/research/secret)
"akS" = (
/obj/structure/machinery/smartfridge,
@@ -4151,16 +3244,11 @@
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/prison/research/secret/chemistry)
"akU" = (
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research/secret/chemistry)
"akV" = (
/turf/open/floor/plating,
@@ -4172,18 +3260,13 @@
/turf/open/floor/plating,
/area/prison/cellblock/maxsec/south)
"akX" = (
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research/secret/chemistry)
"akY" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/prison/research/secret/chemistry)
"akZ" = (
/obj/structure/surface/table/reinforced,
@@ -4192,10 +3275,7 @@
/obj/item/stack/sheet/mineral/phoron,
/obj/item/stack/sheet/mineral/phoron,
/obj/item/stack/sheet/mineral/phoron,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2/northwest,
/area/prison/research/secret/chemistry)
"alb" = (
/obj/structure/disposalpipe/segment{
@@ -4209,10 +3289,7 @@
/obj/effect/decal/siding{
icon_state = "siding2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"ald" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -4227,10 +3304,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"alf" = (
/turf/closed/wall/r_wall/prison,
@@ -4240,10 +3314,7 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/south)
"alh" = (
/obj/structure/machinery/light/small{
@@ -4258,10 +3329,7 @@
dir = 8
},
/obj/structure/machinery/door/window/westright,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/maxsec/south)
"alj" = (
/obj/structure/window/reinforced,
@@ -4269,20 +3337,14 @@
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/maxsec/south)
"alk" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/south)
"all" = (
/obj/structure/disposalpipe/segment{
@@ -4320,10 +3382,7 @@
/obj/effect/decal/siding{
icon_state = "siding2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"als" = (
/obj/structure/machinery/light{
@@ -4435,18 +3494,13 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/research/secret)
"alQ" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/prison/research/secret)
"alR" = (
/turf/closed/wall/prison,
@@ -4454,10 +3508,7 @@
"alS" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/beakers,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2/northwest,
/area/prison/research/secret/chemistry)
"alT" = (
/obj/structure/surface/table/reinforced,
@@ -4465,25 +3516,16 @@
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2/northwest,
/area/prison/research/secret/chemistry)
"alU" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2/northwest,
/area/prison/research/secret/chemistry)
"alV" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/syringes,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2/northwest,
/area/prison/research/secret/chemistry)
"alW" = (
/obj/structure/surface/table/reinforced,
@@ -4491,10 +3533,7 @@
dir = 1;
pixel_y = -10
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2/northwest,
/area/prison/research/secret/chemistry)
"alX" = (
/obj/structure/machinery/light{
@@ -4506,20 +3545,14 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/cellblock/highsec/north/north)
"alZ" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/prison/cellblock/maxsec/south)
"ama" = (
/obj/structure/surface/table/reinforced,
@@ -4528,9 +3561,7 @@
/turf/open/floor/prison,
/area/prison/research/secret/dissection)
"amb" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/research/secret)
"amc" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -4540,10 +3571,7 @@
dir = 4
},
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/south)
"ame" = (
/obj/structure/machinery/light/small{
@@ -4560,10 +3588,7 @@
dir = 8
},
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/south)
"amh" = (
/obj/structure/pipes/vents/pump{
@@ -4573,10 +3598,7 @@
/area/prison/cellblock/maxsec/south)
"ami" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/prison/research/secret)
"amj" = (
/obj/effect/landmark/hunter_primary,
@@ -4593,10 +3615,7 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/south)
"amm" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -4610,19 +3629,13 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/south)
"amo" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/bonegel,
/obj/item/tool/surgery/bonesetter,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay/surgery)
"amp" = (
/obj/structure/surface/table/reinforced,
@@ -4633,26 +3646,17 @@
/obj/item/tool/soap{
pixel_x = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay/surgery)
"amq" = (
/obj/structure/sink{
pixel_y = 15
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/prison/medbay/surgery)
"amr" = (
/obj/structure/closet/secure_closet/medical2,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/medbay/surgery)
"ams" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -4670,20 +3674,14 @@
"amv" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/prison/cellblock/maxsec/south)
"amw" = (
/obj/structure/toilet{
dir = 4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/maxsec/south)
"amx" = (
/obj/structure/machinery/flasher{
@@ -4717,17 +3715,11 @@
pixel_x = -4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/south)
"amC" = (
/obj/structure/machinery/bioprinter,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/prison/medbay/surgery)
"amD" = (
/obj/structure/surface/table/reinforced,
@@ -4760,69 +3752,47 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/research/secret)
"amI" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/prison/research/secret)
"amJ" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/research/secret)
"amK" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/prison/research/secret)
"amL" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"amM" = (
/obj/structure/machinery/computer/rdconsole,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"amN" = (
/obj/structure/machinery/computer/mecha,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"amO" = (
/obj/structure/machinery/computer/robotics,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"amP" = (
/obj/effect/decal/warning_stripes{
@@ -4841,24 +3811,15 @@
/area/prison/hanger/research)
"amR" = (
/obj/structure/lamarr,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"amS" = (
/obj/structure/closet/crate,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/hanger/research)
"amT" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/north/north)
"amV" = (
/obj/effect/decal/warning_stripes{
@@ -4889,10 +3850,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"anc" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -4909,10 +3867,7 @@
dir = 8;
health = 80
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/maxsec/south)
"anf" = (
/obj/structure/window/reinforced{
@@ -4922,10 +3877,7 @@
dir = 1
},
/obj/structure/machinery/door/window/northleft,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/maxsec/south)
"ang" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -4954,29 +3906,17 @@
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/retractor,
/obj/item/tool/surgery/hemostat,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay/surgery)
"ank" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/prison/medbay/surgery)
"anl" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/prison/medbay/surgery)
"anm" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay/surgery)
"ann" = (
/obj/structure/machinery/power/apc{
@@ -4984,19 +3924,14 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay/surgery)
"ano" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "research_secret";
name = "Classified Research Shutters"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/research/secret)
"anp" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -5004,18 +3939,14 @@
name = "Classified Research Shutters"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research/secret)
"anq" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "research_secret";
name = "Classified Research Shutters"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research/secret)
"anr" = (
/obj/structure/surface/table/reinforced,
@@ -5032,10 +3963,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"anv" = (
/turf/closed/wall/prison,
@@ -5082,17 +4010,11 @@
/area/prison/security/checkpoint/maxsec_highsec)
"anC" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/maxsec_highsec)
"anD" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/maxsec_highsec)
"anE" = (
/obj/structure/machinery/power/apc{
@@ -5100,24 +4022,15 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/maxsec_highsec)
"anF" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/maxsec_highsec)
"anG" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/maxsec_highsec)
"anH" = (
/obj/structure/window/framed/prison/reinforced,
@@ -5127,10 +4040,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/cellblock/highsec/north/north)
"anJ" = (
/obj/structure/machinery/light{
@@ -5140,56 +4050,36 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/cellblock/highsec/north/north)
"anK" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay/surgery)
"anL" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/prison/medbay/surgery)
"anM" = (
/obj/structure/machinery/optable,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay/surgery)
"anN" = (
/obj/structure/machinery/computer/operating,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay/surgery)
"anO" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay/surgery)
"anP" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/research)
"anQ" = (
/obj/structure/window/framed/prison/reinforced,
@@ -5227,28 +4117,19 @@
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"anY" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/north/north)
"anZ" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/maxsec_highsec)
"aoa" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -5259,29 +4140,20 @@
/area/prison/security/checkpoint/maxsec_highsec)
"aod" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/maxsec_highsec)
"aoe" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"aof" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/north)
"aog" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -5321,9 +4193,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/maxsec/south)
"aom" = (
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/cellblock/highsec/north/north)
"aon" = (
/obj/structure/window/framed/prison/cell,
@@ -5333,10 +4203,7 @@
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/north/north)
"aop" = (
/obj/structure/machinery/light/small{
@@ -5349,10 +4216,7 @@
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/north)
"aor" = (
/turf/closed/wall/prison,
@@ -5362,45 +4226,27 @@
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/north)
"aot" = (
/obj/structure/toilet{
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/north/north)
"aou" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/cellblock/highsec/north/north)
"aov" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/cellblock/highsec/north/north)
"aow" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/north/north)
"aox" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/north)
"aoy" = (
/obj/structure/machinery/flasher{
@@ -5424,16 +4270,10 @@
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/circular_saw,
/obj/item/tool/surgery/scalpel/manager,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay/surgery)
"aoC" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/prison/medbay/surgery)
"aoD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -5444,10 +4284,7 @@
icon_state = "pipe-c"
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay/surgery)
"aoE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -5456,10 +4293,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay/surgery)
"aoF" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -5469,10 +4303,7 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay/surgery)
"aoG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -5481,10 +4312,7 @@
/obj/structure/machinery/door/airlock/almayer/secure/colony{
name = "Operating Theatre"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay/surgery)
"aoH" = (
/obj/structure/pipes/vents/pump{
@@ -5493,28 +4321,19 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding6"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"aoI" = (
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding9"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"aoJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/prison/research)
"aoK" = (
/obj/structure/bed/chair/office/dark{
@@ -5530,36 +4349,21 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"aoO" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"aoP" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/north/north)
"aoQ" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/north)
"aoR" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/north)
"aoS" = (
/obj/effect/landmark/hunter_primary,
@@ -5567,32 +4371,20 @@
/area/prison/cellblock/highsec/north/north)
"aoT" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/north)
"aoU" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/prison/cellblock/highsec/north/north)
"aoV" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/north)
"aoW" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/maxsec_highsec)
"aoX" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -5610,16 +4402,11 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2,
/area/prison/security/checkpoint/maxsec_highsec)
"apa" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/maxsec_highsec)
"apc" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -5629,10 +4416,7 @@
dir = 8;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"ape" = (
/obj/structure/pipes/vents/scrubber,
@@ -5671,40 +4455,23 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/cellblock/highsec/north/north)
"apk" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/north/north)
"apl" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/north)
"apm" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/north/north)
"apn" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"apo" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/north)
"app" = (
/obj/structure/machinery/light/small{
@@ -5723,10 +4490,7 @@
/area/prison/cellblock/maxsec/south)
"aps" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"apt" = (
/turf/closed/wall/r_wall/prison,
@@ -5746,29 +4510,20 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"apy" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/surgery/FixOVein,
/obj/item/tool/surgery/surgicaldrill,
/obj/item/tool/surgery/cautery,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay/surgery)
"apz" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/prison/medbay/surgery)
"apA" = (
/obj/effect/decal/warning_stripes{
@@ -5793,17 +4548,12 @@
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/north/north)
"apD" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/prison/medbay/surgery)
"apE" = (
/obj/structure/machinery/holosign_switch{
@@ -5813,41 +4563,27 @@
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/prison/medbay/surgery)
"apF" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/prison/medbay/surgery)
"apG" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/prison/research)
"apH" = (
/obj/structure/sink{
dir = 8;
pixel_x = -11
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"apI" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"apJ" = (
/obj/structure/window/reinforced,
@@ -5855,25 +4591,16 @@
dir = 8
},
/obj/structure/machinery/door/window/westright,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/medbay)
"apK" = (
/turf/closed/wall/prison,
/area/prison/medbay)
"apL" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/prison/medbay)
"apM" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/medbay)
"apN" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -5887,23 +4614,14 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"apR" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"apS" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"apT" = (
/obj/effect/decal/cleanable/blood,
@@ -5913,18 +4631,14 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 8
- },
+/turf/open/floor/prison/west,
/area/prison/research/RD)
"apU" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 8
- },
+/turf/open/floor/prison/west,
/area/prison/research/RD)
"apV" = (
/obj/effect/landmark/good_item,
@@ -5934,59 +4648,41 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"apX" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/north)
"apY" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/cellblock/highsec/north/north)
"apZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/north)
"aqa" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/north)
"aqb" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/prison/cellblock/highsec/north/north)
"aqc" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/north/north)
"aqd" = (
/turf/closed/wall/r_wall/prison,
@@ -5995,19 +4691,13 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/north)
"aqf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/cellblock/highsec/north/north)
"aqg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -6016,28 +4706,20 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Security Booth"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec_highsec)
"aqh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/maxsec_highsec)
"aqi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/maxsec_highsec)
"aqj" = (
/obj/effect/decal/warning_stripes{
@@ -6060,29 +4742,18 @@
"aql" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/maxsec_highsec)
"aqm" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/maxsec_highsec)
"aqn" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec_highsec)
"aqo" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/north)
"aqq" = (
/obj/structure/machinery/light{
@@ -6092,10 +4763,7 @@
id = "suspended_WWS";
pixel_x = 24
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"aqr" = (
/obj/structure/machinery/light{
@@ -6105,10 +4773,7 @@
id = "suspended_WES";
pixel_x = -24
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"aqs" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -6123,32 +4788,20 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"aqu" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "Medical Cell"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aqv" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/prison/medbay)
"aqw" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay)
"aqx" = (
/obj/structure/machinery/light{
@@ -6168,10 +4821,7 @@
id = "suspended_EES";
pixel_x = -24
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"aqz" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -6183,55 +4833,38 @@
dir = 2;
name = "Operating Theatre"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay/surgery)
"aqA" = (
/obj/structure/machinery/door/airlock/glass_command,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"aqB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"aqC" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"aqD" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8
- },
+/turf/open/floor/prison/west,
/area/prison/research/RD)
"aqE" = (
/obj/structure/displaycase/destroyed,
/obj/item/shard,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/research/RD)
"aqF" = (
/obj/structure/surface/table/reinforced,
@@ -6239,94 +4872,62 @@
/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/landing/console2)
"aqG" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"aqH" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/north)
"aqI" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/cellblock/highsec/north/north)
"aqJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/cellblock/highsec/north/north)
"aqK" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/hanger/research)
"aqL" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/light,
/obj/effect/landmark/item_pool_spawner/prison_lock,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec_highsec)
"aqM" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec_highsec)
"aqN" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec_highsec)
"aqO" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec_highsec)
"aqQ" = (
/obj/structure/surface/table/reinforced{
flipped = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"aqR" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -6334,9 +4935,7 @@
flipped = 1
},
/obj/item/stack/rods,
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/cellblock/highsec/north/north)
"aqS" = (
/obj/structure/pipes/vents/pump{
@@ -6355,20 +4954,14 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"aqU" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/prison/medbay)
"aqV" = (
/obj/structure/machinery/light{
@@ -6380,45 +4973,30 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/medbay)
"aqW" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"aqX" = (
/obj/structure/toilet{
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"aqY" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"aqZ" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay)
"ara" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -6427,10 +5005,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/medbay)
"arb" = (
/obj/structure/disposalpipe/segment{
@@ -6440,16 +5015,10 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/medbay)
"arc" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/prison/medbay)
"ard" = (
/obj/structure/window/reinforced{
@@ -6461,67 +5030,46 @@
name = "Classified Research Lockdown"
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"are" = (
/obj/structure/closet/secure_closet/RD,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"arf" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/research)
"arh" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/research)
"ari" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/research)
"arj" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research)
"ark" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"arl" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research)
"arm" = (
/obj/effect/decal/warning_stripes{
@@ -6530,9 +5078,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 8
- },
+/turf/open/floor/prison/west,
/area/prison/research/RD)
"arn" = (
/obj/effect/decal/warning_stripes{
@@ -6543,9 +5089,7 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8
- },
+/turf/open/floor/prison/west,
/area/prison/research/RD)
"aro" = (
/obj/structure/window/framed/prison/reinforced,
@@ -6557,40 +5101,25 @@
pixel_x = 12
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/north/north)
"arq" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/prison/cellblock/highsec/north/north)
"arr" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/prison/cellblock/highsec/north/north)
"ars" = (
/obj/structure/girder,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"art" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/girder,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/north)
"aru" = (
/obj/structure/toilet{
@@ -6599,36 +5128,24 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/maxsec/south)
"arv" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"arw" = (
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/prison/medbay)
"arx" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/prison/medbay)
"ary" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/prison/medbay)
"arB" = (
/obj/structure/machinery/door/airlock/almayer/medical/colony{
@@ -6664,10 +5181,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/hanger/research)
"arH" = (
/obj/structure/stairs/perspective{
@@ -6678,10 +5192,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/hanger/research)
"arI" = (
/obj/structure/machinery/light{
@@ -6694,65 +5205,43 @@
/area/prison/hangar_storage/research)
"arK" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/research)
"arL" = (
/obj/structure/surface/rack,
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/research)
"arM" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"arN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research)
"arO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research)
"arP" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/east,
/area/prison/research)
"arQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"arR" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research)
"arT" = (
/obj/structure/machinery/power/apc{
@@ -6761,25 +5250,16 @@
start_charge = 0
},
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"arU" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/north)
"arV" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/maxsec/south)
"arW" = (
/obj/structure/pipes/unary/freezer{
@@ -6796,10 +5276,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay)
"arZ" = (
/obj/structure/morgue,
@@ -6812,43 +5289,28 @@
/turf/open/floor/prison,
/area/prison/medbay/morgue)
"asb" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research)
"asc" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/prison/research)
"asd" = (
/obj/structure/sign/safety/nonpress_0g{
pixel_y = 30
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/prison/research)
"ase" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"asf" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/hanger/research)
"asg" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/research)
"asi" = (
/obj/structure/machinery/light/small{
@@ -6867,10 +5329,7 @@
"ask" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/north)
"asl" = (
/obj/structure/pipes/standard/manifold/visible{
@@ -6882,35 +5341,25 @@
/obj/structure/pipes/standard/manifold/visible{
layer = 2.3
},
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/medbay)
"asn" = (
/obj/structure/pipes/standard/simple/visible{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/medbay)
"aso" = (
/obj/structure/machinery/camera/autoname{
dir = 8;
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay)
"asp" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/defibrillator,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"asq" = (
/obj/structure/surface/table/reinforced,
@@ -6919,65 +5368,44 @@
pixel_x = 5;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"asr" = (
/obj/structure/surface/table/reinforced,
/obj/item/bodybag/cryobag,
/obj/item/storage/box/syringes,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"ass" = (
/obj/structure/bed/chair/wheelchair,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/prison/medbay)
"ast" = (
/obj/structure/bed/chair/wheelchair,
/obj/item/tool/wrench,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/prison/medbay)
"asu" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"asv" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"asw" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research)
"asx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -6987,68 +5415,46 @@
dir = 2;
name = "Research Hallway"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research)
"asy" = (
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research)
"asz" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research)
"asA" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/west,
/area/prison/research)
"asC" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research)
"asD" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research)
"asF" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research)
"asG" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "Biological Research Department"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"asI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/hanger/research)
"asJ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -7058,67 +5464,45 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/research)
"asK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/research)
"asL" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/hangar_storage/research)
"asM" = (
/obj/structure/closet/crate,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/hangar_storage/research)
"asO" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/highsec/north/north)
"asP" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/highsec/north/north)
"asQ" = (
/obj/structure/pipes/portables_connector{
dir = 1
},
/obj/structure/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/medbay)
"asR" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/prison/medbay)
"asS" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
pixel_x = 28
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay)
"asT" = (
/obj/structure/surface/table/reinforced,
@@ -7127,28 +5511,19 @@
pixel_x = 6;
pixel_y = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"asU" = (
/obj/item/roller{
icon_state = "down"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay)
"asV" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/prison/research)
"asW" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -7156,58 +5531,40 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research)
"asX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research)
"asY" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/prison/research)
"asZ" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/prison/research)
"ata" = (
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research)
"atb" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/prison/research)
"atd" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"ate" = (
/obj/structure/machinery/power/apc{
@@ -7215,10 +5572,7 @@
start_charge = 0
},
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/hanger/research)
"atf" = (
/turf/closed/wall/r_wall/prison,
@@ -7227,47 +5581,31 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research)
"ath" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"ati" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"atj" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research)
"atk" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"atl" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/research)
"atm" = (
/obj/structure/machinery/door/airlock/prison/horizontal{
@@ -7275,19 +5613,14 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/cellblock/highsec/north/north)
"ato" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 2;
name = "Maximum-Security Suspended Cellblock"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/south)
"atp" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -7295,56 +5628,35 @@
dir = 2;
name = "Maximum-Security Suspended Cellblock"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/south)
"atq" = (
/obj/item/tool/wrench,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"atr" = (
/obj/item/tool/warning_cone,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/prison/medbay)
"ats" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/prison/medbay)
"att" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"atu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/prison/medbay)
"atv" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"atw" = (
/obj/structure/surface/rack,
@@ -7354,10 +5666,7 @@
/obj/item/clothing/mask/muzzle,
/obj/item/clothing/mask/muzzle,
/obj/item/clothing/mask/muzzle,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay)
"atx" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -7365,9 +5674,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Research Common Room"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research)
"aty" = (
/obj/structure/window/framed/prison/reinforced,
@@ -7375,28 +5682,19 @@
/area/prison/hangar_storage/research)
"atz" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/north/north)
"atB" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/north)
"atD" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research)
"atE" = (
/obj/structure/machinery/light{
@@ -7420,10 +5718,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/south)
"atI" = (
/obj/structure/machinery/power/apc{
@@ -7443,17 +5738,11 @@
/turf/open/floor/prison,
/area/prison/research/secret)
"atL" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research)
"atN" = (
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research)
"atO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -7464,10 +5753,7 @@
icon_state = "door_open";
name = "Cell Access"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/south)
"atP" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -7476,26 +5762,17 @@
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"atQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"atR" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"atS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -7504,19 +5781,13 @@
/obj/structure/machinery/camera/autoname{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"atT" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"atU" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -7532,64 +5803,40 @@
/area/prison/cellblock/maxsec/south)
"aua" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aub" = (
/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"auc" = (
/obj/structure/machinery/sleep_console,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aud" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay)
"aue" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/prison/medbay)
"auf" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"aug" = (
/obj/structure/closet/secure_closet/medical3{
req_access_txt = "100"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"auh" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/prison/research)
"aui" = (
/obj/item/device/camera,
@@ -7598,57 +5845,38 @@
"auj" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research)
"auk" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research)
"aul" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research)
"aum" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"aun" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/prison/research)
"auo" = (
/obj/structure/window/reinforced{
dir = 8;
health = 80
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"aup" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/grilledcheese,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"auq" = (
/obj/structure/surface/table/reinforced,
@@ -7656,22 +5884,16 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"aur" = (
/obj/structure/machinery/microwave,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"aus" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/research)
"aut" = (
/obj/structure/bookcase,
@@ -7682,10 +5904,7 @@
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/prison/cellblock/highsec/north/north)
"aux" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -7706,49 +5925,31 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Maximum-Security Suspended Cellblock"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/south)
"auB" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"auC" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"auD" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"auE" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"auF" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"auG" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -7756,20 +5957,14 @@
icon_state = "door_open";
name = "Cell Access"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/south)
"auH" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/south)
"auI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -7786,10 +5981,7 @@
dir = 8
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"auM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -7798,70 +5990,47 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "Infirmary Storage"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"auN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"auP" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research)
"auQ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"auR" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"auS" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"auT" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/hanger/research)
"auU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/research)
"auV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/research)
"auW" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -7876,37 +6045,22 @@
pixel_x = -12
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/north)
"auY" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/maxsec)
"auZ" = (
/turf/open/floor/prison,
/area/prison/security/checkpoint/maxsec)
"ava" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/prison/security/checkpoint/maxsec)
"avb" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/prison/security/checkpoint/maxsec)
"avc" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/maxsec)
"avd" = (
/obj/structure/machinery/light{
@@ -7915,74 +6069,50 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"ave" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/prison/medbay)
"avf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/medbay)
"avg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/prison/medbay)
"avh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/prison/medbay)
"avi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/prison/medbay)
"avj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"avk" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"avl" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -7995,46 +6125,30 @@
/obj/structure/closet/secure_closet/chemical{
req_access_txt = "100"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"avp" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"avq" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/south)
"avr" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/maxsec/south)
"avs" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/suit/chef/classic,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"avu" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "Research Hangar Storage"
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/research)
"avw" = (
/obj/structure/pipes/vents/scrubber{
@@ -8055,16 +6169,10 @@
/area/prison/research)
"avE" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/highsec/north/north)
"avF" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/highsec/north/north)
"avH" = (
/obj/structure/window/framed/prison/reinforced,
@@ -8072,10 +6180,7 @@
/area/prison/cellblock/highsec/north/north)
"avI" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"avJ" = (
/obj/structure/closet,
@@ -8111,9 +6216,7 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"avP" = (
/obj/structure/closet,
@@ -8128,9 +6231,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"avR" = (
/obj/structure/sink{
@@ -8139,9 +6240,7 @@
/obj/structure/mirror{
pixel_y = 28
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"avS" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -8168,51 +6267,33 @@
/area/prison/chapel)
"avW" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/prison/chapel)
"avX" = (
/obj/structure/bed/chair/wood/normal,
-/turf/open/floor{
- dir = 5;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/northeast,
/area/prison/chapel)
"avY" = (
/obj/structure/bed/chair/wood/normal,
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/prison/chapel)
"avZ" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- dir = 5;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/northeast,
/area/prison/chapel)
"awa" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/prison/chapel)
"awb" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/chapel)
"awc" = (
/obj/structure/machinery/power/apc{
@@ -8220,10 +6301,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/chapel)
"awe" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -8237,20 +6315,14 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"awh" = (
/obj/effect/landmark/survivor_spawner,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/prison/medbay)
"awi" = (
/obj/structure/surface/table/woodentable,
@@ -8261,9 +6333,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/prison/medbay)
"awk" = (
/obj/structure/machinery/light/small{
@@ -8273,39 +6343,27 @@
/area/prison/residential/north)
"awl" = (
/obj/structure/machinery/door/window/eastleft,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"awm" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"awn" = (
/obj/structure/toilet{
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"awo" = (
/turf/open/floor/plating,
/area/prison/residential/north)
"awp" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/prison/medbay)
"awq" = (
/obj/structure/bed/sofa/south/grey/left,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"awr" = (
/obj/structure/machinery/light/small{
@@ -8317,20 +6375,14 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"aww" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 2;
name = "Infirmary Storage"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"awx" = (
/obj/structure/machinery/light,
@@ -8338,52 +6390,37 @@
/area/prison/medbay/morgue)
"awy" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"awz" = (
/obj/structure/surface/table/reinforced,
/obj/item/pizzabox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"awA" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"awB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"awC" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"awD" = (
/obj/structure/surface/table/reinforced,
/obj/item/clothing/head/chefhat,
/obj/item/tool/kitchen/rollingpin,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"awF" = (
/obj/effect/landmark/crap_item,
@@ -8394,9 +6431,7 @@
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"awH" = (
/obj/structure/surface/rack,
@@ -8405,9 +6440,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/research)
"awI" = (
/turf/open/floor/carpet,
@@ -8432,36 +6465,24 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"awS" = (
/obj/structure/bed/chair,
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/north)
"awT" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/north)
"awU" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/north)
"awV" = (
/turf/open/floor/wood,
@@ -8480,27 +6501,19 @@
/area/prison/chapel)
"awY" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/prison/chapel)
"awZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/prison/chapel)
"axa" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/prison/chapel)
"axb" = (
/turf/open/floor/wood,
@@ -8513,9 +6526,7 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"axd" = (
/obj/structure/bed/chair/wood/normal{
@@ -8524,9 +6535,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/prison/chapel)
"axe" = (
/obj/structure/bed/chair/wood/normal{
@@ -8535,28 +6544,20 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/prison/chapel)
"axf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/chapel)
"axg" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/prison/chapel)
"axh" = (
/obj/effect/landmark/monkey_spawn,
@@ -8571,10 +6572,7 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay)
"axk" = (
/obj/structure/surface/table/reinforced,
@@ -8586,52 +6584,34 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/prison/medbay)
"axl" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/med_data/laptop{
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/medbay)
"axm" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/medbay)
"axn" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/prison/medbay)
"axo" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"axp" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"axr" = (
/obj/structure/pipes/vents/pump{
@@ -8643,41 +6623,29 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"axu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"axv" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"axw" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"axx" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/hanger/research)
"axy" = (
/obj/effect/decal/warning_stripes{
@@ -8686,9 +6654,7 @@
/obj/structure/machinery/landinglight/ds2{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"axz" = (
/obj/effect/decal/warning_stripes{
@@ -8697,9 +6663,7 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"axA" = (
/obj/effect/decal/warning_stripes{
@@ -8708,9 +6672,7 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"axB" = (
/obj/effect/decal/warning_stripes{
@@ -8719,9 +6681,7 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"axC" = (
/obj/effect/decal/warning_stripes{
@@ -8730,39 +6690,26 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"axE" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
dir = 2;
name = "Staff-Research Maintenance"
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/research)
"axF" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/north)
"axG" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/north)
"axH" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/processor,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/north)
"axI" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -8772,10 +6719,7 @@
/area/prison/maintenance/residential/access/north)
"axK" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/north)
"axL" = (
/turf/closed/wall/r_wall/prison,
@@ -8824,41 +6768,28 @@
/area/prison/maintenance/residential/access/north)
"axV" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/north/north)
"axW" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/north/north)
"axX" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"axY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/wood,
/area/prison/chapel)
"aya" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/northeast,
/area/prison/chapel)
"ayb" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/prison/chapel)
"ayc" = (
/obj/structure/barricade/wooden{
@@ -8872,35 +6803,22 @@
/turf/open/floor/prison,
/area/prison/research/secret)
"ayd" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/maxsec)
"aye" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/maxsec)
"ayf" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/prison/security/checkpoint/maxsec)
"ayg" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/medbay)
"ayh" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"ayk" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -8912,18 +6830,12 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"aym" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/microwave,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/north)
"ayn" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -8933,70 +6845,47 @@
/area/prison/residential/north)
"ayo" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/medbay/foyer)
"ayp" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/medbay/foyer)
"ayq" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/medbay/foyer)
"ayr" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/medbay/foyer)
"ays" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research)
"ayt" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"ayu" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"ayx" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"ayy" = (
/turf/closed/wall/r_wall/prison,
@@ -9016,9 +6905,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"ayD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -9073,10 +6960,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/north)
"ayM" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -9086,30 +6970,21 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/north/north)
"ayO" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/north/north)
"ayP" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/north/north)
"ayR" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/recreation/highsec/n)
"ayS" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -9130,24 +7005,16 @@
/turf/open/floor/wood,
/area/prison/chapel)
"ayW" = (
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/prison/chapel)
"ayX" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/prison/chapel)
"ayY" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/prison/chapel)
"ayZ" = (
/obj/effect/landmark/corpsespawner/scientist,
@@ -9157,10 +7024,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/maxsec)
"azb" = (
/obj/effect/landmark/yautja_teleport,
@@ -9171,10 +7035,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/maxsec)
"azd" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -9182,19 +7043,13 @@
"azf" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"azg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay)
"azh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -9203,27 +7058,18 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "Doctor's Office"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"azk" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/prison/medbay)
"azl" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"azm" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -9232,35 +7078,25 @@
/turf/open/floor/prison,
/area/prison/medbay)
"azn" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/medbay/foyer)
"azo" = (
/obj/effect/landmark/survivor_spawner,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/medbay/foyer)
"azp" = (
/obj/structure/bed/chair/office/dark,
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/medbay/foyer)
"azq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/medbay/foyer)
"azr" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -9273,35 +7109,25 @@
/area/prison/research)
"azu" = (
/obj/structure/machinery/vending/dinnerware,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"azv" = (
/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"azw" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/hanger/research)
"azx" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/hanger/research)
"azy" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/hanger/research)
"azz" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -9333,25 +7159,16 @@
/area/prison/maintenance/staff_research)
"azD" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/prison/medbay)
"azG" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"azI" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"azJ" = (
/obj/structure/bed/chair/comfy{
@@ -9367,25 +7184,16 @@
/area/prison/residential/north)
"azL" = (
/obj/structure/bed/sofa/south/grey,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"azM" = (
/obj/structure/bed/sofa/south/grey/right,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"azN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"azO" = (
/obj/structure/pipes/vents/pump{
@@ -9407,60 +7215,39 @@
/area/prison/maintenance/residential/access/north)
"azR" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/recreation/highsec/n)
"azS" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/recreation/highsec/n)
"azT" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/recreation/highsec/n)
"azU" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/recreation/highsec/n)
"azV" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/recreation/highsec/n)
"azW" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/prison/recreation/highsec/n)
"azX" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/recreation/highsec/n)
"azY" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/recreation/highsec/n)
"azZ" = (
/obj/structure/toilet{
@@ -9469,14 +7256,10 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/recreation/highsec/n)
"aAa" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/recreation/highsec/n)
"aAb" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -9490,10 +7273,7 @@
"aAe" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/drinks/bottle/holywater,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/chapel)
"aAf" = (
/turf/open/floor/carpet,
@@ -9510,16 +7290,10 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/chapel)
"aAk" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/chapel)
"aAl" = (
/obj/structure/machinery/door/morgue{
@@ -9541,10 +7315,7 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/maxsec)
"aAo" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -9554,9 +7325,7 @@
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/maxsec)
"aAp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -9565,9 +7334,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/maxsec)
"aAq" = (
/obj/structure/machinery/power/apc{
@@ -9580,9 +7347,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/maxsec)
"aAs" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -9591,10 +7356,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"aAt" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -9602,10 +7364,7 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"aAu" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
@@ -9614,9 +7373,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/maxsec)
"aAv" = (
/turf/closed/wall/r_wall/prison,
@@ -9626,63 +7383,42 @@
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/maxsec)
"aAx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/maxsec)
"aAy" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/maxsec)
"aAz" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"aAA" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
pixel_y = -28
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/maxsec)
"aAB" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/maxsec)
"aAC" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/maxsec)
"aAD" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/maxsec)
"aAE" = (
/obj/structure/toilet{
@@ -9691,10 +7427,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/medbay)
"aAF" = (
/obj/structure/sink{
@@ -9703,10 +7436,7 @@
/obj/structure/mirror{
pixel_y = 28
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/prison/medbay)
"aAG" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -9715,53 +7445,37 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aAH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aAI" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/hanger/research)
"aAJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/prison/medbay)
"aAL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/prison/medbay)
"aAN" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/prison/medbay)
"aAO" = (
/turf/open/space,
@@ -9769,43 +7483,26 @@
"aAP" = (
/obj/structure/machinery/medical_pod/bodyscanner,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aAQ" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aAR" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/prison/medbay)
"aAS" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/prison/medbay)
"aAT" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/prison/medbay)
"aAU" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/medbay/foyer)
"aAV" = (
/obj/structure/surface/table/reinforced,
@@ -9818,28 +7515,19 @@
pixel_y = 8
},
/obj/effect/landmark/item_pool_spawner/prison_lock,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/medbay/foyer)
"aAW" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/medbay/foyer)
"aAX" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/medbay/foyer)
"aAY" = (
/obj/structure/machinery/power/apc{
@@ -9847,10 +7535,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/prison/research)
"aAZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -9860,9 +7545,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research)
"aBa" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -9871,9 +7554,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research)
"aBb" = (
/obj/structure/machinery/light,
@@ -9883,9 +7564,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research)
"aBc" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -9895,19 +7574,13 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/west,
/area/prison/research)
"aBe" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"aBf" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -9917,10 +7590,7 @@
/turf/closed/wall/prison,
/area/prison/recreation/highsec/n)
"aBh" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/recreation/highsec/n)
"aBi" = (
/obj/structure/surface/rack,
@@ -9938,9 +7608,7 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding3"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/north)
"aBn" = (
/obj/structure/flora/tree/dead/tree_1,
@@ -9950,17 +7618,13 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding5"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/north)
"aBu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aBv" = (
/obj/effect/decal/warning_stripes{
@@ -9972,54 +7636,35 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/recreation/highsec/n)
"aBx" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/n)
"aBy" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/n)
"aBz" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/recreation/highsec/n)
"aBA" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/n)
"aBB" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/recreation/highsec/n)
"aBC" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 2;
name = "Toilet"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/recreation/highsec/n)
"aBD" = (
/turf/closed/wall/prison,
@@ -10038,28 +7683,19 @@
/area/prison/chapel)
"aBG" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/chapel)
"aBH" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/chapel)
"aBI" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/chapel)
"aBJ" = (
/obj/structure/surface/table/woodentable,
@@ -10098,25 +7734,16 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "Maximum-Security Wing"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"aBN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"aBO" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/maxsec)
"aBP" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -10124,27 +7751,18 @@
dir = 2;
name = "Infirmary Reception"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aBQ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
name = "Infirmary"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aBR" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aBS" = (
/obj/structure/sign/safety/medical,
@@ -10155,10 +7773,7 @@
dir = 2;
name = "Security Booth"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/medbay/foyer)
"aBU" = (
/obj/structure/window/framed/prison/reinforced,
@@ -10167,24 +7782,17 @@
"aBV" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research)
"aBW" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research)
"aBX" = (
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding12"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/north)
"aBY" = (
/obj/structure/toilet{
@@ -10193,9 +7801,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aBZ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -10204,29 +7810,21 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aCa" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aCb" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
pixel_y = 28
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aCc" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aCd" = (
/obj/structure/machinery/shower{
@@ -10235,9 +7833,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aCe" = (
/obj/structure/bed,
@@ -10249,55 +7845,37 @@
/turf/open/floor/wood,
/area/prison/quarters/research)
"aCg" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/south)
"aCh" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/north/south)
"aCi" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/north/south)
"aCj" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/north/south)
"aCk" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/south)
"aCl" = (
/turf/closed/wall/prison,
/area/prison/cellblock/highsec/north/south)
"aCm" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/north/south)
"aCn" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/south)
"aCo" = (
/obj/structure/surface/table,
@@ -10321,51 +7899,36 @@
/area/prison/recreation/highsec/n)
"aCz" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/n)
"aCA" = (
/obj/structure/surface/table/gamblingtable,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/recreation/highsec/n)
"aCB" = (
/obj/structure/surface/table/gamblingtable,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/recreation/highsec/n)
"aCC" = (
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/recreation/highsec/n)
"aCE" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/recreation/highsec/n)
"aCF" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/recreation/highsec/n)
"aCG" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/recreation/highsec/n)
"aCH" = (
/obj/structure/filingcabinet,
@@ -10384,17 +7947,11 @@
/turf/open/floor/wood,
/area/prison/chapel)
"aCK" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/prison/chapel)
"aCL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/chapel)
"aCM" = (
/obj/structure/window/framed/prison/reinforced{
@@ -10404,25 +7961,16 @@
/area/prison/chapel)
"aCN" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/maxsec)
"aCO" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/maxsec)
"aCP" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"aCQ" = (
/obj/structure/surface/table/reinforced,
@@ -10430,10 +7978,7 @@
pixel_x = -3;
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"aCR" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -10442,28 +7987,19 @@
/area/prison/security/checkpoint/maxsec)
"aCS" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/maxsec)
"aCT" = (
/turf/closed/wall/prison,
/area/prison/security/checkpoint/maxsec)
"aCU" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/maxsec)
"aCV" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"aCW" = (
/turf/closed/wall/r_wall/prison,
@@ -10473,75 +8009,48 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/prison/medbay)
"aCY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/prison/medbay)
"aCZ" = (
/obj/structure/machinery/computer/crew,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aDa" = (
/obj/structure/window/framed/prison/reinforced,
/turf/open/floor/plating,
/area/prison/medbay)
"aDb" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/medbay/foyer)
"aDc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/medbay/foyer)
"aDd" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/medbay/foyer)
"aDe" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/medbay/foyer)
"aDf" = (
/obj/structure/bed/chair,
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/medbay/foyer)
"aDg" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/medbay/foyer)
"aDh" = (
/obj/structure/machinery/power/apc{
@@ -10549,17 +8058,11 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/medbay/foyer)
"aDi" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/medbay/foyer)
"aDj" = (
/obj/structure/sign/safety/restrictedarea,
@@ -10569,42 +8072,28 @@
/obj/structure/sink{
pixel_y = 15
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/prison/research)
"aDl" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/research)
"aDm" = (
/obj/structure/sink{
pixel_y = 15
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/prison/research)
"aDn" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"aDo" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research)
"aDp" = (
/obj/structure/sink{
@@ -10615,14 +8104,10 @@
pixel_x = -26
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aDq" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aDr" = (
/obj/structure/sink{
@@ -10633,9 +8118,7 @@
pixel_x = 26
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aDs" = (
/obj/structure/machinery/light/small{
@@ -10684,10 +8167,7 @@
req_one_access = null
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aDE" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -10697,45 +8177,32 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/recreation/highsec/n)
"aDG" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/n)
"aDH" = (
/obj/structure/surface/table/gamblingtable,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/recreation/highsec/n)
"aDK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/n)
"aDL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/recreation/highsec/n)
"aDM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -10745,48 +8212,31 @@
dir = 2;
name = "North High-Security Recreation"
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/recreation/highsec/n)
"aDN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/recreation/highsec/n)
"aDO" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/south)
"aDP" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/south)
"aDQ" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/n)
"aDR" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/north/south)
"aDS" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -10812,19 +8262,13 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/prison/security/checkpoint/maxsec)
"aDW" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/maxsec)
"aDX" = (
/obj/structure/surface/table/reinforced,
@@ -10832,10 +8276,7 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"aDY" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -10849,35 +8290,23 @@
pixel_y = 8
},
/obj/effect/landmark/item_pool_spawner/prison_lock,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"aEb" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/maxsec)
"aEc" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/prison/security/checkpoint/maxsec)
"aEd" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/maxsec)
"aEe" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -10892,47 +8321,32 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/maxsec)
"aEg" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/maxsec)
"aEh" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"aEk" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aEl" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/eastleft,
/obj/structure/machinery/door/window/westright,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aEm" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -10942,20 +8356,14 @@
/obj/structure/disposalpipe/junction{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/medbay/foyer)
"aEn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/medbay/foyer)
"aEo" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -10964,10 +8372,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/medbay/foyer)
"aEq" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
@@ -10975,20 +8380,14 @@
dir = 4
},
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/medbay/foyer)
"aEr" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/medbay/foyer)
"aEs" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -10997,10 +8396,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/medbay/foyer)
"aEt" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -11009,19 +8405,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research)
"aEu" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"aEv" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -11033,26 +8424,18 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research)
"aEx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"aEz" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research)
"aEA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -11062,26 +8445,20 @@
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aEB" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aEC" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aED" = (
/turf/closed/wall/prison,
@@ -11117,9 +8494,7 @@
/turf/open/floor/wood,
/area/prison/quarters/research)
"aEJ" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"aEK" = (
/obj/structure/pipes/vents/scrubber{
@@ -11135,20 +8510,14 @@
/area/prison/maintenance/staff_research)
"aEM" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/central)
"aEN" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/prison/cellblock/highsec/north/south)
"aEO" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/south)
"aEP" = (
/obj/structure/machinery/light/small{
@@ -11157,35 +8526,23 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/highsec/north/south)
"aEQ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/north/south)
"aER" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/cellblock/highsec/north/south)
"aES" = (
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/south)
"aET" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/south)
"aEU" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/prison/cellblock/highsec/north/south)
"aEV" = (
/obj/structure/window/framed/prison/cell,
@@ -11195,10 +8552,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/south)
"aEX" = (
/turf/closed/wall/r_wall/prison,
@@ -11206,31 +8560,19 @@
"aEY" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hangar_storage/main)
"aEZ" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/prison/hangar_storage/main)
"aFa" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/hangar_storage/main)
"aFb" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/hangar_storage/main)
"aFc" = (
/obj/structure/machinery/power/apc{
@@ -11238,81 +8580,53 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/prison/hangar_storage/main)
"aFd" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aFe" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aFg" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aFh" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aFi" = (
/obj/structure/pipes/vents/scrubber,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aFj" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aFk" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/recreation/highsec/n)
"aFl" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/n)
"aFn" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/n)
"aFo" = (
/obj/structure/surface/table/woodentable,
@@ -11340,10 +8654,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/prison/chapel)
"aFs" = (
/obj/structure/bed/chair/wood/normal{
@@ -11353,10 +8664,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/northeast,
/area/prison/chapel)
"aFt" = (
/obj/structure/bed/chair/wood/normal{
@@ -11366,10 +8674,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/prison/chapel)
"aFu" = (
/obj/structure/machinery/door/morgue{
@@ -11390,10 +8695,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/maxsec)
"aFx" = (
/obj/structure/pipes/vents/scrubber{
@@ -11407,10 +8709,7 @@
dir = 4
},
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/maxsec)
"aFA" = (
/turf/closed/wall/r_wall/prison,
@@ -11425,15 +8724,10 @@
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/maxsec)
"aFE" = (
-/turf/open/floor/prison{
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom,
/area/prison/residential/central)
"aFF" = (
/obj/structure/pipes/vents/scrubber{
@@ -11444,38 +8738,25 @@
"aFG" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/maxsec)
"aFH" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom,
/area/prison/residential/central)
"aFI" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/maxsec)
"aFJ" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/maxsec)
"aFK" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/maxsec)
"aFL" = (
/obj/structure/machinery/door/airlock/almayer/security/colony{
@@ -11487,67 +8768,45 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/prison/medbay)
"aFN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/prison/medbay)
"aFO" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/med_data/laptop,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aFP" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/medbay/foyer)
"aFQ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
dir = 2;
name = "Infirmary Foyer"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/medbay/foyer)
"aFS" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/medbay/foyer)
"aFT" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
dir = 2;
name = "Biological Research Department"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research)
"aFU" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"aFV" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -11561,70 +8820,47 @@
dir = 2;
name = "Research Common Room"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research)
"aFY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/prison/research)
"aFZ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research)
"aGa" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/south)
"aGb" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/south)
"aGc" = (
/obj/structure/toilet{
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/north/south)
"aGg" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/north/south)
"aGh" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/south)
"aGi" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -11635,9 +8871,7 @@
name = "Research Restrooms";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/toilet/research)
"aGj" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -11659,35 +8893,20 @@
/obj/structure/surface/rack,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hangar_storage/main)
"aGn" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/prison/hangar_storage/main)
"aGo" = (
/obj/structure/closet/crate,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/hangar_storage/main)
"aGp" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/hangar_storage/main)
"aGq" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/hangar_storage/main)
"aGs" = (
/obj/structure/sink{
@@ -11697,9 +8916,7 @@
/obj/structure/mirror{
pixel_x = -26
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aGt" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -11708,39 +8925,29 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aGu" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aGv" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aGw" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aGx" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aGA" = (
/obj/structure/sink{
@@ -11750,17 +8957,13 @@
/obj/structure/mirror{
pixel_x = 26
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aGB" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/recreation/highsec/n)
"aGC" = (
/obj/structure/machinery/power/apc{
@@ -11768,38 +8971,25 @@
start_charge = 0
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/recreation/highsec/n)
"aGD" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/prison/recreation/highsec/n)
"aGE" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/prison/recreation/highsec/n)
"aGF" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/recreation/highsec/n)
"aGG" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/recreation/highsec/n)
"aGH" = (
/obj/structure/surface/table/woodentable,
@@ -11824,10 +9014,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/prison/chapel)
"aGM" = (
/obj/structure/bed/chair/wood/normal{
@@ -11837,48 +9024,31 @@
dir = 1;
network = list("PRISON")
},
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/prison/chapel)
"aGN" = (
/obj/structure/bed/chair/wood/normal{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/prison/chapel)
"aGO" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Chapel"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/chapel)
"aGP" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/maxsec)
"aGQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/security/checkpoint/maxsec)
"aGS" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/maxsec)
"aGT" = (
/obj/structure/surface/table/reinforced,
@@ -11890,31 +9060,19 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"aGU" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"aGV" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/doctor,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/prison/medbay)
"aGW" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/prison/medbay)
"aGX" = (
/obj/structure/surface/table/reinforced,
@@ -11926,79 +9084,52 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aGY" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"aGZ" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/medbay/foyer)
"aHa" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/medbay/foyer)
"aHc" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/prison/research)
"aHd" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research)
"aHe" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/prison/research)
"aHf" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research)
"aHg" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/research)
"aHh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/prison/research)
"aHi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -12007,53 +9138,36 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "Research Dorms"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/quarters/research)
"aHj" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"aHk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/prison/quarters/research)
"aHl" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/quarters/research)
"aHn" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/quarters/research)
"aHo" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/quarters/research)
"aHq" = (
/obj/structure/machinery/alarm/almayer{
@@ -12062,56 +9176,39 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/quarters/research)
"aHs" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/quarters/research)
"aHt" = (
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding4"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/central)
"aHv" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/south)
"aHw" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/north/south)
"aHx" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/north/south)
"aHy" = (
/obj/structure/machinery/light{
@@ -12120,26 +9217,17 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/quarters/research)
"aHz" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/prison/quarters/research)
"aHA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/prison/quarters/research)
"aHB" = (
/obj/structure/window/reinforced{
@@ -12149,24 +9237,17 @@
dir = 4;
layer = 3.3
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aHC" = (
/obj/structure/machinery/door/window/northleft,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aHD" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/north)
"aHE" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -12187,56 +9268,37 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aHI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aHJ" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aHK" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aHL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aHN" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/north)
"aHO" = (
/obj/structure/machinery/door/window/northright,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aHP" = (
/obj/structure/window/reinforced{
@@ -12246,9 +9308,7 @@
dir = 8;
layer = 3.3
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aHQ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -12258,17 +9318,11 @@
/turf/open/floor/wood,
/area/prison/storage/highsec/n)
"aHR" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/chapel)
"aHS" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/chapel)
"aHT" = (
/obj/item/weapon/gun/rifle/m16,
@@ -12295,61 +9349,43 @@
/turf/closed/wall/r_wall/prison_unmeltable,
/area/prison/medbay/foyer)
"aHZ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/prison/quarters/research)
"aIa" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/quarters/research)
"aIb" = (
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/quarters/research)
"aIc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/quarters/research)
"aId" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/quarters/research)
"aIe" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/quarters/research)
"aIf" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/prison/quarters/research)
"aIg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/prison/quarters/research)
"aIh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -12362,22 +9398,14 @@
/area/prison/quarters/research)
"aIj" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/prison/hangar_storage/main)
"aIk" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/hangar_storage/main)
"aIl" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/hangar_storage/main)
"aIm" = (
/obj/structure/machinery/light{
@@ -12411,9 +9439,7 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/cellblock/highsec/north/south)
"aIu" = (
/obj/structure/machinery/alarm/almayer{
@@ -12422,34 +9448,22 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"aIv" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/residential/central)
"aIw" = (
/obj/structure/pipes/vents/scrubber,
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"aIx" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/north)
"aIy" = (
/turf/closed/wall/r_wall/prison,
@@ -12469,18 +9483,13 @@
/obj/effect/decal/siding{
icon_state = "siding2"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/central)
"aIB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"aIC" = (
/obj/structure/machinery/power/apc{
@@ -12505,24 +9514,15 @@
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/north/south)
"aII" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/prison/hangar_storage/main)
"aIJ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/hangar_storage/main)
"aIK" = (
/obj/structure/machinery/light/small{
@@ -12568,10 +9568,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aIT" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -12580,9 +9577,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/highsec/n)
"aIU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -12592,31 +9587,22 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/highsec/n)
"aIV" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/highsec/n)
"aIW" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/highsec/n)
"aIX" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/highsec/n)
"aIY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -12651,10 +9637,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/north)
"aJc" = (
/obj/structure/disposalpipe/segment{
@@ -12681,9 +9664,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/quarters/research)
"aJh" = (
/obj/structure/closet,
@@ -12700,10 +9681,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/prison/research)
"aJk" = (
/obj/structure/bed,
@@ -12743,10 +9721,7 @@
/obj/structure/surface/rack,
/obj/item/clothing/head/welding,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hangar_storage/main)
"aJr" = (
/obj/structure/bed/chair/office/light,
@@ -12759,10 +9734,7 @@
/turf/open/floor/wood,
/area/prison/residential/north)
"aJu" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/cellblock/highsec/north/south)
"aJv" = (
/obj/effect/landmark/corpsespawner/prisoner,
@@ -12770,44 +9742,31 @@
/area/prison/cellblock/highsec/north/south)
"aJw" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/storage/highsec/n)
"aJy" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/storage/highsec/n)
"aJz" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/storage/highsec/n)
"aJA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/storage/highsec/n)
"aJB" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/storage/highsec/n)
"aJC" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aJD" = (
/obj/structure/surface/table/reinforced,
@@ -12815,10 +9774,7 @@
pixel_x = -3;
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aJE" = (
/obj/structure/surface/table/reinforced,
@@ -12830,28 +9786,19 @@
dir = 1
},
/obj/effect/landmark/item_pool_spawner/prison_lock,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aJF" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aJG" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aJH" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -12862,10 +9809,7 @@
dir = 2;
name = "Central Ring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/north)
"aJJ" = (
/obj/structure/disposalpipe/segment,
@@ -12881,9 +9825,7 @@
pixel_x = -26
},
/obj/item/paper/crumpled/bloody,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/quarters/research)
"aJM" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -12892,9 +9834,7 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/quarters/research)
"aJN" = (
/turf/open/floor/carpet,
@@ -12931,10 +9871,7 @@
/turf/open/floor/wood,
/area/prison/quarters/research)
"aJW" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/quarters/research)
"aJY" = (
/obj/structure/bed/chair/office/dark{
@@ -12955,10 +9892,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hangar_storage/main)
"aKd" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -12970,33 +9904,22 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/prison/hangar_storage/main)
"aKg" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/hangar_storage/main)
"aKh" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/prison/hangar_storage/main)
"aKi" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hangar_storage/main)
"aKj" = (
/obj/structure/surface/table/woodentable,
@@ -13028,10 +9951,7 @@
/area/prison/residential/north)
"aKs" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/north/south)
"aKt" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -13056,44 +9976,30 @@
/turf/open/floor/plating,
/area/prison/security/checkpoint/highsec/n)
"aKz" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/cellblock/highsec/north/south)
"aKA" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/cellblock/highsec/north/south)
"aKB" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"aKC" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"aKD" = (
/obj/structure/machinery/shower{
dir = 4
},
/obj/structure/machinery/door/window/northright,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/quarters/research)
"aKE" = (
/obj/structure/bookcase,
@@ -13113,10 +10019,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/highsec/n)
"aKH" = (
/turf/closed/wall/r_wall/prison,
@@ -13127,32 +10030,20 @@
},
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/highsec/n)
"aKJ" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/highsec/n)
"aKK" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/highsec/n)
"aKL" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/highsec/n)
"aKM" = (
/obj/structure/surface/table/woodentable,
@@ -13160,41 +10051,26 @@
/turf/open/floor/carpet,
/area/prison/quarters/research)
"aKN" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"aKO" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/north)
"aKP" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/north)
"aKQ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"aKR" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aKS" = (
/obj/structure/pipes/vents/scrubber{
@@ -13232,10 +10108,7 @@
name = "Main Hangar Storage"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hangar_storage/main)
"aKZ" = (
/obj/structure/window/framed/prison/reinforced,
@@ -13245,88 +10118,55 @@
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/north)
"aLd" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/siding{
icon_state = "siding8"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/residential/central)
"aLe" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/south)
"aLg" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/north/south)
"aLh" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/south)
"aLi" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/south)
"aLj" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/south)
"aLk" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/security/checkpoint/highsec/n)
"aLl" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/security/checkpoint/highsec/n)
"aLm" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/bed/chair/office,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/security/checkpoint/highsec/n)
"aLo" = (
/obj/structure/bed/chair/office{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/security/checkpoint/highsec/n)
"aLp" = (
/obj/structure/stairs/perspective{
@@ -13337,10 +10177,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/security/checkpoint/highsec/n)
"aLq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -13377,59 +10214,36 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/security/monitoring/lowsec/ne)
"aLv" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/maintenance/staff_research)
"aLw" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/prison/hallway/staff)
"aLy" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/hallway/staff)
"aLz" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/hallway/staff)
"aLA" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/hallway/staff)
"aLC" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/hallway/staff)
"aLD" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/prison/hallway/staff)
"aLE" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -13456,71 +10270,44 @@
"aLL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/security/checkpoint/highsec/n)
"aLM" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/security/checkpoint/highsec/n)
"aLN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/north/south)
"aLO" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/south)
"aLP" = (
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/security/checkpoint/highsec/n)
"aLQ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/security/checkpoint/highsec/n)
"aLS" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/cellblock/lowsec/nw)
"aLT" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/cellblock/lowsec/nw)
"aLU" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aLV" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aLW" = (
/obj/structure/disposalpipe/segment{
@@ -13542,10 +10329,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/hallway/central/north)
"aLY" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aLZ" = (
/obj/structure/disposalpipe/segment{
@@ -13560,26 +10344,17 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/monitoring/lowsec/ne)
"aMb" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/lowsec/ne)
"aMc" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/monitoring/lowsec/ne)
"aMd" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -13596,10 +10371,7 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/lowsec/ne)
"aMj" = (
/obj/effect/landmark/crap_item,
@@ -13612,10 +10384,7 @@
"aMl" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/cleaning)
"aMm" = (
/obj/structure/machinery/power/apc{
@@ -13624,10 +10393,7 @@
start_charge = 0
},
/obj/structure/janitorialcart,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/cleaning)
"aMn" = (
/obj/structure/surface/rack,
@@ -13656,53 +10422,35 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/prison/quarters/staff)
"aMs" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/quarters/staff)
"aMt" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/plate,
/obj/item/grown/sunflower,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aMu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/quarters/staff)
"aMv" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/quarters/staff)
"aMw" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/quarters/staff)
"aMy" = (
/obj/structure/machinery/light{
@@ -13711,10 +10459,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/quarters/staff)
"aMz" = (
/obj/structure/machinery/power/apc{
@@ -13725,19 +10470,13 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/quarters/staff)
"aMA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/prison/quarters/staff)
"aMB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -13746,43 +10485,30 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "Staff Quarters"
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/staff)
"aMC" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/staff)
"aMD" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/hallway/staff)
"aME" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/hallway/staff)
"aMF" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/hallway/staff)
"aMG" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/hallway/staff)
"aMJ" = (
/turf/closed/wall/prison,
@@ -13792,42 +10518,27 @@
/obj/item/restraint/handcuffs,
/obj/item/clothing/mask/muzzle,
/obj/item/weapon/chainofcommand,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/prison/command/secretary_office)
"aML" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/command/secretary_office)
"aMM" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/command/secretary_office)
"aMN" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/command/secretary_office)
"aMO" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/prison/command/secretary_office)
"aMP" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -13845,9 +10556,7 @@
/area/prison/command/office)
"aMT" = (
/obj/structure/machinery/door/window/eastright,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aMU" = (
/obj/structure/sink{
@@ -13860,9 +10569,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aMV" = (
/obj/structure/machinery/light/small{
@@ -13875,33 +10582,23 @@
/obj/structure/mirror{
pixel_x = -26
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aMW" = (
/obj/structure/machinery/door/window/westleft,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aMX" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/north/south)
"aMY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/south)
"aMZ" = (
/obj/structure/machinery/light{
@@ -13910,19 +10607,13 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/south)
"aNa" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/prison/cellblock/highsec/north/south)
"aNb" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -13938,16 +10629,10 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/south)
"aNf" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/prison/cellblock/highsec/north/south)
"aNg" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -13979,10 +10664,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/security/checkpoint/highsec/n)
"aNn" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -13995,9 +10677,7 @@
dir = 2;
name = "North High-Security Cellblock"
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/security/checkpoint/highsec/n)
"aNo" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -14006,9 +10686,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/security/checkpoint/highsec/n)
"aNp" = (
/turf/closed/wall/prison,
@@ -14023,9 +10701,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/security/checkpoint/highsec/n)
"aNw" = (
/obj/structure/stairs/perspective{
@@ -14038,16 +10714,10 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/security/checkpoint/highsec/n)
"aNx" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/prison/cellblock/lowsec/nw)
"aNy" = (
/obj/structure/machinery/light/small{
@@ -14057,51 +10727,33 @@
/area/prison/cellblock/lowsec/nw)
"aNA" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/monitoring/lowsec/ne)
"aNB" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/prison/security/monitoring/lowsec/ne)
"aNC" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/monitoring/lowsec/ne)
"aND" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/prison_lock,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/lowsec/ne)
"aNI" = (
/obj/structure/disposalpipe/junction{
dir = 4;
icon_state = "pipe-y"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/cleaning)
"aNJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/cleaning)
"aNK" = (
/obj/structure/disposalpipe/segment{
@@ -14128,98 +10780,66 @@
/area/prison/residential/north)
"aNP" = (
/obj/structure/machinery/door/window/southright,
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/staff)
"aNQ" = (
/obj/structure/window/reinforced,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/quarters/staff)
"aNR" = (
/obj/item/shard,
/obj/item/stack/rods,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/quarters/staff)
"aNS" = (
/obj/structure/window/reinforced,
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/quarters/staff)
"aNT" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/cellblock/lowsec/nw)
"aNU" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/bible/booze,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/cellblock/lowsec/nw)
"aNV" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/nw)
"aNW" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/nw)
"aNX" = (
/obj/structure/window/reinforced,
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/quarters/staff)
"aNY" = (
/obj/structure/machinery/door/window/southright,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/staff)
"aNZ" = (
/obj/structure/window/reinforced,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/prison/quarters/staff)
"aOa" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "Staff Quarters"
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/staff)
"aOb" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/hallway/staff)
"aOc" = (
/obj/structure/disposalpipe/segment{
@@ -14236,59 +10856,40 @@
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aOe" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aOf" = (
/obj/structure/bed/chair/comfy,
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/cellblock/lowsec/nw)
"aOg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/hallway/staff)
"aOh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/hallway/staff)
"aOi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/prison/hallway/staff)
"aOj" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"aOk" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -14314,9 +10915,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner,
/area/prison/hallway/staff)
"aOn" = (
/obj/structure/window/reinforced,
@@ -14326,9 +10925,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/hallway/staff)
"aOo" = (
/obj/structure/disposalpipe/segment{
@@ -14337,10 +10934,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/prison/hallway/staff)
"aOp" = (
/obj/structure/disposalpipe/segment{
@@ -14360,16 +10954,10 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/hallway/staff)
"aOr" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/hallway/staff)
"aOs" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/command/secretary_office)
"aOt" = (
/turf/closed/wall/r_wall/prison,
@@ -14382,10 +10970,7 @@
/turf/open/floor/carpet,
/area/prison/command/secretary_office)
"aOw" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/prison/command/secretary_office)
"aOy" = (
/obj/structure/bed/chair/comfy,
@@ -14417,23 +11002,17 @@
/obj/structure/machinery/shower{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aOE" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aOF" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aOG" = (
/obj/structure/machinery/shower{
@@ -14442,61 +11021,44 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aOI" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/south)
"aOJ" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/south)
"aOK" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/south)
"aOL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/south)
"aOM" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("PRISON")
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/south)
"aON" = (
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/security/checkpoint/highsec/n)
"aOO" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/security/checkpoint/highsec/n)
"aOP" = (
/obj/structure/machinery/light{
@@ -14505,60 +11067,38 @@
/obj/structure/bed/chair/office{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/prison/security/checkpoint/highsec/n)
"aOR" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/security/checkpoint/highsec/n)
"aOS" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/cellblock/lowsec/nw)
"aOT" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/nw)
"aOU" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/north,
/area/prison/cellblock/lowsec/nw)
"aOV" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/lowsec/nw)
"aOW" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/lowsec/nw)
"aOY" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"aOZ" = (
/obj/effect/decal/siding/wood_siding{
@@ -14571,40 +11111,25 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/monitoring/lowsec/ne)
"aPb" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/monitoring/lowsec/ne)
"aPc" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/lowsec/ne)
"aPf" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/cleaning)
"aPg" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/cleaning)
"aPh" = (
/obj/effect/landmark/monkey_spawn,
@@ -14623,9 +11148,7 @@
/turf/open/floor/prison,
/area/prison/cleaning)
"aPl" = (
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/staff)
"aPm" = (
/obj/structure/bed,
@@ -14633,9 +11156,7 @@
dir = 4;
health = 80
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/staff)
"aPn" = (
/obj/structure/bed,
@@ -14644,9 +11165,7 @@
health = 80
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/staff)
"aPo" = (
/obj/structure/bed,
@@ -14655,9 +11174,7 @@
health = 80
},
/obj/effect/landmark/corpsespawner/chef,
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/staff)
"aPp" = (
/turf/closed/wall/prison,
@@ -14666,31 +11183,21 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/staff)
"aPr" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/hallway/staff)
"aPs" = (
-/turf/open/floor/prison{
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner,
/area/prison/hallway/staff)
"aPt" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/prison/hallway/staff)
"aPu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -14699,10 +11206,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"aPv" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -14722,45 +11226,30 @@
/turf/open/floor/wood,
/area/prison/hallway/staff)
"aPx" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/nw)
"aPy" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/prison/cellblock/lowsec/nw)
"aPz" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/cellblock/lowsec/nw)
"aPA" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/nw)
"aPB" = (
/obj/structure/showcase,
/turf/open/floor/wood,
/area/prison/hallway/staff)
"aPC" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aPD" = (
/obj/structure/showcase{
@@ -14776,10 +11265,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aPG" = (
/obj/structure/window/reinforced{
@@ -14792,17 +11278,11 @@
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/hallway/staff)
"aPI" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/prison/hallway/staff)
"aPJ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -14816,24 +11296,15 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/east)
"aPM" = (
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aPN" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/command/secretary_office)
"aPO" = (
/obj/structure/bed/chair/office/dark,
@@ -14855,10 +11326,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/command/secretary_office)
"aPS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -14913,21 +11381,14 @@
/turf/open/floor/wood,
/area/prison/command/office)
"aQb" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/cellblock/highsec/north/south)
"aQc" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/cellblock/highsec/north/south)
"aQd" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/cellblock/highsec/north/south)
"aQe" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -14935,9 +11396,7 @@
dir = 2;
name = "Security Booth"
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/security/checkpoint/highsec/n)
"aQf" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -14946,30 +11405,18 @@
"aQg" = (
/obj/structure/surface/table/gamblingtable,
/obj/item/spacecash/c1000,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aQh" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/north,
/area/prison/cellblock/lowsec/nw)
"aQi" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/nw)
"aQj" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/prison/cellblock/lowsec/nw)
"aQk" = (
/obj/structure/machinery/door/airlock/prison/horizontal{
@@ -14977,9 +11424,7 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/nw)
"aQl" = (
/obj/structure/window/framed/prison/cell,
@@ -14989,10 +11434,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Low-Security"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/north)
"aQn" = (
/obj/structure/window/framed/prison/cell,
@@ -15004,9 +11446,7 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/ne)
"aQp" = (
/turf/closed/wall/prison,
@@ -15021,26 +11461,17 @@
dir = 2;
name = "Northeast Low-Security Monitoring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/lowsec/ne)
"aQt" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/cleaning)
"aQu" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/cleaning)
"aQv" = (
/obj/structure/reagent_dispensers/watertank,
@@ -15055,9 +11486,7 @@
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/staff)
"aQy" = (
/obj/structure/closet,
@@ -15065,16 +11494,12 @@
dir = 4;
health = 80
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/staff)
"aQz" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/staff)
"aQA" = (
/obj/structure/machinery/shower{
@@ -15083,16 +11508,10 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/toilet/staff)
"aQB" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/staff)
"aQC" = (
/turf/closed/wall/prison,
@@ -15103,10 +11522,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/staff)
"aQF" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -15118,10 +11534,7 @@
dir = 8
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/command/secretary_office)
"aQG" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -15151,10 +11564,7 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/command/secretary_office)
"aQL" = (
/obj/structure/machinery/light{
@@ -15198,20 +11608,14 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/prison/cellblock/lowsec/nw)
"aQU" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 2;
name = "Toilet"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/nw)
"aQV" = (
/obj/structure/pipes/vents/pump/on,
@@ -15229,14 +11633,10 @@
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/lowsec/ne)
"aRa" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/lowsec/ne)
"aRb" = (
/obj/structure/pipes/vents/scrubber,
@@ -15246,10 +11646,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"aRe" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -15272,10 +11669,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/south)
"aRi" = (
/obj/structure/machinery/shower{
@@ -15284,30 +11678,18 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aRj" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aRk" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aRl" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aRm" = (
/obj/structure/machinery/shower{
@@ -15316,18 +11698,12 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aRn" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aRo" = (
/obj/structure/surface/table/reinforced,
@@ -15339,24 +11715,15 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aRp" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aRq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aRr" = (
/turf/closed/wall/r_wall/prison,
@@ -15365,15 +11732,10 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/nw)
"aRt" = (
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/nw)
"aRv" = (
/obj/structure/machinery/power/apc{
@@ -15381,102 +11743,65 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/nw)
"aRw" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/nw)
"aRx" = (
/obj/structure/pipes/vents/scrubber,
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/nw)
"aRz" = (
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/ne)
"aRA" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/prison/cellblock/lowsec/ne)
"aRB" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/ne)
"aRC" = (
/obj/structure/pipes/vents/scrubber,
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/ne)
"aRE" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/ne)
"aRF" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/ne)
"aRG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/ne)
"aRH" = (
/obj/effect/decal/siding/wood_siding,
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/central)
"aRI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/security/monitoring/lowsec/ne)
"aRK" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/east)
"aRL" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -15486,9 +11811,7 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/toilet/staff)
"aRM" = (
/obj/structure/machinery/vending/cola,
@@ -15506,10 +11829,7 @@
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/command/secretary_office)
"aRQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -15541,10 +11861,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/command/secretary_office)
"aRX" = (
/obj/structure/surface/rack,
@@ -15585,9 +11902,7 @@
/area/prison/maintenance/residential/nw)
"aSf" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"aSg" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -15604,10 +11919,7 @@
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aSl" = (
/obj/structure/machinery/shower{
@@ -15617,10 +11929,7 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aSm" = (
/obj/structure/machinery/shower{
@@ -15632,54 +11941,33 @@
health = 80
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aSn" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aSp" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aSq" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/highsec/n)
"aSr" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/highsec/n)
"aSs" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/highsec/n)
"aSt" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aSu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -15689,10 +11977,7 @@
/area/prison/cellblock/lowsec/nw)
"aSw" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aSx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -15701,10 +11986,7 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/nw)
"aSy" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -15714,26 +11996,19 @@
dir = 2;
name = "Low-Security Recreation"
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/nw)
"aSz" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/cellblock/lowsec/nw)
"aSA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/nw)
"aSB" = (
/obj/structure/machinery/light,
@@ -15741,31 +12016,21 @@
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/nw)
"aSC" = (
/obj/effect/decal/siding/wood_siding,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"aSD" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/nw)
"aSG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/prison/cellblock/lowsec/nw)
"aSH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -15775,27 +12040,19 @@
dir = 2;
name = "Northwest Low-Security Cellblock"
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/nw)
"aSI" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/central/north)
"aSJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/north)
"aSK" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -15805,10 +12062,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/hallway/central/north)
"aSM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -15818,32 +12072,23 @@
dir = 2;
name = "Northeast Low-Security Cellblock"
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/ne)
"aSN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/cellblock/lowsec/ne)
"aSO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/ne)
"aSP" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/ne)
"aSR" = (
/turf/open/floor/plating,
@@ -15851,76 +12096,51 @@
"aSS" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/ne)
"aST" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/ne)
"aSU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/prison/cellblock/lowsec/ne)
"aSW" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aSX" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aSZ" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aTa" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aTd" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/security/monitoring/lowsec/ne)
"aTe" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/security/monitoring/lowsec/ne)
"aTf" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -15934,15 +12154,11 @@
/obj/structure/mirror{
pixel_x = -26
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/toilet/staff)
"aTi" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/toilet/staff)
"aTj" = (
/obj/structure/machinery/light{
@@ -15951,16 +12167,11 @@
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
pixel_x = 28
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/toilet/staff)
"aTk" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/staff)
"aTl" = (
/obj/structure/bed/chair/comfy{
@@ -15987,38 +12198,24 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/command/secretary_office)
"aTq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/carpet,
/area/prison/command/secretary_office)
"aTr" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/central/north)
"aTs" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/hallway/central/north)
"aTt" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/command/secretary_office)
"aTu" = (
-/turf/open/floor/prison{
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom,
/area/prison/maintenance/residential/nw)
"aTw" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -16029,15 +12226,11 @@
dir = 1
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/highsec/north/south)
"aTy" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/highsec/north/south)
"aTz" = (
/obj/structure/machinery/shower{
@@ -16048,25 +12241,16 @@
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aTA" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/item_pool_spawner/prison_lock,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aTB" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/highsec/n)
"aTC" = (
/obj/structure/bed/chair/office/dark{
@@ -16075,10 +12259,7 @@
/turf/open/floor/prison,
/area/prison/security/checkpoint/highsec/n)
"aTD" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/highsec/n)
"aTE" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -16095,89 +12276,57 @@
/turf/open/floor/prison,
/area/prison/canteen)
"aTH" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/cellblock/lowsec/nw)
"aTI" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/nw)
"aTJ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/prison/cellblock/lowsec/nw)
"aTL" = (
-/turf/open/floor/prison{
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner,
/area/prison/cellblock/lowsec/nw)
"aTM" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/nw)
"aTN" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/prison/cellblock/lowsec/nw)
"aTO" = (
/obj/structure/machinery/light,
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/central/north)
"aTQ" = (
/obj/structure/machinery/light,
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/hallway/central/north)
"aTR" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"aTS" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/cellblock/lowsec/ne)
"aTT" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/south)
"aTU" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/ne)
"aTV" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -16185,66 +12334,48 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/prison/cellblock/lowsec/ne)
"aTW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner,
/area/prison/cellblock/lowsec/ne)
"aTX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/security/monitoring/lowsec/ne)
"aTY" = (
/obj/structure/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/security/monitoring/lowsec/ne)
"aTZ" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/prison/security/monitoring/lowsec/ne)
"aUa" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/toilet/staff)
"aUb" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/toilet/staff)
"aUc" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/toilet/staff)
"aUd" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -16255,18 +12386,14 @@
icon_state = "door_open";
name = "Staff Restrooms"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/toilet/staff)
"aUe" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/hallway/staff)
"aUf" = (
/obj/structure/pipes/vents/pump/on,
@@ -16290,10 +12417,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/prison/command/secretary_office)
"aUj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -16302,32 +12426,24 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/command/secretary_office)
"aUk" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/command/secretary_office)
"aUl" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/command/secretary_office)
"aUm" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/command/secretary_office)
"aUn" = (
/obj/structure/machinery/keycard_auth/lockdown/prison,
@@ -16335,44 +12451,29 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/prison/command/secretary_office)
"aUp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aUq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aUr" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/highsec/n)
"aUs" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/prison/security/checkpoint/highsec/n)
"aUt" = (
/obj/structure/pipes/vents/pump{
@@ -16385,10 +12486,7 @@
dir = 2;
name = "Phone Booth"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/cellblock/lowsec/nw)
"aUv" = (
/obj/structure/surface/table/reinforced,
@@ -16397,49 +12495,31 @@
},
/obj/item/explosive/grenade/high_explosive/airburst,
/obj/item/explosive/grenade/high_explosive/frag,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/cellblock/lowsec/nw)
"aUw" = (
/obj/structure/surface/table/reinforced,
/obj/item/spacecash/c10,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/prison/cellblock/lowsec/nw)
"aUx" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/lowsec/nw)
"aUy" = (
/obj/structure/toilet,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/lowsec/nw)
"aUz" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/lowsec/nw)
"aUA" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/lowsec/nw)
"aUB" = (
/obj/structure/sink{
@@ -16447,16 +12527,10 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/lowsec/ne)
"aUC" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/lowsec/ne)
"aUD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -16466,10 +12540,7 @@
/area/prison/hallway/central/north)
"aUE" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/lowsec/ne)
"aUF" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -16484,24 +12555,16 @@
"aUG" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/ne)
"aUH" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/ne)
"aUI" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/toilet/staff)
"aUJ" = (
/obj/structure/machinery/power/apc{
@@ -16509,27 +12572,20 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/toilet/staff)
"aUK" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/hallway/staff)
"aUL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/hallway/staff)
"aUM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -16558,10 +12614,7 @@
dir = 2;
name = "Warden's Secretary's Office"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/command/secretary_office)
"aUR" = (
/obj/structure/window/framed/prison/reinforced,
@@ -16576,10 +12629,7 @@
dir = 2;
name = "Warden's Quarters"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/command/quarters)
"aUU" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -16609,62 +12659,41 @@
/turf/open/floor/plating,
/area/prison/hallway/central/east)
"aVa" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"aVb" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"aVc" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"aVd" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"aVi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/prison/cellblock/highsec/north/south)
"aVj" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/north/south)
"aVm" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aVn" = (
/obj/structure/machinery/shower{
@@ -16677,10 +12706,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aVo" = (
/obj/structure/machinery/shower{
@@ -16692,19 +12718,13 @@
health = 80
},
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aVp" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aVq" = (
/obj/structure/machinery/light/small{
@@ -16716,112 +12736,73 @@
start_charge = 0
},
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aVr" = (
/obj/structure/filingcabinet,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aVs" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/highsec/north/south)
"aVt" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/highsec/north/south)
"aVu" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aVv" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/highsec/n)
"aVw" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/highsec/n)
"aVx" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/nw)
"aVy" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aVA" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/nw)
"aVB" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/cellblock/lowsec/nw)
"aVC" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aVD" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aVE" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aVF" = (
/obj/structure/machinery/light/small{
@@ -16838,15 +12819,10 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/ne)
"aVI" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/lowsec/ne)
"aVJ" = (
/obj/structure/machinery/light/small{
@@ -16857,19 +12833,13 @@
"aVK" = (
/obj/structure/bed,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aVM" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/hallway/staff)
"aVN" = (
/obj/structure/machinery/light{
@@ -16885,10 +12855,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/staff)
"aVP" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -16899,29 +12866,20 @@
/area/prison/hallway/staff)
"aVQ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/north,
/area/prison/hallway/staff)
"aVR" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"aVS" = (
/turf/closed/wall/prison,
/area/prison/hallway/central/east)
"aVT" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"aVU" = (
/obj/structure/bed/chair,
@@ -16929,44 +12887,29 @@
dir = 5
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"aVV" = (
/obj/structure/bed/chair,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"aVW" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"aVX" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"aVY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/hallway/staff)
"aVZ" = (
/obj/structure/closet,
@@ -17002,9 +12945,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/command/quarters)
"aWg" = (
/obj/structure/machinery/light{
@@ -17022,10 +12963,7 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/prison/cellblock/highsec/north/south)
"aWn" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -17056,9 +12994,7 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"aWt" = (
/obj/structure/sink{
@@ -17067,30 +13003,21 @@
/obj/structure/mirror{
pixel_y = 28
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"aWu" = (
/obj/structure/machinery/washing_machine,
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"aWv" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/central)
"aWw" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"aWx" = (
/obj/structure/machinery/shower{
@@ -17099,9 +13026,7 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"aWy" = (
/obj/structure/bed/chair/office/light{
@@ -17118,17 +13043,13 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/cellblock/highsec/north/south)
"aWB" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/cellblock/highsec/north/south)
"aWD" = (
/obj/structure/machinery/shower{
@@ -17139,10 +13060,7 @@
dir = 8;
health = 80
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aWE" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -17150,27 +13068,18 @@
dir = 2;
name = "Security Records"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"aWF" = (
/obj/item/phone,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/cellblock/lowsec/nw)
"aWG" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"aWH" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -17186,25 +13095,17 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"aWK" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/nw)
"aWL" = (
/obj/structure/bed,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aWM" = (
/obj/structure/sink{
@@ -17212,28 +13113,19 @@
pixel_x = 11
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aWN" = (
/obj/structure/toilet{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aWO" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aWP" = (
/obj/structure/sink{
@@ -17241,16 +13133,10 @@
pixel_x = -12
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aWR" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"aWS" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -17263,10 +13149,7 @@
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/lowsec/ne)
"aWW" = (
/obj/structure/sink{
@@ -17274,10 +13157,7 @@
pixel_x = 12
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aWX" = (
/obj/structure/toilet{
@@ -17286,9 +13166,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/toilet/staff)
"aWZ" = (
/obj/structure/machinery/alarm/almayer{
@@ -17300,10 +13178,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"aXb" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -17315,32 +13190,20 @@
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"aXd" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"aXf" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"aXj" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/staff)
"aXk" = (
/obj/structure/disposalpipe/junction{
@@ -17424,9 +13287,7 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/command/quarters)
"aXx" = (
/obj/structure/machinery/light/small{
@@ -17436,9 +13297,7 @@
/area/prison/residential/central)
"aXy" = (
/obj/structure/machinery/door/window/eastleft,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"aXz" = (
/obj/structure/sink{
@@ -17448,9 +13307,7 @@
/obj/structure/mirror{
pixel_x = 28
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/command/quarters)
"aXA" = (
/obj/structure/toilet{
@@ -17460,47 +13317,33 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"aXB" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/central)
"aXC" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"aXD" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/central)
"aXE" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"aXF" = (
/obj/structure/machinery/door/window/westright,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"aXG" = (
/obj/structure/machinery/light/small{
@@ -17547,40 +13390,27 @@
/turf/open/floor/wood,
/area/prison/security/monitoring/highsec)
"aXP" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/highsec/n)
"aXQ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/highsec/n)
"aXR" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/highsec/n)
"aXS" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Low-Security Recreation"
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/nw)
"aXT" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/nw)
"aXU" = (
/obj/structure/pipes/vents/scrubber{
@@ -17602,37 +13432,25 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/hallway/staff)
"aXY" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/hallway/staff)
"aXZ" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/hallway/staff)
"aYa" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/hallway/staff)
"aYb" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/prison/hallway/staff)
"aYc" = (
/obj/structure/bookcase,
@@ -17658,9 +13476,7 @@
dir = 4
},
/obj/structure/machinery/door/window/northright,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/command/quarters)
"aYi" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -17719,52 +13535,34 @@
/area/prison/security/monitoring/highsec)
"aYs" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/north/south)
"aYt" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"aYu" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"aYv" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"aYw" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/highsec/north/south)
"aYx" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aYy" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -17773,10 +13571,7 @@
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/highsec)
"aYz" = (
/obj/structure/filingcabinet,
@@ -17807,10 +13602,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/lowsec/nw)
"aYE" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/lowsec/nw)
"aYF" = (
/obj/structure/machinery/door/airlock/prison{
@@ -17818,9 +13610,7 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/nw)
"aYG" = (
/obj/structure/machinery/alarm/almayer{
@@ -17830,29 +13620,18 @@
/area/prison/hanger/main)
"aYH" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/prison/cellblock/lowsec/nw)
"aYI" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/lowsec/nw)
"aYJ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/lowsec/ne)
"aYK" = (
/obj/item/reagent_container/glass/bucket,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/hallway/staff)
"aYL" = (
/turf/closed/wall/r_wall/prison,
@@ -17866,9 +13645,7 @@
/obj/item/storage/box/lights,
/obj/item/reagent_container/spray/cleaner,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/hallway/staff)
"aYO" = (
/obj/structure/sign/safety/nonpress_0g{
@@ -17891,9 +13668,7 @@
/area/prison/residential/central)
"aYS" = (
/obj/item/storage/box/mousetraps,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/hallway/staff)
"aYT" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -17902,14 +13677,10 @@
name = "Staff Custodial Closet";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/hallway/staff)
"aYU" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"aYV" = (
/obj/structure/bed/chair/comfy{
@@ -17940,18 +13711,12 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Staff Hallway"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/staff)
"aZc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/staff)
"aZe" = (
/obj/structure/pipes/vents/pump{
@@ -17990,117 +13755,78 @@
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aZm" = (
/obj/structure/toilet{
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/lowsec/nw)
"aZn" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"aZp" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/nw)
"aZq" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/lowsec/nw)
"aZr" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"aZs" = (
/obj/structure/toilet{
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/lowsec/ne)
"aZu" = (
/obj/structure/machinery/flasher{
id = "canteen"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"aZv" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"aZw" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"aZx" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"aZy" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/hallway/staff)
"aZz" = (
/obj/structure/janitorialcart,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/hallway/staff)
"aZA" = (
/obj/item/reagent_container/glass/bucket/mopbucket,
/obj/item/tool/mop,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/hallway/staff)
"aZB" = (
/obj/structure/machinery/vending/snack,
@@ -18124,18 +13850,14 @@
"aZF" = (
/obj/structure/surface/table,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/residential/central)
"aZG" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/residential/central)
"aZH" = (
/obj/structure/bed/chair/comfy{
@@ -18149,25 +13871,16 @@
/area/prison/security/monitoring/highsec)
"aZL" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/south)
"aZM" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/cellblock/highsec/north/south)
"aZN" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aZO" = (
/obj/effect/decal/warning_stripes{
@@ -18187,33 +13900,21 @@
/area/prison/residential/central)
"aZR" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/central)
"aZS" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/central)
"aZT" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/processor,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/central)
"aZU" = (
/obj/structure/machinery/shower{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aZV" = (
/obj/structure/machinery/shower{
@@ -18222,20 +13923,14 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/highsec/north/south)
"aZW" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/nw)
"aZX" = (
/obj/structure/machinery/light{
@@ -18243,10 +13938,7 @@
},
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/ne)
"aZY" = (
/obj/structure/machinery/power/apc{
@@ -18254,19 +13946,13 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/ne)
"aZZ" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"baa" = (
/turf/closed/wall/prison,
@@ -18277,25 +13963,16 @@
/area/prison/security/monitoring/highsec)
"bac" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/north/south)
"bad" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bae" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/canteen)
"baf" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -18306,9 +13983,7 @@
"bag" = (
/obj/item/phone,
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- icon_state = "hydrofloor"
- },
+/turf/open/floor/hydrofloor,
/area/prison/hallway/central/west)
"bah" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -18324,26 +13999,17 @@
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/prison/residential/central)
"bak" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/prison/cellblock/lowsec/nw)
"bal" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/yard)
"bam" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/yard)
"ban" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -18354,54 +14020,37 @@
/area/prison/hallway/central/east)
"bap" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"baq" = (
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bar" = (
/obj/structure/surface/table,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/residential/central)
"bas" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/south)
"bat" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/south)
"bau" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/south)
"bav" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/cellblock/highsec/north/south)
"baw" = (
/turf/closed/wall/r_wall/prison,
@@ -18410,10 +14059,7 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
dir = 2
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/security/checkpoint/vip)
"baz" = (
/turf/closed/wall/prison,
@@ -18422,29 +14068,20 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/nw)
"baB" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/ne)
"baC" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/ne)
"baD" = (
/obj/structure/pipes/vents/pump{
@@ -18453,10 +14090,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"baE" = (
/obj/effect/decal/warning_stripes{
@@ -18468,19 +14102,13 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"baG" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"baH" = (
/obj/structure/surface/table/reinforced,
@@ -18488,19 +14116,13 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"baI" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"baJ" = (
/obj/effect/decal/warning_stripes{
@@ -18532,10 +14154,7 @@
"baO" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/microwave,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/central)
"baP" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -18554,10 +14173,7 @@
/obj/structure/disposalpipe/junction{
icon_state = "pipe-y"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"baS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -18570,26 +14186,17 @@
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"baU" = (
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding4"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"baV" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"baW" = (
/obj/structure/surface/rack,
@@ -18599,10 +14206,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"baX" = (
/obj/structure/machinery/light{
@@ -18630,49 +14234,33 @@
/area/prison/security/monitoring/highsec)
"bbb" = (
/obj/structure/closet/crate/freezer,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bbc" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/highsec/north/south)
"bbd" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/highsec/north/south)
"bbe" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bbf" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bbh" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bbi" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bbj" = (
/obj/structure/pipes/vents/pump/on,
@@ -18680,10 +14268,7 @@
/area/prison/residential/central)
"bbk" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/residential/central)
"bbl" = (
/obj/structure/surface/table,
@@ -18698,9 +14283,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/residential/central)
"bbm" = (
/obj/structure/pipes/vents/scrubber{
@@ -18731,35 +14314,23 @@
dir = 2;
name = "High-Security Monitoring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/highsec)
"bbs" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bbt" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/highsec)
"bbu" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/highsec)
"bbv" = (
/obj/structure/surface/table/reinforced,
@@ -18771,19 +14342,13 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/highsec)
"bbw" = (
/obj/structure/machinery/shower{
pixel_y = 15
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/vip)
"bbx" = (
/obj/structure/surface/table/reinforced,
@@ -18799,16 +14364,10 @@
/turf/open/floor/prison,
/area/prison/cellblock/vip)
"bbA" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/prison/security/checkpoint/vip)
"bbB" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/prison/security/checkpoint/vip)
"bbC" = (
/obj/structure/window/framed/prison/reinforced,
@@ -18852,17 +14411,11 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding4"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bbH" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/vip)
"bbI" = (
/obj/structure/bed/chair/comfy{
@@ -18882,18 +14435,12 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/vip)
"bbN" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bbO" = (
/obj/structure/bed/chair/comfy{
@@ -18903,17 +14450,11 @@
/area/prison/residential/central)
"bbP" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/vip)
"bbQ" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/vip)
"bbR" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -18928,20 +14469,14 @@
/area/prison/storage/vip)
"bbT" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/highsec)
"bbU" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/highsec)
"bbV" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/highsec)
"bbW" = (
/obj/structure/largecrate/random,
@@ -18960,18 +14495,12 @@
/area/prison/cellblock/highsec/north/south)
"bbZ" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/south)
"bca" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/nw)
"bcb" = (
/turf/open/floor/prison,
@@ -18980,36 +14509,24 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bcd" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bce" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/west,
/area/prison/hallway/central/east)
"bcf" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bcg" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -19017,33 +14534,23 @@
icon_state = "pipe-j2"
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bcj" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/prison/yard)
"bck" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/yard)
"bcl" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/yard)
"bcm" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/yard)
"bcn" = (
/obj/structure/sink{
@@ -19055,10 +14562,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bco" = (
/obj/structure/sink{
@@ -19067,10 +14571,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bcp" = (
/obj/structure/sink{
@@ -19082,19 +14583,13 @@
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bcq" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"bcr" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -19107,9 +14602,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bcs" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -19118,9 +14611,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bct" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
@@ -19128,27 +14619,20 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bcv" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bcx" = (
/turf/closed/wall/prison,
/area/prison/hallway/entrance)
"bcy" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"bcz" = (
/turf/open/floor/prison,
@@ -19165,9 +14649,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bcC" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -19211,10 +14693,7 @@
/area/prison/maintenance/residential/nw)
"bcO" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/central)
"bcQ" = (
/turf/open/floor/prison,
@@ -19262,10 +14741,7 @@
/turf/open/floor/wood,
/area/prison/security/monitoring/highsec)
"bda" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/prison/cellblock/highsec/north/south)
"bdb" = (
/obj/structure/bed/chair/comfy{
@@ -19277,37 +14753,22 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/highsec)
"bdd" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/highsec)
"bdf" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/monitoring/highsec)
"bdg" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/monitoring/highsec)
"bdh" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/monitoring/highsec)
"bdi" = (
/obj/structure/surface/table/reinforced,
@@ -19315,17 +14776,11 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/highsec)
"bdj" = (
/obj/structure/machinery/door/window/southright,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/vip)
"bdk" = (
/turf/open/floor/prison,
@@ -19345,10 +14800,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"bdp" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -19382,9 +14834,7 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding2"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/central)
"bdw" = (
/obj/structure/machinery/power/apc{
@@ -19392,10 +14842,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/security/checkpoint/vip)
"bdx" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -19409,17 +14856,11 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/security/checkpoint/vip)
"bdz" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bdA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -19434,10 +14875,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/vip)
"bdC" = (
/obj/structure/window/framed/prison,
@@ -19447,44 +14885,29 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/monitoring/highsec)
"bdE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/highsec)
"bdF" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/highsec)
"bdG" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/highsec)
"bdH" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/monitoring/highsec)
"bdI" = (
/turf/closed/wall/r_wall/prison,
@@ -19499,28 +14922,19 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/vip)
"bdL" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/nw)
"bdN" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bdO" = (
/turf/closed/wall/r_wall/prison,
@@ -19529,38 +14943,26 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bdS" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Central Ring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/west)
"bdT" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bdU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bdV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -19570,60 +14972,39 @@
dir = 2;
name = "Yard"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bdW" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bdX" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bdY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bdZ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/ne)
"bea" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/ne)
"beb" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/west,
/area/prison/hallway/central/east)
"bec" = (
/turf/open/floor/prison,
@@ -19631,10 +15012,7 @@
"bed" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/canteen)
"bef" = (
/obj/structure/stairs/perspective{
@@ -19644,33 +15022,21 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/canteen)
"beg" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"beh" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bei" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bej" = (
/obj/effect/decal/cleanable/blood,
@@ -19678,18 +15044,13 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bek" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bel" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -19699,35 +15060,24 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"ben" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"beo" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/processor,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bep" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/microwave,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"beq" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"ber" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -19766,9 +15116,7 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding8"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/central)
"bew" = (
/obj/effect/decal/warning_stripes{
@@ -19791,9 +15139,7 @@
"bez" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/reagentgrinder,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"beB" = (
/obj/structure/machinery/light{
@@ -19808,45 +15154,33 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"beE" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding8"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"beF" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"beG" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"beH" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"beI" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -19854,30 +15188,19 @@
id = "kitchen";
name = "\improper Kitchen Access Shutters"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"beJ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"beK" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/hanger/main)
"beL" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/hanger/main)
"beM" = (
/obj/structure/surface/table/reinforced,
@@ -19889,10 +15212,7 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/hanger/main)
"beN" = (
/obj/effect/landmark/good_item,
@@ -19902,10 +15222,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/residential/central)
"beR" = (
/obj/structure/machinery/door/airlock/almayer/security/colony,
@@ -19918,29 +15235,20 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/monitoring/highsec)
"beV" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/prison/security/monitoring/highsec)
"beW" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 2;
name = "High-Security Monitoring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/highsec)
"beX" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -19963,10 +15271,7 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Security Booth"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/highsec)
"bfc" = (
/turf/closed/wall/prison,
@@ -19975,10 +15280,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/monitoring/highsec)
"bfe" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -19988,10 +15290,7 @@
/area/prison/security/monitoring/highsec)
"bff" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/monitoring/highsec)
"bfg" = (
/turf/closed/wall/prison,
@@ -20003,17 +15302,11 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/vip)
"bfi" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/security/checkpoint/vip)
"bfj" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/security/checkpoint/vip)
"bfk" = (
/obj/structure/window/framed/prison/reinforced,
@@ -20023,26 +15316,17 @@
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/vip)
"bfm" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/prison/security/checkpoint/vip)
"bfn" = (
/turf/open/floor/prison,
/area/prison/security/checkpoint/vip)
"bfo" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/vip)
"bfq" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -20054,16 +15338,11 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"bfs" = (
/obj/structure/machinery/floodlight,
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/yard)
"bft" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -20071,28 +15350,19 @@
dir = 1;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bfu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bfv" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bfw" = (
/turf/closed/wall/prison,
@@ -20105,18 +15375,12 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bfz" = (
/obj/item/frame/table/reinforced,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bfC" = (
/obj/structure/window/framed/prison/reinforced,
@@ -20129,10 +15393,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/west,
/area/prison/hallway/central/east)
"bfF" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -20154,10 +15415,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"bfH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -20166,20 +15424,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bfI" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bfJ" = (
/obj/structure/bed/chair{
@@ -20191,10 +15443,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bfK" = (
/obj/structure/surface/table/reinforced,
@@ -20205,10 +15454,7 @@
dir = 4
},
/obj/item/reagent_container/food/drinks/bottle/cognac,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bfL" = (
/obj/structure/bed/chair{
@@ -20221,10 +15467,7 @@
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bfN" = (
/obj/structure/bed/chair{
@@ -20236,10 +15479,7 @@
/obj/structure/disposalpipe/junction{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bfO" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -20247,10 +15487,7 @@
dir = 4;
icon_state = "pipe-j2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/canteen)
"bfP" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -20259,19 +15496,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/canteen)
"bfR" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"bfS" = (
/obj/structure/sign/safety/restrictedarea,
@@ -20297,10 +15528,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/canteen)
"bfV" = (
/obj/effect/decal/warning_stripes{
@@ -20322,10 +15550,7 @@
dir = 2;
name = "Canteen"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bfZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -20335,10 +15560,7 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bga" = (
/obj/structure/window/framed/prison,
@@ -20348,10 +15570,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bgc" = (
/turf/open/organic/grass,
@@ -20367,10 +15586,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bgf" = (
/obj/structure/disposalpipe/junction{
@@ -20380,40 +15596,29 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bgg" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bgh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bgi" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bgj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/hanger/main)
"bgk" = (
/obj/structure/bed/chair/office/dark{
@@ -20423,20 +15628,14 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/hanger/main)
"bgl" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/hanger/main)
"bgm" = (
/obj/structure/surface/table,
@@ -20448,22 +15647,14 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/residential/central)
"bgn" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/residential/central)
"bgp" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/monitoring/highsec)
"bgq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -20475,26 +15666,17 @@
/turf/open/floor/prison,
/area/prison/security/monitoring/highsec)
"bgs" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/monitoring/highsec)
"bgt" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/prison,
/area/prison/security/monitoring/highsec)
"bgu" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/prison/security/monitoring/highsec)
"bgv" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/monitoring/highsec)
"bgw" = (
/obj/structure/pipes/vents/scrubber,
@@ -20513,94 +15695,59 @@
/area/prison/cellblock/vip)
"bgA" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/vip)
"bgB" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/vip)
"bgC" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/vip)
"bgD" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/vip)
"bgF" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/prison/cellblock/lowsec/nw)
"bgG" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bgH" = (
/obj/structure/surface/table/reinforced{
dir = 8;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bgI" = (
/obj/item/ammo_casing,
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bgJ" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bgK" = (
/obj/item/ammo_casing,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bgL" = (
/obj/effect/decal/cleanable/blood,
/obj/item/ammo_magazine/rifle/m16,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bgM" = (
/obj/structure/surface/table/reinforced{
dir = 4;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bgN" = (
/turf/open/floor/prison,
@@ -20608,22 +15755,13 @@
"bgO" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/cellblock/lowsec/ne)
"bgP" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/prison/cellblock/lowsec/ne)
"bgQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bgS" = (
/obj/structure/bed/chair{
@@ -20632,20 +15770,14 @@
/obj/structure/disposalpipe/junction{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bgT" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bgV" = (
/obj/structure/sink{
@@ -20657,10 +15789,7 @@
icon_state = "pipe-c"
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bgW" = (
/obj/structure/sink{
@@ -20670,10 +15799,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bgX" = (
/obj/structure/sink{
@@ -20687,10 +15813,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/kitchen)
"bgY" = (
/obj/structure/disposalpipe/segment{
@@ -20700,161 +15823,112 @@
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bgZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/landmark/corpsespawner/chef,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bha" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bhb" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bhc" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bhe" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/hanger/main)
"bhf" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/residential/central)
"bhg" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/security/monitoring/highsec)
"bhh" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/security/monitoring/highsec)
"bhi" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/security/monitoring/highsec)
"bhj" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/monitoring/highsec)
"bhk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/highsec)
"bhl" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/highsec)
"bhm" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/highsec)
"bhn" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/monitoring/highsec)
"bho" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/vip)
"bhp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/vip)
"bhq" = (
/obj/item/phone,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/vip)
"bhs" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"bht" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/vip)
"bhu" = (
/obj/structure/surface/table/reinforced,
@@ -20866,18 +15940,12 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/vip)
"bhv" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/vip)
"bhw" = (
/obj/structure/window/framed/prison/reinforced,
@@ -20888,66 +15956,47 @@
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/vip)
"bhy" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/storage/vip)
"bhz" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/storage/vip)
"bhA" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/storage/vip)
"bhB" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Northwest Low-Security Cellblock"
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/nw)
"bhC" = (
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/central)
"bhD" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/siding{
icon_state = "siding8"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bhE" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"bhG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -20957,86 +16006,59 @@
dir = 8;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bhH" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bhI" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/monitoring/highsec)
"bhJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/highsec)
"bhK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/highsec)
"bhL" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/highsec)
"bhM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bhN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bhO" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bhP" = (
/obj/structure/toilet{
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/ne)
"bhQ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -21044,16 +16066,11 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Northeast Low-Security Cellblock"
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/ne)
"bhR" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"bhT" = (
/obj/structure/bed/chair{
@@ -21063,44 +16080,32 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bhU" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bhV" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bhW" = (
/obj/structure/closet/crate/freezer,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"bhX" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"bhY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -21108,32 +16113,20 @@
dir = 2;
name = "Security Booth"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/hanger/main)
"bhZ" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/prison/hanger/main)
"bia" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/hanger/main)
"bib" = (
/obj/structure/surface/table/reinforced{
dir = 1;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bic" = (
/obj/effect/decal/warning_stripes{
@@ -21142,17 +16135,11 @@
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/hanger/main)
"bid" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/residential/central)
"bie" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -21160,19 +16147,13 @@
name = "Civilian Residences Admin"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/residential/central)
"big" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/security/monitoring/highsec)
"bik" = (
/obj/structure/machinery/light{
@@ -21181,10 +16162,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/security/monitoring/highsec)
"bil" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -21192,10 +16170,7 @@
name = "Security Booth"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/highsec)
"bim" = (
/obj/structure/machinery/door/airlock/prison/horizontal{
@@ -21204,18 +16179,13 @@
opacity = 0
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/cellblock/vip)
"bin" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/security/checkpoint/vip)
"bio" = (
/obj/structure/machinery/light{
@@ -21224,10 +16194,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/security/checkpoint/vip)
"bip" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -21242,19 +16209,13 @@
dir = 8;
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"bir" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/hallway/central/west)
"bis" = (
/obj/structure/machinery/light{
@@ -21263,50 +16224,32 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/hallway/central/west)
"bit" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Yard"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"biu" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"biv" = (
/obj/item/frame/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"biw" = (
/obj/item/ammo_casing,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"biy" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Yard"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"biz" = (
/obj/structure/machinery/light{
@@ -21315,33 +16258,21 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/east)
"biA" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/hallway/central/east)
"biB" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/hallway/central/east)
"biC" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"biE" = (
/obj/structure/pipes/vents/scrubber{
@@ -21350,10 +16281,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"biH" = (
/obj/structure/machinery/alarm/almayer{
@@ -21362,10 +16290,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"biI" = (
/obj/effect/decal/cleanable/blood,
@@ -21375,19 +16300,13 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"biO" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/prison/hanger/main)
"biP" = (
/obj/structure/pipes/vents/scrubber{
@@ -21399,10 +16318,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/east,
/area/prison/hanger/main)
"biR" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -21410,26 +16326,16 @@
name = "High-Security Monitoring"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/highsec)
"biS" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/prison/hanger/main)
"biT" = (
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/prison/hanger/main)
"biU" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/hanger/main)
"biV" = (
/obj/effect/decal/warning_stripes{
@@ -21438,100 +16344,65 @@
/obj/structure/machinery/landinglight/ds1{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/hanger/main)
"biY" = (
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding8"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"biZ" = (
/turf/open/gm/river,
/area/prison/residential/central)
"bja" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/prison/residential/central)
"bjb" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/residential/central)
"bjc" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/residential/central)
"bjd" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/residential/central)
"bje" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/residential/central)
"bjg" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/residential/central)
"bjh" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/prison/residential/central)
"bji" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/security/monitoring/highsec)
"bjj" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bjk" = (
/obj/item/ammo_casing,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bjm" = (
/obj/structure/window/reinforced{
@@ -21563,76 +16434,49 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/security/monitoring/highsec)
"bjq" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/security/monitoring/highsec)
"bjr" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/monitoring/highsec)
"bjt" = (
/obj/structure/bed/chair/office/dark{
dir = 4;
layer = 3.25
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/highsec)
"bju" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/monitoring/highsec)
"bjv" = (
/obj/structure/window/framed/prison/reinforced,
/turf/open/floor/plating,
/area/prison/cellblock/vip)
"bjw" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/prison/cellblock/vip)
"bjx" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/vip)
"bjy" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/vip)
"bjA" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/vip)
"bjB" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/vip)
"bjD" = (
/obj/effect/decal/cleanable/blood,
@@ -21655,119 +16499,74 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/vip)
"bjI" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/hanger/main)
"bjJ" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/hanger/main)
"bjK" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/vip)
"bjL" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/vip)
"bjN" = (
/obj/effect/landmark/monkey_spawn,
/obj/structure/machinery/camera/autoname{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/security/checkpoint/vip)
"bjO" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bjP" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/prison/security/checkpoint/vip)
"bjQ" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/security/checkpoint/vip)
"bjR" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/security/monitoring/highsec)
"bjS" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/security/checkpoint/vip)
"bjT" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/security/monitoring/highsec)
"bjU" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bjW" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/storage/vip)
"bjX" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/prison/storage/vip)
"bjY" = (
/obj/structure/machinery/power/apc{
@@ -21775,10 +16574,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/storage/vip)
"bjZ" = (
/obj/structure/stairs/perspective{
@@ -21789,109 +16585,72 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/storage/vip)
"bka" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/vip)
"bkb" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/west,
/area/prison/yard)
"bkc" = (
/obj/structure/surface/table/reinforced,
/obj/item/ammo_casing,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bkd" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bke" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bkf" = (
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bkg" = (
/obj/item/ammo_casing,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bkh" = (
/obj/structure/machinery/flasher_button{
id = "yard_flashers";
pixel_y = 24
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/east,
/area/prison/yard)
"bki" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bkj" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/toilet/canteen)
"bkk" = (
/obj/structure/toilet,
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/toilet/canteen)
"bkl" = (
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/toilet/canteen)
"bkm" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -21909,17 +16668,13 @@
/obj/structure/machinery/shower{
pixel_y = 15
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/toilet/canteen)
"bkp" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/toilet/canteen)
"bkr" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -21935,38 +16690,23 @@
/area/prison/hanger/main)
"bku" = (
/obj/item/ammo_magazine/rifle/m16,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bkw" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/hanger/main)
"bkx" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/east,
/area/prison/hanger/main)
"bky" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/hanger/main)
"bkz" = (
/obj/effect/decal/siding{
icon_state = "siding4"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bkB" = (
/obj/effect/landmark/hunter_primary,
@@ -21974,34 +16714,22 @@
/area/prison/residential/central)
"bkC" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/residential/central)
"bkD" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bkG" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bkH" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/residential/central)
"bkI" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -22014,10 +16742,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/security/monitoring/highsec)
"bkK" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -22053,10 +16778,7 @@
dir = 8;
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bkQ" = (
/obj/structure/showcase{
@@ -22072,25 +16794,16 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "High-Security Monitoring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/highsec)
"bkS" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "High-Security Monitoring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/vip)
"bkT" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/cellblock/vip)
"bkU" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -22100,9 +16813,7 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"bkV" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -22123,10 +16834,7 @@
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/security/monitoring/highsec)
"bla" = (
/obj/structure/window/framed/prison/cell,
@@ -22141,32 +16849,23 @@
/turf/open/floor/prison,
/area/prison/security/checkpoint/vip)
"bld" = (
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/security/checkpoint/vip)
"ble" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/prison,
/area/prison/security/checkpoint/vip)
"blf" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/hallway/central/west)
"blg" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/security/checkpoint/vip)
"bli" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/storage/vip)
"blk" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -22174,37 +16873,25 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/hallway/central/west)
"bll" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/west,
/area/prison/yard)
"blm" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bln" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/blood/gibs,
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"blo" = (
/obj/item/frame/table/reinforced,
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding4"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"blp" = (
/obj/effect/decal/cleanable/blood/gibs,
@@ -22224,34 +16911,22 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding8"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bls" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"blt" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/good_item,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"blu" = (
/obj/item/weapon/gun/rifle/m16,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/east,
/area/prison/yard)
"blw" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -22261,25 +16936,17 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/toilet/canteen)
"blz" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/toilet/canteen)
"blA" = (
/obj/structure/machinery/shower{
dir = 8
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/toilet/canteen)
"blB" = (
/obj/effect/landmark/hunter_secondary,
@@ -22290,10 +16957,7 @@
/turf/open/floor/prison,
/area/prison/hallway/entrance)
"blD" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/entrance)
"blE" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -22303,17 +16967,11 @@
/turf/open/floor/prison,
/area/prison/hanger/main)
"blF" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hanger/main)
"blG" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/hanger/main)
"blH" = (
/turf/open/floor/prison,
@@ -22322,27 +16980,18 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/residential/central)
"blK" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"blP" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/residential/central)
"blQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -22361,10 +17010,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/security/monitoring/highsec)
"blS" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -22395,19 +17041,13 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/south)
"blY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/monitoring/highsec)
"blZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -22416,19 +17056,13 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "High-Security Monitoring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/vip)
"bma" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/cellblock/vip)
"bmb" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -22454,10 +17088,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/security/checkpoint/vip)
"bmi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -22470,9 +17101,7 @@
dir = 2;
name = "VIP Cellblock / Civilian Residences Access"
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/security/checkpoint/vip)
"bmj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -22481,9 +17110,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/security/checkpoint/vip)
"bml" = (
/obj/structure/disposalpipe/segment{
@@ -22507,9 +17134,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/storage/vip)
"bmq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -22518,10 +17143,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/storage/vip)
"bmr" = (
/obj/structure/stairs/perspective{
@@ -22534,10 +17156,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/storage/vip)
"bms" = (
/obj/structure/disposalpipe/segment{
@@ -22560,10 +17179,7 @@
dir = 2;
name = "Low-Security"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/west)
"bmu" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -22583,37 +17199,26 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/west,
/area/prison/yard)
"bmz" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/yard)
"bmA" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bmB" = (
/obj/structure/surface/table/reinforced,
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding4"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bmC" = (
/obj/effect/landmark/good_item,
@@ -22624,10 +17229,7 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding8"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bmF" = (
/turf/closed/wall/prison,
@@ -22639,10 +17241,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/east,
/area/prison/yard)
"bmJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -22650,10 +17249,7 @@
},
/obj/item/ammo_casing,
/obj/item/ammo_magazine/rifle/m16,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bmK" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -22685,10 +17281,7 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/toilet/canteen)
"bmO" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -22704,68 +17297,44 @@
dir = 4;
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"bmR" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/prison/hanger/main)
"bmS" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/prison/hanger/main)
"bmT" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/prison/residential/central)
"bmU" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/prison/residential/central)
"bmV" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/prison/residential/central)
"bmW" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/prison/residential/central)
"bmY" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/prison/residential/central)
"bmZ" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/security/monitoring/highsec)
"bna" = (
/obj/structure/window/reinforced{
@@ -22787,184 +17356,120 @@
dir = 4;
layer = 3.25
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/highsec)
"bne" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/monitoring/highsec)
"bnf" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/prison/cellblock/vip)
"bng" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/cellblock/vip)
"bnh" = (
/turf/open/floor/plating,
/area/prison/security/monitoring/highsec)
"bni" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/cellblock/vip)
"bnk" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/cellblock/vip)
"bnl" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/cellblock/vip)
"bnm" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/cellblock/vip)
"bnn" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/cellblock/vip)
"bno" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/cellblock/vip)
"bnq" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/security/checkpoint/vip)
"bnr" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/prison/security/checkpoint/vip)
"bnt" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/prison/security/checkpoint/vip)
"bnu" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/security/checkpoint/vip)
"bnx" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/storage/vip)
"bny" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/prison/storage/vip)
"bnz" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/storage/vip)
"bnA" = (
/obj/structure/surface/table/reinforced,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/effect/decal/siding/wood_siding,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bnB" = (
/obj/effect/decal/siding/wood_siding,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bnC" = (
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bnD" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/east,
/area/prison/yard)
"bnE" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/east)
"bnF" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bnG" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bnH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bnK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -22973,19 +17478,13 @@
/obj/structure/machinery/flasher{
id = "canteen"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bnL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"bnM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -22997,10 +17496,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/canteen)
"bnO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -23009,10 +17505,7 @@
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/canteen)
"bnP" = (
/obj/structure/machinery/power/apc{
@@ -23023,35 +17516,23 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/canteen)
"bnQ" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/canteen)
"bnR" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/toilet/canteen)
"bnS" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/canteen)
"bnT" = (
/obj/structure/machinery/power/apc{
@@ -23059,10 +17540,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"bnU" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -23072,58 +17550,38 @@
/area/prison/hallway/entrance)
"bnV" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/prison/hanger/main)
"bnW" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/prison/hanger/main)
"bnX" = (
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding10"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bnY" = (
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bnZ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Monorail Station West"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/monorail/west)
"boa" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/monorail/west)
"bob" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/security/monitoring/highsec)
"boc" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
@@ -23142,10 +17600,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/security/monitoring/highsec)
"bog" = (
/obj/item/shard,
@@ -23156,10 +17611,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/security/checkpoint/vip)
"boi" = (
/obj/structure/machinery/light{
@@ -23169,19 +17621,14 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/security/checkpoint/vip)
"boj" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/hallway/central/west)
"bok" = (
/obj/structure/machinery/light{
@@ -23190,24 +17637,16 @@
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/hallway/central/west)
"bol" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bom" = (
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bon" = (
/obj/structure/machinery/light{
@@ -23216,42 +17655,28 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/east)
"boo" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/hallway/central/east)
"bop" = (
/obj/structure/machinery/camera/autoname{
dir = 4;
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"boq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bor" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bos" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -23261,35 +17686,23 @@
/turf/open/floor/plating,
/area/prison/canteen)
"bot" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/canteen)
"bou" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/canteen)
"bov" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/canteen)
"bow" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/canteen)
"boy" = (
/obj/effect/decal/cleanable/blood,
@@ -23297,141 +17710,91 @@
/area/prison/hanger/main)
"boz" = (
/obj/effect/decal/siding,
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/central)
"boA" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/siding{
icon_state = "siding8"
},
-/turf/open/floor/prison{
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom,
/area/prison/residential/central)
"boB" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/monorail/west)
"boC" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/prison/monorail/west)
"boD" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/prison/monorail/west)
"boF" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/monorail/west)
"boG" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/prison/security/monitoring/highsec)
"boH" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/security/monitoring/highsec)
"boI" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/security/monitoring/highsec)
"boJ" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/security/monitoring/highsec)
"boK" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/monitoring/highsec)
"boL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/highsec)
"boM" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/highsec)
"boN" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/highsec)
"boO" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/monitoring/highsec)
"boP" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/vip)
"boQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/vip)
"boR" = (
/obj/item/phone,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/vip)
"boT" = (
/obj/structure/surface/table/reinforced,
@@ -23439,50 +17802,33 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/vip)
"boU" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/storage/vip)
"boV" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/storage/vip)
"boW" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/storage/vip)
"boX" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Southwest Low-Security Cellblock"
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/sw)
"boZ" = (
/obj/item/weapon/gun/rifle/m16,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bpa" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -23492,19 +17838,13 @@
dir = 4;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bpc" = (
/obj/structure/surface/table/reinforced,
/obj/effect/decal/cleanable/blood,
/obj/item/reagent_container/food/condiment/saltshaker,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"bpe" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -23524,10 +17864,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/entrance)
"bph" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -23543,10 +17880,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hanger/main)
"bpk" = (
/obj/structure/pipes/vents/pump{
@@ -23558,30 +17892,18 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/monorail/west)
"bpm" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/monorail/west)
"bpn" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/monorail/west)
"bpo" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/monorail/west)
"bpr" = (
/obj/structure/pipes/vents/scrubber{
@@ -23618,10 +17940,7 @@
"bpw" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/security/checkpoint/vip)
"bpx" = (
/obj/structure/surface/table/reinforced,
@@ -23629,44 +17948,26 @@
pixel_x = -3;
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/vip)
"bpy" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/vip)
"bpz" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/vip)
"bpA" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/vip)
"bpB" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/prison/cellblock/lowsec/sw)
"bpC" = (
/obj/item/ammo_casing,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"bpD" = (
/obj/structure/machinery/shower{
@@ -23675,9 +17976,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/toilet/canteen)
"bpE" = (
/obj/structure/machinery/light{
@@ -23686,54 +17985,33 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"bpI" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/prison/hanger/main)
"bpJ" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/east,
/area/prison/hanger/main)
"bpL" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/monorail/west)
"bpM" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/monorail/west)
"bpN" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/security/monitoring/highsec)
"bpO" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/security/monitoring/highsec)
"bpP" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -23752,15 +18030,10 @@
/turf/open/floor/prison,
/area/prison/security/monitoring/highsec)
"bpV" = (
-/turf/open/floor/prison{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2,
/area/prison/security/monitoring/highsec)
"bpW" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/monitoring/highsec)
"bpX" = (
/obj/structure/machinery/light,
@@ -23768,16 +18041,10 @@
/area/prison/cellblock/vip)
"bpY" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/vip)
"bpZ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/prison/security/checkpoint/vip)
"bqa" = (
/obj/effect/landmark/crap_item,
@@ -23790,83 +18057,58 @@
/obj/structure/surface/table/reinforced{
flipped = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bqd" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/surface/table/reinforced{
flipped = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bqe" = (
/obj/effect/landmark/crap_item,
/obj/structure/surface/table/reinforced{
flipped = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bqf" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"bqg" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"bqh" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/toilet/canteen)
"bqi" = (
/obj/structure/machinery/shower{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/toilet/canteen)
"bqk" = (
/obj/structure/pipes/vents/pump/on,
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding5"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bql" = (
/turf/closed/wall/prison,
/area/prison/cellblock/lowsec/sw)
"bqm" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/hallway/central/west)
"bqn" = (
/obj/structure/bed/chair/comfy{
@@ -23875,16 +18117,10 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/monorail/west)
"bqo" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/monorail/west)
"bqp" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -23908,17 +18144,11 @@
/area/prison/security/monitoring/highsec)
"bqw" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/monitoring/highsec)
"bqx" = (
/obj/structure/machinery/door/window/northright,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/vip)
"bqy" = (
/obj/effect/decal/cleanable/blood,
@@ -23929,17 +18159,11 @@
dir = 5
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/security/checkpoint/vip)
"bqA" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/vip)
"bqB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -23953,19 +18177,13 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/sw)
"bqD" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/se)
"bqE" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -23978,18 +18196,12 @@
dir = 8
},
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/hanger/main)
"bqG" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/hanger/main)
"bqH" = (
/obj/effect/landmark/hunter_primary,
@@ -23997,71 +18209,48 @@
/area/prison/hanger/main)
"bqI" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bqJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/siding/wood_siding,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bqK" = (
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/security/monitoring/highsec)
"bqL" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
/obj/effect/decal/siding/wood_siding,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bqO" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
/obj/effect/decal/siding,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bqP" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/siding,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bqR" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"bqT" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/vip)
"bqU" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -24073,60 +18262,41 @@
/obj/structure/machinery/shower{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/vip)
"bqW" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/prison/security/checkpoint/vip)
"bqX" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/prison/security/checkpoint/vip)
"bqY" = (
/obj/structure/surface/rack,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/vip)
"bqZ" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/vip)
"bra" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/vip)
"brb" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/vip)
"brc" = (
/obj/structure/disposalpipe/junction{
@@ -24144,86 +18314,56 @@
"bre" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/sw)
"brf" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/sw)
"brg" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/sw)
"brh" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/sw)
"brk" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/se)
"brl" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/se)
"brm" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Southeast Low-Security Cellblock"
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/se)
"brn" = (
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/se)
"bro" = (
/obj/structure/bed,
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"brp" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"brq" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"brr" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -24232,10 +18372,7 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding1)
"brs" = (
/obj/structure/sink{
@@ -24245,18 +18382,12 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/holding/holding1)
"brt" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"bru" = (
/turf/closed/wall/prison,
@@ -24265,51 +18396,33 @@
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/drinks/coffee,
/obj/item/reagent_container/food/drinks/coffee,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"brw" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"brx" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/drinks/milk,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bry" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/drinks/cans/cola,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"brz" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/visitation)
"brA" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/visitation)
"brB" = (
/obj/structure/machinery/power/apc{
@@ -24317,55 +18430,37 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/visitation)
"brD" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/visitation)
"brE" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/visitation)
"brF" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"brH" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/hanger/main)
"brM" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/residential/central)
"brN" = (
/obj/structure/machinery/door/airlock/almayer/generic,
@@ -24375,10 +18470,7 @@
"brO" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/prison/cellblock/lowsec/sw)
"brP" = (
/obj/structure/window/framed/prison/cell,
@@ -24388,20 +18480,14 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/lowsec/sw)
"brR" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/sw)
"brS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -24414,10 +18500,7 @@
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/se)
"brU" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -24426,10 +18509,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/lowsec/se)
"brW" = (
/obj/structure/window/framed/prison/cell,
@@ -24437,16 +18517,10 @@
/area/prison/cellblock/lowsec/se)
"brX" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/prison/cellblock/lowsec/se)
"brY" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/prison/cellblock/lowsec/se)
"brZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -24462,37 +18536,25 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/monitoring/highsec)
"bsc" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/sw)
"bsd" = (
/obj/structure/bed,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/sw)
"bse" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bsi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -24509,19 +18571,13 @@
"bsk" = (
/obj/structure/bed,
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"bsl" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/holding/holding1)
"bsm" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -24533,29 +18589,17 @@
/area/space)
"bso" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"bsp" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/security/monitoring/highsec)
"bsq" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bss" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/visitation)
"bst" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -24567,19 +18611,14 @@
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/hanger/main)
"bsv" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/hanger/main)
"bsw" = (
/obj/structure/surface/table/reinforced,
@@ -24591,58 +18630,37 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/hanger/main)
"bsz" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/monorail/west)
"bsA" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/monorail/west)
"bsB" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/sw)
"bsC" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/sw)
"bsE" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/lowsec/sw)
"bsF" = (
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/lowsec/sw)
"bsG" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/sw)
"bsI" = (
/turf/closed/shuttle/elevator/gears,
@@ -24651,22 +18669,14 @@
/obj/structure/barricade/handrail/type_b{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"bsK" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/se)
"bsL" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/lowsec/se)
"bsM" = (
/obj/structure/machinery/power/apc{
@@ -24674,23 +18684,14 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/sw)
"bsN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/se)
"bsO" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/se)
"bsP" = (
/obj/structure/machinery/light{
@@ -24698,80 +18699,53 @@
},
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/sw)
"bsQ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "Yard"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bsR" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/se)
"bsS" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"bsT" = (
/obj/structure/surface/rack,
/obj/item/reagent_container/food/snacks/packaged_burrito,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bsU" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bsV" = (
/obj/structure/surface/rack,
/obj/item/reagent_container/food/snacks/chocolatebar,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bsW" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/visitation)
"bsX" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/structure/girder,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"bsY" = (
/obj/structure/bed/chair/office/dark,
@@ -24781,28 +18755,19 @@
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/central)
"bta" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"btb" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"btd" = (
/obj/structure/monorail,
@@ -24813,26 +18778,17 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"btf" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"btg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/visitation)
"bth" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -24842,10 +18798,7 @@
dir = 2;
name = "Visitation"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/visitation)
"bti" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
@@ -24859,15 +18812,11 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/hallway/entrance)
"btk" = (
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/entrance)
"btl" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/hallway/entrance)
"btm" = (
/obj/structure/machinery/light{
@@ -24879,10 +18828,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/sw)
"bto" = (
/obj/effect/landmark/hunter_secondary,
@@ -24898,10 +18844,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/se)
"bts" = (
/obj/effect/decal/warning_stripes{
@@ -24950,24 +18893,16 @@
/area/prison/hanger/main)
"bty" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/highsec)
"btz" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/highsec)
"btD" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/matter_decompiler,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"btE" = (
/turf/closed/shuttle/elevator,
@@ -24977,36 +18912,24 @@
/area/prison/hallway/central/west)
"btG" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"btH" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"btI" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"btJ" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"btK" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -25020,54 +18943,36 @@
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/sw)
"btM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"btN" = (
/obj/structure/toilet{
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/lowsec/sw)
"btP" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/holding/holding1)
"btQ" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/lowsec/sw)
"btR" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/sw)
"btS" = (
/obj/structure/machinery/light/small{
@@ -25080,38 +18985,26 @@
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/lowsec/se)
"btU" = (
/obj/structure/surface/rack,
/obj/item/clothing/head/welding,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"btW" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/lowsec/se)
"btX" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/se)
"btY" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -25121,10 +19014,7 @@
/turf/open/floor/prison,
/area/prison/visitation)
"bua" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"bub" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -25132,10 +19022,7 @@
name = "Security Booth"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"buc" = (
/obj/structure/window/framed/prison/reinforced,
@@ -25152,25 +19039,17 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/hallway/entrance)
"bug" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/entrance)
"buh" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/hallway/entrance)
"bui" = (
/obj/effect/decal/warning_stripes{
@@ -25179,16 +19058,11 @@
/turf/open/floor/prison,
/area/prison/hanger/main)
"bul" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/visitation)
"bun" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/highsec/south/north)
"buo" = (
/turf/closed/shuttle/elevator{
@@ -25197,28 +19071,19 @@
/area/prison/hallway/central/west)
"buq" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"bur" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"bus" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/holding/holding1)
"but" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -25228,10 +19093,7 @@
dir = 2;
name = "Holding Cell 1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"buu" = (
/obj/structure/machinery/light{
@@ -25241,36 +19103,24 @@
dir = 10
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"buv" = (
/obj/structure/surface/rack,
/obj/item/reagent_container/food/snacks/no_raisin,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"buw" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bux" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/visitation)
"buy" = (
/obj/structure/surface/table/reinforced,
@@ -25282,17 +19132,11 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/visitation)
"buz" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/visitation)
"buA" = (
/obj/structure/machinery/light/small{
@@ -25305,49 +19149,33 @@
/obj/structure/mirror{
pixel_x = -26
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"buB" = (
/obj/structure/machinery/door/window/westleft,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"buC" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/visitation)
"buD" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/visitation)
"buE" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/hallway/entrance)
"buF" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/prison/hallway/entrance)
"buG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -25356,28 +19184,19 @@
/turf/open/floor/prison,
/area/prison/hanger/main)
"buI" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/cellblock/highsec/south/north)
"buJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/north)
"buK" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/north)
"buL" = (
/obj/structure/machinery/light{
@@ -25386,19 +19205,13 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/north)
"buM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/cellblock/highsec/south/north)
"buN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -25406,40 +19219,25 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Central Ring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/west)
"buO" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/lowsec/sw)
"buP" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/sw)
"buQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/hanger/main)
"buR" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/hanger/main)
"buS" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -25451,23 +19249,14 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/se)
"buV" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/lowsec/se)
"buW" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"buX" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -25481,25 +19270,17 @@
/area/prison/maintenance/residential/se)
"bva" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/highsec/s)
"bvb" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bvc" = (
/obj/item/ammo_magazine/rifle/m16/ap,
/turf/open/floor/prison,
/area/prison/research/secret/containment)
"bvd" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"bvf" = (
/turf/closed/shuttle/elevator{
@@ -25508,29 +19289,20 @@
/area/prison/hallway/central/west)
"bvi" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/sw)
"bvj" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom,
/area/prison/yard)
"bvk" = (
-/turf/open/floor/prison{
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom,
/area/prison/yard)
"bvl" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom,
/area/prison/yard)
"bvm" = (
/obj/structure/surface/rack,
@@ -25549,32 +19321,22 @@
"bvo" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"bvp" = (
/obj/structure/surface/rack,
/obj/item/reagent_container/food/snacks/chips,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bvq" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"bvr" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"bvs" = (
/obj/structure/machinery/shower{
@@ -25583,9 +19345,7 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"bvt" = (
/obj/structure/bed/chair{
@@ -25597,37 +19357,23 @@
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/visitation)
"bvv" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/prison/cellblock/highsec/south/north)
"bvw" = (
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/north)
"bvy" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/north)
"bvz" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/north)
"bvA" = (
/turf/closed/wall/prison,
@@ -25637,92 +19383,60 @@
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/south/north)
"bvC" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/north)
"bvD" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/north)
"bvE" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/cellblock/highsec/south/north)
"bvF" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/cellblock/highsec/south/north)
"bvG" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/north)
"bvH" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/north)
"bvI" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/prison/visitation)
"bvJ" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"bvK" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/visitation)
"bvL" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/hallway/entrance)
"bvM" = (
/turf/closed/wall/r_wall/prison,
@@ -25736,17 +19450,13 @@
/obj/structure/surface/rack,
/obj/item/storage/box/lights,
/obj/item/device/lightreplacer,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"bvQ" = (
/obj/structure/sign/safety/nonpress_0g{
pixel_y = -30
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/entrance)
"bvS" = (
/obj/structure/machinery/power/apc{
@@ -25786,17 +19496,11 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/monorail/west)
"bwf" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/south/north)
"bwj" = (
/turf/open/floor/plating,
@@ -25807,19 +19511,13 @@
pixel_x = 11
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/sw)
"bwl" = (
/obj/structure/toilet{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/sw)
"bwn" = (
/obj/structure/machinery/power/apc{
@@ -25827,65 +19525,41 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bwo" = (
/obj/structure/toilet{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/se)
"bwp" = (
/obj/structure/machinery/light/small{
dir = 1
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/se)
"bwq" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/prison/cellblock/lowsec/se)
"bwr" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/se)
"bws" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/se)
"bwt" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/east,
/area/prison/cellblock/lowsec/se)
"bwu" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/holding/holding1)
"bwv" = (
/obj/structure/machinery/power/apc{
@@ -25895,54 +19569,33 @@
},
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"bww" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bwx" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Security Booth"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"bwy" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/visitation)
"bwz" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/north)
"bwA" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/north)
"bwC" = (
/obj/structure/window/framed/prison/cell,
/turf/open/floor/plating,
/area/prison/cellblock/highsec/south/north)
"bwD" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/south/north)
"bwE" = (
/obj/structure/machinery/light/small{
@@ -25951,19 +19604,13 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/highsec/south/north)
"bwF" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/north)
"bwG" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/prison/visitation)
"bwH" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -25976,19 +19623,13 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/visitation)
"bwK" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
/obj/effect/landmark/item_pool_spawner/prison_lock,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/visitation)
"bwL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -26046,10 +19687,7 @@
/area/prison/monorail/east)
"bwV" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bwW" = (
/turf/closed/wall/prison,
@@ -26062,10 +19700,7 @@
name = "East Monorail Station"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/monorail/east)
"bxa" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -26076,10 +19711,7 @@
/area/prison/maintenance/residential/se)
"bxe" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/monorail/west)
"bxf" = (
/turf/open/floor/plating,
@@ -26088,10 +19720,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/monorail/west)
"bxh" = (
/obj/structure/pipes/vents/pump{
@@ -26104,10 +19733,7 @@
dir = 5
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/prison/cellblock/highsec/south/north)
"bxk" = (
/turf/open/floor/plating,
@@ -26116,61 +19742,40 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/cellblock/highsec/south/north)
"bxm" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/prison/cellblock/highsec/south/north)
"bxo" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/north)
"bxp" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/highsec/south/north)
"bxq" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/highsec/south/north)
"bxt" = (
/obj/structure/machinery/camera/autoname{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"bxu" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"bxv" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/cellblock/highsec/south/north)
"bxA" = (
/obj/vehicle/train/cargo/trolley,
@@ -26185,10 +19790,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/hallway/central/west)
"bxG" = (
/obj/structure/machinery/light/small{
@@ -26198,10 +19800,7 @@
/area/prison/cellblock/lowsec/sw)
"bxH" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/se)
"bxI" = (
/obj/structure/machinery/light/small{
@@ -26210,21 +19809,14 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/lowsec/se)
"bxJ" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/se)
"bxL" = (
-/turf/open/floor/prison{
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner,
/area/prison/cellblock/lowsec/se)
"bxN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/se)
"bxO" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -26234,16 +19826,10 @@
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/south/north)
"bxQ" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/prison/cellblock/lowsec/se)
"bxR" = (
/obj/structure/machinery/power/apc{
@@ -26251,26 +19837,17 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"bxT" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"bxU" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"bxV" = (
/obj/structure/sink{
@@ -26278,18 +19855,12 @@
pixel_x = 12
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/holding/holding1)
"bxW" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding1)
"bxX" = (
/obj/structure/machinery/power/apc{
@@ -26300,97 +19871,60 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bxY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bxZ" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bya" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"byd" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"bye" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"byf" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/visitation)
"byg" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/visitation)
"byh" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/visitation)
"byi" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/visitation)
"byj" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/visitation)
"byk" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"byl" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bym" = (
/obj/structure/machinery/disposal,
@@ -26401,25 +19935,16 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"byn" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"byo" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"byp" = (
/obj/structure/closet,
@@ -26431,17 +19956,12 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/sw)
"byr" = (
/obj/structure/girder/reinforced,
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"bys" = (
/obj/structure/bed,
@@ -26456,10 +19976,7 @@
/area/prison/maintenance/hangar_barracks)
"byw" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/hangar)
"byx" = (
/obj/structure/machinery/light/small{
@@ -26472,56 +19989,35 @@
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/south/north)
"byC" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/north)
"byE" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/north)
"byF" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/prison/cellblock/highsec/south/north)
"byG" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/hangar)
"byH" = (
/obj/structure/pipes/vents/pump/on,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/hangar)
"byI" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/hangar)
"byJ" = (
/obj/structure/machinery/power/apc{
@@ -26529,18 +20025,12 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/hangar)
"byK" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/hangar)
"byL" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -26551,30 +20041,18 @@
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/monorail/east)
"byN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/monorail/east)
"byO" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/monorail/east)
"byP" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/monorail/east)
"byQ" = (
/obj/structure/machinery/power/apc{
@@ -26582,29 +20060,17 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/monorail/west)
"byR" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/monorail/west)
"byS" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/north)
"bza" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/highsec/s)
"bzb" = (
/obj/structure/disposalpipe/segment,
@@ -26616,10 +20082,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/sw)
"bzd" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -26632,18 +20095,14 @@
/turf/open/floor/plating,
/area/prison/cellblock/lowsec/sw)
"bze" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/lowsec/sw)
"bzf" = (
/obj/structure/toilet{
dir = 1
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/lowsec/sw)
"bzg" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -26652,24 +20111,18 @@
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/lowsec/sw)
"bzi" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/lowsec/sw)
"bzj" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/lowsec/sw)
"bzk" = (
/obj/structure/sink{
@@ -26677,41 +20130,27 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/lowsec/se)
"bzl" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/lowsec/se)
"bzm" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/lowsec/se)
"bzo" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/cellblock/lowsec/se)
"bzp" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/monorail/east)
"bzq" = (
/obj/structure/machinery/door/window/eastright,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"bzr" = (
/obj/structure/sink{
@@ -26724,9 +20163,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"bzs" = (
/obj/structure/machinery/door/airlock/prison{
@@ -26734,21 +20171,13 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/se)
"bzt" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/cellblock/lowsec/se)
"bzu" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/holding/holding1)
"bzv" = (
/turf/closed/wall/prison,
@@ -26756,10 +20185,7 @@
"bzw" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/holding/holding1)
"bzx" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -26767,20 +20193,14 @@
dir = 2;
name = "Prison Store"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"bzy" = (
/obj/structure/window/framed/prison/reinforced,
/turf/open/floor/plating,
/area/prison/store)
"bzz" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/south/north)
"bzD" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -26788,19 +20208,13 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Visitation"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"bzE" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "East Hallway"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bzG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -26840,10 +20254,7 @@
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/hangar)
"bzM" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
@@ -26860,20 +20271,14 @@
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/hangar)
"bzQ" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/hangar)
"bzR" = (
/obj/structure/shuttle/diagonal{
@@ -26896,62 +20301,38 @@
/turf/open/floor/plating,
/area/prison/monorail/east)
"bzW" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/monorail/east)
"bzX" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/monorail/east)
"bzY" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/monorail/east)
"bzZ" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/monorail/east)
"bAa" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/maintenance/residential/sw)
"bAe" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/prison/cellblock/highsec/south/north)
"bAf" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/highsec/south/north)
"bAi" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding1)
"bAn" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/prison/security/monitoring/lowsec/sw)
"bAo" = (
/obj/structure/machinery/light{
@@ -26960,10 +20341,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/security/monitoring/lowsec/sw)
"bAp" = (
/obj/structure/disposalpipe/segment{
@@ -26974,28 +20352,19 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/security/monitoring/lowsec/sw)
"bAq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/security/monitoring/lowsec/sw)
"bAr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/east,
/area/prison/cellblock/lowsec/sw)
"bAs" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -27003,26 +20372,17 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/north,
/area/prison/cellblock/lowsec/sw)
"bAt" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/sw)
"bAu" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/prison/cellblock/lowsec/sw)
"bAv" = (
/obj/structure/machinery/door/airlock/prison/horizontal{
@@ -27030,29 +20390,21 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/sw)
"bAw" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/central/south)
"bAx" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/hallway/central/south)
"bAy" = (
/obj/structure/machinery/door/airlock/prison/horizontal{
@@ -27060,37 +20412,23 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/se)
"bAA" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bAB" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/se)
"bAC" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/se)
"bAD" = (
/obj/structure/machinery/shower{
pixel_y = 15
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/lowsec/se)
"bAE" = (
/turf/open/floor/prison,
@@ -27102,73 +20440,46 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/lowsec/se)
"bAG" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/prison/hallway/east)
"bAH" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/west,
/area/prison/hallway/east)
"bAI" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bAJ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bAL" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bAM" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bAN" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bAO" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/prison/hallway/east)
"bAP" = (
/obj/structure/grille,
@@ -27176,10 +20487,7 @@
/turf/open/space,
/area/space)
"bAQ" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/prison/hallway/east)
"bAR" = (
/obj/structure/bed,
@@ -27204,9 +20512,7 @@
/obj/structure/machinery/shower{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"bAV" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -27219,40 +20525,25 @@
/area/prison/security/checkpoint/hangar)
"bAX" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/hangar)
"bAY" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/hangar)
"bAZ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/hangar)
"bBa" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/hangar)
"bBb" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/hangar)
"bBc" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/hangar)
"bBd" = (
/turf/closed/shuttle{
@@ -27263,22 +20554,16 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/monorail/east)
"bBf" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/prison/monorail/east)
"bBg" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/monorail/east)
"bBh" = (
/turf/closed/wall/prison,
@@ -27289,10 +20574,7 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/monorail/east)
"bBl" = (
/obj/structure/machinery/power/apc{
@@ -27342,26 +20624,17 @@
/area/prison/maintenance/residential/se)
"bBv" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/monorail/west)
"bBw" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/prison/monorail/west)
"bBx" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/north)
"bBy" = (
/obj/structure/machinery/light/small{
@@ -27388,69 +20661,48 @@
/turf/open/floor/plating,
/area/prison/security/monitoring/lowsec/sw)
"bBI" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/security/monitoring/lowsec/sw)
"bBJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/security/monitoring/lowsec/sw)
"bBK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/security/monitoring/lowsec/sw)
"bBL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/security/monitoring/lowsec/sw)
"bBM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/prison/cellblock/lowsec/sw)
"bBN" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/sw)
"bBO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/sw)
"bBQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/north,
/area/prison/cellblock/lowsec/sw)
"bBR" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -27459,19 +20711,13 @@
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/sw)
"bBS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/sw)
"bBU" = (
/obj/structure/machinery/light{
@@ -27480,45 +20726,32 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/sw)
"bBV" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/sw)
"bBX" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/prison/cellblock/lowsec/sw)
"bBY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/sw)
"bBZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/structure/girder/reinforced,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/north)
"bCa" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -27528,51 +20761,32 @@
dir = 8;
flipped = 1
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/north)
"bCb" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bCc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bCd" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/central/south)
"bCe" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/south)
"bCf" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/highsec/south/north)
"bCg" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/highsec/south/north)
"bCh" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -27587,10 +20801,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/hallway/central/south)
"bCj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -27599,9 +20810,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/se)
"bCk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -27610,10 +20819,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/prison/cellblock/lowsec/se)
"bCl" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -27622,10 +20828,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/se)
"bCm" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -27634,17 +20837,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/se)
"bCo" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/prison/medbay)
"bCp" = (
/obj/structure/machinery/light{
@@ -27656,10 +20853,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/se)
"bCq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -27671,10 +20865,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/se)
"bCr" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -27683,10 +20874,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/east,
/area/prison/cellblock/lowsec/se)
"bCs" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -27695,10 +20883,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/cellblock/lowsec/se)
"bCt" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -27707,23 +20892,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/cellblock/lowsec/se)
"bCv" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/cellblock/lowsec/sw)
"bCw" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/se)
"bCx" = (
/obj/structure/machinery/shower{
@@ -27732,28 +20908,19 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/lowsec/se)
"bCy" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/se)
"bCz" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/se)
"bCA" = (
/obj/structure/machinery/door/airlock/prison/horizontal{
@@ -27761,26 +20928,18 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/cellblock/highsec/south/north)
"bCB" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/lowsec/se)
"bCC" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/prison/hallway/east)
"bCE" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -27802,10 +20961,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/hallway/east)
"bCH" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/east)
"bCJ" = (
/obj/effect/landmark/corpsespawner/prisoner,
@@ -27822,10 +20978,7 @@
/turf/open/floor/plating,
/area/prison/maintenance/residential/access/south)
"bCM" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/prison/hallway/east)
"bCN" = (
/obj/structure/bed,
@@ -27851,31 +21004,19 @@
/turf/open/floor/plating,
/area/prison/maintenance/hangar_barracks)
"bCR" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/prison/hallway/east)
"bCS" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/prison/hallway/east)
"bCT" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/shuttle/dropship/flight/lz1,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/landing/console)
"bCU" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/hangar)
"bCV" = (
/obj/structure/surface/table/reinforced,
@@ -27887,37 +21028,25 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/hangar)
"bCW" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/monorail/east)
"bCX" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/monorail/east)
"bCY" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/monorail/east)
"bCZ" = (
/obj/structure/pipes/vents/pump{
@@ -27947,45 +21076,31 @@
/turf/open/floor/plating,
/area/prison/maintenance/residential/se)
"bDf" = (
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"bDg" = (
/obj/structure/machinery/cm_vending/sorted/tech/science,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret/dissection)
"bDi" = (
/obj/structure/janitorialcart,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"bDj" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"bDk" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/s)
"bDl" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/s)
"bDm" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -27997,115 +21112,82 @@
/area/prison/security/monitoring/lowsec/sw)
"bDo" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/sw)
"bDp" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/sw)
"bDq" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/sw)
"bDr" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/prison/cellblock/lowsec/sw)
"bDs" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "Southwest Low-Security Cellblock"
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/sw)
"bDt" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "Southeast Low-Security Cellblock"
},
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/cellblock/lowsec/se)
"bDu" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/cellblock/lowsec/se)
"bDv" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/se)
"bDw" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/se)
"bDz" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/se)
"bDA" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/se)
"bDB" = (
/obj/structure/machinery/shower{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/lowsec/se)
"bDC" = (
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/lowsec/se)
"bDD" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"bDE" = (
/obj/structure/monorail,
@@ -28129,10 +21211,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/prison/hallway/east)
"bDH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -28141,10 +21220,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/east)
"bDI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -28153,10 +21229,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/west,
/area/prison/hallway/east)
"bDK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -28180,10 +21253,7 @@
},
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/east)
"bDM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -28256,27 +21326,18 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
dir = 2
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bDV" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bDW" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"bDX" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -28291,9 +21352,7 @@
/obj/structure/machinery/door/airlock/almayer/security/colony{
name = "Security Barracks"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/prison/quarters/security)
"bDZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -28316,36 +21375,23 @@
/turf/open/floor/prison,
/area/prison/quarters/security)
"bEd" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/maintenance/hangar_barracks)
"bEe" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/maintenance/hangar_barracks)
"bEf" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/telecomms)
"bEg" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/prison/monorail/east)
"bEh" = (
/obj/structure/machinery/door/unpowered/shuttle,
/obj/structure/machinery/door/poddoor/shutters/transit/open,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/prison/monorail/east)
"bEi" = (
/obj/structure/machinery/door/airlock/almayer/generic,
@@ -28359,64 +21405,43 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/monorail/east)
"bEl" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/hallway/central/west)
"bEm" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 8;
name = "South High-Security Cellblock"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/hallway/central/west)
"bEn" = (
/turf/closed/wall/r_wall/prison,
/area/prison/hallway/central/west)
"bEo" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/monitoring/lowsec/sw)
"bEp" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/lowsec/sw)
"bEq" = (
/obj/effect/decal/cleanable/blood/gibs,
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/monitoring/lowsec/sw)
"bEs" = (
/obj/structure/machinery/shower{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/lowsec/se)
"bEt" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -28425,10 +21450,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/lowsec/se)
"bEu" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -28444,33 +21466,21 @@
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bEw" = (
/obj/effect/landmark/corpsespawner/prisoner,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bEx" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bEy" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/prison/hallway/east)
"bEz" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -28488,10 +21498,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/prison/hallway/east)
"bED" = (
/obj/structure/bed,
@@ -28529,10 +21536,7 @@
/turf/open/floor/prison,
/area/prison/hallway/east)
"bEJ" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/telecomms)
"bEK" = (
/obj/structure/pipes/vents/scrubber,
@@ -28556,76 +21560,52 @@
/obj/structure/mirror{
pixel_y = 28
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bEQ" = (
/obj/structure/machinery/washing_machine,
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bER" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bES" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bET" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bEU" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/south/north)
"bEV" = (
/obj/structure/pipes/vents/scrubber,
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/north)
"bEW" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bEX" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/north)
"bEY" = (
/obj/structure/machinery/light{
@@ -28635,52 +21615,34 @@
dir = 4
},
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"bEZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"bFb" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/prison/cellblock/highsec/south/north)
"bFd" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/north)
"bFe" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/north)
"bFf" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/north)
"bFg" = (
/obj/structure/machinery/power/apc{
@@ -28689,10 +21651,7 @@
start_charge = 0
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/north)
"bFh" = (
/obj/structure/largecrate/random/case/double,
@@ -28703,67 +21662,44 @@
/turf/open/floor/plating,
/area/prison/maintenance/research_medbay)
"bFj" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/security/checkpoint/highsec/s)
"bFk" = (
/obj/structure/window/framed/prison/reinforced,
/turf/open/floor/plating,
/area/prison/security/monitoring/lowsec/sw)
"bFl" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/cellblock/lowsec/sw)
"bFm" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/sw)
"bFn" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/security/checkpoint/highsec/s)
"bFo" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/security/checkpoint/highsec/s)
"bFp" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/machinery/camera/autoname{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/security/checkpoint/highsec/s)
"bFq" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/security/checkpoint/highsec/s)
"bFr" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/prison_lock,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/monitoring/lowsec/sw)
"bFs" = (
/obj/structure/pipes/vents/pump{
@@ -28773,83 +21709,53 @@
/area/prison/security/monitoring/lowsec/sw)
"bFt" = (
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/prison/security/monitoring/lowsec/sw)
"bFu" = (
/obj/structure/filingcabinet,
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/monitoring/lowsec/sw)
"bFv" = (
/obj/effect/decal/cleanable/blood/splatter,
/turf/closed/wall/prison,
/area/prison/security/monitoring/lowsec/sw)
"bFw" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/lowsec/sw)
"bFx" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/lowsec/sw)
"bFy" = (
/obj/structure/machinery/camera/autoname{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"bFz" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/lowsec/se)
"bFA" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/se)
"bFB" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/lowsec/se)
"bFC" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/se)
"bFD" = (
-/turf/open/floor/prison{
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom,
/area/prison/holding/holding2)
"bFE" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom,
/area/prison/holding/holding2)
"bFF" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -28857,37 +21763,22 @@
name = "Telecommunications"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/telecomms)
"bFG" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/hallway/east)
"bFH" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/hallway/east)
"bFI" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/hallway/east)
"bFJ" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/east)
"bFK" = (
/obj/structure/disposalpipe/segment,
@@ -28974,59 +21865,43 @@
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bFY" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bFZ" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/north)
"bGa" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/cellblock/highsec/south/north)
"bGd" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/north)
"bGe" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/item/ammo_casing,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/north)
"bGf" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/prison/cellblock/highsec/south/north)
"bGg" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -29058,16 +21933,11 @@
/area/prison/cellblock/highsec/south/north)
"bGm" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"bGn" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"bGp" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -29094,10 +21964,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/security/checkpoint/highsec/s)
"bGv" = (
/obj/structure/disposalpipe/segment{
@@ -29115,9 +21982,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/security/checkpoint/highsec/s)
"bGx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -29126,9 +21991,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/security/checkpoint/highsec/s)
"bGy" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -29147,9 +22010,7 @@
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/security/checkpoint/highsec/s)
"bGA" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -29160,10 +22021,7 @@
/area/prison/hallway/central/west)
"bGB" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bGC" = (
/obj/item/stack/rods,
@@ -29173,25 +22031,18 @@
"bGD" = (
/obj/item/frame/table,
/obj/item/shard,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/monitoring/lowsec/sw)
"bGE" = (
/obj/item/shard,
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/lowsec/sw)
"bGF" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/lowsec/sw)
"bGG" = (
/obj/effect/decal/cleanable/blood,
@@ -29201,19 +22052,13 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/monitoring/lowsec/sw)
"bGH" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/se)
"bGI" = (
/obj/effect/decal/cleanable/blood,
@@ -29221,25 +22066,16 @@
/area/prison/holding/holding2)
"bGJ" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bGK" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bGL" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bGM" = (
/obj/structure/sink{
@@ -29249,36 +22085,24 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding2)
"bGN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding2)
"bGO" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/prison/telecomms)
"bGP" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/telecomms)
"bGQ" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -29309,39 +22133,25 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bGW" = (
/obj/structure/machinery/telecomms/bus,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/telecomms)
"bGX" = (
/obj/structure/machinery/computer/telecomms/traffic,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/prison/telecomms)
"bGY" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/prison/hallway/east)
"bGZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/east)
"bHa" = (
/obj/structure/machinery/power/apc{
@@ -29358,9 +22168,7 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bHc" = (
/obj/structure/bed/chair/office/light{
@@ -29393,10 +22201,7 @@
/area/prison/maintenance/hangar_barracks)
"bHk" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/north)
"bHl" = (
/obj/structure/machinery/power/apc{
@@ -29436,10 +22241,7 @@
"bHv" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/security/checkpoint/highsec/s)
"bHw" = (
/obj/structure/stairs/perspective{
@@ -29450,10 +22252,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/security/checkpoint/highsec/s)
"bHx" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -29463,17 +22262,12 @@
/turf/open/floor/prison,
/area/prison/security/checkpoint/highsec/s)
"bHy" = (
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/security/checkpoint/highsec/s)
"bHA" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/lowsec/sw)
"bHB" = (
/obj/structure/surface/table/reinforced,
@@ -29482,10 +22276,7 @@
pixel_y = 7
},
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/lowsec/sw)
"bHC" = (
/obj/structure/machinery/computer/cameras{
@@ -29493,19 +22284,13 @@
},
/obj/effect/decal/cleanable/blood/gibs,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/lowsec/sw)
"bHD" = (
/obj/structure/machinery/computer/secure_data,
/obj/effect/decal/cleanable/blood/gibs,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/lowsec/sw)
"bHE" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
@@ -29519,27 +22304,18 @@
dir = 4
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/lowsec/se)
"bHG" = (
/obj/structure/bed,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bHH" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding2)
"bHI" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -29555,19 +22331,13 @@
},
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bHL" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/prison/telecomms)
"bHN" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -29600,9 +22370,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/prison/hallway/east)
"bHU" = (
/obj/structure/disposalpipe/segment{
@@ -29639,21 +22407,14 @@
/area/prison/maintenance/hangar_barracks)
"bIb" = (
/obj/structure/machinery/door/airlock/glass,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/prison/monorail/east)
"bIc" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/south/north)
"bIe" = (
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/cellblock/highsec/south/north)
"bIf" = (
/obj/structure/surface/table/woodentable,
@@ -29662,10 +22423,7 @@
/area/prison/residential/south)
"bIg" = (
/obj/structure/girder,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"bIh" = (
/obj/structure/machinery/light/small{
@@ -29675,25 +22433,18 @@
/area/prison/residential/south)
"bIi" = (
/obj/structure/machinery/door/window/eastleft,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bIj" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"bIk" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/cellblock/highsec/south/north)
"bIl" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -29704,15 +22455,11 @@
/area/prison/medbay)
"bIm" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/north)
"bIn" = (
/obj/structure/machinery/door/window/westright,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bIo" = (
/obj/structure/machinery/light/small{
@@ -29721,9 +22468,7 @@
/turf/open/floor/wood,
/area/prison/residential/south)
"bIp" = (
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/security/checkpoint/highsec/s)
"bIq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -29731,25 +22476,16 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/security/checkpoint/highsec/s)
"bIr" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/prison/security/checkpoint/highsec/s)
"bIt" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/security/checkpoint/highsec/s)
"bIu" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -29759,18 +22495,12 @@
/area/prison/hallway/central/west)
"bIw" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bIx" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bIy" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -29781,18 +22511,13 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/prison/hallway/east)
"bIB" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/prison/hallway/east)
"bID" = (
/obj/structure/disposalpipe/segment,
@@ -29807,10 +22532,7 @@
dir = 2;
name = "Security Barracks"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/quarters/security)
"bIG" = (
/obj/structure/surface/table/reinforced,
@@ -29825,20 +22547,14 @@
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/south/north)
"bIK" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/north)
"bIL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -29848,10 +22564,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/north)
"bIN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -29872,17 +22585,11 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/security/checkpoint/highsec/s)
"bIQ" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"bIS" = (
/obj/structure/pipes/vents/scrubber{
@@ -29890,28 +22597,19 @@
},
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bIT" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bIU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bIV" = (
/obj/structure/machinery/light{
@@ -29921,78 +22619,45 @@
dir = 9
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bIW" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/telecomms)
"bIX" = (
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/prison/hallway/east)
"bIY" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southeast,
/area/prison/hallway/east)
"bIZ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/prison/hallway/east)
"bJa" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bJb" = (
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/prison/hallway/east)
"bJc" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security)
"bJd" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding2)
"bJe" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security)
"bJf" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bJg" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bJh" = (
/obj/structure/machinery/disposal,
@@ -30000,10 +22665,7 @@
dir = 1
},
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security)
"bJi" = (
/obj/structure/surface/table/reinforced,
@@ -30018,10 +22680,7 @@
/turf/open/floor/prison,
/area/prison/maintenance/hangar_barracks)
"bJl" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/east)
"bJo" = (
/obj/structure/bed/chair/office/dark{
@@ -30046,35 +22705,23 @@
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/south/north)
"bJs" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/storage/highsec/s)
"bJt" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/storage/highsec/s)
"bJu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/storage/highsec/s)
"bJv" = (
/obj/structure/machinery/power/apc{
@@ -30082,10 +22729,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/storage/highsec/s)
"bJw" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -30094,9 +22738,7 @@
dir = 2;
name = "Security Booth"
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/security/checkpoint/highsec/s)
"bJx" = (
/obj/structure/surface/table/reinforced,
@@ -30104,10 +22746,7 @@
pixel_x = -3;
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/s)
"bJy" = (
/obj/structure/surface/table/reinforced,
@@ -30116,19 +22755,13 @@
pixel_y = 8
},
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/s)
"bJz" = (
/obj/structure/bed,
/obj/effect/landmark/corpsespawner/prisoner,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bJA" = (
/obj/structure/bookcase,
@@ -30141,65 +22774,44 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bJE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bJF" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "Holding Cell 2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bJG" = (
/obj/effect/landmark/corpsespawner/prisoner,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bJH" = (
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/security/checkpoint/highsec/s)
"bJI" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bJJ" = (
/obj/structure/barricade/handrail/wire{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/telecomms)
"bJL" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/prison/hallway/east)
"bJM" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -30215,23 +22827,16 @@
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/prison/hallway/east)
"bJO" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Intake Processing"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/prison/intake)
"bJP" = (
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/prison/intake)
"bJQ" = (
/obj/structure/disposalpipe/segment,
@@ -30239,67 +22844,43 @@
dir = 2;
name = "Security Department"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bJR" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 2;
name = "Security Department"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bJS" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security)
"bJT" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security)
"bJU" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security)
"bJV" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security)
"bJW" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/monorail/east)
"bJX" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/monorail/east)
"bJY" = (
/obj/structure/machinery/light/small,
@@ -30338,10 +22919,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/s)
"bKf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -30350,10 +22928,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/s)
"bKg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -30363,17 +22938,11 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/highsec/s)
"bKh" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/highsec/s)
"bKi" = (
/obj/structure/window/reinforced{
@@ -30385,10 +22954,7 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/highsec/s)
"bKk" = (
/obj/structure/window/reinforced{
@@ -30408,24 +22974,15 @@
/area/prison/residential/south)
"bKn" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/south)
"bKo" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/south)
"bKp" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/processor,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/south)
"bKq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -30487,26 +23044,17 @@
dir = 2;
name = "Central Ring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/south)
"bKB" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bKC" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bKD" = (
/turf/open/floor/prison,
@@ -30515,48 +23063,33 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/telecomms)
"bKG" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/prison/intake)
"bKH" = (
/obj/structure/closet/secure_closet/security_empty,
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bKI" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security)
"bKJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security)
"bKK" = (
/obj/structure/disposalpipe/segment{
@@ -30565,29 +23098,20 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security)
"bKL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/prison/security)
"bKM" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security)
"bKN" = (
/turf/closed/wall/prison,
@@ -30602,10 +23126,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/toilet/security)
"bKQ" = (
/obj/structure/bed/chair/office/dark{
@@ -30644,10 +23165,7 @@
"bKX" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/microwave,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/south)
"bKY" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -30656,10 +23174,7 @@
/turf/open/floor/wood,
/area/prison/residential/south)
"bKZ" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/monorail/east)
"bLa" = (
/obj/structure/pipes/vents/scrubber{
@@ -30671,10 +23186,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/monorail/east)
"bLd" = (
/obj/structure/machinery/light{
@@ -30685,20 +23197,14 @@
/area/prison/residential/south)
"bLf" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/south/north)
"bLg" = (
/turf/closed/wall/r_wall/prison,
/area/prison/storage/highsec/s)
"bLh" = (
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/north)
"bLi" = (
/obj/structure/machinery/light,
@@ -30709,96 +23215,61 @@
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/s)
"bLk" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/highsec/s)
"bLl" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bLm" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/highsec/s)
"bLn" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/highsec/s)
"bLp" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"bLq" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"bLr" = (
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bLs" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bLt" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding2)
"bLu" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/telecomms)
"bLv" = (
/turf/closed/wall/r_wall/prison,
/area/prison/security)
"bLw" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/prison/telecomms)
"bLx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -30808,26 +23279,17 @@
/area/prison/telecomms)
"bLy" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bLz" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security)
"bLA" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bLD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -30836,19 +23298,14 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Telecommunications"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/prison/telecomms)
"bLG" = (
/obj/structure/bed/stool,
/turf/open/floor/prison,
/area/prison/intake)
"bLH" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security)
"bLI" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -30858,10 +23315,7 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bLJ" = (
/obj/structure/machinery/shower{
@@ -30869,9 +23323,7 @@
layer = 3.3
},
/obj/structure/window/reinforced,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bLK" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -30882,9 +23334,7 @@
/area/prison/residential/south)
"bLM" = (
/obj/structure/machinery/door/window/southleft,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bLP" = (
/obj/structure/bed/chair/comfy{
@@ -30896,10 +23346,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/south)
"bLR" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
@@ -30918,37 +23365,25 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bLV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bLW" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bLX" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bLY" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -30960,34 +23395,23 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bMa" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bMd" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/south)
"bMe" = (
/obj/structure/machinery/door/window/southright,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bMf" = (
/obj/structure/machinery/shower{
@@ -30995,19 +23419,14 @@
layer = 3.3
},
/obj/structure/window/reinforced,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bMg" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/north)
"bMh" = (
/turf/closed/wall/r_wall/prison,
@@ -31030,35 +23449,23 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bMp" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/research/secret)
"bMq" = (
/obj/structure/window/framed/prison/reinforced,
/turf/open/floor/plating,
/area/prison/security)
"bMr" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/security/checkpoint/medsec)
"bMs" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/security/checkpoint/medsec)
"bMt" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -31077,25 +23484,17 @@
pixel_x = 12
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding2)
"bMy" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bMz" = (
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/telecomms)
"bMA" = (
/obj/structure/pipes/vents/pump{
@@ -31119,41 +23518,26 @@
/area/prison/residential/south)
"bMD" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/south)
"bME" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security)
"bMF" = (
/obj/structure/closet/secure_closet/security_empty,
/obj/structure/window/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bMG" = (
/obj/structure/closet/secure_closet/security,
/obj/structure/window/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bMI" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bMJ" = (
/obj/structure/sink{
@@ -31163,10 +23547,7 @@
pixel_y = 28
},
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bMK" = (
/obj/structure/sink{
@@ -31175,22 +23556,13 @@
/obj/structure/mirror{
pixel_y = 28
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bML" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/monorail/east)
"bMM" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/monorail/east)
"bMN" = (
/obj/structure/sink{
@@ -31200,9 +23572,7 @@
/obj/structure/mirror{
pixel_x = -26
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bMO" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -31211,47 +23581,35 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bMQ" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bMR" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bMS" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bMT" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bMW" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bMX" = (
/obj/structure/sink{
@@ -31261,76 +23619,47 @@
/obj/structure/mirror{
pixel_x = 26
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bMY" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/recreation/highsec/s)
"bMZ" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/recreation/highsec/s)
"bNa" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/prison/intake)
"bNb" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/prison/intake)
"bNc" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/recreation/highsec/s)
"bNd" = (
/turf/closed/wall/prison,
/area/prison/intake)
"bNe" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/recreation/highsec/s)
"bNf" = (
/obj/structure/window/framed/prison/reinforced,
/turf/open/floor/plating,
/area/prison/recreation/highsec/s)
"bNg" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/recreation/highsec/s)
"bNh" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/prison/recreation/highsec/s)
"bNi" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/recreation/highsec/s)
"bNj" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -31349,35 +23678,23 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/recreation/highsec/s)
"bNm" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/recreation/highsec/s)
"bNn" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/recreation/highsec/s)
"bNo" = (
/obj/structure/closet/wardrobe/orange,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bNq" = (
/obj/structure/machinery/disposal,
@@ -31385,10 +23702,7 @@
/obj/structure/machinery/camera/autoname{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bNr" = (
/turf/closed/wall/prison,
@@ -31403,95 +23717,60 @@
/area/prison/residential/south)
"bNt" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
-/turf/open/floor/prison{
- icon_state = "damaged3"
- },
+/turf/open/floor/prison/damaged3,
/area/prison/laundry)
"bNu" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2,
/area/prison/laundry)
"bNv" = (
/turf/closed/wall/r_wall/prison,
/area/prison/security/checkpoint/medsec)
"bNw" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/medsec)
"bNx" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/medsec)
"bNy" = (
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/medsec)
"bNz" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/medsec)
"bNA" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/prison/medbay)
"bNB" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/prison/security/checkpoint/medsec)
"bNC" = (
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/security/checkpoint/medsec)
"bND" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/security/checkpoint/medsec)
"bNE" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/prison/security/checkpoint/medsec)
"bNF" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/medsec)
"bNG" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/medsec)
"bNH" = (
/turf/closed/wall/r_wall/prison,
@@ -31511,39 +23790,24 @@
/turf/open/floor/prison,
/area/prison/storage/medsec)
"bNL" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/storage/medsec)
"bNM" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/prison/storage/medsec)
"bNN" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/prison/storage/medsec)
"bNO" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/prison/storage/medsec)
"bNP" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/prison/storage/medsec)
"bNQ" = (
/turf/open/floor/prison,
@@ -31591,10 +23855,7 @@
"bOg" = (
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/prison/hallway/east)
"bOh" = (
/obj/structure/bed/stool,
@@ -31610,45 +23871,29 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bOk" = (
-/turf/open/floor/prison{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2,
/area/prison/security)
"bOl" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security)
"bOm" = (
/turf/closed/wall/prison,
/area/prison/recreation/highsec/s)
"bOn" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/recreation/highsec/s)
"bOo" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/recreation/highsec/s)
"bOp" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/prison/security)
"bOq" = (
/turf/closed/wall/r_wall/prison,
@@ -31676,10 +23921,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security)
"bOy" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -31690,10 +23932,7 @@
icon_state = "door_open";
name = "Security Restrooms"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bOz" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -31706,10 +23945,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bOD" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -31721,27 +23957,18 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bOI" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bOK" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bOL" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -31764,41 +23991,27 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bOP" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bOR" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bOS" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bOT" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bOV" = (
/obj/structure/toilet{
@@ -31807,9 +24020,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bOW" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -31818,18 +24029,13 @@
name = "Solitary Confinement";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/cellblock/highsec/south/north)
"bOX" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/recreation/highsec/s)
"bOY" = (
/obj/structure/pipes/vents/scrubber,
@@ -31842,33 +24048,21 @@
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/recreation/highsec/s)
"bPc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/s)
"bPe" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 2;
name = "Toilet"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/recreation/highsec/s)
"bPf" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bPg" = (
/obj/structure/machinery/door/airlock/prison{
@@ -31876,59 +24070,39 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/cellblock/highsec/south/north)
"bPh" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bPi" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bPj" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bPk" = (
/obj/item/shard,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bPo" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bPp" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/medsec)
"bPq" = (
/obj/structure/pipes/vents/pump/on,
@@ -31942,33 +24116,21 @@
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/medsec)
"bPs" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/medsec)
"bPt" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/security/checkpoint/medsec)
"bPy" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/medsec)
"bPz" = (
/obj/structure/pipes/vents/pump/on,
@@ -31977,17 +24139,11 @@
"bPA" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/prison_lock,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/medsec)
"bPC" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/storage/medsec)
"bPD" = (
/obj/structure/machinery/power/apc{
@@ -31995,24 +24151,15 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/prison/storage/medsec)
"bPF" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/prison/cellblock/protective)
"bPG" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/prison/cellblock/protective)
"bPH" = (
/obj/structure/bed/stool,
@@ -32040,10 +24187,7 @@
capacity = 1e+006;
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering)
"bPQ" = (
/turf/closed/wall/prison,
@@ -32132,27 +24276,18 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security)
"bQh" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security)
"bQi" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bQj" = (
/turf/closed/wall/r_wall/prison,
@@ -32161,10 +24296,7 @@
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security)
"bQl" = (
/obj/structure/pipes/vents/pump{
@@ -32184,10 +24316,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bQo" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
@@ -32196,19 +24325,13 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bQp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bQq" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
@@ -32217,10 +24340,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bQr" = (
/obj/structure/machinery/light{
@@ -32229,28 +24349,19 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"bQs" = (
/obj/effect/landmark/hunter_primary,
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bQt" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 2;
name = "Garden"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bQu" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -32258,18 +24369,12 @@
name = "Garden"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bQv" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/north)
"bQw" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -32288,84 +24393,56 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/s)
"bQB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/recreation/highsec/s)
"bQC" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/recreation/highsec/s)
"bQD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/recreation/highsec/s)
"bQE" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bQF" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/obj/item/ammo_casing,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/s)
"bQG" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/recreation/highsec/s)
"bQH" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/recreation/highsec/s)
"bQI" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/recreation/highsec/s)
"bQJ" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bQK" = (
/obj/structure/surface/rack,
@@ -32373,55 +24450,34 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bQL" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bQM" = (
/obj/structure/surface/rack,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bQN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bQO" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bQP" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bQQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/s)
"bQR" = (
/obj/structure/machinery/power/apc{
@@ -32429,38 +24485,27 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bQS" = (
/obj/structure/machinery/photocopier,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/medsec)
"bQT" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2,
/area/prison/security/checkpoint/medsec)
"bQU" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/medsec)
"bQV" = (
/obj/structure/surface/table/reinforced,
@@ -32469,24 +24514,15 @@
pixel_y = 8
},
/obj/effect/landmark/item_pool_spawner/prison_lock,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/medsec)
"bQW" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/prison/security/checkpoint/medsec)
"bQX" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/prison/security/checkpoint/medsec)
"bQY" = (
/obj/structure/surface/table/reinforced,
@@ -32498,19 +24534,13 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/medsec)
"bQZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/medsec)
"bRa" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -32519,10 +24549,7 @@
/turf/open/floor/prison,
/area/prison/security/checkpoint/medsec)
"bRb" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/medsec)
"bRc" = (
/obj/structure/machinery/light{
@@ -32540,10 +24567,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/storage/medsec)
"bRf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -32552,28 +24576,19 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Medium-Security Storage"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/storage/medsec)
"bRg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/prison/storage/medsec)
"bRh" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/storage/medsec)
"bRi" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -32584,24 +24599,15 @@
"bRj" = (
/obj/structure/surface/table/almayer,
/obj/item/newspaper,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"bRk" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/cellblock/protective)
"bRl" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/cellblock/protective)
"bRm" = (
/obj/structure/machinery/light{
@@ -32634,20 +24640,14 @@
/obj/structure/machinery/power/terminal{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/engineering)
"bRs" = (
/obj/structure/machinery/power/terminal{
dir = 1
},
/obj/item/clothing/gloves/yellow,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/engineering)
"bRu" = (
/obj/structure/surface/table/reinforced,
@@ -32726,45 +24726,32 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/intake)
"bRI" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/intake)
"bRJ" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/intake)
"bRK" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/intake)
"bRM" = (
/turf/closed/wall/prison,
/area/prison/engineering/atmos)
"bRN" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security)
"bRO" = (
/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security)
"bRW" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -32794,10 +24781,7 @@
/area/prison/cellblock/highsec/south/north)
"bSd" = (
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/prison/cellblock/highsec/south/north)
"bSf" = (
/obj/structure/machinery/light/small{
@@ -32810,10 +24794,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/recreation/highsec/s)
"bSi" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -32834,59 +24815,39 @@
dir = 2;
name = "South High-Security Recreation"
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/recreation/highsec/s)
"bSn" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/s)
"bSo" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/s)
"bSp" = (
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/recreation/highsec/s)
"bSq" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bSr" = (
/obj/structure/surface/rack,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bSs" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bSt" = (
/obj/structure/surface/rack,
@@ -32894,25 +24855,16 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bSu" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bSv" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/recreation/highsec/s)
"bSw" = (
/obj/structure/surface/rack,
@@ -32924,20 +24876,14 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bSx" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bSy" = (
/obj/structure/surface/rack,
@@ -32947,10 +24893,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bSz" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -32959,10 +24902,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bSA" = (
/obj/item/clothing/under/color/orange,
@@ -32973,33 +24913,21 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bSB" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/medsec)
"bSC" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/medsec)
"bSD" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/medsec)
"bSE" = (
/obj/structure/surface/table/reinforced,
@@ -33007,10 +24935,7 @@
pixel_x = -3;
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/medsec)
"bSF" = (
/turf/open/floor/prison,
@@ -33022,26 +24947,18 @@
/area/prison/security/checkpoint/medsec)
"bSH" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/medsec)
"bSI" = (
/obj/structure/machinery/light,
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/medsec)
"bSJ" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/medsec)
"bSK" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -33049,24 +24966,15 @@
/area/prison/storage/medsec)
"bSL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/storage/medsec)
"bSM" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/prison/cellblock/protective)
"bSN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/prison/cellblock/protective)
"bSO" = (
/obj/structure/bookcase,
@@ -33215,30 +25123,21 @@
"bTm" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/intake)
"bTn" = (
/obj/structure/surface/table/reinforced,
/obj/item/paper/prison_station/inmate_handbook,
/obj/item/paper/prison_station/inmate_handbook,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/intake)
"bTo" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/intake)
"bTp" = (
/obj/structure/disposalpipe/junction{
@@ -33247,10 +25146,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/intake)
"bTq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -33259,43 +25155,28 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/intake)
"bTr" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/intake)
"bTt" = (
/obj/structure/surface/table/reinforced,
/obj/item/paper/prison_station/inmate_handbook,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/intake)
"bTu" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bTv" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bTw" = (
/obj/structure/surface/table/reinforced,
@@ -33303,15 +25184,10 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bTx" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/intake)
"bTy" = (
/obj/structure/surface/table/reinforced,
@@ -33319,10 +25195,7 @@
pixel_x = -3;
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bTz" = (
/obj/structure/toilet{
@@ -33331,10 +25204,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/toilet/security)
"bTA" = (
/obj/item/reagent_container/glass/bucket/mopbucket,
@@ -33356,9 +25226,7 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding12"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/south)
"bTF" = (
/obj/structure/flora/tree/dead/tree_1,
@@ -33368,9 +25236,7 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding10"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/south)
"bTH" = (
/obj/structure/bed/chair/comfy{
@@ -33406,18 +25272,14 @@
/area/prison/maintenance/residential/access/south)
"bTQ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/north)
"bTR" = (
/obj/structure/window/framed/prison/reinforced/hull,
/turf/open/floor/plating,
/area/prison/maintenance/residential/access/south)
"bTS" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/north)
"bTT" = (
/obj/structure/pipes/vents/pump{
@@ -33427,38 +25289,26 @@
/area/prison/recreation/highsec/s)
"bTU" = (
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/recreation/highsec/s)
"bTV" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bTW" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bTY" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bTZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -33467,10 +25317,7 @@
dir = 2;
name = "Security Booth"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/medsec)
"bUa" = (
/obj/structure/window/framed/prison/reinforced,
@@ -33499,10 +25346,7 @@
dir = 2;
name = "Security Booth"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/medsec)
"bUe" = (
/obj/structure/pipes/vents/pump{
@@ -33511,18 +25355,12 @@
/turf/open/floor/prison,
/area/prison/storage/medsec)
"bUf" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/cellblock/protective)
"bUg" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/cellblock/protective)
"bUh" = (
/obj/structure/pipes/vents/pump{
@@ -33659,10 +25497,7 @@
/area/prison/engineering/atmos)
"bUG" = (
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/intake)
"bUH" = (
/obj/structure/bed/chair/office/dark{
@@ -33677,10 +25512,7 @@
/area/prison/intake)
"bUJ" = (
/obj/structure/machinery/computer/secure_data,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/intake)
"bUK" = (
/obj/effect/landmark/corpsespawner/prison_security,
@@ -33694,33 +25526,23 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bUP" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bUQ" = (
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding3"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/south)
"bUR" = (
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding6"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/south)
"bUS" = (
/obj/structure/shuttle/diagonal{
@@ -33733,10 +25555,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"bUV" = (
/obj/structure/machinery/light{
@@ -33761,20 +25580,14 @@
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"bVa" = (
/obj/structure/monorail,
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"bVb" = (
/obj/effect/decal/warning_stripes{
@@ -33787,10 +25600,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"bVc" = (
/obj/effect/decal/warning_stripes{
@@ -33810,96 +25620,61 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/north)
"bVf" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/north)
"bVg" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/south/north)
"bVh" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/north)
"bVi" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/prison/recreation/highsec/s)
"bVj" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/recreation/highsec/s)
"bVk" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/recreation/highsec/s)
"bVl" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/recreation/highsec/s)
"bVm" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/prison/recreation/highsec/s)
"bVn" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/prison/recreation/highsec/s)
"bVo" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/recreation/highsec/s)
"bVp" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/recreation/highsec/s)
"bVq" = (
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/recreation/highsec/s)
"bVr" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -33908,10 +25683,7 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/holding/holding2)
"bVs" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -33921,16 +25693,11 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"bVt" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/laundry)
"bVu" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -33942,9 +25709,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/security/checkpoint/medsec)
"bVw" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -33963,9 +25728,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/security/checkpoint/medsec)
"bVy" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -33974,9 +25737,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/security/checkpoint/medsec)
"bVz" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -33988,9 +25749,7 @@
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/security/checkpoint/medsec)
"bVA" = (
/obj/structure/machinery/light{
@@ -34002,10 +25761,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/prison/security/checkpoint/medsec)
"bVB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -34014,10 +25770,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/security/checkpoint/medsec)
"bVC" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -34025,35 +25778,25 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/security/checkpoint/medsec)
"bVD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/prison/security/checkpoint/medsec)
"bVE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/security/checkpoint/medsec)
"bVF" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/security/checkpoint/medsec)
"bVG" = (
/obj/structure/surface/table/reinforced,
@@ -34070,38 +25813,23 @@
/area/prison/security/checkpoint/medsec)
"bVJ" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/storage/medsec)
"bVK" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/prison/storage/medsec)
"bVL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/prison/storage/medsec)
"bVM" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull/west,
/area/prison/cellblock/protective)
"bVN" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/protective)
"bVO" = (
/obj/structure/machinery/power/port_gen/pacman/super,
@@ -34139,41 +25867,30 @@
dir = 8
},
/obj/structure/machinery/meter,
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/prison/engineering/atmos)
"bVW" = (
/obj/structure/pipes/standard/simple/visible/yellow{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/engineering/atmos)
"bVX" = (
/obj/structure/pipes/standard/manifold/visible/yellow,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/engineering/atmos)
"bVY" = (
/obj/structure/pipes/standard/simple/visible/yellow{
dir = 4
},
/obj/structure/machinery/meter,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/engineering/atmos)
"bVZ" = (
/obj/structure/pipes/standard/simple/visible/yellow{
dir = 10
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/prison/engineering/atmos)
"bWb" = (
/obj/structure/pipes/standard/simple/visible/supply,
@@ -34203,10 +25920,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/prison/hallway/east)
"bWh" = (
/obj/structure/disposalpipe/segment,
@@ -34219,10 +25933,7 @@
},
/obj/effect/landmark/corpsespawner/prison_security,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/prison/hallway/east)
"bWj" = (
/obj/structure/machinery/power/apc{
@@ -34230,39 +25941,25 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/intake)
"bWl" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/intake)
"bWm" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/prison/security)
"bWn" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security)
"bWo" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/prison/security)
"bWp" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -34341,39 +26038,27 @@
icon_state = "W"
},
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"bWG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"bWH" = (
/obj/structure/monorail,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"bWI" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"bWJ" = (
/obj/effect/decal/warning_stripes{
@@ -34394,9 +26079,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/north)
"bWP" = (
/obj/structure/machinery/light{
@@ -34405,10 +26088,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/north)
"bWQ" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -34422,30 +26102,21 @@
dir = 4;
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/security/checkpoint/medsec)
"bWS" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/security/checkpoint/medsec)
"bWT" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/security/checkpoint/medsec)
"bWU" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 2;
name = "Medium-Security Storage"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/storage/medsec)
"bWV" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -34453,31 +26124,20 @@
dir = 2;
name = "Medium-Security Storage"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/storage/medsec)
"bWW" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull/west,
/area/prison/cellblock/protective)
"bWX" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/cellblock/protective)
"bWY" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/protective)
"bWZ" = (
/obj/effect/landmark/survivor_spawner,
@@ -34507,17 +26167,11 @@
/area/prison/engineering)
"bXe" = (
/obj/structure/machinery/power/monitor,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering)
"bXf" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering)
"bXg" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -34532,25 +26186,16 @@
/turf/open/floor/plating,
/area/prison/engineering)
"bXj" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/engineering)
"bXk" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Atmospherics"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering)
"bXl" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/prison/engineering/atmos)
"bXm" = (
/obj/structure/machinery/power/apc{
@@ -34561,51 +26206,33 @@
/area/prison/engineering/atmos)
"bXn" = (
/obj/structure/pipes/binary/pump/high_power/on,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/engineering/atmos)
"bXo" = (
/obj/structure/machinery/pipedispenser,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering/atmos)
"bXp" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering/atmos)
"bXq" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/toolbox/mechanical,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering/atmos)
"bXr" = (
/obj/structure/machinery/computer/atmos_alert,
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering/atmos)
"bXs" = (
/obj/structure/pipes/standard/simple/visible/yellow{
dir = 5
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/prison/engineering/atmos)
"bXt" = (
/obj/structure/pipes/binary/pump/high_power{
@@ -34647,10 +26274,7 @@
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/prison/hallway/east)
"bXB" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -34659,28 +26283,19 @@
dir = 2;
name = "Intake Processing"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bXC" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 2;
name = "Intake Processing"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bXD" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/spray/pepper,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bXE" = (
/obj/structure/machinery/computer/cameras{
@@ -34726,29 +26341,20 @@
icon_state = "SE-out"
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"bXM" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"bXN" = (
/obj/structure/monorail,
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"bXO" = (
/obj/effect/decal/warning_stripes{
@@ -34761,10 +26367,7 @@
icon_state = "SW-out"
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"bXP" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -34779,10 +26382,7 @@
/turf/open/floor/plating,
/area/prison/maintenance/residential/access/south)
"bXU" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/intake)
"bXW" = (
/obj/structure/surface/table/reinforced,
@@ -34800,26 +26400,19 @@
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/recreation/medsec)
"bYa" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/recreation/medsec)
"bYb" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/cellblock/protective)
"bYc" = (
/obj/effect/spawner/random/toolbox,
@@ -34848,10 +26441,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/engineering)
"bYh" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -34860,10 +26450,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/engineering)
"bYj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -34897,59 +26484,38 @@
/area/prison/engineering/atmos)
"bYo" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security)
"bYp" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security)
"bYq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security)
"bYr" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security)
"bYs" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 30
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security)
"bYt" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 30
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security)
"bYu" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/east,
/area/prison/security)
"bYv" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -34960,33 +26526,23 @@
"bYw" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/taperecorder,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bYx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/north)
"bYy" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/north)
"bYz" = (
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/south)
"bYA" = (
/obj/structure/surface/table/woodentable,
@@ -35050,34 +26606,24 @@
/turf/open/floor/prison,
/area/prison/recreation/medsec)
"bYT" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"bYU" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"bYV" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"bYW" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"bYX" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/recreation/medsec)
"bYY" = (
/obj/effect/decal/cleanable/blood,
@@ -35128,17 +26674,11 @@
/area/prison/engineering)
"bZj" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hallway/engineering)
"bZk" = (
/obj/structure/pipes/standard/simple/hidden/yellow,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/prison/hallway/engineering)
"bZl" = (
/obj/structure/machinery/power/apc{
@@ -35146,82 +26686,49 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/hallway/engineering)
"bZm" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/hallway/engineering)
"bZn" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/hallway/engineering)
"bZo" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/hallway/engineering)
"bZp" = (
/turf/closed/wall/prison,
/area/prison/security)
"bZq" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/hallway/engineering)
"bZr" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/hallway/engineering)
"bZs" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/prison/hallway/engineering)
"bZt" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/engineering)
"bZu" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/engineering)
"bZv" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/west,
/area/prison/hallway/engineering)
"bZw" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/prison/hallway/engineering)
"bZx" = (
/obj/structure/window/framed/prison/reinforced,
@@ -35244,10 +26751,7 @@
dir = 4
},
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bZA" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -35309,10 +26813,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security)
"bZI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -35321,10 +26822,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bZK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -35337,20 +26835,14 @@
/turf/open/floor/prison,
/area/prison/security)
"bZM" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/prison/cellblock/mediumsec/south)
"bZN" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security)
"bZO" = (
/obj/structure/window/framed/prison/cell,
@@ -35367,50 +26859,32 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/security)
"bZQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/south)
"bZR" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/south)
"bZS" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/south)
"bZT" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/south)
"bZU" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/south)
"bZV" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/south)
"bZW" = (
/turf/closed/wall/r_wall/prison,
@@ -35418,10 +26892,7 @@
"bZX" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/handcuffs,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"bZY" = (
/obj/structure/machinery/light{
@@ -35444,22 +26915,13 @@
/turf/open/floor/plating,
/area/prison/maintenance/residential/access/south)
"cad" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/prison/cellblock/mediumsec/north)
"cae" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"caf" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/prison/cellblock/mediumsec/north)
"cag" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -35470,62 +26932,39 @@
/area/prison/cellblock/mediumsec/north)
"cai" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/prison/cellblock/mediumsec/north)
"caj" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"cak" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"cal" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"cam" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/prison/cellblock/mediumsec/north)
"cao" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/north)
"caq" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/north)
"car" = (
/obj/structure/machinery/door/poddoor/almayer/open{
name = "emergency lockdown";
use_power = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/protective)
"cau" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -35538,17 +26977,13 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/highsec/south/south)
"cay" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/highsec/south/south)
"caz" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/highsec/south/south)
"caA" = (
/obj/structure/machinery/light{
@@ -35558,9 +26993,7 @@
/area/prison/recreation/medsec)
"caB" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"caC" = (
/obj/structure/window/framed/prison/reinforced,
@@ -35570,25 +27003,19 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"caE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"caF" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"caG" = (
/turf/open/floor/prison,
@@ -35605,27 +27032,19 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull/west,
/area/prison/cellblock/protective)
"caJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/cellblock/protective)
"caK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/protective)
"caL" = (
/obj/structure/machinery/light{
@@ -35636,10 +27055,7 @@
dir = 1;
icon_state = "pipe-j2"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/cellblock/protective)
"caM" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -35680,10 +27096,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/hallway/engineering)
"caT" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -35692,10 +27105,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/hallway/engineering)
"caU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -35705,10 +27115,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/prison/hallway/engineering)
"caV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -35732,31 +27139,22 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/west)
"caZ" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/north)
"cba" = (
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/south)
"cbb" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/south)
"cbc" = (
/turf/open/floor/plating,
@@ -35795,10 +27193,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/west,
/area/prison/hallway/engineering)
"cbk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -35819,9 +27214,7 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Engineering Hallway"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/prison/hallway/engineering)
"cbn" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -35846,35 +27239,25 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"cbq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/prison/cellblock/mediumsec/north)
"cbr" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/north)
"cbs" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/prison/cellblock/mediumsec/north)
"cbt" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -35888,24 +27271,17 @@
/area/prison/cellblock/mediumsec/north)
"cbv" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/prison/cellblock/mediumsec/north)
"cbw" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/north)
"cbx" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/north)
"cby" = (
/obj/structure/window/framed/prison/cell,
@@ -35915,24 +27291,17 @@
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/north)
"cbA" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/north)
"cbB" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/north)
"cbC" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -35953,10 +27322,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/security)
"cbI" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security)
"cbR" = (
/obj/structure/machinery/door/airlock/prison/horizontal{
@@ -35964,15 +27330,11 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/cellblock/highsec/south/south)
"cbS" = (
/obj/structure/surface/table/gamblingtable,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"cbU" = (
/obj/structure/machinery/power/apc{
@@ -35983,33 +27345,22 @@
/turf/open/floor/prison,
/area/prison/recreation/medsec)
"cbV" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/recreation/medsec)
"cbW" = (
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/recreation/medsec)
"cbX" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"cbY" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/north)
"cbZ" = (
/turf/open/floor/plating,
@@ -36030,25 +27381,19 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/cellblock/mediumsec/north)
"ccc" = (
/obj/structure/machinery/shower{
pixel_y = 15
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/cellblock/mediumsec/north)
"ccd" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/cellblock/mediumsec/north)
"cce" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -36063,10 +27408,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"cch" = (
/obj/structure/machinery/light/small{
@@ -36124,10 +27466,7 @@
/area/prison/cellblock/mediumsec/south)
"ccp" = (
/obj/structure/pipes/standard/simple/hidden/yellow,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/engineering)
"ccq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -36143,10 +27482,7 @@
dir = 1
},
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/engineering)
"cct" = (
/obj/structure/pipes/vents/pump{
@@ -36173,9 +27509,7 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Engineering Hallway"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/prison/hallway/engineering)
"ccB" = (
/obj/effect/decal/warning_stripes{
@@ -36221,10 +27555,7 @@
/obj/structure/machinery/door/airlock/almayer/command/colony{
name = "Head of Security's Office"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/head)
"ccL" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
@@ -36232,10 +27563,7 @@
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/head)
"ccM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -36268,32 +27596,20 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/south/south)
"ccT" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"ccU" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/north)
"ccV" = (
/turf/closed/wall/prison,
/area/prison/cellblock/mediumsec/north)
"ccW" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"ccX" = (
/obj/effect/landmark/monkey_spawn,
@@ -36305,10 +27621,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"cde" = (
/turf/closed/wall/prison,
@@ -36316,46 +27629,31 @@
"cdf" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"cdi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/south)
"cdk" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/south)
"cdl" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/prison/cellblock/highsec/south/south)
"cdm" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/south/south)
"cdr" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -36370,18 +27668,14 @@
dir = 5
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"cdu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"cdv" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -36393,10 +27687,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/recreation/medsec)
"cdx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -36406,47 +27697,31 @@
dir = 2;
name = "Medium-Security Recreation"
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/recreation/medsec)
"cdy" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"cdz" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"cdA" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/prison/cellblock/mediumsec/north)
"cdB" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/prison/cellblock/mediumsec/north)
"cdC" = (
/obj/structure/machinery/shower{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/cellblock/mediumsec/north)
"cdE" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -36457,60 +27732,42 @@
/turf/open/floor/wood,
/area/prison/library)
"cdG" = (
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/prison/engineering)
"cdH" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/south)
"cdI" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/prison/engineering)
"cdJ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/hallway/engineering)
"cdK" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/hallway/engineering)
"cdL" = (
/obj/structure/pipes/standard/simple/hidden/yellow{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/hallway/engineering)
"cdM" = (
/obj/structure/pipes/standard/simple/hidden/yellow{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/hallway/engineering)
"cdN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/pipes/standard/simple/hidden/yellow{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/hallway/engineering)
"cdO" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -36518,87 +27775,58 @@
/obj/structure/pipes/standard/simple/hidden/yellow{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/hallway/engineering)
"cdP" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"cdQ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/prison/hallway/engineering)
"cdR" = (
/obj/structure/machinery/door/poddoor/two_tile/opened{
id = "execution"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/prison/execution)
"cdS" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/prison/execution)
"cdT" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security)
"cdU" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security)
"cdV" = (
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security)
"cdW" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security)
"cdX" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security)
"cdY" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security)
"cea" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security)
"ceb" = (
/obj/structure/surface/table/woodentable,
@@ -36627,74 +27855,54 @@
icon_state = "coil1";
name = "cable piece"
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/south)
"cen" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/south)
"ceo" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
/obj/item/ammo_casing,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/south)
"cep" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/cellblock/highsec/south/south)
"ceq" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/south)
"cer" = (
/obj/item/ammo_casing,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/south)
"ces" = (
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/south)
"cev" = (
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/security)
"cew" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"cex" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"cey" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"cez" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -36705,38 +27913,27 @@
/area/prison/recreation/medsec)
"ceA" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/prison/cellblock/mediumsec/north)
"ceB" = (
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/cellblock/mediumsec/north)
"ceC" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/north)
"ceD" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/cellblock/protective)
"ceE" = (
/obj/structure/bookcase,
@@ -36774,64 +27971,39 @@
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/south/south)
"ceK" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/engineering)
"ceL" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/south/south)
"ceM" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/engineering)
"ceN" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering)
"ceO" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hallway/engineering)
"ceP" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hallway/engineering)
"ceQ" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hallway/engineering)
"ceR" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hallway/engineering)
"ceS" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -36870,20 +28042,14 @@
dir = 2;
name = "Briefing"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/briefing)
"ceX" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 2;
name = "Briefing"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/briefing)
"ceY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -36891,10 +28057,7 @@
dir = 2;
name = "Riot Armory"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/armory/riot)
"ceZ" = (
/obj/structure/machinery/door_control{
@@ -36902,17 +28065,11 @@
name = "Riot Armory Access";
pixel_x = -24
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"cfa" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"cfb" = (
/obj/structure/machinery/door_control{
@@ -36920,10 +28077,7 @@
name = "Lethal Armory Access";
pixel_x = 24
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"cfc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -36931,10 +28085,7 @@
dir = 2;
name = "Lethal Armory"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/armory/lethal)
"cfd" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -36946,25 +28097,18 @@
/area/prison/security/head)
"cfh" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"cfi" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/recreation/medsec)
"cfk" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/prison/cellblock/protective)
"cfl" = (
/turf/open/floor/plating,
@@ -36976,25 +28120,19 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/cellblock/protective)
"cfn" = (
/obj/structure/machinery/shower{
pixel_y = 15
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/cellblock/protective)
"cfo" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/cellblock/protective)
"cfp" = (
/obj/structure/surface/table/reinforced,
@@ -37027,10 +28165,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering)
"cfu" = (
/obj/structure/window/framed/prison/reinforced,
@@ -37040,23 +28175,14 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering)
"cfw" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering)
"cfx" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering)
"cfy" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -37127,43 +28253,28 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/briefing)
"cfM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/briefing)
"cfN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/briefing)
"cfO" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/briefing)
"cfP" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/briefing)
"cfQ" = (
/obj/structure/closet/gimmick{
@@ -37173,25 +28284,17 @@
/obj/item/weapon/shield/riot,
/obj/item/clothing/head/helmet/riot,
/obj/item/clothing/suit/armor/riot,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/armory/riot)
"cfR" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 30
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/armory/riot)
"cfS" = (
/obj/structure/machinery/door/window/eastright,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"cfT" = (
/obj/structure/sink{
@@ -37204,9 +28307,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"cfU" = (
/obj/structure/machinery/light/small{
@@ -37219,50 +28320,31 @@
/obj/structure/mirror{
pixel_x = -26
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"cfV" = (
/obj/structure/machinery/door/window/westleft,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"cfW" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/south/south)
"cfX" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/armory/riot)
"cfY" = (
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"cfZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/armory/lethal)
"cga" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/armory/lethal)
"cgb" = (
/obj/structure/closet,
@@ -37282,23 +28364,14 @@
/turf/open/floor/wood,
/area/prison/security/head)
"cgh" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/highsec/south/south)
"cgi" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/prison/cellblock/highsec/south/south)
"cgj" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/highsec/south/south)
"cgk" = (
/obj/structure/bed/chair/comfy{
@@ -37326,45 +28399,30 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/north)
"cgq" = (
/obj/structure/machinery/shower{
dir = 8
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/cellblock/mediumsec/north)
"cgr" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"cgt" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull/west,
/area/prison/cellblock/protective)
"cgu" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/protective)
"cgv" = (
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/cellblock/protective)
"cgw" = (
/obj/structure/machinery/power/apc{
@@ -37372,36 +28430,23 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/prison/cellblock/protective)
"cgx" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/prison/cellblock/protective)
"cgy" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/cellblock/protective)
"cgz" = (
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/cellblock/protective)
"cgA" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/cellblock/protective)
"cgB" = (
/obj/structure/surface/table/reinforced,
@@ -37420,17 +28465,11 @@
dir = 8;
health = 80
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering)
"cgF" = (
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering)
"cgG" = (
/turf/open/floor/wood,
@@ -37547,17 +28586,13 @@
/obj/structure/machinery/shower{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"chd" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"che" = (
/obj/structure/machinery/shower{
@@ -37566,16 +28601,11 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"chf" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/armory/riot)
"chh" = (
/obj/structure/girder,
@@ -37627,26 +28657,17 @@
/obj/structure/machinery/door/poddoor/two_tile/vertical/open{
id = "riot_armory"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/armory/riot)
"chp" = (
/obj/structure/machinery/door/poddoor/two_tile/vertical/open{
id = "lethal_armory"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/armory/lethal)
"chq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/armory/lethal)
"chr" = (
/obj/structure/surface/rack,
@@ -37688,36 +28709,25 @@
"chy" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"chz" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull/west,
/area/prison/cellblock/protective)
"chA" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/cellblock/protective)
"chB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/protective)
"chC" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
@@ -37725,10 +28735,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/cellblock/protective)
"chD" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -37741,9 +28748,7 @@
dir = 2;
name = "Protective Custody Cells"
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/cellblock/protective)
"chE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -37752,10 +28757,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/cellblock/protective)
"chF" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -37771,10 +28773,7 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/cellblock/protective)
"chH" = (
/turf/closed/wall/r_wall/prison,
@@ -37787,15 +28786,10 @@
name = "Solitary Confinement";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/cellblock/protective)
"chJ" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/prison/cellblock/protective)
"chK" = (
/obj/structure/bed/chair,
@@ -37885,10 +28879,7 @@
/turf/open/floor/prison,
/area/prison/security/armory/riot)
"cif" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/armory/lethal)
"cig" = (
/obj/structure/machinery/power/apc{
@@ -37897,18 +28888,12 @@
start_charge = 0
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/armory/riot)
"cih" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security)
"cii" = (
/obj/structure/machinery/power/apc{
@@ -37917,10 +28902,7 @@
start_charge = 0
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/armory/lethal)
"cij" = (
/obj/structure/surface/rack,
@@ -37959,9 +28941,7 @@
id = "pirate_cargo";
name = "Rocinante Cargo Bay Door"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/prison/pirate)
"ciq" = (
/obj/item/ammo_casing,
@@ -37971,9 +28951,7 @@
id = "pirate_cargo";
name = "Rocinante Cargo Bay Door"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/prison/pirate)
"cir" = (
/obj/effect/landmark/corpsespawner/prison_security,
@@ -37984,9 +28962,7 @@
id = "pirate_cargo";
name = "Rocinante Cargo Bay Door"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/prison/pirate)
"cis" = (
/obj/item/ammo_casing,
@@ -37995,9 +28971,7 @@
id = "pirate_cargo";
name = "Rocinante Cargo Bay Door"
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/prison/pirate)
"ciu" = (
/obj/structure/shuttle/diagonal{
@@ -38016,104 +28990,63 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/south)
"ciz" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/north)
"ciA" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"ciB" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/prison/cellblock/mediumsec/north)
"ciC" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/prison/cellblock/mediumsec/north)
"ciD" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/prison/cellblock/mediumsec/north)
"ciE" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"ciF" = (
/obj/structure/girder/reinforced,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"ciG" = (
/obj/item/frame/table,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"ciH" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/north)
"ciI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull/west,
/area/prison/cellblock/protective)
"ciJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/prison/cellblock/protective)
"ciK" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/cellblock/protective)
"ciL" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/prison/cellblock/protective)
"ciM" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -38123,81 +29056,49 @@
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/prison/cellblock/protective)
"ciO" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/protective)
"ciP" = (
/obj/structure/machinery/camera/autoname{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/protective)
"ciQ" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/protective)
"ciR" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/protective)
"ciS" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/cellblock/protective)
"ciT" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/prison/cellblock/protective)
"ciU" = (
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/parole/protective_custody)
"ciV" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/prison/parole/protective_custody)
"ciW" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/prison/parole/protective_custody)
"ciX" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/prison/parole/protective_custody)
"cja" = (
/obj/structure/disposalpipe/segment{
@@ -38257,10 +29158,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/armory/riot)
"cjl" = (
/obj/structure/machinery/light{
@@ -38269,10 +29167,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/armory/lethal)
"cjm" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -38294,36 +29189,25 @@
name = "Toilet";
opacity = 0
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/security/head)
"cjp" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/south/south)
"cjq" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northwest,
/area/prison/cellblock/highsec/south/south)
"cjr" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/south/south)
"cjt" = (
/obj/effect/decal/warning_stripes{
@@ -38379,10 +29263,7 @@
/area/prison/pirate)
"cjA" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec_medsec)
"cjB" = (
/turf/closed/wall/prison,
@@ -38395,24 +29276,17 @@
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/north)
"cjE" = (
/obj/structure/toilet{
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/north)
"cjG" = (
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/prison/cellblock/mediumsec/north)
"cjJ" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -38424,15 +29298,11 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/north)
"cjL" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/north)
"cjN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -38440,26 +29310,19 @@
},
/obj/item/frame/table,
/obj/item/stack/rods,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/north)
"cjO" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/prison/cellblock/mediumsec/north)
"cjP" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/mediumsec/north)
"cjQ" = (
/obj/structure/window/framed/prison/reinforced,
@@ -38472,33 +29335,23 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/cellblock/protective)
"cjT" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/prison/cellblock/protective)
"cjU" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/cellblock/protective)
"cjY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/prison/cellblock/protective)
"cjZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -38508,18 +29361,13 @@
dir = 2;
name = "Protective Custody Parole Waiting"
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/parole/protective_custody)
"cka" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/parole/protective_custody)
"ckb" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -38528,10 +29376,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/parole/protective_custody)
"ckc" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/parole/protective_custody)
"ckd" = (
/obj/structure/bed/chair{
@@ -38561,9 +29406,7 @@
/area/prison/pirate)
"ckj" = (
/obj/structure/largecrate/random,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"ckk" = (
/obj/item/ammo_casing,
@@ -38578,9 +29421,7 @@
/turf/open/floor/plating,
/area/prison/pirate)
"ckn" = (
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cko" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -38593,10 +29434,7 @@
/area/prison/security/armory/riot)
"ckq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/prison/security/armory/riot)
"ckr" = (
/obj/structure/surface/rack,
@@ -38643,34 +29481,25 @@
/obj/structure/mirror{
pixel_x = -28
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/security/head)
"cky" = (
/obj/structure/toilet{
pixel_y = 4
},
/obj/structure/machinery/light/small,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/security/head)
"ckz" = (
/obj/structure/machinery/shower{
dir = 8
},
/obj/structure/machinery/door/window/westright,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/security/head)
"ckA" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/south)
"ckB" = (
/obj/structure/surface/table/reinforced,
@@ -38678,10 +29507,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec_medsec)
"ckC" = (
/obj/structure/surface/table/reinforced,
@@ -38693,41 +29519,26 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec_medsec)
"ckD" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec_medsec)
"ckE" = (
/obj/item/ammo_casing,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/south)
"ckF" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/south/south)
"ckG" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/cellblock/highsec/south/south)
"ckI" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -38736,20 +29547,14 @@
"ckJ" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/protective)
"ckK" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/protective)
"ckL" = (
/obj/structure/surface/table/reinforced,
@@ -38757,32 +29562,20 @@
pixel_x = -3;
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/protective)
"ckM" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/protective)
"ckN" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/cellblock/protective)
"ckO" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/cellblock/protective)
"ckP" = (
/obj/structure/machinery/door/airlock/prison/horizontal{
@@ -38790,36 +29583,25 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/cellblock/protective)
"ckQ" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/prison/parole/protective_custody)
"ckR" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/prison/parole/protective_custody)
"ckS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/parole/protective_custody)
"ckT" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -38874,34 +29656,22 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/south)
"cld" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/south)
"cle" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/prison/cellblock/highsec/south/south)
"clf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/south)
"clj" = (
/obj/structure/bed/chair/office/dark{
@@ -38912,55 +29682,35 @@
dir = 1;
icon_state = "exposed01-supply"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/highsec_medsec)
"clk" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec_medsec)
"cll" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/south)
"clm" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/south)
"clo" = (
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/north)
"clp" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/prison/cellblock/mediumsec/north)
"clq" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/north)
"clr" = (
/obj/structure/machinery/power/apc{
@@ -38968,28 +29718,19 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/monitoring/protective)
"cls" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/protective)
"clt" = (
/obj/structure/pipes/vents/pump/on,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/protective)
"clu" = (
/obj/structure/surface/table/reinforced,
@@ -38998,35 +29739,23 @@
pixel_y = 8
},
/obj/effect/landmark/item_pool_spawner/prison_lock/master,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/monitoring/protective)
"clv" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/protective)
"clw" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/protective)
"clx" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/prison/parole/protective_custody)
"cly" = (
/turf/closed/wall/r_wall/prison,
@@ -39035,10 +29764,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/prison/parole/protective_custody)
"clC" = (
/obj/structure/disposalpipe/segment{
@@ -39109,10 +29835,7 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/south)
"clP" = (
/obj/structure/pipes/vents/scrubber{
@@ -39121,43 +29844,29 @@
/turf/open/floor/plating,
/area/prison/disposal)
"clQ" = (
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/cellblock/highsec/south/south)
"clS" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/north,
/area/prison/security/checkpoint/highsec_medsec)
"clT" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/highsec_medsec)
"clU" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/south)
"clV" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/south)
"clW" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -39171,9 +29880,7 @@
/area/prison/cellblock/highsec/south/south)
"clY" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/north)
"cmc" = (
/obj/structure/machinery/light/small{
@@ -39182,32 +29889,23 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/highsec/south/south)
"cmd" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/monitoring/protective)
"cme" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cmf" = (
/obj/effect/landmark/good_item,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cmg" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cmh" = (
/turf/open/floor/prison,
@@ -39222,10 +29920,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/monitoring/protective)
"cmk" = (
/obj/structure/window/framed/prison/reinforced,
@@ -39238,36 +29933,26 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Protective Custody Monitoring"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/security/monitoring/protective)
"cmm" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/prison/cellblock/protective)
"cmn" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/cellblock/protective)
"cmo" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/protective)
"cmp" = (
/obj/effect/decal/cleanable/blood,
@@ -39275,15 +29960,11 @@
/area/prison/cellblock/protective)
"cmq" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/north)
"cmr" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/protective)
"cms" = (
/obj/structure/machinery/light,
@@ -39309,9 +29990,7 @@
/area/prison/disposal)
"cmw" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/briefing)
"cmx" = (
/obj/structure/window/framed/prison/reinforced,
@@ -39347,116 +30026,75 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/checkpoint/highsec_medsec)
"cmI" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/south)
"cmK" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/prison/cellblock/highsec/south/south)
"cmL" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/northeast,
/area/prison/cellblock/highsec/south/south)
"cmM" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/north)
"cmN" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/monitoring/protective)
"cmO" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/protective)
"cmP" = (
/obj/structure/machinery/light,
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/protective)
"cmQ" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/monitoring/protective)
"cmR" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/protective)
"cmS" = (
/obj/item/ammo_casing,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cmT" = (
/obj/item/weapon/gun/rifle/mar40,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cmU" = (
/obj/structure/bed,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/protective)
"cmV" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/highsec_medsec)
"cmW" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/protective)
"cmX" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/south)
"cmY" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -39491,30 +30129,18 @@
/turf/open/floor/prison,
/area/prison/execution)
"cne" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/briefing)
"cnf" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/briefing)
"cnh" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/briefing)
"cni" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/protective)
"cnj" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -39529,18 +30155,14 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/highsec_medsec)
"cnn" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/highsec_medsec)
"cnp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -39555,23 +30177,15 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/prison/cellblock/highsec/south/south)
"cnr" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/south)
"cnt" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/north)
"cnu" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -39666,10 +30280,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/execution)
"cnN" = (
/obj/effect/decal/warning_stripes{
@@ -39706,35 +30317,23 @@
/area/prison/execution)
"cnQ" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/execution)
"cnR" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/north)
"cnS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/execution)
"cnT" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/execution)
"cnU" = (
/obj/structure/machinery/light{
@@ -39743,19 +30342,14 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/briefing)
"cnV" = (
/obj/structure/bed,
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"cnX" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
@@ -39765,10 +30359,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/briefing)
"cnZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -39783,10 +30374,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/briefing)
"cod" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -39795,15 +30383,10 @@
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/east)
"coj" = (
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/briefing)
"cok" = (
/obj/structure/machinery/light/small{
@@ -39816,9 +30399,7 @@
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/east)
"com" = (
/obj/structure/machinery/conveyor,
@@ -39852,9 +30433,7 @@
/obj/item/ammo_magazine/rifle/mar40,
/obj/item/weapon/gun/rifle/mar40,
/obj/item/weapon/gun/rifle/mar40,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cor" = (
/obj/item/ammo_magazine/rifle/mar40,
@@ -39862,9 +30441,7 @@
dir = 1;
flipped = 1
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cos" = (
/obj/effect/decal/warning_stripes{
@@ -39891,32 +30468,20 @@
/turf/open/floor/plating,
/area/prison/disposal)
"cox" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/execution)
"coy" = (
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/south)
"coz" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/south)
"coA" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/south)
"coB" = (
/obj/effect/decal/warning_stripes{
@@ -39942,19 +30507,13 @@
/obj/structure/pipes/vents/scrubber{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/briefing)
"coG" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/briefing)
"coH" = (
/obj/structure/shuttle/engine/heater,
@@ -39965,16 +30524,10 @@
/turf/open/floor/plating,
/area/prison/cellblock/mediumsec/west)
"coK" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/east)
"coL" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/east)
"coM" = (
/obj/structure/machinery/door/airlock/prison{
@@ -39982,15 +30535,10 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/east)
"coN" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/east)
"coO" = (
/obj/effect/decal/warning_stripes{
@@ -40015,10 +30563,7 @@
/turf/open/floor/plating,
/area/prison/disposal)
"coS" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/briefing)
"coT" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -40042,10 +30587,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/execution)
"coX" = (
/obj/effect/decal/warning_stripes{
@@ -40077,17 +30619,13 @@
dir = 1;
flipped = 1
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cpb" = (
/obj/structure/machinery/defenses/sentry/premade/dumb{
dir = 1
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cpc" = (
/obj/item/ammo_magazine/rifle/mar40,
@@ -40112,10 +30650,7 @@
name = "Remote Door Control";
pixel_x = 24
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/execution)
"cpf" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -40125,10 +30660,7 @@
/turf/open/floor/plating,
/area/prison/security/briefing)
"cph" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/prison/cellblock/highsec/south/south)
"cpi" = (
/obj/structure/shuttle/engine/router{
@@ -40140,30 +30672,20 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/south)
"cpl" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/cellblock/highsec/south/south)
"cpm" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/west)
"cpp" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/prison/cellblock/protective)
"cpq" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/north)
"cpr" = (
/obj/structure/machinery/light/small{
@@ -40175,10 +30697,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/east)
"cpu" = (
/obj/structure/machinery/conveyor,
@@ -40229,29 +30748,20 @@
/area/prison/disposal)
"cpC" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/execution)
"cpE" = (
/obj/item/device/assembly/signaller{
code = 2;
frequency = 1449
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/execution)
"cpF" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/execution)
"cpG" = (
/obj/structure/shuttle/engine/propulsion,
@@ -40259,23 +30769,16 @@
/area/prison/pirate)
"cpH" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"cpI" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/mediumsec/east)
"cpJ" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/mediumsec/east)
"cpM" = (
/obj/structure/machinery/disposal/deliveryChute{
@@ -40323,18 +30826,14 @@
/area/prison/cellblock/mediumsec/east)
"cpV" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/east)
"cpW" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/east)
"cpX" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -40352,16 +30851,10 @@
/turf/open/floor/plating,
/area/prison/cellblock/mediumsec/west)
"cqb" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/prison/cellblock/mediumsec/east)
"cqc" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/prison/cellblock/mediumsec/east)
"cqd" = (
/obj/structure/window/framed/prison/cell,
@@ -40373,37 +30866,26 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/west)
"cqg" = (
/obj/structure/pipes/vents/scrubber,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"cqh" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/prison/cellblock/mediumsec/east)
"cqk" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"cql" = (
/obj/structure/bed/chair,
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"cqo" = (
/obj/structure/machinery/door/airlock/prison/horizontal{
@@ -40411,9 +30893,7 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/east)
"cqp" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -40423,10 +30903,7 @@
/area/prison/cellblock/mediumsec/east)
"cqq" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/east)
"cqr" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -40444,19 +30921,13 @@
/turf/open/floor/plating,
/area/prison/disposal)
"cqv" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/south)
"cqw" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/west)
"cqx" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -40493,18 +30964,14 @@
/area/prison/pirate)
"cqI" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/west)
"cqJ" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/west)
"cqK" = (
/turf/closed/wall/prison,
@@ -40516,10 +30983,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/west)
"cqM" = (
/turf/open/floor/plating,
@@ -40529,34 +30993,23 @@
/turf/open/floor/plating,
/area/prison/cellblock/mediumsec/west)
"cqO" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/east)
"cqP" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/cellblock/mediumsec/east)
"cqS" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/west)
"cqT" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/east)
"cqV" = (
/obj/effect/landmark/crap_item,
@@ -40567,19 +31020,13 @@
dir = 1
},
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/east)
"cqX" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/east)
"cqY" = (
/obj/structure/machinery/light{
@@ -40588,25 +31035,16 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/east)
"cra" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/prison/cellblock/mediumsec/east)
"crb" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/east)
"crc" = (
/obj/effect/decal/cleanable/blood,
@@ -40615,15 +31053,11 @@
"crd" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/donkpockets,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"cre" = (
/obj/item/ammo_magazine/rifle/mar40,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"crf" = (
/obj/structure/bed,
@@ -40631,15 +31065,11 @@
dir = 1
},
/obj/item/weapon/gun/rifle/mar40,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"crg" = (
/obj/structure/closet,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"crh" = (
/obj/structure/machinery/light/small{
@@ -40726,67 +31156,45 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/mediumsec/west)
"cru" = (
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/west)
"crv" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/west)
"crw" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/prison/cellblock/mediumsec/west)
"crx" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/prison/cellblock/mediumsec/west)
"cry" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/west)
"crz" = (
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/east)
"crB" = (
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/prison/cellblock/mediumsec/east)
"crD" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/prison/cellblock/mediumsec/east)
"crG" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"crH" = (
/obj/structure/bed,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"crI" = (
/obj/structure/bed,
@@ -40801,10 +31209,7 @@
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/highsec/south/south)
"crL" = (
/obj/structure/machinery/door/airlock/highsecurity{
@@ -40814,25 +31219,18 @@
/area/prison/cellblock/mediumsec/west)
"crM" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"crN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"crO" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/west)
"crP" = (
/obj/item/device/radio,
@@ -40870,72 +31268,50 @@
/turf/open/floor/plating,
/area/prison/pirate)
"crW" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/mediumsec/west)
"crX" = (
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/mediumsec/west)
"crY" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/west)
"crZ" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/east)
"csa" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/east)
"csc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/east)
"csd" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/east)
"cse" = (
/obj/structure/bed,
/obj/structure/closet/walllocker/emerglocker/west,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"csf" = (
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"csh" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -40951,10 +31327,7 @@
/turf/open/floor/plating,
/area/prison/pirate)
"csk" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/west)
"csl" = (
/turf/closed/wall/almayer/outer,
@@ -40962,26 +31335,20 @@
"csm" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/microwave,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"csn" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"cso" = (
/obj/structure/bed,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"csp" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -41039,10 +31406,7 @@
"csy" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/west)
"csz" = (
/obj/structure/machinery/door/airlock/prison{
@@ -41050,15 +31414,10 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/west)
"csA" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/west)
"csB" = (
/obj/structure/window/framed/prison/cell,
@@ -41088,10 +31447,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/mediumsec/east)
"csH" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/east)
"csJ" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -41107,42 +31463,32 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"csM" = (
/obj/structure/bed,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"csN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"csO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
/obj/item/ammo_magazine/rifle/mar40,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"csP" = (
/obj/structure/bed,
/obj/effect/landmark/survivor_spawner,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"csQ" = (
/obj/structure/surface/table/reinforced,
@@ -41155,9 +31501,7 @@
/turf/open/space,
/area/space)
"csT" = (
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"csU" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -41202,26 +31546,17 @@
/turf/open/floor/plating,
/area/prison/pirate)
"ctb" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/west)
"ctc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/west)
"ctd" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/west)
"cte" = (
/obj/structure/machinery/light{
@@ -41230,43 +31565,28 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"ctf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"ctg" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/prison/cellblock/mediumsec/south)
"ctj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"ctl" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/prison/cellblock/mediumsec/east)
"ctm" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -41280,17 +31600,11 @@
"cto" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/prison/cellblock/mediumsec/south)
"ctp" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/prison/cellblock/mediumsec/south)
"ctq" = (
/obj/item/weapon/gun/rifle/mar40,
@@ -41301,27 +31615,19 @@
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/west)
"cts" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/monitoring/medsec/central)
"ctu" = (
/obj/structure/toilet{
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/east)
"cty" = (
/obj/structure/machinery/medical_pod/sleeper,
@@ -41354,37 +31660,25 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/west)
"ctF" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/west)
"ctG" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/monitoring/medsec/central)
"ctH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/monitoring/medsec/central)
"ctI" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -41393,19 +31687,13 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Security Booth"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/medsec/central)
"ctJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/east)
"ctK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -41414,9 +31702,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"ctL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -41441,9 +31727,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"ctP" = (
/obj/structure/closet/walllocker/emerglocker/north,
@@ -41457,9 +31741,7 @@
dir = 4;
flipped = 1
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"ctQ" = (
/obj/effect/landmark/corpsespawner/prison_security,
@@ -41468,81 +31750,53 @@
/turf/open/floor/plating,
/area/prison/cellblock/mediumsec/west)
"ctR" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/west)
"ctS" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"ctT" = (
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"ctU" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/prison/cellblock/mediumsec/south)
"ctV" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/prison/cellblock/mediumsec/south)
"ctW" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/mediumsec/south)
"ctX" = (
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/prison/cellblock/mediumsec/south)
"ctY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/prison/cellblock/mediumsec/south)
"ctZ" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"cub" = (
/turf/closed/wall/r_wall/prison,
/area/prison/security/monitoring/medsec/central)
"cuc" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/monitoring/medsec/central)
"cud" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/monitoring/medsec/central)
"cue" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/east)
"cug" = (
/obj/structure/toilet{
@@ -41551,9 +31805,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/pirate)
"cuh" = (
/obj/structure/sink{
@@ -41562,17 +31814,13 @@
/obj/structure/mirror{
pixel_y = 28
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/pirate)
"cui" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "Toilet"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/prison/pirate)
"cuj" = (
/obj/item/stack/sheet/metal{
@@ -41592,18 +31840,14 @@
dir = 2;
name = "Rocinante Secondary Airlock"
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"cum" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
/obj/structure/largecrate/random,
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"cun" = (
/turf/closed/wall/prison,
@@ -41613,19 +31857,13 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/south)
"cup" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"cuq" = (
/obj/structure/pipes/vents/pump{
@@ -41634,27 +31872,19 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/south)
"cur" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/prison/cellblock/mediumsec/south)
"cus" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/prison/cellblock/mediumsec/south)
"cut" = (
/obj/structure/pipes/vents/pump{
@@ -41664,28 +31894,19 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"cuu" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/south)
"cuv" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"cuw" = (
/obj/structure/pipes/vents/pump{
@@ -41695,9 +31916,7 @@
dir = 4;
flipped = 1
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"cuy" = (
/obj/structure/machinery/door/airlock/prison{
@@ -41705,16 +31924,11 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/north)
"cuz" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/west)
"cuA" = (
/obj/structure/largecrate/random,
@@ -41725,10 +31939,7 @@
/area/prison/cellblock/mediumsec/west)
"cuE" = (
/obj/structure/pipes/vents/scrubber,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/monitoring/medsec/central)
"cuF" = (
/obj/structure/machinery/power/apc{
@@ -41736,10 +31947,7 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/monitoring/medsec/central)
"cuI" = (
/obj/structure/machinery/door/airlock/prison{
@@ -41747,9 +31955,7 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/cellblock/highsec/south/south)
"cuJ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -41769,9 +31975,7 @@
/area/prison/cellblock/mediumsec/west)
"cuL" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cuM" = (
/obj/structure/machinery/light/small{
@@ -41780,24 +31984,16 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/mediumsec/south)
"cuN" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/south)
"cuO" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/west)
"cuP" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/south)
"cuR" = (
/obj/structure/window/framed/prison/cell,
@@ -41807,72 +32003,47 @@
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/south)
"cuT" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cuU" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cuV" = (
/obj/structure/toilet{
dir = 8;
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/south)
"cuZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/south)
"cvc" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"cvd" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/south)
"cvf" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Security Booth"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/medsec/central)
"cvh" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/monitoring/medsec/central)
"cvj" = (
/obj/structure/monorail{
@@ -41891,9 +32062,7 @@
/obj/structure/pipes/standard/tank/air{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cvm" = (
/obj/structure/pipes/standard/manifold/visible/cyan{
@@ -41928,9 +32097,7 @@
/area/prison/pirate)
"cvq" = (
/obj/structure/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cvt" = (
/obj/structure/machinery/light/small{
@@ -41951,46 +32118,31 @@
/obj/structure/pipes/standard/tank/carbon_dioxide{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cvw" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/west)
"cvx" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/monitoring/medsec/central)
"cvy" = (
/obj/structure/surface/rack,
/obj/item/clothing/head/soft/ferret,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/monitoring/medsec/central)
"cvA" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cvB" = (
/obj/structure/bed,
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cvD" = (
/obj/structure/pipes/portables_connector{
@@ -42022,9 +32174,7 @@
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/east)
"cvH" = (
/obj/structure/pipes/standard/manifold/visible/yellow{
@@ -42099,10 +32249,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/south)
"cvS" = (
/obj/structure/pipes/standard/simple/visible/yellow{
@@ -42129,19 +32276,13 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/south)
"cvW" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"cvX" = (
/obj/structure/pipes/binary/circulator{
@@ -42193,10 +32334,7 @@
/turf/open/floor/plating,
/area/prison/pirate)
"cwd" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/prison/cellblock/mediumsec/west)
"cwg" = (
/obj/structure/pipes/standard/simple/visible/yellow{
@@ -42222,9 +32360,7 @@
pixel_x = -12
},
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cwl" = (
/obj/structure/pipes/standard/simple/insulated{
@@ -42256,36 +32392,23 @@
/turf/closed/wall/r_wall/prison_unmeltable,
/area/prison/cellblock/mediumsec/west)
"cwr" = (
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/west)
"cws" = (
/obj/effect/landmark/hunter_primary,
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/prison/cellblock/mediumsec/south)
"cwt" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/prison/cellblock/mediumsec/south)
"cwu" = (
/obj/structure/bed,
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/east)
"cwv" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/prison/cellblock/mediumsec/east)
"cwx" = (
/obj/structure/pipes/standard/simple/insulated{
@@ -42311,10 +32434,7 @@
/area/prison/pirate)
"cwA" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/south)
"cwB" = (
/obj/structure/pipes/binary/pump{
@@ -42347,28 +32467,19 @@
/turf/open/floor/plating,
/area/prison/pirate)
"cwG" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/prison/cellblock/mediumsec/west)
"cwJ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"cwK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/prison/cellblock/mediumsec/south)
"cwL" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -42385,9 +32496,7 @@
dir = 4
},
/obj/structure/girder/reinforced,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"cwQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -42397,15 +32506,10 @@
dir = 8;
flipped = 1
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"cwT" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/prison/cellblock/mediumsec/east)
"cwU" = (
/obj/structure/shuttle/diagonal{
@@ -42418,9 +32522,7 @@
/obj/structure/pipes/standard/tank/phoron{
dir = 1
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cwX" = (
/obj/structure/pipes/standard/simple/insulated,
@@ -42432,27 +32534,20 @@
unacidable = 1;
unslashable = 1
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"cxa" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/prison/cellblock/mediumsec/south)
"cxc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"cxd" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"cxg" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -42467,9 +32562,7 @@
/obj/structure/machinery/door/airlock/highsecurity{
name = "Solitary Confinement"
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/south)
"cxl" = (
/obj/structure/shuttle/engine/heater,
@@ -42493,23 +32586,17 @@
"cxq" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cxr" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/east)
"cxu" = (
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cxx" = (
/obj/structure/shuttle/engine/router{
@@ -42544,27 +32631,18 @@
unacidable = 1;
use_power = 0
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/prison/cellblock/mediumsec/south)
"cxE" = (
/obj/effect/landmark/monkey_spawn,
/turf/open/floor/plating,
/area/prison/cellblock/mediumsec/south)
"cxF" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"cxG" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/prison/cellblock/mediumsec/south)
"cxI" = (
/obj/structure/pipes/vents/pump/on,
@@ -42601,34 +32679,23 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/south)
"cxP" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cxT" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"cxU" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"cxV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -42641,17 +32708,12 @@
unacidable = 1;
use_power = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"cxX" = (
/obj/structure/bed,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cya" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -42664,9 +32726,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cyc" = (
/obj/structure/machinery/power/apc{
@@ -42674,79 +32734,55 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"cyd" = (
/obj/structure/pipes/vents/scrubber,
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cyf" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cyj" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/prison/cellblock/mediumsec/south)
"cyk" = (
/obj/item/frame/table,
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"cyn" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/prison/cellblock/mediumsec/south)
"cyo" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/prison/cellblock/mediumsec/south)
"cyp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"cyq" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"cyr" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/prison/cellblock/mediumsec/south)
"cyw" = (
/obj/structure/machinery/disposal/deliveryChute{
@@ -42761,18 +32797,13 @@
dir = 4
},
/obj/item/frame/table,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"cyz" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/prison/cellblock/mediumsec/south)
"cyB" = (
/obj/structure/machinery/light{
@@ -42781,10 +32812,7 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/south)
"cyD" = (
/turf/closed/wall/r_wall/prison,
@@ -42795,10 +32823,7 @@
name = "Medium-Security Monitoring"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/medsec/south)
"cyF" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -42806,16 +32831,11 @@
dir = 2;
name = "Medium-Security Monitoring"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/medsec/south)
"cyG" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/prison/cellblock/mediumsec/south)
"cyI" = (
/obj/structure/machinery/light{
@@ -42824,19 +32844,13 @@
/obj/structure/pipes/vents/scrubber{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"cyJ" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/prison/cellblock/mediumsec/south)
"cyK" = (
/obj/structure/monorail{
@@ -42849,23 +32863,14 @@
"cyL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"cyM" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/mediumsec/south)
"cyN" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/mediumsec/south)
"cyO" = (
/turf/open/floor/plating,
@@ -42874,17 +32879,11 @@
/obj/structure/sink{
pixel_y = 23
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/mediumsec/south)
"cyQ" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/monitoring/medsec/south)
"cyS" = (
/obj/structure/monorail{
@@ -42911,70 +32910,44 @@
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/medsec/south)
"cyV" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/medsec/south)
"cyW" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/medsec/south)
"cyX" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/medsec/south)
"cyY" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/monitoring/medsec/south)
"cyZ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"cza" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/monitoring/medsec/south)
"czb" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/mediumsec/south)
"czc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/prison/cellblock/mediumsec/south)
"czd" = (
/obj/structure/disposaloutlet,
@@ -42988,18 +32961,13 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/prison/cellblock/mediumsec/south)
"czf" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/south)
"czg" = (
/obj/structure/machinery/light/small{
@@ -43018,28 +32986,17 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"czj" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/monitoring/medsec/south)
"czk" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/prison/cellblock/mediumsec/south)
"czl" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/prison/cellblock/mediumsec/south)
"czo" = (
/turf/open/floor/prison,
@@ -43060,18 +33017,13 @@
/area/prison/security/monitoring/medsec/south)
"czs" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/security/monitoring/medsec/south)
"czt" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"czu" = (
/obj/structure/machinery/light/small{
@@ -43081,16 +33033,11 @@
/area/prison/cellblock/mediumsec/south)
"czv" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"czw" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/south)
"czx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -43122,28 +33069,18 @@
/area/prison/security/monitoring/medsec/south)
"czD" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/monitoring/medsec/south)
"czG" = (
-/turf/open/floor/prison{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2,
/area/prison/security/monitoring/medsec/south)
"czH" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/medsec/south)
"czI" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/monitoring/medsec/south)
"czJ" = (
/obj/structure/bed/chair/comfy{
@@ -43154,25 +33091,16 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/monitoring/medsec/south)
"czK" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/prison/darkredcorners2/west,
/area/prison/security/monitoring/medsec/south)
"czL" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/monitoring/medsec/south)
"czM" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -43182,19 +33110,13 @@
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/monitoring/medsec/south)
"czO" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/monitoring/medsec/south)
"czZ" = (
/obj/structure/machinery/door/airlock/prison/horizontal{
@@ -43202,9 +33124,7 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/south)
"cAc" = (
/obj/structure/window/framed/prison/reinforced,
@@ -43244,9 +33164,7 @@
icon_state = "door_open";
opacity = 0
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/south)
"cBB" = (
/obj/structure/surface/table/reinforced,
@@ -43254,24 +33172,18 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/shuttle{
- icon_state = "floor7"
- },
+/turf/open/shuttle/black,
/area/prison/pirate)
"cBD" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"cBY" = (
/obj/structure/barricade/handrail/type_b{
dir = 4
},
/obj/structure/barricade/handrail/type_b,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"cDl" = (
/obj/effect/decal/warning_stripes{
@@ -43280,17 +33192,11 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/prison/hanger/research)
"cMW" = (
/obj/item/weapon/gun/rifle/mar40,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/prison/cellblock/protective)
"cNc" = (
/obj/structure/machinery/light/small,
@@ -43298,18 +33204,12 @@
/area/prison/cellblock/mediumsec/east)
"cOP" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"cPc" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/condiment/saltshaker,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"cPH" = (
/obj/structure/machinery/light{
@@ -43323,19 +33223,13 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/canteen)
"cSA" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"cWg" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -43344,10 +33238,7 @@
/turf/open/floor/prison,
/area/prison/canteen)
"cWx" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"cWW" = (
/obj/structure/largecrate/random/case/small,
@@ -43355,26 +33246,17 @@
/area/prison/security/checkpoint/maxsec)
"cXK" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/monorail/west)
"cYf" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"cYv" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/RD)
"cYR" = (
/obj/structure/machinery/power/apc{
@@ -43382,10 +33264,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/prison/security/monitoring/lowsec/ne)
"cZY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -43398,10 +33277,7 @@
/turf/closed/wall/prison,
/area/prison/cellblock/lowsec/ne)
"dcN" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/storage/medsec)
"deI" = (
/turf/closed/shuttle/elevator{
@@ -43410,10 +33286,7 @@
/area/prison/hallway/central/west)
"deQ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/prison/hallway/central/east)
"dgl" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -43453,10 +33326,7 @@
icon_state = "poster1";
pixel_y = 32
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/south)
"dnc" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
@@ -43467,27 +33337,20 @@
dir = 2;
name = "Protective Custody Cells"
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/north)
"dni" = (
/obj/structure/bed,
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/north)
"dnt" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/prison/cellblock/mediumsec/north)
"dou" = (
/turf/open/floor/plating,
@@ -43498,10 +33361,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/storage/vip)
"dqf" = (
/obj/effect/landmark/xeno_hive_spawn,
@@ -43519,9 +33379,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"dyt" = (
/obj/structure/largecrate/random/barrel/green,
@@ -43538,19 +33396,13 @@
/area/prison/residential/north)
"dzH" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/canteen)
"dAz" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/monitoring/highsec)
"dBI" = (
/obj/structure/largecrate/random,
@@ -43560,10 +33412,7 @@
"dCC" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/baguette,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"dDv" = (
/obj/structure/machinery/light{
@@ -43575,34 +33424,22 @@
/obj/structure/bed/chair/office{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"dEm" = (
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/cellblock/highsec/south/south)
"dHr" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/north,
/area/prison/hanger/research)
"dIT" = (
/obj/structure/barricade/handrail/wire{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/prison/telecomms)
"dJf" = (
/obj/structure/sink{
@@ -43610,9 +33447,7 @@
pixel_x = -12
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/east)
"dMw" = (
/obj/structure/surface/rack,
@@ -43632,10 +33467,7 @@
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/prison/hanger/research)
"dRQ" = (
/obj/structure/machinery/alarm/almayer{
@@ -43652,9 +33484,7 @@
/area/prison/maintenance/residential/nw)
"dTa" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"dUw" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -43685,10 +33515,7 @@
/obj/structure/bed/chair/office{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/nw)
"eeO" = (
/obj/effect/decal/warning_stripes{
@@ -43700,10 +33527,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"efk" = (
/obj/structure/surface/table/reinforced,
@@ -43730,9 +33554,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/security/checkpoint/vip)
"eoP" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -43786,10 +33608,7 @@
dir = 2;
name = "Low-Security"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/east)
"ezq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -43800,9 +33619,7 @@
dir = 2;
name = "High-Security Monitoring"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/highsec/south/south)
"eEq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -43821,20 +33638,14 @@
/area/prison/residential/north)
"eHA" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"eKr" = (
/turf/open/floor/plating,
/area/prison/storage/medsec)
"eKD" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/prison/cellblock/mediumsec/east)
"eKH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -43853,10 +33664,7 @@
/turf/open/shuttle/elevator/grating,
/area/prison/hallway/central/west)
"eMW" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/prison/telecomms)
"eNJ" = (
/obj/structure/window/framed/prison/reinforced,
@@ -43867,10 +33675,7 @@
dir = 4
},
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/north)
"ePO" = (
/obj/structure/reagent_dispensers/watertank,
@@ -43880,20 +33685,14 @@
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"eRY" = (
/turf/closed/wall/r_wall/prison,
/area/prison/cellblock/mediumsec/north)
"eTo" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/south)
"eTt" = (
/obj/structure/machinery/light,
@@ -43907,27 +33706,19 @@
/area/prison/parole/protective_custody)
"eWi" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"eWk" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/north/south)
"eXA" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/mineral_door/resin,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/north)
"eYV" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -43940,9 +33731,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/cellblock/mediumsec/north)
"faW" = (
/obj/structure/girder/displaced,
@@ -43964,9 +33753,7 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "Research Dorms"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/quarters/research)
"fhc" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -43979,9 +33766,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/prison/cellblock/protective)
"fkx" = (
/obj/structure/machinery/light,
@@ -43995,18 +33780,13 @@
/area/prison/maintenance/staff_research)
"foY" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/se)
"fqG" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/telecomms)
"ftk" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -44035,10 +33815,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/lowsec/se)
"fxZ" = (
/obj/structure/machinery/door/airlock/prison{
@@ -44047,18 +33824,13 @@
opacity = 0
},
/obj/structure/curtain/open,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/cellblock/highsec/north/south)
"fyi" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"fCr" = (
/obj/structure/machinery/light/small{
@@ -44068,10 +33840,7 @@
/area/prison/maintenance/residential/sw)
"fEZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/cellblock/mediumsec/east)
"fFq" = (
/obj/structure/window/framed/prison/cell,
@@ -44081,10 +33850,7 @@
"fGf" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research/secret/testing)
"fHI" = (
/obj/structure/machinery/light{
@@ -44094,15 +33860,10 @@
/area/prison/cellblock/mediumsec/east)
"fLH" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"fLR" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/south)
"fLT" = (
/obj/structure/window/framed/prison/reinforced,
@@ -44116,16 +33877,11 @@
unacidable = 1;
use_power = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"fMU" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/telecomms)
"fNt" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -44134,39 +33890,26 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/se)
"fOl" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/window/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/cellblock/highsec/south/south)
"fPR" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/cellblock/highsec/south/south)
"fQu" = (
/obj/vehicle/train/cargo/engine,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"fRC" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/mineral_door/resin,
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/prison/cellblock/highsec/south/north)
"fUs" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -44186,10 +33929,7 @@
/turf/open/floor/plating,
/area/prison/maintenance/residential/nw)
"gbI" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/security/checkpoint/highsec_medsec)
"gbV" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -44199,9 +33939,7 @@
unacidable = 1;
use_power = 0
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/east)
"gcr" = (
/obj/structure/disposalpipe/segment{
@@ -44226,10 +33964,7 @@
/area/prison/cellblock/mediumsec/south)
"gfl" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/prison/hallway/central/east)
"ghp" = (
/obj/structure/disposalpipe/segment{
@@ -44251,10 +33986,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/prison/research/secret/bioengineering)
"gne" = (
/obj/effect/decal/warning_stripes{
@@ -44263,26 +33995,18 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"gpm" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"gpx" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/good_item,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/telecomms)
"grW" = (
/turf/closed/shuttle/elevator/button/freight,
@@ -44294,10 +34018,7 @@
/turf/open/floor/prison,
/area/prison/visitation)
"gtK" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/prison/telecomms)
"gvb" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -44309,18 +34030,13 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Medium-Security Storage"
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/storage/medsec)
"gvj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"gwI" = (
/obj/effect/decal/warning_stripes{
@@ -44329,18 +34045,12 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/prison/hanger/research)
"gxV" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/boiledrice,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"gAa" = (
/obj/structure/machinery/light/small{
@@ -44360,10 +34070,7 @@
/area/prison/hallway/central/south)
"gBz" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"gBM" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
@@ -44374,10 +34081,7 @@
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/telecomms)
"gFN" = (
/obj/structure/surface/table/almayer,
@@ -44396,20 +34100,14 @@
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/telecomms)
"gIv" = (
/obj/structure/stairs/perspective{
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/canteen)
"gIz" = (
/obj/structure/machinery/vending/cola,
@@ -44419,9 +34117,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"gJz" = (
/obj/structure/bed/chair/comfy{
@@ -44454,10 +34150,7 @@
},
/obj/effect/decal/siding/wood_siding,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"gML" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -44469,18 +34162,13 @@
pixel_x = 4;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/north/south)
"gOD" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"gOT" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -44489,35 +34177,24 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/prison/cellblock/protective)
"gPF" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/prison/cellblock/mediumsec/west)
"gPR" = (
/turf/closed/wall/prison,
/area/prison/maintenance/staff_research)
"gPU" = (
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/west)
"gQP" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"gRU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -44560,10 +34237,7 @@
use_power = 0
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/prison/cellblock/mediumsec/east)
"hdp" = (
/obj/structure/largecrate/random/barrel/yellow,
@@ -44595,10 +34269,7 @@
"hjN" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"hlO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -44607,19 +34278,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/south)
"hmc" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/monorail/west)
"hmQ" = (
/obj/structure/surface/table/reinforced,
@@ -44627,10 +34292,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/central)
"hmU" = (
/obj/structure/machinery/light/small,
@@ -44640,10 +34302,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/east)
"hnD" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -44665,10 +34324,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/security/checkpoint/highsec/n)
"hqX" = (
/obj/structure/machinery/light{
@@ -44691,17 +34347,11 @@
unacidable = 1;
use_power = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/east)
"hyX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/prison/storage/medsec)
"hzb" = (
/obj/item/stack/cable_coil/cut{
@@ -44718,29 +34368,20 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/hanger/research)
"hBf" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/mineral_door/resin,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/north)
"hCM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/prison/chapel)
"hEK" = (
/obj/structure/machinery/light/small,
@@ -44749,48 +34390,31 @@
"hEL" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/cheeseburger,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"hFD" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/north,
/area/prison/maintenance/residential/sw)
"hGm" = (
/obj/structure/sign/poster{
icon_state = "poster8";
pixel_y = -32
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"hHy" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/south)
"hHP" = (
/obj/structure/window/framed/prison/reinforced,
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/staff)
"hKn" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/prison/cellblock/lowsec/nw)
"hKp" = (
/obj/effect/alien/weeds/node,
@@ -44806,16 +34430,11 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/cellblock/highsec/south/north)
"hMP" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/highsec/south/north)
"hND" = (
/obj/structure/disposalpipe/segment{
@@ -44829,56 +34448,37 @@
/area/prison/hallway/central/north)
"hNI" = (
/obj/structure/bed/chair/office,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"hNY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/structure/mineral_door/resin,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/north)
"hOy" = (
/obj/structure/surface/table/reinforced{
dir = 8;
flipped = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"hQm" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/east)
"hQS" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/chapel)
"hQW" = (
/obj/item/tool/mop,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"hRg" = (
/obj/structure/surface/table/gamblingtable,
/obj/item/toy/deck/uno,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"hRZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -44886,9 +34486,7 @@
/area/prison/recreation/staff)
"hSK" = (
/obj/structure/mineral_door/resin,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/north)
"hTe" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -44902,9 +34500,7 @@
dir = 8
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"hUO" = (
/obj/structure/machinery/power/smes/buildable{
@@ -44914,27 +34510,18 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/engineering)
"hWd" = (
/obj/effect/landmark/monkey_spawn,
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/hallway/central/south)
"hXj" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/prison/cellblock/mediumsec/north)
"hXJ" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/canteen)
"hXW" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -44945,10 +34532,7 @@
unacidable = 1;
use_power = 0
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"hYq" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/freight,
@@ -44959,10 +34543,7 @@
flipped = 1
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"ibG" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -44973,9 +34554,7 @@
/obj/item/ammo_magazine/pistol/b92fs,
/obj/item/ammo_magazine/pistol/b92fs,
/obj/item/weapon/gun/pistol/b92fs,
-/turf/open/floor/prison{
- icon_state = "whitepurplefull"
- },
+/turf/open/floor/prison/whitepurplefull,
/area/prison/research/secret)
"ibJ" = (
/obj/structure/largecrate/random,
@@ -44986,16 +34565,11 @@
icon_state = "wood_siding12"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/north)
"ifS" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"igb" = (
/obj/structure/largecrate/random/barrel/blue,
@@ -45003,17 +34577,12 @@
/area/prison/cellblock/mediumsec/west)
"igB" = (
/obj/structure/girder,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"igJ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/s)
"iif" = (
/obj/effect/landmark/hunter_primary,
@@ -45021,16 +34590,10 @@
/area/prison/hallway/central/south)
"iiI" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/prison/cellblock/mediumsec/east)
"iob" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/west)
"ioD" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -45040,10 +34603,7 @@
unacidable = 1;
use_power = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/north)
"iph" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -45053,19 +34613,13 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/east)
"iqo" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/canteen)
"irh" = (
/obj/effect/decal/siding/wood_siding{
@@ -45088,18 +34642,13 @@
/area/prison/cellblock/highsec/south/south)
"isr" = (
/obj/structure/barricade/handrail/wire,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/telecomms)
"iuH" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/west)
"ixb" = (
/obj/structure/pipes/vents/pump{
@@ -45114,18 +34663,13 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"ixF" = (
/obj/structure/surface/rack,
/obj/item/reagent_container/glass/bucket,
/obj/item/reagent_container/glass/bucket,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"izT" = (
/obj/structure/window/framed/prison/reinforced,
@@ -45136,10 +34680,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/security/checkpoint/vip)
"iBN" = (
/obj/structure/machinery/light/small{
@@ -45152,10 +34693,7 @@
req_one_access_txt = "19;200"
},
/obj/structure/barricade/handrail/wire,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/telecomms)
"iDV" = (
/obj/item/trash/chips,
@@ -45163,9 +34701,7 @@
/area/prison/maintenance/residential/access/south)
"iEp" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/telecomms)
"iGo" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -45184,40 +34720,28 @@
/turf/open/floor/plating,
/area/prison/maintenance/residential/nw)
"iHC" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/prison/telecomms)
"iIg" = (
/obj/structure/kitchenspike,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"iIA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/structure/girder,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"iLz" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/central)
"iND" = (
/obj/structure/bed/chair/office,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/security/checkpoint/highsec/n)
"iOc" = (
/obj/structure/machinery/light{
@@ -45239,10 +34763,7 @@
/turf/open/floor/plating,
/area/prison/maintenance/residential/sw)
"iSi" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"iVr" = (
/obj/structure/bed/chair/comfy,
@@ -45253,32 +34774,22 @@
/turf/open/floor/prison,
/area/prison/recreation/medsec)
"iWG" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/prison/cellblock/mediumsec/west)
"iWJ" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"iWK" = (
/obj/structure/barricade/handrail/wire,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/prison/telecomms)
"iYD" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"jan" = (
/obj/structure/pipes/vents/pump{
@@ -45291,18 +34802,13 @@
/area/prison/residential/south)
"jaQ" = (
/obj/structure/window/framed/prison/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"jbq" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research)
"jdx" = (
/obj/structure/sign/safety/medical,
@@ -45314,19 +34820,13 @@
flipped = 1
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"jfe" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/hanger/research)
"jfp" = (
/turf/closed/wall/prison,
@@ -45347,10 +34847,7 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/cellblock/lowsec/nw)
"jmk" = (
/obj/structure/largecrate/random/barrel/red,
@@ -45361,19 +34858,13 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"jmY" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"jno" = (
/obj/structure/disposalpipe/segment{
@@ -45392,10 +34883,7 @@
pixel_y = 3
},
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"joJ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -45404,19 +34892,13 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hangar_storage/main)
"jpt" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/south)
"jpy" = (
/obj/structure/disposalpipe/segment{
@@ -45449,32 +34931,21 @@
/turf/open/floor/plating,
/area/prison/maintenance/residential/nw)
"jsm" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/prison/hanger/research)
"jtk" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/north)
"juy" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/mediumsec/north)
"juA" = (
/obj/item/trash/burger,
/turf/open/floor/plating,
/area/prison/maintenance/residential/access/south)
"jvk" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/hallway/central/east)
"jxi" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -45493,18 +34964,12 @@
/turf/open/floor/prison,
/area/prison/security/monitoring/highsec)
"jDr" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/hanger/research)
"jFe" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/west)
"jFi" = (
/obj/effect/decal/warning_stripes{
@@ -45514,20 +34979,14 @@
icon_state = "SE-out"
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"jFs" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/highsec/south/north)
"jFQ" = (
/obj/structure/disposalpipe/segment{
@@ -45542,51 +35001,34 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"jJE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/northeast,
/area/prison/chapel)
"jKf" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/plating,
/area/prison/maintenance/staff_research)
"jMq" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/prison/telecomms)
"jNo" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/carrotfries,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"jNC" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/storage/medsec)
"jOj" = (
/obj/structure/surface/table/reinforced,
/obj/item/tank/nitrogen,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"jRi" = (
/obj/structure/machinery/light{
@@ -45606,9 +35048,7 @@
/area/prison/cellblock/mediumsec/east)
"jSv" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/prison/cellblock/lowsec/nw)
"jTC" = (
/obj/structure/sink{
@@ -45616,16 +35056,10 @@
pixel_x = -12
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/south)
"jTN" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/cellblock/highsec/south/north)
"jUC" = (
/turf/closed/wall/r_wall/prison,
@@ -45641,10 +35075,7 @@
/area/prison/residential/north)
"jWj" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"kag" = (
/obj/structure/largecrate/random/barrel/white,
@@ -45656,10 +35087,7 @@
pixel_x = 1;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"kdj" = (
/obj/structure/machinery/light{
@@ -45670,10 +35098,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"kdm" = (
/obj/structure/bed/chair{
@@ -45682,55 +35107,35 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"kdI" = (
/obj/structure/mineral_door/resin,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/prison/cellblock/highsec/south/north)
"kep" = (
/obj/structure/surface/rack,
/obj/item/reagent_container/food/snacks/boiledspagetti,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"keX" = (
/obj/effect/landmark/corpsespawner/prison_security,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/prison/hallway/central/south)
"kfj" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/prison/storage/medsec)
"kgy" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/highsec/south/north)
"kik" = (
/obj/structure/surface/table/gamblingtable,
/obj/item/weapon/gun/pistol/b92fs,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"kjh" = (
/obj/structure/machinery/light/small{
@@ -45739,58 +35144,39 @@
/turf/open/floor/plating,
/area/prison/cellblock/mediumsec/west)
"kkA" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/prison/hanger/research)
"kmh" = (
/obj/item/trash/kepler,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"knf" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
dir = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/west)
"kog" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"koj" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"kpc" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/north)
"kqo" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"krJ" = (
/obj/item/reagent_container/glass/bucket,
@@ -45811,16 +35197,12 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/east)
"kue" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/north)
"kyS" = (
/obj/structure/pipes/vents/pump/on,
@@ -45829,10 +35211,7 @@
"kzE" = (
/obj/effect/decal/cleanable/blood,
/obj/item/weapon/gun/rifle/m16,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"kzI" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -45842,10 +35221,7 @@
/area/prison/security/checkpoint/vip)
"kzZ" = (
/obj/structure/window/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/cellblock/highsec/south/south)
"kCz" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -45858,10 +35234,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/hanger/research)
"kDz" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -45872,10 +35245,7 @@
"kEk" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/highsec/south/north)
"kGq" = (
/turf/open/floor/prison,
@@ -45888,26 +35258,18 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/se)
"kJw" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/cellblock/protective)
"kLB" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "Chapel"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/chapel)
"kRq" = (
/obj/structure/machinery/light/small{
@@ -45937,19 +35299,13 @@
/area/prison/security/monitoring/highsec)
"ldp" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/cellblock/highsec/south/south)
"ldw" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/west)
"ldD" = (
/obj/effect/decal/siding/wood_siding{
@@ -45958,9 +35314,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/south)
"ldR" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -45969,10 +35323,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/cellblock/lowsec/se)
"leU" = (
/obj/structure/surface/table,
@@ -45988,10 +35339,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/recreation/highsec/s)
"liM" = (
/obj/structure/machinery/light/small,
@@ -46003,38 +35351,23 @@
"ljn" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/research)
"lks" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/boiledspagetti,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"llz" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/north,
/area/prison/security/checkpoint/highsec_medsec)
"llD" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/west,
/area/prison/cellblock/mediumsec/east)
"lmt" = (
/obj/structure/surface/table/reinforced,
/obj/item/trash/barcardine,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull/west,
/area/prison/cellblock/protective)
"lmA" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -46056,16 +35389,10 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/prison/cellblock/mediumsec/east)
"ltv" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/prison/storage/medsec)
"lxE" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -46073,17 +35400,11 @@
/area/prison/maintenance/residential/sw)
"lyj" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"lyJ" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/medbay/foyer)
"lzy" = (
/obj/structure/window/framed/prison/reinforced,
@@ -46099,10 +35420,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/northeast,
/area/prison/chapel)
"lBC" = (
/obj/structure/disposalpipe/segment{
@@ -46112,10 +35430,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/prison/cellblock/protective)
"lCQ" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -46129,19 +35444,14 @@
name = "Classified Research Shutters"
},
/obj/item/tool/crowbar/red,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/research/secret)
"lGA" = (
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/lowsec/ne)
"lHc" = (
/obj/effect/landmark/monkey_spawn,
@@ -46151,10 +35461,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"lIs" = (
/turf/closed/wall/prison,
@@ -46171,19 +35478,13 @@
/area/prison/telecomms)
"lME" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec_medsec)
"lMU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/security/checkpoint/highsec_medsec)
"lQK" = (
/obj/item/trash/c_tube,
@@ -46201,10 +35502,7 @@
pixel_y = -32
},
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"lVe" = (
/obj/structure/window/reinforced{
@@ -46214,16 +35512,11 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"lVw" = (
/obj/item/trash/cheesie,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"lWT" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -46239,10 +35532,7 @@
/turf/open/floor/plating,
/area/prison/hanger/main)
"mbv" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/prison/cellblock/mediumsec/east)
"mbG" = (
/obj/structure/largecrate/random,
@@ -46255,9 +35545,7 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Security Booth"
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/security/checkpoint/highsec_medsec)
"mca" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -46266,9 +35554,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"mdH" = (
/obj/structure/janitorialcart,
@@ -46302,9 +35588,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/north)
"mpg" = (
/obj/structure/closet/gmcloset,
@@ -46314,10 +35598,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"mpA" = (
/obj/structure/bed/chair,
@@ -46334,16 +35615,10 @@
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/store)
"mxM" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/prison/cellblock/mediumsec/east)
"myY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -46362,10 +35637,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"mAT" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -46378,9 +35650,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/north)
"mCC" = (
/obj/structure/surface/table/reinforced{
@@ -46388,17 +35658,12 @@
flipped = 1
},
/obj/effect/landmark/crap_item,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"mDi" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/prison/cellblock/mediumsec/south)
"mFF" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -46417,18 +35682,13 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "Security Booth"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/highsec/north/south)
"mJH" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"mLi" = (
/obj/structure/machinery/door/airlock/prison{
@@ -46439,15 +35699,10 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/north)
"mLG" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/prison/hallway/central/south)
"mMO" = (
/obj/structure/machinery/light{
@@ -46467,10 +35722,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/prison/cellblock/protective)
"mOL" = (
/obj/structure/bed/chair/comfy{
@@ -46510,25 +35762,17 @@
/area/prison/residential/south)
"mSQ" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/north)
"mVf" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/prison/hanger/research)
"mVq" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"mWT" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -46538,17 +35782,11 @@
/area/prison/hallway/central/west)
"mWZ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"mYM" = (
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"mZt" = (
/obj/structure/largecrate/random,
@@ -46566,19 +35804,13 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/east)
"ndk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/prison/cellblock/mediumsec/south)
"ndE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -46592,52 +35824,35 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"ndW" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding12"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/south)
"niK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/south)
"niY" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/s)
"nkB" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/hanger/research)
"nmr" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/telecomms)
"non" = (
/obj/structure/machinery/washing_machine{
@@ -46647,16 +35862,11 @@
desc = "The double washing machine in common spacer folklore signifies doom to all who gaze upon it.";
pixel_y = 15
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"npb" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"nsx" = (
/turf/closed/wall/prison,
@@ -46707,18 +35917,13 @@
icon_state = "poster14";
pixel_x = -32
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/south)
"nGQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/highsec/south/north)
"nGR" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -46738,10 +35943,7 @@
dir = 4
},
/obj/structure/machinery/door/window/brigdoor/southright,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/cellblock/highsec/south/south)
"nJm" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -46760,18 +35962,14 @@
/area/prison/maintenance/residential/sw)
"nKm" = (
/obj/structure/closet/jcloset,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"nLr" = (
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding12"
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/south)
"nLC" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -46792,9 +35990,7 @@
"nNc" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"nPN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -46808,10 +36004,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/security/checkpoint/highsec/s)
"nSK" = (
/obj/structure/window/reinforced{
@@ -46819,39 +36012,26 @@
health = 80
},
/obj/structure/machinery/gibber,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/research)
"nTn" = (
/obj/structure/reagent_dispensers/water_cooler/stacks,
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/highsec)
"nUH" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"nVg" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/prison/hallway/central/east)
"nWl" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Low-Security"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/south)
"nWJ" = (
/turf/open/floor/prison,
@@ -46864,49 +36044,33 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "South High-Security Recreation"
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/recreation/highsec/s)
"nXN" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/telecomms)
"nYP" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/research/secret/containment)
"nZP" = (
/obj/structure/bed/chair/office{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"obV" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"ocS" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"odp" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -46933,10 +36097,7 @@
"old" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/south)
"omn" = (
/obj/structure/surface/table/reinforced,
@@ -46945,33 +36106,22 @@
pixel_x = 1;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"omu" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/prison/cellblock/mediumsec/north)
"ona" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/maintenance/residential/access/south)
"onp" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"onA" = (
/obj/structure/machinery/light{
@@ -46992,33 +36142,21 @@
/area/prison/residential/south)
"oqC" = (
/obj/structure/window/framed/prison,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/prison/monorail/west)
"oqL" = (
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/cellblock/highsec/south/south)
"osO" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/prison/cellblock/mediumsec/north)
"oud" = (
/obj/structure/mineral_door/resin,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/north)
"ovc" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -47033,34 +36171,22 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/west)
"oxT" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/prison/storage/medsec)
"oyQ" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"oyZ" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/holding/holding1)
"oAs" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -47075,10 +36201,7 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"oDn" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -47099,19 +36222,14 @@
"oHo" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/appletart,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"oHs" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/highsec/south/north)
"oIj" = (
/obj/effect/decal/warning_stripes{
@@ -47120,33 +36238,22 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/hanger/research)
"oIw" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/toilet/security)
"oJi" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"oLL" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/lowsec/ne)
"oNe" = (
/obj/effect/decal/warning_stripes{
@@ -47155,20 +36262,14 @@
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/hanger/research)
"oNp" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/telecomms)
"oNG" = (
/obj/effect/decal/warning_stripes{
@@ -47177,9 +36278,7 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"oOJ" = (
/obj/structure/pipes/vents/scrubber{
@@ -47191,25 +36290,17 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/prison/cellblock/mediumsec/north)
"oTg" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"oTO" = (
/obj/item/storage/bible/booze,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/central)
"oUR" = (
/obj/structure/machinery/light,
@@ -47233,17 +36324,11 @@
dir = 1
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"oZV" = (
/obj/structure/window/framed/prison,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"paf" = (
/obj/structure/disposalpipe/segment{
@@ -47263,10 +36348,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southeast,
/area/prison/cellblock/highsec/south/south)
"pcP" = (
/obj/structure/window/framed/prison,
@@ -47291,10 +36373,7 @@
"pft" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/telecomms)
"pgg" = (
/obj/structure/machinery/autolathe/full,
@@ -47318,10 +36397,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"pnT" = (
/obj/structure/surface/rack,
@@ -47340,18 +36416,12 @@
pixel_x = 1;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"pob" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/highsec/north/south)
"ppb" = (
/obj/structure/bed/chair/comfy{
@@ -47360,10 +36430,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"pph" = (
/obj/structure/machinery/light/small,
@@ -47380,10 +36447,7 @@
/area/prison/cellblock/highsec/north/north)
"pqi" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"prq" = (
/obj/structure/bed/chair/comfy{
@@ -47398,17 +36462,11 @@
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/hallway/entrance)
"prF" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/south)
"ptn" = (
/obj/item/device/radio/headset,
@@ -47427,38 +36485,23 @@
/area/prison/cellblock/mediumsec/west)
"pvG" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/yard)
"pvI" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/cellblock/highsec/south/north)
"pvJ" = (
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"pwl" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/prison/hallway/central/south)
"pxa" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/south)
"pzJ" = (
/turf/open/floor/plating,
@@ -47477,34 +36520,23 @@
/obj/structure/bed/chair/office{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"pFp" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hangar_storage/main)
"pGf" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/security/checkpoint/maxsec)
"pGv" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/prison/telecomms)
"pHT" = (
/obj/structure/pipes/vents/pump{
@@ -47522,10 +36554,7 @@
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"pPB" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -47536,9 +36565,7 @@
dir = 4
},
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/north)
"pSO" = (
/obj/item/shard,
@@ -47546,16 +36573,11 @@
/turf/open/floor/plating,
/area/prison/cellblock/mediumsec/east)
"pVz" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/prison/telecomms)
"pXk" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/hanger/research)
"pXC" = (
/obj/effect/decal/cleanable/blood,
@@ -47568,17 +36590,12 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/east)
"qai" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom,
/area/prison/maintenance/residential/nw)
"qbj" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -47586,15 +36603,10 @@
/area/prison/hallway/central/south)
"qbV" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 10
- },
+/turf/open/floor/prison/southwest,
/area/prison/cellblock/highsec/south/south)
"qco" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/telecomms)
"qdT" = (
/obj/structure/surface/table/reinforced,
@@ -47603,10 +36615,7 @@
pixel_y = 7
},
/obj/effect/landmark/item_pool_spawner/prison_lock,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/maxsec)
"qgb" = (
/obj/structure/stairs/perspective{
@@ -47614,10 +36623,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/hanger/research)
"qjI" = (
/obj/structure/window/framed/prison/reinforced,
@@ -47633,20 +36639,14 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/residential/central)
"qla" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/south)
"qlh" = (
/obj/effect/decal/warning_stripes{
@@ -47655,19 +36655,13 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/hanger/research)
"qqm" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"qqn" = (
/obj/structure/disposalpipe/segment{
@@ -47688,38 +36682,26 @@
/area/prison/residential/south)
"qwg" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/prison/hanger/research)
"qxY" = (
/obj/structure/stairs/perspective{
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/security/checkpoint/highsec/s)
"qzW" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"qEB" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
name = "Infirmary"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/medbay/foyer)
"qEE" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -47734,10 +36716,7 @@
unacidable = 1;
use_power = 0
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/prison/cellblock/mediumsec/south)
"qIb" = (
/obj/structure/window/framed/prison,
@@ -47745,17 +36724,11 @@
/area/prison/cellblock/highsec/north/south)
"qIg" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/prison/cellblock/mediumsec/east)
"qKo" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"qLI" = (
/turf/open/floor/grass,
@@ -47765,16 +36738,10 @@
dir = 8
},
/obj/structure/machinery/door/window/brigdoor/northleft,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/cellblock/highsec/south/south)
"qNw" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/cellblock/highsec/south/north)
"qNS" = (
/obj/structure/pipes/vents/scrubber{
@@ -47792,9 +36759,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"qXa" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -47803,17 +36768,12 @@
"qYn" = (
/obj/structure/surface/table/reinforced,
/obj/item/tank/air,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"rba" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/chawanmushi,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"rdD" = (
/obj/structure/bed/chair/comfy{
@@ -47842,22 +36802,15 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Medium-Security Storage"
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/prison/storage/medsec)
"rjx" = (
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/protective)
"rmb" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
/obj/structure/medical_supply_link/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/prison/medbay)
"rpB" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -47871,10 +36824,7 @@
network = list("PRISON")
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/monitoring/medsec/central)
"rqT" = (
/obj/structure/bed/chair/office/dark{
@@ -47885,17 +36835,12 @@
"rrG" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/east,
/area/prison/cellblock/mediumsec/east)
"rsG" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"rtS" = (
/obj/structure/closet,
@@ -47904,10 +36849,7 @@
/area/prison/quarters/research)
"ruu" = (
/obj/structure/window/framed/prison,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"ruY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -47928,50 +36870,34 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"rxG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/south)
"rDG" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/prison/hallway/east)
"rDL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/west)
"rFO" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/prison/canteen)
"rKA" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/telecomms)
"rLO" = (
/obj/structure/reagent_dispensers/watertank,
@@ -47983,10 +36909,7 @@
flipped = 1
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"rOL" = (
/obj/structure/barricade/handrail/type_b{
@@ -47994,9 +36917,7 @@
},
/obj/structure/surface/rack,
/obj/item/tank/air,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"rQD" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -48011,10 +36932,7 @@
/area/prison/telecomms)
"rSg" = (
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/mediumsec/west)
"rSp" = (
/obj/structure/window_frame/colony/reinforced,
@@ -48025,9 +36943,7 @@
/turf/open/floor/plating,
/area/prison/maintenance/residential/nw)
"rXA" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/quarters/research)
"rYg" = (
/obj/effect/decal/warning_stripes{
@@ -48036,18 +36952,13 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/prison/hanger/research)
"rZk" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/south)
"saD" = (
/obj/structure/machinery/power/apc{
@@ -48055,9 +36966,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/prison/telecomms)
"sdq" = (
/obj/structure/machinery/light{
@@ -48066,9 +36975,7 @@
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"seq" = (
/obj/structure/machinery/light{
@@ -48080,10 +36987,7 @@
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"smr" = (
/obj/structure/surface/rack,
@@ -48097,10 +37001,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/prison/cellblock/mediumsec/north)
"sqS" = (
/obj/structure/machinery/light{
@@ -48111,10 +37012,7 @@
"srr" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/north)
"ssB" = (
/obj/structure/window_frame/colony/reinforced,
@@ -48122,106 +37020,71 @@
/area/prison/cellblock/mediumsec/north)
"ssJ" = (
/obj/structure/window/framed/prison/reinforced,
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/research)
"ssZ" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/prison/cellblock/highsec/south/south)
"swk" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southeast,
/area/prison/cellblock/highsec/north/south)
"sxx" = (
/obj/structure/machinery/light,
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"sye" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/east)
"sBF" = (
/obj/structure/stairs/perspective{
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/storage/vip)
"sBQ" = (
/turf/open/floor/prison,
/area/prison/security/checkpoint/highsec_medsec)
"sEd" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"sGc" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/prison/cellblock/mediumsec/south)
"sGB" = (
/obj/structure/bed/chair,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/north/north)
"sHe" = (
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/highsec/south/south)
"sHs" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/drinks/bottle/vodka,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"sIA" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/prison/hanger/research)
"sLI" = (
/obj/structure/lattice,
@@ -48239,10 +37102,7 @@
/obj/structure/machinery/alarm/almayer{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"sOl" = (
/obj/structure/largecrate/random/barrel/green,
@@ -48264,10 +37124,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northeast,
/area/prison/security/checkpoint/maxsec)
"sTy" = (
/turf/closed/wall/resin,
@@ -48300,10 +37157,7 @@
"tcn" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/condiment/peppermill,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"tcY" = (
/obj/structure/pipes/vents/scrubber,
@@ -48320,10 +37174,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"teg" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -48331,10 +37182,7 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/protective)
"tfd" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -48349,19 +37197,13 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"thZ" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "Medium-Security Storage"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/storage/medsec)
"tie" = (
/obj/structure/bed/chair/wood/normal{
@@ -48370,20 +37212,14 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/prison/chapel)
"tjl" = (
/obj/item/tool/screwdriver,
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"tjU" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -48394,17 +37230,11 @@
"tjV" = (
/obj/structure/surface/table/gamblingtable,
/obj/item/spacecash/c500,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"tmn" = (
/obj/structure/bed,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/prison/cellblock/highsec/north/south)
"toL" = (
/obj/structure/reagent_dispensers/fueltank/gas/methane,
@@ -48420,10 +37250,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/hallway/central/west)
"tuQ" = (
/obj/structure/pipes/vents/pump{
@@ -48437,10 +37264,7 @@
"tvF" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/candiedapple,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"tvM" = (
/obj/structure/closet/crate/freezer,
@@ -48453,9 +37277,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/prison/kitchen)
"twg" = (
/obj/structure/stairs/perspective{
@@ -48463,10 +37285,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/security/checkpoint/highsec/n)
"tzm" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -48475,9 +37294,7 @@
/obj/effect/decal/siding/wood_siding{
icon_state = "wood_siding12"
},
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/north)
"tzJ" = (
/obj/effect/decal/warning_stripes{
@@ -48486,17 +37303,12 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/prison/hanger/research)
"tAi" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"tAI" = (
/obj/effect/landmark/railgun_camera_pos,
@@ -48510,19 +37322,13 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/security/checkpoint/maxsec)
"tFq" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/alien/weeds/node,
/obj/structure/mineral_door/resin,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/south/north)
"tFH" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -48533,15 +37339,10 @@
"tGy" = (
/obj/structure/machinery/light,
/obj/item/paper/janitor,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"tGY" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/quarters/research)
"tHo" = (
/obj/effect/decal/warning_stripes{
@@ -48550,9 +37351,7 @@
/obj/structure/machinery/landinglight/ds2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"tIh" = (
/obj/structure/bed/chair/comfy{
@@ -48574,9 +37373,7 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/prison/hanger/research)
"tNi" = (
/obj/structure/machinery/light{
@@ -48585,10 +37382,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/prison/cellblock/highsec/south/south)
"tOK" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -48603,9 +37397,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/checkpoint/highsec_medsec)
"tTf" = (
/obj/structure/janitorialcart,
@@ -48613,17 +37405,11 @@
pixel_x = -4;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"tWR" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/prison/cellblock/highsec/north/north)
"tXB" = (
/obj/structure/machinery/power/apc{
@@ -48634,15 +37420,10 @@
/area/prison/cellblock/mediumsec/east)
"uaB" = (
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"uaW" = (
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/prison/hanger/research)
"ucU" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -48650,38 +37431,26 @@
"udc" = (
/obj/structure/surface/table/reinforced,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"udR" = (
/obj/item/tool/wrench,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/mediumsec/east)
"ufM" = (
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/recreation/highsec/s)
"ugC" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/prison/cellblock/highsec/south/north)
"uhE" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/cellblock/mediumsec/east)
"umM" = (
/obj/structure/machinery/light/small,
@@ -48689,9 +37458,7 @@
/area/prison/maintenance/residential/nw)
"unw" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/medbay/foyer)
"unO" = (
/obj/structure/pipes/vents/pump{
@@ -48711,10 +37478,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/security/checkpoint/highsec_medsec)
"uqH" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -48727,16 +37491,10 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/cellblock/highsec/south/south)
"utI" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/prison/telecomms)
"uuw" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -48748,10 +37506,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"uvb" = (
/obj/effect/decal/cleanable/dirt,
@@ -48762,18 +37517,13 @@
/turf/open/floor/plating,
/area/prison/maintenance/residential/sw)
"uvK" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/cellblock/highsec/north/south)
"uwB" = (
/obj/structure/surface/rack,
/obj/item/storage/bag/trash,
/obj/item/storage/bag/trash,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/hallway/central/west)
"uyi" = (
/obj/structure/surface/table/reinforced,
@@ -48781,16 +37531,10 @@
pixel_x = 1;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"uBB" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/hangar_storage/main)
"uEn" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -48798,9 +37542,7 @@
icon_state = "door_open";
name = "Staff Restrooms"
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/toilet/staff)
"uEJ" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -48819,9 +37561,7 @@
},
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor{
- icon_state = "asteroid"
- },
+/turf/open/floor/asteroid,
/area/prison/residential/central)
"uIp" = (
/obj/structure/largecrate/random/secure,
@@ -48830,10 +37570,7 @@
"uJC" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/monorail/west)
"uKd" = (
/obj/structure/machinery/power/apc{
@@ -48841,27 +37578,18 @@
pixel_x = 28;
start_charge = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"uKU" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/drinks/bottle/rum,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"uNi" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/prison/quarters/staff)
"uOB" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -48869,19 +37597,14 @@
"uOF" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/prison/cellblock/protective)
"uOY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"uQt" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -48889,10 +37612,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/prison/security/checkpoint/vip)
"uSv" = (
/obj/structure/bed/chair/comfy{
@@ -48905,19 +37625,14 @@
pixel_x = 1;
pixel_y = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"uSE" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/prison{
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked,
/area/prison/medbay/foyer)
"uTm" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -48932,9 +37647,7 @@
dir = 1;
flipped = 1
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/prison/pirate)
"uUO" = (
/obj/structure/disposalpipe/segment{
@@ -48948,19 +37661,14 @@
/area/prison/hallway/central/south)
"uVR" = (
/obj/structure/reagent_dispensers/water_cooler/stacks,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/s)
"uWf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/obj/item/ammo_magazine/rifle/m16,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/prison/cellblock/mediumsec/north)
"uXn" = (
/obj/structure/machinery/light/small{
@@ -48972,9 +37680,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/mediumsec/north)
"uZm" = (
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/north)
"vaW" = (
/obj/item/stack/tile/plasteel{
@@ -49005,10 +37711,7 @@
"veb" = (
/obj/structure/surface/table/reinforced,
/obj/item/card/id/visa,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull/west,
/area/prison/cellblock/protective)
"vfe" = (
/obj/structure/bed/chair{
@@ -49027,10 +37730,7 @@
req_one_access_txt = "19;200"
},
/obj/structure/barricade/handrail/wire,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/prison/telecomms)
"vix" = (
/turf/closed/wall/prison,
@@ -49039,10 +37739,7 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/cellblock/mediumsec/north)
"vmX" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -49062,10 +37759,7 @@
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/highsec/north/south)
"vpA" = (
/obj/structure/surface/table/almayer,
@@ -49073,10 +37767,7 @@
/turf/open/floor/plating,
/area/prison/maintenance/residential/access/south)
"vsk" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/east)
"vvf" = (
/obj/structure/machinery/light/small,
@@ -49087,16 +37778,11 @@
dir = 2;
name = "Protective Custody Cells"
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/protective)
"vxy" = (
/obj/structure/reagent_dispensers/water_cooler/stacks,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/checkpoint/highsec/n)
"vAs" = (
/obj/effect/decal/cleanable/blood,
@@ -49108,10 +37794,7 @@
/area/prison/maintenance/residential/ne)
"vAT" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/prison/telecomms)
"vCU" = (
/obj/structure/bed/chair/comfy{
@@ -49126,26 +37809,17 @@
use_power = 0
},
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/cellblock/mediumsec/east)
"vEi" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/prison/darkpurplecorners2/west,
/area/prison/hanger/research)
"vGg" = (
/obj/structure/largecrate/random,
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"vHX" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -49154,16 +37828,10 @@
/obj/structure/pipes/vents/scrubber{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/prison/cellblock/mediumsec/west)
"vKV" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/northwest,
/area/prison/security/checkpoint/highsec_medsec)
"vKZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -49172,9 +37840,7 @@
dir = 2;
name = "Security Booth"
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/prison/security/checkpoint/highsec/n)
"vPr" = (
/obj/structure/machinery/light{
@@ -49190,10 +37856,7 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/north)
"vTZ" = (
/obj/structure/surface/table/reinforced,
@@ -49201,10 +37864,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/residential/central)
"vUy" = (
/obj/structure/machinery/door/airlock/prison{
@@ -49215,17 +37875,13 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/east)
"vWd" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2,
/area/prison/security/monitoring/highsec)
"vXR" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -49234,10 +37890,7 @@
"wav" = (
/obj/structure/bed/chair,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"wdr" = (
/obj/effect/decal/warning_stripes{
@@ -49255,10 +37908,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/lowsec/se)
"wju" = (
/obj/structure/pipes/vents/pump{
@@ -49294,17 +37944,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/prison/cellblock/lowsec/se)
"wvT" = (
/obj/item/trash/barcardine,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/cellblock/lowsec/nw)
"wwc" = (
/obj/structure/window/reinforced{
@@ -49313,27 +37957,18 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/cellblock/highsec/south/south)
"wyo" = (
/obj/item/trash/cigbutt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/residential/north)
"wyT" = (
/obj/structure/pipes/vents/scrubber,
/turf/open/floor/plating,
/area/prison/maintenance/residential/sw)
"wEQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/prison/cellblock/protective)
"wFn" = (
/obj/structure/surface/table/reinforced,
@@ -49344,10 +37979,7 @@
pixel_x = 1;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"wFT" = (
/obj/structure/bed/chair/comfy,
@@ -49368,34 +38000,22 @@
/area/prison/hallway/entrance)
"wJl" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/hallway/central/east)
"wKt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/medbay/foyer)
"wNk" = (
/obj/structure/machinery/computer/secure_data,
/obj/structure/surface/table/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/lowsec/ne)
"wPV" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/south)
"wRI" = (
/obj/structure/bed,
@@ -49428,17 +38048,11 @@
/area/prison/residential/north)
"wUP" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/visitation)
"wVs" = (
/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/north)
"wWk" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -49455,18 +38069,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/east)
"wZK" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/item/frame/table/wood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/prison/cellblock/lowsec/nw)
"xaT" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
@@ -49480,10 +38088,7 @@
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/monorail/west)
"xii" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -49492,10 +38097,7 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/prison/cellblock/mediumsec/south)
"xiB" = (
/obj/structure/largecrate/random,
@@ -49509,19 +38111,14 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/prison/telecomms)
"xjn" = (
/obj/item/stack/cable_coil,
/turf/open/floor/plating,
/area/prison/maintenance/staff_research)
"xkp" = (
-/turf/open/floor/prison{
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull,
/area/prison/quarters/research)
"xld" = (
/obj/structure/bed/chair/comfy{
@@ -49531,10 +38128,7 @@
/turf/open/floor/carpet,
/area/prison/residential/north)
"xoT" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/hallway/central/west)
"xsY" = (
/obj/structure/machinery/light/small{
@@ -49549,10 +38143,7 @@
flipped = 1
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/yard)
"xwh" = (
/obj/effect/decal/siding/wood_siding{
@@ -49570,27 +38161,20 @@
dir = 2;
name = "High-Security Monitoring"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/prison/cellblock/highsec/south/south)
"xzA" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/prison/cellblock/mediumsec/west)
"xCv" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
},
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/prison/residential/south)
"xCG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -49603,10 +38187,7 @@
dir = 8
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/prison/darkred2/southwest,
/area/prison/cellblock/highsec/north/south)
"xEy" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -49616,18 +38197,12 @@
/area/prison/parole/protective_custody)
"xIA" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/canteen)
"xKa" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/bloodsoup,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"xKO" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -49661,10 +38236,7 @@
/area/prison/residential/north)
"xUp" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "rampbottom"
- },
+/turf/open/floor/prison/rampbottom/west,
/area/prison/hallway/east)
"xVE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -49690,10 +38262,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/prison/hallway/central/west)
"xYR" = (
/obj/structure/surface/rack,
@@ -49704,10 +38273,7 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean"
- },
+/turf/open/floor/prison/bright_clean/southwest,
/area/prison/canteen)
"yaY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -49716,20 +38282,14 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/prison/cellblock/mediumsec/south)
"ybB" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/prison/hallway/central/south)
"ycb" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/prison/medbay/foyer)
"ydW" = (
/obj/structure/surface/table/reinforced,
@@ -49737,10 +38297,7 @@
pixel_x = -3;
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2/southwest,
/area/prison/security/monitoring/lowsec/ne)
"yeE" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -49753,9 +38310,7 @@
/turf/open/floor/plating,
/area/prison/hallway/central/east)
"yiA" = (
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/prison/cellblock/mediumsec/east)
"ykG" = (
/obj/structure/machinery/light/small{
diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm
index fcbdcc4fdc33..f66743b6388e 100644
--- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm
@@ -17,10 +17,7 @@
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"aar" = (
/obj/structure/machinery/power/apc,
@@ -47,10 +44,7 @@
/area/fiorina/tumor/ice_lab)
"abG" = (
/obj/item/trash/chunk,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"abJ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -64,15 +58,10 @@
name = "xeno_hive_spawn"
},
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"ach" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/servers)
"aco" = (
/obj/structure/surface/table/reinforced/prison,
@@ -97,59 +86,38 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/telecomm/lz1_cargo)
"adq" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"adE" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/tumor/aux_engi)
"aeb" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/fiorina/tumor/servers)
"aej" = (
/obj/item/weapon/gun/rifle/m16,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "damaged3"
- },
+/turf/open/floor/prison/damaged3,
/area/fiorina/station/security)
"aeo" = (
/obj/structure/monorail{
name = "launch track"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_tram)
"aeF" = (
/obj/effect/decal/cleanable/blood/splatter{
icon_state = "gibup1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"aeI" = (
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"aeS" = (
/obj/structure/machinery/vending/cigarette/colony,
@@ -157,23 +125,13 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"afk" = (
-/turf/open/floor{
- desc = "A sophisticated device that captures and converts light from the system's star into energy for the station.";
- icon_state = "solarpanel";
- name = "solarpanel"
- },
+/turf/open/floor/solarpanel,
/area/fiorina/oob)
"afq" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/fiorina/station/medbay)
"afO" = (
/obj/structure/bed/sofa/vert/grey/bot{
@@ -191,25 +149,19 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"aga" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/pills/lowchance,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"agh" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/cameras{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"agi" = (
/turf/closed/wall/mineral/bone_resin,
@@ -259,20 +211,14 @@
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"ahm" = (
/obj/effect/landmark/objective_landmark/close,
/turf/open/floor/prison,
/area/fiorina/station/flight_deck)
"aic" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/fiorina/station/telecomm/lz1_tram)
"aif" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -283,18 +229,13 @@
/area/fiorina/station/medbay)
"aik" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/tumor/aux_engi)
"aiv" = (
/obj/structure/bed{
icon_state = "abed"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/fiorina/station/research_cells)
"aje" = (
/obj/structure/stairs/perspective{
@@ -319,10 +260,7 @@
pixel_x = 5;
pixel_y = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"ajx" = (
/obj/structure/platform/kutjevo/smooth,
@@ -331,10 +269,7 @@
"ajP" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/pizzabox/margherita,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"ajZ" = (
/obj/effect/landmark{
@@ -342,21 +277,14 @@
name = "xeno_hive_spawn"
},
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/tumor/aux_engi)
"akp" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/fiorina/station/chapel)
"akM" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"akW" = (
/obj/structure/bed/chair/janicart,
@@ -368,43 +296,28 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/telecomm/lz1_tram)
"alC" = (
/obj/structure/inflatable/popped,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"alK" = (
/obj/item/trash/cigbutt/cigarbutt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/flight_deck)
"alP" = (
/obj/effect/spawner/random/gun/rifle/midchance,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"alX" = (
/obj/item/paper/crumpled/bloody,
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"alY" = (
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/prison/platingdmg1,
/area/fiorina/station/security)
"amd" = (
/obj/effect/decal/hefa_cult_decals/d96,
@@ -418,10 +331,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/tumor/civres)
"amn" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/fiorina/station/research_cells)
"amF" = (
/turf/closed/wall/r_wall/prison,
@@ -430,10 +340,7 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/fiorina/station/research_cells)
"ane" = (
/obj/item/weapon/unathiknife{
@@ -446,9 +353,7 @@
/obj/structure/closet,
/obj/item/restraint/handcuffs,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/lowsec)
"anm" = (
/obj/structure/surface/table/reinforced/prison,
@@ -476,10 +381,7 @@
/area/fiorina/station/medbay)
"ann" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"anq" = (
/turf/closed/shuttle/ert{
@@ -495,9 +397,7 @@
/area/fiorina/station/park)
"any" = (
/obj/item/stack/cable_coil/random,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"anJ" = (
/obj/structure/cable/heavyduty{
@@ -522,9 +422,7 @@
"anT" = (
/obj/item/reagent_container/food/snacks/meat,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue,
/area/fiorina/station/botany)
"anW" = (
/obj/structure/machinery/light/double/blue{
@@ -532,52 +430,38 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/fiorina/station/chapel)
"aoo" = (
/obj/structure/reagent_dispensers/water_cooler/stacks,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"aoZ" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/reagent_dispensers/water_cooler/stacks{
pixel_y = 11
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"ape" = (
/obj/structure/bed/chair{
dir = 4;
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/fiorina/maintenance)
"apf" = (
/turf/open/floor/plating/prison,
/area/fiorina/station/civres_blue)
"apu" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/fiorina/station/power_ring)
"apw" = (
/turf/open/auto_turf/sand/layer1,
/area/fiorina/tumor/civres)
"apO" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"aqj" = (
/obj/structure/stairs/perspective{
@@ -590,17 +474,12 @@
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"aqw" = (
/obj/item/stool,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"arl" = (
/obj/effect/landmark/objective_landmark/close,
@@ -616,10 +495,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/southwest,
/area/fiorina/station/botany)
"arG" = (
/obj/structure/machinery/light/double/blue{
@@ -627,10 +503,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/tumor/aux_engi)
"arT" = (
/obj/structure/stairs/perspective{
@@ -639,10 +512,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/power_ring)
"arW" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/oob)
"asf" = (
/obj/structure/largecrate/random/barrel/white,
@@ -650,10 +520,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"ask" = (
/obj/structure/machinery/light/double/blue{
@@ -662,9 +529,7 @@
pixel_y = 13
},
/obj/structure/largecrate/random/case,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"aso" = (
/obj/structure/inflatable/popped/door,
@@ -677,10 +542,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/telecomm/lz2_maint)
"asz" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/central_ring)
"asE" = (
/obj/structure/platform{
@@ -695,18 +557,13 @@
/area/fiorina/station/transit_hub)
"asI" = (
/obj/item/toy/deck,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"atd" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"atl" = (
/obj/structure/platform{
@@ -735,23 +592,15 @@
/area/fiorina/oob)
"atw" = (
/obj/item/reagent_container/food/snacks/eat_bar,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"atY" = (
/obj/structure/bedsheetbin,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/fiorina/station/lowsec)
"auj" = (
/obj/item/frame/rack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"auQ" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -764,16 +613,12 @@
dir = 4;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"auS" = (
/obj/structure/closet/wardrobe/orange,
/obj/item/clothing/under/color/orange,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"avc" = (
/obj/structure/stairs/perspective{
@@ -804,10 +649,7 @@
/obj/structure/machinery/iv_drip{
pixel_y = 19
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"axb" = (
/obj/item/clothing/suit/storage/marine/specialist,
@@ -841,35 +683,24 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"ayo" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/security)
"ayB" = (
/obj/structure/bed/chair{
dir = 4;
pixel_x = -5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/fiorina/station/medbay)
"ayG" = (
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/disco)
"ayH" = (
/obj/structure/surface/table/reinforced/prison,
@@ -877,17 +708,12 @@
pixel_x = 5;
pixel_y = 22
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/flight_deck)
"ayW" = (
/obj/item/explosive/grenade/incendiary/molotov,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"ayX" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -904,9 +730,7 @@
dir = 4;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"azv" = (
/obj/structure/girder,
@@ -945,24 +769,17 @@
/turf/open/floor/prison,
/area/fiorina/station/power_ring)
"aAA" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/fiorina/station/transit_hub)
"aAJ" = (
/obj/structure/bed/sofa/vert/grey,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"aBb" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"aBs" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -975,9 +792,7 @@
dir = 8;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"aBD" = (
/obj/structure/platform,
@@ -987,9 +802,7 @@
/obj/structure/platform_decoration{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"aBJ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1015,43 +828,29 @@
/area/fiorina/station/central_ring)
"aDc" = (
/obj/structure/reagent_dispensers/water_cooler/stacks,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"aDx" = (
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/central_ring)
"aEi" = (
/obj/structure/machinery/door/poddoor/shutters/almayer,
/turf/open/floor/plating/prison,
/area/fiorina/tumor/civres)
"aEB" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/security/wardens)
"aEC" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"aEG" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"aEQ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"aFp" = (
/obj/structure/machinery/defenses/tesla_coil{
@@ -1065,18 +864,13 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/telecomm/lz1_cargo)
"aFQ" = (
/obj/effect/decal/cleanable/blood/splatter{
icon_state = "gibmid3"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"aFZ" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -1091,9 +885,7 @@
pixel_x = 11;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"aGR" = (
/obj/structure/largecrate/random,
@@ -1117,48 +909,33 @@
/area/fiorina/station/civres_blue)
"aHJ" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"aHK" = (
/obj/item/ammo_casing{
icon_state = "casing_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"aId" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/hypospray,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"aIm" = (
/obj/structure/barricade/deployable{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"aIB" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"aJk" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"aJo" = (
/obj/structure/bed/chair{
@@ -1170,16 +947,10 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"aJv" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southeast,
/area/fiorina/tumor/aux_engi)
"aJX" = (
/obj/structure/bed/chair{
@@ -1198,10 +969,7 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/station/medbay)
"aKA" = (
/obj/structure/platform_decoration/kutjevo{
@@ -1214,9 +982,7 @@
network = list("omega")
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"aLp" = (
/obj/structure/prop/invuln{
@@ -1233,9 +999,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"aLC" = (
/obj/structure/sink{
@@ -1243,10 +1007,7 @@
pixel_x = -12
},
/obj/effect/spawner/random/pills/lowchance,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/station/research_cells)
"aLT" = (
/obj/item/trash/uscm_mre,
@@ -1257,34 +1018,25 @@
dir = 1;
layer = 2.7
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"aMg" = (
/turf/closed/wall/r_wall/prison,
/area/fiorina/tumor/ice_lab)
"aMr" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"aMu" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/fiorina/tumor/ice_lab)
"aME" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"aMM" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -1303,9 +1055,7 @@
/obj/structure/sign/nosmoking_1{
pixel_y = 30
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"aNk" = (
/obj/structure/machinery/light/double/blue{
@@ -1326,9 +1076,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"aOc" = (
/turf/closed/shuttle/ert{
@@ -1337,9 +1085,7 @@
},
/area/fiorina/tumor/ship)
"aOm" = (
-/turf/open/floor/prison{
- icon_state = "panelscorched"
- },
+/turf/open/floor/prison/panelscorched,
/area/fiorina/tumor/servers)
"aOC" = (
/obj/structure/bed/chair/comfy{
@@ -1362,17 +1108,13 @@
pixel_x = -7;
pixel_y = 11
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"aOT" = (
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"aPd" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -1381,9 +1123,7 @@
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"aPr" = (
/obj/structure/stairs/perspective{
@@ -1414,25 +1154,18 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"aQH" = (
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/effect/landmark/nightmare{
insert_tag = "yardbasketball"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"aQR" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"aQW" = (
/obj/structure/barricade/sandbags{
@@ -1446,10 +1179,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"aRk" = (
/obj/structure/cargo_container/grant/left,
@@ -1480,10 +1210,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"aSz" = (
/turf/closed/wall/r_wall/prison,
@@ -1505,10 +1232,7 @@
/area/fiorina/station/medbay)
"aTe" = (
/obj/structure/machinery/landinglight/ds1/delaytwo,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"aTo" = (
/turf/closed/wall/mineral/bone_resin,
@@ -1540,18 +1264,12 @@
"aTO" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/toy/deck/uno,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"aTY" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/briefcase,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"aUg" = (
/obj/item/tool/crowbar/red,
@@ -1559,19 +1277,14 @@
/area/fiorina/station/security)
"aUA" = (
/obj/item/stack/cable_coil/orange,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"aVd" = (
/obj/effect/landmark/monkey_spawn,
/turf/open/floor/plating/prison,
/area/fiorina/station/transit_hub)
"aVU" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/civres_blue)
"aWk" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -1580,19 +1293,14 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"aWV" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/fiorina/tumor/servers)
"aXk" = (
/obj/item/storage/fancy/candle_box,
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"aXn" = (
/turf/closed/shuttle/elevator{
@@ -1610,9 +1318,7 @@
name = "Dr. O's fantastic self rolling wheelie chair";
pixel_x = 7
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"aXv" = (
/obj/structure/machinery/light/double/blue,
@@ -1627,15 +1333,10 @@
/turf/open/floor/prison,
/area/fiorina/lz/near_lzII)
"aXC" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/fiorina/station/lowsec)
"aXO" = (
-/turf/open/floor/prison{
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2,
/area/fiorina/station/central_ring)
"aXR" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1644,17 +1345,11 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"aYf" = (
/obj/item/tool/scythe,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/west,
/area/fiorina/station/botany)
"aYg" = (
/obj/structure/machinery/shower{
@@ -1664,15 +1359,10 @@
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/research_cells)
"aZi" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/tumor/servers)
"aZD" = (
/obj/structure/platform{
@@ -1691,10 +1381,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/lz/near_lzI)
"aZL" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"aZN" = (
/obj/item/toy/crayon/yellow,
@@ -1704,9 +1391,7 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"baC" = (
/turf/closed/wall/mineral/bone_resin,
@@ -1718,15 +1403,11 @@
/area/fiorina/station/power_ring)
"baM" = (
/obj/effect/spawner/random/gun/smg,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"bbn" = (
/obj/item/device/motiondetector,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"bbp" = (
/obj/structure/filingcabinet{
@@ -1738,31 +1419,22 @@
pixel_y = 4
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"bbI" = (
/obj/item/stool{
pixel_x = -4;
pixel_y = 23
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"bbU" = (
/obj/structure/sign/safety/fire_haz,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"bcd" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"bce" = (
/obj/structure/lattice,
@@ -1774,10 +1446,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/maintenance)
"bcp" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/telecomm/lz1_tram)
"bcq" = (
/obj/item/prop/helmetgarb/riot_shield,
@@ -1789,15 +1458,11 @@
pixel_x = 11;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"bcT" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"bcX" = (
/obj/item/tool/warning_cone,
@@ -1812,31 +1477,21 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"bdE" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"bec" = (
/obj/item/stack/sheet/metal{
amount = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/fiorina/lz/near_lzI)
"beh" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/fiorina/tumor/ice_lab)
"bel" = (
/obj/structure/prop/structure_lattice{
@@ -1845,9 +1500,7 @@
icon = 'icons/turf/elevator.dmi';
icon_state = "wall_broke"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/civres_blue)
"bem" = (
/obj/structure/platform{
@@ -1871,10 +1524,7 @@
/turf/open/floor/prison,
/area/fiorina/tumor/servers)
"beB" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/fiorina/station/power_ring)
"beW" = (
/obj/structure/machinery/light/double/blue{
@@ -1886,9 +1536,7 @@
"bff" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/firstaid/regular,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"bfF" = (
/obj/structure/cable/heavyduty{
@@ -1913,10 +1561,7 @@
/area/fiorina/maintenance)
"bgD" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"bht" = (
/obj/effect/decal/cleanable/blood{
@@ -1938,10 +1583,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/lowsec)
"bhW" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/east,
/area/fiorina/tumor/civres)
"bhX" = (
/turf/open/floor/plating/prison,
@@ -1950,10 +1592,7 @@
/turf/closed/wall/prison,
/area/fiorina/station/chapel)
"bix" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"bjf" = (
/obj/item/tool/warning_cone,
@@ -1970,21 +1609,15 @@
/area/fiorina/station/security)
"bjt" = (
/obj/structure/girder,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"bjR" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"bjZ" = (
/obj/item/weapon/twohanded/spear,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"bkg" = (
/obj/structure/bed/chair,
@@ -1992,17 +1625,13 @@
/area/fiorina/station/power_ring)
"bki" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"bkQ" = (
/obj/item/ammo_casing{
icon_state = "casing_7_1"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"bkU" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -2012,25 +1641,18 @@
/obj/structure/prop/resin_prop{
icon_state = "rack"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"blf" = (
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/fiorina/station/power_ring)
"blA" = (
/obj/item/shard{
icon_state = "medium";
name = "ice shard"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"blG" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -2042,17 +1664,12 @@
"bma" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/newspaper,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"bmw" = (
/obj/item/storage/fancy/cigarettes/lucky_strikes,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"bmE" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
@@ -2071,15 +1688,11 @@
/area/fiorina/tumor/servers)
"bne" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"bnh" = (
/obj/item/storage/briefcase,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"bno" = (
/obj/structure/barricade/handrail/type_b{
@@ -2090,9 +1703,7 @@
/area/fiorina/station/disco)
"bnx" = (
/obj/item/stack/sheet/metal/medium_stack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"bnA" = (
/turf/closed/wall/prison,
@@ -2113,9 +1724,7 @@
name = "overhead ducting";
pixel_y = 33
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"boe" = (
/obj/item/tool/wet_sign,
@@ -2127,67 +1736,46 @@
/area/fiorina/tumor/ice_lab)
"boF" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"boI" = (
/obj/item/trash/cigbutt/ucigbutt{
pixel_x = 5;
pixel_y = 12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"bpe" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"bpo" = (
/obj/item/dogtag,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/civres_blue)
"bpx" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"bqu" = (
/obj/structure/toilet{
dir = 4;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"bqC" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/west,
/area/fiorina/station/botany)
"bqD" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"bqF" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -2201,9 +1789,7 @@
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"bqX" = (
/obj/effect/decal/cleanable/blood,
@@ -2219,28 +1805,18 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/power_ring)
"brC" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/fiorina/station/medbay)
"brR" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/fiorina/station/flight_deck)
"brY" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"bsc" = (
/obj/structure/prop/almayer/computers/sensor_computer3,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"bsk" = (
/obj/structure/platform_decoration/kutjevo{
@@ -2253,9 +1829,7 @@
icon_state = "medium";
name = "ice shard"
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"bso" = (
/turf/closed/shuttle/ert{
@@ -2267,19 +1841,13 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/station/research_cells)
"bsR" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/ashtray/plastic,
/obj/item/trash/cigbutt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"buz" = (
/obj/item/stack/rods,
@@ -2290,19 +1858,13 @@
dir = 8;
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/central_ring)
"buJ" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/power_ring)
"bvg" = (
/obj/structure/surface/table/reinforced/prison,
@@ -2318,31 +1880,22 @@
pixel_x = -1;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"bvp" = (
/obj/structure/barricade/wooden{
dir = 4;
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/fiorina/station/central_ring)
"bvr" = (
/obj/item/explosive/grenade/high_explosive/m15,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- icon_state = "panelscorched"
- },
+/turf/open/floor/prison/panelscorched,
/area/fiorina/tumor/aux_engi)
"bvs" = (
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/central_ring)
"bvK" = (
/obj/structure/surface/table/reinforced/prison,
@@ -2357,79 +1910,53 @@
/area/fiorina/station/civres_blue)
"bwj" = (
/obj/structure/computerframe,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"bwk" = (
/obj/item/tool/wrench,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"bww" = (
/obj/item/trash/candy,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"bxc" = (
/obj/structure/window/reinforced,
/turf/open/floor/prison,
/area/fiorina/station/security)
"bxd" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/oob)
"bxe" = (
/obj/structure/machinery/landinglight/ds2{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"bxg" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/corpsespawner/doctor,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"bxm" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"bxv" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/fiorina/station/power_ring)
"bxy" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/fiorina/lz/near_lzI)
"bxA" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"bxE" = (
/obj/structure/prop/structure_lattice{
@@ -2448,9 +1975,7 @@
name = "overhead pipe";
pixel_y = 20
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"bxQ" = (
/obj/structure/machinery/light/double/blue{
@@ -2458,10 +1983,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/fiorina/station/medbay)
"bxV" = (
/obj/item/clothing/head/cmcap,
@@ -2473,10 +1995,7 @@
/obj/item/tool/kitchen/rollingpin{
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"byb" = (
/turf/closed/shuttle/ert{
@@ -2498,9 +2017,7 @@
/area/fiorina/lz/near_lzI)
"byB" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"byE" = (
/obj/structure/machinery/vending/cola,
@@ -2514,23 +2031,14 @@
/obj/structure/platform_decoration{
dir = 6
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/fiorina/tumor/ice_lab)
"byG" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/tumor/ice_lab)
"byJ" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/fiorina/tumor/civres)
"byT" = (
/obj/structure/platform,
@@ -2541,10 +2049,7 @@
/area/fiorina/station/medbay)
"bze" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/fiorina/station/medbay)
"bzO" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -2554,10 +2059,7 @@
/obj/item/device/flashlight,
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"bAc" = (
/turf/closed/shuttle/ert{
@@ -2566,24 +2068,17 @@
/area/fiorina/tumor/aux_engi)
"bAf" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/power_ring)
"bAE" = (
/obj/structure/surface/rack,
/obj/item/storage/pill_bottle/bicaridine/skillless,
/obj/item/storage/pill_bottle/bicaridine/skillless,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"bAM" = (
/obj/item/paper/prison_station/inmate_handbook,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"bBr" = (
/obj/structure/barricade/metal/wired{
@@ -2592,17 +2087,12 @@
/obj/item/bodybag/tarp/reactive,
/obj/item/bodybag/tarp/reactive,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"bBt" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"bBA" = (
/turf/closed/shuttle/ert{
@@ -2612,9 +2102,7 @@
"bBB" = (
/obj/structure/largecrate/random/barrel,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/station/park)
"bBK" = (
/obj/item/clothing/under/marine/ua_riot,
@@ -2622,10 +2110,7 @@
/turf/open/floor/prison,
/area/fiorina/station/security)
"bCe" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/fiorina/station/security)
"bCu" = (
/obj/item/shard{
@@ -2637,9 +2122,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"bDx" = (
/obj/item/tool/extinguisher/mini,
@@ -2647,22 +2130,14 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"bDJ" = (
/obj/effect/spawner/random/gun/pistol,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"bDM" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/chapel)
"bDU" = (
/obj/item/stack/rods,
@@ -2670,9 +2145,7 @@
/area/fiorina/tumor/aux_engi)
"bDX" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/fiorina/station/chapel)
"bEk" = (
/obj/structure/monorail{
@@ -2699,9 +2172,7 @@
/area/fiorina/station/park)
"bEP" = (
/obj/item/device/flashlight,
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"bEX" = (
/obj/structure/window/framed/prison,
@@ -2713,19 +2184,13 @@
/obj/item/reagent_container/food/snacks/meat/human,
/obj/structure/machinery/light/double/blue,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"bFi" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/station/park)
"bFr" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -2741,10 +2206,7 @@
/area/fiorina/station/park)
"bFJ" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"bFL" = (
/obj/structure/mirror{
@@ -2754,31 +2216,21 @@
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"bGA" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"bGB" = (
/obj/structure/largecrate/supply/generator,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"bGH" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"bGY" = (
/turf/closed/shuttle/elevator{
@@ -2808,9 +2260,7 @@
/area/fiorina/lz/near_lzI)
"bHR" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"bHU" = (
/obj/structure/platform/kutjevo/smooth{
@@ -2831,17 +2281,12 @@
icon_state = "abed"
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"bIR" = (
/obj/structure/closet/secure_closet/security,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/disco)
"bIZ" = (
/turf/closed/shuttle/elevator{
@@ -2871,9 +2316,7 @@
/obj/structure/barricade/handrail/type_b{
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"bJG" = (
/obj/effect/decal/medical_decals{
@@ -2882,18 +2325,12 @@
/obj/structure/pipes/standard/simple/visible{
dir = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"bKF" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/pill_bottle/imidazoline,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"bLA" = (
/obj/structure/surface/table/reinforced/prison,
@@ -2909,16 +2346,11 @@
/turf/closed/wall/prison,
/area/fiorina/station/central_ring)
"bLM" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"bLO" = (
/obj/item/stack/cable_coil/blue,
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/fiorina/tumor/ice_lab)
"bMh" = (
/obj/item/frame/table/wood/fancy,
@@ -2934,48 +2366,32 @@
/area/fiorina/station/power_ring)
"bMz" = (
/obj/item/tool/lighter/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"bMF" = (
/obj/item/trash/cigbutt/cigarbutt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzI)
"bMG" = (
/obj/structure/surface/rack,
/obj/item/restraint/handcuffs/zip,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/lowsec)
"bMI" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/folder/black_random,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"bMT" = (
/obj/structure/tunnel/maint_tunnel,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"bNo" = (
/obj/item/trash/uscm_mre,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"bNE" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"bNP" = (
/obj/effect/spawner/random/tool,
@@ -2998,29 +2414,20 @@
/area/fiorina/lz/near_lzII)
"bOx" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"bOK" = (
/obj/item/reagent_container/food/snacks/donkpocket,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/civres_blue)
"bOR" = (
/obj/structure/bed/roller,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"bPh" = (
/obj/item/storage/fancy/cigarettes/lucky_strikes,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"bPl" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -3030,17 +2437,13 @@
/obj/item/reagent_container/food/drinks/coffee{
name = "\improper paper cup"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"bPy" = (
/obj/structure/prop/resin_prop{
icon_state = "sheater0"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"bPG" = (
/turf/open/floor/plating/prison,
@@ -3052,10 +2455,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/tumor/servers)
"bPQ" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/fiorina/station/chapel)
"bPT" = (
/obj/structure/monorail{
@@ -3066,10 +2466,7 @@
/area/fiorina/tumor/aux_engi)
"bPV" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/station/medbay)
"bQh" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -3100,16 +2497,11 @@
/obj/effect/decal/cleanable/blood/splatter{
icon_state = "gib2"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/fiorina/station/medbay)
"bQv" = (
/obj/item/trash/cigbutt/ucigbutt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"bQy" = (
/obj/structure/surface/table/woodentable,
@@ -3118,9 +2510,7 @@
/area/fiorina/station/civres_blue)
"bQL" = (
/obj/item/tool/mop,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"bQM" = (
/turf/open/space,
@@ -3129,9 +2519,7 @@
/obj/item/frame/rack,
/obj/item/stack/medical/bruise_pack,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"bRb" = (
/obj/structure/machinery/defenses/sentry/premade/dumb{
@@ -3157,26 +2545,18 @@
pixel_x = 5;
pixel_y = 25
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"bRs" = (
/obj/structure/closet/crate/miningcar{
name = "\improper materials storage bin"
},
/obj/item/reagent_container/food/snacks/meat,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"bRA" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"bRC" = (
/obj/structure/flora/pottedplant{
@@ -3186,28 +2566,19 @@
/area/fiorina/station/power_ring)
"bRQ" = (
/obj/item/stock_parts/micro_laser/ultra,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/fiorina/tumor/servers)
"bSm" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/fiorina/lz/near_lzI)
"bSq" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/smg/nailgun,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"bSs" = (
-/turf/open/floor/prison{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/prison/floorscorched2,
/area/fiorina/station/security)
"bSM" = (
/obj/structure/machinery/portable_atmospherics/hydroponics{
@@ -3220,19 +2591,14 @@
/area/fiorina/station/botany)
"bSS" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"bTc" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/chapel)
"bTo" = (
/obj/structure/platform/kutjevo/smooth,
@@ -3243,26 +2609,17 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"bTr" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"bTC" = (
/obj/structure/machinery/power/terminal{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/fiorina/station/power_ring)
"bTI" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
@@ -3311,30 +2668,19 @@
/area/fiorina/station/medbay)
"bXc" = (
/obj/structure/inflatable/popped,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"bXe" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/ammo_box/magazine/misc/flares,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"bXh" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/fiorina/station/chapel)
"bXz" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/fiorina/station/research_cells)
"bXA" = (
/obj/item/tool/screwdriver,
@@ -3344,24 +2690,17 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/fiorina/maintenance)
"bZn" = (
/obj/item/device/taperecorder{
pixel_x = 1;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"bZD" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/fiorina/tumor/aux_engi)
"bZI" = (
/obj/structure/surface/table/reinforced/prison{
@@ -3369,9 +2708,7 @@
flipped = 1
},
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"bZY" = (
/obj/structure/machinery/light/double/blue,
@@ -3379,22 +2716,14 @@
/area/fiorina/station/security)
"car" = (
/obj/structure/machinery/portable_atmospherics/canister/nitrogen,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/fiorina/station/lowsec)
"caA" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"caC" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/fiorina/station/transit_hub)
"caF" = (
/turf/open/floor/wood,
@@ -3404,10 +2733,7 @@
/obj/item/ammo_casing{
icon_state = "casing_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"cbd" = (
/obj/structure/reagent_dispensers/watertank,
@@ -3444,9 +2770,7 @@
/area/fiorina/station)
"cbY" = (
/obj/item/newspaper,
-/turf/open/floor/prison{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner,
/area/fiorina/station/research_cells)
"ccH" = (
/obj/structure/machinery/newscaster,
@@ -3473,10 +2797,7 @@
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/flight_deck)
"cdV" = (
/obj/structure/machinery/light/double/blue{
@@ -3484,10 +2805,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"cdY" = (
/obj/effect/decal/medical_decals{
@@ -3498,10 +2816,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"ceq" = (
/obj/item/bodybag,
@@ -3511,69 +2826,45 @@
/obj/item/bodybag{
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"cer" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/tumor/ice_lab)
"ceB" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/civres_blue)
"ceC" = (
/turf/closed/wall/r_wall/prison,
/area/fiorina/station/security)
"ceJ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/fiorina/tumor/ice_lab)
"cfa" = (
/obj/item/frame/rack,
/obj/structure/barricade/handrail/type_b{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/lowsec)
"cfG" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"cfU" = (
/obj/item/prop/helmetgarb/gunoil,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"cgx" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"chg" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"chx" = (
/obj/structure/stairs/perspective{
@@ -3587,10 +2878,7 @@
density = 0;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/maintenance)
"chT" = (
/obj/structure/machinery/light/double/blue{
@@ -3611,10 +2899,7 @@
/obj/item/coin/uranium{
desc = "You found one of the three uranium coins. It is entirely worthless."
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"ciy" = (
/obj/structure/platform,
@@ -3625,10 +2910,7 @@
dir = 6
},
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"ciA" = (
/obj/structure/machinery/vending/snack/packaged,
@@ -3649,47 +2931,33 @@
pixel_y = 12
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"cje" = (
/obj/structure/prop/almayer/computers/sensor_computer3,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"cjG" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"cki" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/secure_data{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"ckm" = (
/obj/structure/window/framed/prison/reinforced/hull,
/turf/open/floor/plating/prison,
/area/fiorina/lz/near_lzII)
"ckr" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/fiorina/station/telecomm/lz1_tram)
"ckt" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/medbay)
"ckA" = (
/obj/structure/platform,
@@ -3697,9 +2965,7 @@
/area/fiorina/tumor/ice_lab)
"ckS" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"ckZ" = (
/obj/structure/platform,
@@ -3722,16 +2988,11 @@
/area/fiorina/tumor/civres)
"clv" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"clA" = (
/obj/item/weapon/baton/cattleprod,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/station/research_cells)
"clN" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -3740,9 +3001,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/tumor/servers)
"clP" = (
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"cmy" = (
/obj/structure/sign/prop3{
@@ -3754,9 +3013,7 @@
/obj/item/stack/sheet/wood/medium_stack,
/obj/item/stack/sheet/wood/medium_stack,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"cmP" = (
/obj/structure/pipes/standard/tank{
@@ -3773,10 +3030,7 @@
/area/fiorina/station/security)
"cnH" = (
/obj/item/stock_parts/manipulator/pico,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/fiorina/tumor/servers)
"coj" = (
/obj/item/stool,
@@ -3804,34 +3058,22 @@
},
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"cqT" = (
-/turf/open/floor/prison{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/prison/floorscorched1,
/area/fiorina/station/security)
"cqV" = (
/obj/item/stool,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/power_ring)
"cqW" = (
/obj/item/stool,
-/turf/open/floor/prison{
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2,
/area/fiorina/station/lowsec)
"cqX" = (
/obj/item/stool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"cri" = (
/obj/structure/machinery/computer/prisoner,
@@ -3848,10 +3090,7 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecalleft"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"cry" = (
/obj/structure/stairs/perspective{
@@ -3868,10 +3107,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/fiorina/tumor/servers)
"csL" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/telecomm/lz1_tram)
"ctc" = (
/obj/structure/prop/resin_prop{
@@ -3888,10 +3124,7 @@
/obj/structure/machinery/computer/skills{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"ctD" = (
/obj/effect/landmark/monkey_spawn,
@@ -3902,10 +3135,7 @@
icon_state = "abed"
},
/obj/effect/spawner/random/goggles/lowchance,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"ctW" = (
/obj/structure/bed{
@@ -3913,36 +3143,24 @@
},
/obj/item/coin/uranium,
/obj/item/bedsheet/green,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/lowsec)
"ctY" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/fiorina/station/central_ring)
"cui" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/fiorina/station/civres_blue)
"cum" = (
/obj/structure/barricade/handrail/type_b{
dir = 1
},
/obj/item/frame/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/disco)
"cvc" = (
/obj/structure/barricade/metal/wired{
@@ -3951,10 +3169,7 @@
/obj/structure/machinery/m56d_hmg/mg_turret/dropship{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/fiorina/station/central_ring)
"cvd" = (
/obj/structure/surface/table/reinforced/prison,
@@ -3962,18 +3177,13 @@
pixel_x = 5;
pixel_y = 22
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"cvi" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/fire,
/obj/item/storage/firstaid/fire,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"cvn" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -3985,9 +3195,7 @@
/area/fiorina/lz/near_lzII)
"cvH" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"cvL" = (
/obj/effect/landmark/nightmare{
@@ -3999,10 +3207,7 @@
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"cwM" = (
/obj/structure/machinery/light/double/blue{
@@ -4010,23 +3215,15 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"cxb" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/maintenance)
"cxc" = (
/obj/item/stack/folding_barricade,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/station/chapel)
"cxy" = (
/obj/item/ammo_magazine/rifle/m16{
@@ -4041,15 +3238,10 @@
/area/fiorina/station/security)
"cxA" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"cyb" = (
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/aux_engi)
"cye" = (
/obj/item/trash/pistachios,
@@ -4058,16 +3250,11 @@
"cyk" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/megaphone,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"cyR" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"cyV" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -4082,25 +3269,18 @@
"czr" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/pills/lowchance,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"czJ" = (
/obj/structure/reagent_dispensers/watertank{
layer = 2.6
},
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"cAJ" = (
/obj/item/trash/snack_bowl,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"cAO" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -4122,9 +3302,7 @@
"cBm" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/electrical,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"cBn" = (
/obj/structure/platform{
@@ -4136,22 +3314,15 @@
/obj/structure/platform_decoration{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"cBG" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/tumor/aux_engi)
"cBJ" = (
/obj/item/clothing/shoes/laceup,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"cBK" = (
/obj/item/shard{
@@ -4167,15 +3338,10 @@
/obj/item/reagent_container/food/drinks/coffee{
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"cCe" = (
-/turf/open/floor/prison{
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner,
/area/fiorina/station/research_cells)
"cCh" = (
/obj/item/ammo_casing{
@@ -4186,10 +3352,7 @@
/area/fiorina/station/telecomm/lz1_cargo)
"cCs" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"cCt" = (
/obj/structure/barricade/wooden,
@@ -4220,9 +3383,7 @@
desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured.";
name = "HEFA Order milita armband"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"cDb" = (
/obj/item/tool/crowbar,
@@ -4239,9 +3400,7 @@
name = "\improper materials storage bin"
},
/obj/item/reagent_container/food/snacks/meat,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"cEb" = (
/obj/structure/stairs/perspective{
@@ -4253,9 +3412,7 @@
"cEg" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"cEw" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -4270,44 +3427,31 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/tumor/ice_lab)
"cEW" = (
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "ywflowers_4"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"cEY" = (
/obj/structure/largecrate/random/case/double,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/station/park)
"cFg" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"cFq" = (
/obj/item/tool/mop,
/turf/open/floor/plating/prison,
/area/fiorina/maintenance)
"cFT" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/fiorina/tumor/civres)
"cFX" = (
/obj/structure/largecrate/supply/supplies,
@@ -4319,20 +3463,14 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"cGR" = (
/obj/effect/landmark/objective_landmark/medium,
/turf/open/floor/wood,
/area/fiorina/station/park)
"cGS" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/fiorina/station/disco)
"cGU" = (
/obj/structure/window/reinforced{
@@ -4343,16 +3481,11 @@
/obj/structure/machinery/computer/med_data/laptop{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"cHl" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"cHm" = (
/obj/item/bedsheet/green,
@@ -4362,10 +3495,7 @@
/area/fiorina/station/power_ring)
"cHC" = (
/obj/item/trash/popcorn,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"cHF" = (
/obj/structure/surface/table/reinforced/prison,
@@ -4378,18 +3508,14 @@
/area/fiorina/station/security)
"cHK" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"cIt" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"cIJ" = (
/obj/structure/machinery/light/double/blue{
@@ -4397,10 +3523,7 @@
pixel_y = 21
},
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"cIQ" = (
/obj/structure/bed/chair{
@@ -4414,16 +3537,11 @@
dir = 4;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/fiorina/station/park)
"cJv" = (
/obj/item/stack/rods,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/telecomm/lz1_cargo)
"cJz" = (
/obj/structure/machinery/light/double/blue{
@@ -4431,10 +3549,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"cJL" = (
/obj/structure/prop/structure_lattice{
@@ -4446,18 +3561,12 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"cJS" = (
/obj/item/trash/uscm_mre,
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/flight_deck)
"cJW" = (
/obj/effect/landmark/survivor_spawner,
@@ -4465,10 +3574,7 @@
/area/fiorina/station/security/wardens)
"cJY" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/fiorina/tumor/aux_engi)
"cKa" = (
/turf/closed/wall/prison,
@@ -4478,9 +3584,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"cKB" = (
/obj/structure/stairs/perspective{
@@ -4490,10 +3594,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"cKH" = (
/obj/structure/closet/bodybag,
@@ -4510,9 +3611,7 @@
/obj/item/reagent_container/glass/bottle/robot/antitoxin,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"cKU" = (
/obj/structure/stairs/perspective{
@@ -4535,10 +3634,7 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"cLC" = (
/obj/structure/surface/table/reinforced/prison,
@@ -4548,36 +3644,23 @@
/obj/structure/machinery/computer/cameras{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"cLS" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"cLZ" = (
/obj/structure/largecrate/guns/merc,
/obj/item/toy/deck/uno,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"cMb" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/medbay)
"cMD" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/fiorina/station/central_ring)
"cME" = (
/turf/open/floor/plating/prison,
@@ -4586,55 +3669,36 @@
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/research_cells)
"cNe" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"cOj" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/fiorina/station/civres_blue)
"cOB" = (
/obj/item/stool,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/fiorina/station/flight_deck)
"cOC" = (
/obj/item/tool/wet_sign,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"cOF" = (
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"cOL" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"cPh" = (
/obj/item/ammo_casing{
icon_state = "casing_6"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"cPq" = (
/obj/structure/machinery/light/double/blue{
@@ -4646,9 +3710,7 @@
/area/fiorina/maintenance)
"cPs" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"cPz" = (
/obj/structure/machinery/fuelcell_recycler,
@@ -4656,10 +3718,7 @@
/area/fiorina/station/telecomm/lz1_cargo)
"cPC" = (
/obj/item/stack/sandbags_empty,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"cPL" = (
/obj/structure/stairs/perspective{
@@ -4670,9 +3729,7 @@
/area/fiorina/station/park)
"cQe" = (
/obj/item/reagent_container/food/snacks/donkpocket,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"cQf" = (
/obj/structure/machinery/light/double/blue{
@@ -4681,9 +3738,7 @@
},
/obj/structure/surface/table/reinforced/prison,
/obj/item/explosive/grenade/incendiary/molotov,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"cQv" = (
/obj/structure/monorail{
@@ -4696,23 +3751,17 @@
/area/fiorina/oob)
"cRg" = (
/obj/structure/machinery/vending/coffee/simple,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"cRl" = (
/obj/structure/closet/secure_closet/security_empty,
/obj/item/book/manual/security_space_law,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"cRx" = (
/obj/structure/machinery/sensortower,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"cRB" = (
/obj/structure/machinery/door/airlock/prison/horizontal{
@@ -4729,38 +3778,26 @@
pixel_y = 18
},
/obj/item/stool,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"cRK" = (
/obj/structure/window,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"cRM" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/disco)
"cRZ" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"cSh" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"cTr" = (
/obj/structure/largecrate/random/barrel/blue,
@@ -4769,19 +3806,14 @@
"cTx" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"cTy" = (
/obj/item/stool,
/obj/item/trash/cigbutt{
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"cTD" = (
/obj/structure/machinery/light/double/blue{
@@ -4789,32 +3821,21 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/lz/near_lzI)
"cTE" = (
/obj/item/ammo_casing{
icon_state = "cartridge_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"cUd" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/lz/near_lzI)
"cUA" = (
/obj/structure/largecrate/random,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/station/park)
"cUU" = (
/obj/structure/monorail{
@@ -4827,10 +3848,7 @@
/area/fiorina/station/telecomm/lz1_tram)
"cVu" = (
/obj/item/stack/sandbags_empty/half,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/lz/near_lzI)
"cVQ" = (
/obj/structure/machinery/light/double/blue{
@@ -4845,17 +3863,12 @@
/area/fiorina/station/disco)
"cXp" = (
/obj/item/stack/sheet/metal/medium_stack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"cXV" = (
/obj/item/ammo_magazine/smg/mp5,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/fiorina/station/telecomm/lz1_cargo)
"cYd" = (
/obj/structure/stairs/perspective{
@@ -4866,9 +3879,7 @@
/area/fiorina/tumor/ice_lab)
"cYe" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"cYi" = (
/obj/structure/surface/table/reinforced/prison,
@@ -4876,25 +3887,17 @@
pixel_x = 2;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"cYj" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/lowsec)
"cYI" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/fiorina/tumor/aux_engi)
"cYP" = (
/obj/structure/closet/crate/trashcart,
@@ -4911,18 +3914,13 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/central_ring)
"cYT" = (
/obj/vehicle/powerloader{
dir = 8
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"cYV" = (
/obj/structure/stairs/perspective{
@@ -4935,26 +3933,18 @@
"cZe" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/phone,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"cZh" = (
/obj/effect/decal/cleanable/blood/gibs,
/obj/effect/spawner/random/gun/rifle,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"cZp" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottom"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"cZq" = (
/obj/item/shard{
@@ -4970,22 +3960,16 @@
/obj/structure/machinery/door/window/northleft{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security/wardens)
"cZP" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"cZR" = (
-/turf/open/floor/prison{
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2,
/area/fiorina/station/disco)
"cZV" = (
/obj/structure/bed/chair/office/light{
@@ -4995,18 +3979,14 @@
/area/fiorina/station/security)
"dae" = (
/obj/structure/machinery/vending/walkman,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"daA" = (
/obj/item/clothing/accessory/armband/cargo{
desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured.";
name = "HEFA Order milita armband"
},
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"daD" = (
/obj/structure/platform/kutjevo/smooth{
@@ -5030,9 +4010,7 @@
/area/fiorina/station/security)
"dbh" = (
/obj/structure/machinery/vending/sovietsoda,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"dbi" = (
/obj/item/storage/toolbox/electrical,
@@ -5045,24 +4023,17 @@
pixel_x = 1;
pixel_y = 13
},
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"dbr" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"dbI" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/fiorina/station/lowsec)
"dbW" = (
/obj/structure/surface/table/reinforced/prison,
@@ -5071,9 +4042,7 @@
pixel_y = 9
},
/obj/item/storage/box/donkpockets,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"dcv" = (
/obj/structure/largecrate/random,
@@ -5087,27 +4056,21 @@
/area/fiorina/station/flight_deck)
"dcO" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"dde" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/recharger{
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/oob)
"ddt" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/beer_pack{
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"ddv" = (
/obj/structure/closet/secure_closet/engineering_welding,
@@ -5117,20 +4080,14 @@
pixel_y = 13
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/maintenance)
"ddA" = (
/obj/structure/girder/reinforced,
/turf/open/floor/plating/plating_catwalk,
/area/fiorina/tumor/ship)
"ddB" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/station/medbay)
"ddD" = (
/obj/structure/janitorialcart,
@@ -5152,22 +4109,15 @@
/turf/open/floor/plating/prison,
/area/fiorina/tumor/aux_engi)
"ddN" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/fiorina/tumor/servers)
"ddU" = (
/obj/structure/prop/almayer/computers/sensor_computer1,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"ddY" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/tumor/aux_engi)
"dec" = (
/obj/structure/sign/prop3{
@@ -5183,23 +4133,14 @@
dir = 4;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
-"deL" = (
-/obj/structure/window/framed/prison/reinforced/hull,
-/obj/structure/window/framed/prison/reinforced/hull,
-/turf/open/floor/plating/prison,
-/area/fiorina/station/flight_deck)
"deR" = (
/obj/item/toy/crayon/red,
/turf/open/floor/plating/prison,
/area/fiorina/station/power_ring)
"dfc" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/oob)
"dfh" = (
/obj/structure/machinery/light/double/blue{
@@ -5207,9 +4148,7 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"dfA" = (
/obj/structure/barricade/sandbags{
@@ -5231,10 +4170,7 @@
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"dhi" = (
/obj/structure/platform_decoration/kutjevo,
@@ -5245,9 +4181,7 @@
dir = 4
},
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"dhZ" = (
/obj/structure/window/reinforced{
@@ -5258,16 +4192,11 @@
/area/fiorina/station/medbay)
"diF" = (
/obj/item/stack/sheet/cardboard,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"diJ" = (
/obj/item/stool,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"diL" = (
/obj/structure/stairs/perspective{
@@ -5277,9 +4206,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"dje" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -5293,15 +4220,11 @@
/obj/vehicle/powerloader{
dir = 4
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"djF" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"dkb" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -5327,24 +4250,18 @@
/area/fiorina/station/security/wardens)
"dkz" = (
/obj/structure/machinery/vending/snack/packaged,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"dkX" = (
/obj/structure/barricade/sandbags{
dir = 8;
icon_state = "sandbag_0"
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/telecomm/lz1_cargo)
"dlj" = (
/obj/structure/machinery/portable_atmospherics/powered/pump,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"dlr" = (
/obj/structure/surface/table/reinforced/prison,
@@ -5356,9 +4273,7 @@
pixel_x = 6;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"dlA" = (
/obj/effect/decal/cleanable/blood,
@@ -5387,9 +4302,7 @@
pixel_x = 2;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"dnz" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -5400,16 +4313,10 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"dnX" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/lz/near_lzI)
"doe" = (
/obj/item/tool/kitchen/utensil/pspoon,
@@ -5441,20 +4348,14 @@
/area/fiorina/station/power_ring)
"doY" = (
/obj/item/paper/crumpled/bloody,
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/maintenance)
"dpe" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/lowsec)
"dpn" = (
/obj/structure/stairs/perspective{
@@ -5472,18 +4373,13 @@
/area/fiorina/tumor/aux_engi)
"dpZ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue,
/area/fiorina/station/botany)
"dqa" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/fiorina/station/park)
"dqE" = (
/obj/structure/prop/souto_land/pole,
@@ -5493,9 +4389,7 @@
/obj/structure/flora/grass/tallgrass/jungle/corner{
dir = 1
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"dqN" = (
/turf/closed/shuttle/ert{
@@ -5503,9 +4397,7 @@
},
/area/fiorina/tumor/ship)
"dqX" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"drd" = (
/obj/structure/machinery/light/double/blue{
@@ -5513,30 +4405,19 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/fiorina/station/flight_deck)
"drk" = (
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"drt" = (
/obj/structure/machinery/vending/hydroseeds,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"drZ" = (
/obj/item/clothing/mask/cigarette,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"dsS" = (
/obj/structure/barricade/handrail/type_b{
@@ -5544,10 +4425,7 @@
layer = 3.5
},
/obj/item/trash/barcardine,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"dsW" = (
/obj/structure/flora/pottedplant{
@@ -5564,21 +4442,14 @@
"dtk" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/drinks/golden_cup,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"dtR" = (
/obj/item/stack/sheet/metal/medium_stack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"dtS" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/fiorina/station/chapel)
"due" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -5594,9 +4465,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"duF" = (
/obj/structure/window/framed/prison/reinforced,
@@ -5609,9 +4478,7 @@
"duV" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/clipboard,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"duW" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -5633,10 +4500,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southeast,
/area/fiorina/maintenance)
"dwJ" = (
/obj/structure/machinery/processor{
@@ -5647,10 +4511,7 @@
pixel_y = 10
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"dwP" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -5670,10 +4531,7 @@
/obj/structure/machinery/computer/objective{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"dxb" = (
/obj/item/storage/briefcase/stowaway,
@@ -5683,22 +4541,14 @@
/obj/structure/monorail{
name = "launch track"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"dxl" = (
/obj/structure/barricade/metal/wired,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"dxv" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/fiorina/maintenance)
"dxE" = (
/obj/structure/prop/resin_prop{
@@ -5717,19 +4567,14 @@
/area/fiorina/tumor/servers)
"dxW" = (
/obj/item/tool/warning_cone,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"dyh" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/servers)
"dyB" = (
/obj/effect/decal/cleanable/blood{
@@ -5742,28 +4587,21 @@
/obj/structure/toilet{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"dzl" = (
/obj/structure/window/framed/prison/reinforced/hull,
/turf/open/floor/plating/prison,
/area/fiorina/station/flight_deck)
"dzB" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/research_cells)
"dzE" = (
/obj/structure/machinery/shower{
dir = 1;
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"dAd" = (
/obj/structure/stairs/perspective{
@@ -5773,16 +4611,11 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/disco)
"dAg" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/fiorina/station/medbay)
"dBl" = (
/obj/item/ammo_magazine/rifle/mar40/extended,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"dBq" = (
/obj/structure/surface/table/reinforced/prison,
@@ -5801,38 +4634,25 @@
/area/fiorina/oob)
"dBs" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"dBt" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/northeast,
/area/fiorina/station/botany)
"dBy" = (
/turf/open/floor/prison,
/area/fiorina/station/chapel)
"dBz" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/disco)
"dBO" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"dBZ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/fiorina/station/flight_deck)
"dCg" = (
/obj/structure/bed/chair,
@@ -5863,16 +4683,11 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"dCt" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"dCu" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -5884,16 +4699,11 @@
"dCv" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/trash/plate,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"dCK" = (
/obj/structure/prop/souto_land/pole,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"dCM" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -5901,18 +4711,13 @@
/area/fiorina/station/security)
"dDn" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"dDI" = (
/obj/structure/machinery/landinglight/ds1{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"dDT" = (
/obj/structure/machinery/light/double/blue{
@@ -5920,10 +4725,7 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/servers)
"dDU" = (
/obj/effect/decal/cleanable/blood{
@@ -5933,9 +4735,7 @@
/area/fiorina/station/chapel)
"dEh" = (
/obj/item/reagent_container/food/drinks/cans/sodawater,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"dEj" = (
/obj/structure/machinery/optable{
@@ -5950,9 +4750,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/medbay)
"dFh" = (
/obj/item/stack/cable_coil,
@@ -5974,16 +4772,12 @@
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"dFK" = (
/obj/structure/surface/rack,
/obj/item/ammo_box/magazine/nailgun,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"dFM" = (
/obj/item/circuitboard/machine/pacman/super,
@@ -6000,19 +4794,14 @@
dir = 4;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"dGA" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/park)
"dHb" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -6021,31 +4810,21 @@
/obj/item/storage/box/pillbottles,
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"dHd" = (
/obj/structure/sign/safety/bulkhead_door,
/turf/closed/wall/r_wall/prison_unmeltable,
/area/fiorina/tumor/civres)
"dHD" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"dHU" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/prison/platingdmg1,
/area/fiorina/station/security)
"dIh" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"dIo" = (
/turf/closed/wall/prison,
@@ -6054,17 +4833,12 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"dJd" = (
/obj/effect/decal/cleanable/blood/gibs,
/obj/item/ammo_magazine/rifle/mar40,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"dJe" = (
/obj/structure/platform{
@@ -6076,18 +4850,13 @@
/obj/structure/bookcase/manuals/research_and_development{
pixel_y = 10
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"dJt" = (
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/disco)
"dKo" = (
/obj/effect/spawner/random/gun/shotgun,
@@ -6110,25 +4879,17 @@
/turf/open/floor/wood,
/area/fiorina/station/park)
"dLL" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/fiorina/tumor/servers)
"dLN" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/emails{
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"dMt" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/fiorina/tumor/aux_engi)
"dNc" = (
/obj/structure/platform{
@@ -6138,9 +4899,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"dNh" = (
/turf/open/auto_turf/sand/layer1,
@@ -6160,33 +4919,23 @@
/area/fiorina/tumor/aux_engi)
"dNC" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/lz/near_lzI)
"dOk" = (
-/turf/open/floor/prison{
- icon_state = "panelscorched"
- },
+/turf/open/floor/prison/panelscorched,
/area/fiorina/tumor/civres)
"dOt" = (
/obj/structure/surface/table/reinforced/prison{
flipped = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"dOE" = (
/obj/item/storage/bible/hefa,
/turf/open/floor/wood,
/area/fiorina/station/chapel)
"dOO" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"dOX" = (
/turf/closed/wall/r_wall/prison,
@@ -6200,15 +4949,11 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"dPe" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"dPm" = (
/obj/structure/bed/chair{
@@ -6224,9 +4969,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_tram)
"dPZ" = (
/obj/structure/monorail{
@@ -6251,24 +4994,18 @@
icon_state = "cartridge_2"
},
/obj/effect/spawner/random/gun/smg,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"dRk" = (
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"dRs" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/clothing/accessory/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"dRx" = (
/obj/structure/monorail{
@@ -6288,9 +5025,7 @@
/area/fiorina/oob)
"dSM" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"dTf" = (
/obj/structure/largecrate/random/case,
@@ -6298,10 +5033,7 @@
/area/fiorina/maintenance)
"dTg" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"dTx" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
@@ -6319,10 +5051,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"dUi" = (
/obj/structure/bed/sofa/vert/grey/bot{
@@ -6341,28 +5070,20 @@
/area/fiorina/lz/near_lzII)
"dUu" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"dUx" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"dVu" = (
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"dVx" = (
/obj/structure/stairs/perspective{
@@ -6373,36 +5094,25 @@
/area/fiorina/station/security)
"dVA" = (
/obj/item/stool,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"dVC" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/clipboard,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"dVD" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"dVR" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"dWn" = (
/obj/structure/barricade/wooden,
/obj/item/device/flashlight/flare,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"dWp" = (
/obj/structure/surface/table/reinforced/prison,
@@ -6418,28 +5128,20 @@
/area/fiorina/station/civres_blue)
"dXi" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/fiorina/tumor/servers)
"dXv" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"dXG" = (
/turf/open/floor/plating/prison,
/area/fiorina/tumor/civres)
"dXK" = (
/obj/item/newspaper,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/fiorina/station/transit_hub)
"dXN" = (
/obj/structure/barricade/handrail/type_b{
@@ -6452,16 +5154,11 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"dXS" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"dXT" = (
/obj/structure/platform_decoration,
@@ -6469,19 +5166,13 @@
/turf/open/floor/prison,
/area/fiorina/station/power_ring)
"dYi" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/fiorina/station/central_ring)
"dYo" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"dYp" = (
/obj/docking_port/stationary/marine_dropship/lz1{
@@ -6492,15 +5183,10 @@
"dYq" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"dYC" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/fiorina/station/central_ring)
"dYI" = (
/turf/closed/shuttle/ert{
@@ -6508,60 +5194,41 @@
},
/area/fiorina/tumor/aux_engi)
"dYV" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/fiorina/maintenance)
"dZj" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"dZo" = (
/obj/structure/closet/secure_closet/engineering_materials,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"dZu" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/card/id/guest,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"dZK" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/fiorina/station/chapel)
"dZQ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/lz/near_lzI)
"eac" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"eao" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"eca" = (
/obj/structure/platform{
@@ -6570,10 +5237,7 @@
/obj/effect/decal/medical_decals{
icon_state = "cryomid"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"ecd" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
@@ -6590,9 +5254,7 @@
/obj/structure/prop/souto_land/streamer{
pixel_y = 24
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"ecL" = (
/obj/structure/surface/rack,
@@ -6608,10 +5270,7 @@
},
/area/fiorina/tumor/ship)
"ecU" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/fiorina/station/flight_deck)
"eds" = (
/obj/structure/surface/rack,
@@ -6619,10 +5278,7 @@
/obj/effect/decal/cleanable/blood,
/obj/item/attachable/bipod,
/obj/item/device/multitool,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"edu" = (
/obj/structure/stairs/perspective{
@@ -6640,9 +5296,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"edY" = (
/obj/item/trash/used_stasis_bag{
@@ -6712,16 +5366,11 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/fiorina/tumor/ice_lab)
"efW" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/lowsec)
"egd" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"egk" = (
/obj/structure/extinguisher_cabinet,
@@ -6734,9 +5383,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"egL" = (
/obj/item/newspaper,
@@ -6748,17 +5395,11 @@
/area/fiorina/station/medbay)
"ehr" = (
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"ehy" = (
/obj/structure/machinery/landinglight/ds1/delaythree,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"ehO" = (
/obj/structure/platform/shiva,
@@ -6768,9 +5409,7 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"eio" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -6794,9 +5433,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/fiorina/tumor/ice_lab)
"ejs" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/fiorina/station/security)
"ejt" = (
/obj/effect/landmark/monkey_spawn,
@@ -6823,14 +5460,10 @@
pixel_x = 5;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"ekb" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_tram)
"eki" = (
/obj/structure/filingcabinet,
@@ -6838,41 +5471,27 @@
/turf/open/floor/wood,
/area/fiorina/station/security/wardens)
"ekx" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/fiorina/station/power_ring)
"ekz" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"ekF" = (
/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"ekS" = (
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"ekW" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/fiorina/station/power_ring)
"elc" = (
/obj/structure/bed/roller,
@@ -6881,15 +5500,10 @@
/area/fiorina/station/lowsec)
"ele" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"elO" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"emm" = (
/obj/structure/machinery/light/double/blue{
@@ -6899,9 +5513,7 @@
},
/obj/item/weapon/gun/shotgun/combat,
/obj/structure/closet/crate/trashcart,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"emC" = (
/obj/structure/lattice,
@@ -6916,34 +5528,22 @@
/area/fiorina/station/lowsec)
"enu" = (
/obj/item/trash/uscm_mre,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/flight_deck)
"enx" = (
/obj/item/tool/shovel,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/fiorina/tumor/civres)
"enH" = (
/obj/effect/alien/weeds/node,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"enY" = (
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/prison,
/area/fiorina/oob)
"eot" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_tram)
"eov" = (
/turf/closed/wall/r_wall/prison_unmeltable{
@@ -6952,10 +5552,7 @@
},
/area/fiorina/station/research_cells)
"eow" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/fiorina/station/research_cells)
"eoW" = (
/obj/structure/largecrate/random/case,
@@ -6963,9 +5560,7 @@
/area/fiorina/station/power_ring)
"epB" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/fiorina/station/power_ring)
"epD" = (
/obj/structure/surface/table/reinforced/prison,
@@ -6973,10 +5568,7 @@
icon_state = "pottedplant_17";
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"epV" = (
/obj/item/paper/crumpled/bloody,
@@ -6992,19 +5584,13 @@
/obj/item/tank/emergency_oxygen/engi,
/obj/item/device/flashlight,
/obj/item/device/flashlight,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"eqw" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/fiorina/station/power_ring)
"eqJ" = (
/obj/structure/platform{
@@ -7013,21 +5599,14 @@
/turf/open/floor/prison,
/area/fiorina/station/medbay)
"eqQ" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/telecomm/lz1_cargo)
"eqS" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/fiorina/station/chapel)
"eqU" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/tumor/ice_lab)
"eqZ" = (
/obj/structure/largecrate/random/mini/ammo,
@@ -7035,18 +5614,13 @@
/area/fiorina/station/central_ring)
"erb" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/telecomm/lz1_cargo)
"erh" = (
/obj/item/ammo_casing{
icon_state = "casing_1"
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/telecomm/lz1_cargo)
"erj" = (
/obj/structure/prop/structure_lattice{
@@ -7069,9 +5643,7 @@
/area/fiorina/tumor/servers)
"erw" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"erD" = (
/obj/structure/largecrate/supply,
@@ -7093,22 +5665,14 @@
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"esw" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/medbay)
"esR" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"esS" = (
/obj/item/stack/sheet/metal,
@@ -7118,24 +5682,16 @@
/obj/structure/flora/grass/tallgrass/jungle/corner{
dir = 6
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"etj" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/fiorina/station/chapel)
"etq" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"etL" = (
/obj/item/tool/weldingtool,
@@ -7148,19 +5704,13 @@
/obj/item/storage/box/holobadge{
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/lowsec)
"eux" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/fiorina/station/lowsec)
"euz" = (
/obj/structure/bed/chair{
@@ -7170,10 +5720,7 @@
dir = 4;
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/fiorina/station/medbay)
"evd" = (
/obj/structure/disposalpipe/segment{
@@ -7188,19 +5735,13 @@
/area/fiorina/tumor/servers)
"evk" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/fiorina/station/medbay)
"evl" = (
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "brflowers_1"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"evC" = (
/obj/structure/barricade/sandbags{
@@ -7212,10 +5753,7 @@
icon_state = "sandbag_0";
pixel_y = -14
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"evT" = (
/obj/structure/stairs/perspective{
@@ -7248,10 +5786,7 @@
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"exa" = (
/obj/structure/bed/chair,
@@ -7260,25 +5795,17 @@
"exl" = (
/obj/structure/largecrate/random,
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"exy" = (
/obj/structure/bed/chair{
dir = 4;
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/fiorina/maintenance)
"exI" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/fiorina/station/park)
"exO" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -7287,9 +5814,7 @@
/obj/structure/barricade/handrail/type_b{
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"exW" = (
/obj/structure/monorail{
@@ -7307,9 +5832,7 @@
/obj/structure/machinery/computer/atmos_alert{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"eyj" = (
/obj/structure/surface/table/reinforced/prison,
@@ -7327,10 +5850,7 @@
pixel_x = -6;
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/fiorina/station/power_ring)
"eys" = (
/obj/vehicle/train/cargo/engine,
@@ -7340,9 +5860,7 @@
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate,
/area/fiorina/station/botany)
"eyy" = (
/obj/structure/machinery/light/double/blue{
@@ -7356,23 +5874,15 @@
/area/fiorina/station/security)
"eyz" = (
/obj/structure/machinery/portable_atmospherics/canister/phoron,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/telecomm/lz1_cargo)
"eyO" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"ezd" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"eze" = (
/obj/structure/platform/kutjevo/smooth{
@@ -7396,19 +5906,14 @@
/area/fiorina/station/telecomm/lz1_cargo)
"ezO" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ezU" = (
/obj/structure/surface/table/reinforced/prison{
dir = 4;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"ezV" = (
/obj/item/stack/sheet/metal,
@@ -7428,59 +5933,38 @@
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "lavendergrass_3"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"eBj" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"eBr" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"eBO" = (
/obj/structure/machinery/door/airlock/almayer/marine,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"eBS" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/fiorina/station/power_ring)
"eCy" = (
/obj/effect/spawner/random/gun/pistol,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"eCK" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/fiorina/lz/near_lzII)
"eDp" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"eDA" = (
/obj/structure/prop/structure_lattice{
@@ -7492,15 +5976,11 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/research_cells)
"eEx" = (
/obj/item/circuitboard/machine/rdserver,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"eEC" = (
/obj/structure/surface/table/reinforced/prison,
@@ -7509,9 +5989,7 @@
pixel_x = 7;
pixel_y = 22
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"eED" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -7535,25 +6013,18 @@
/area/fiorina/tumor/servers)
"eEQ" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/lz/near_lzI)
"eET" = (
/obj/structure/closet/secure_closet/freezer/fridge/full,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"eEX" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"eFa" = (
/obj/structure/barricade/metal{
@@ -7565,19 +6036,14 @@
/area/fiorina/station/park)
"eFq" = (
/obj/item/storage/bible/hefa,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/fiorina/station/chapel)
"eFD" = (
/obj/structure/window_frame/prison,
/turf/open/floor/plating/prison,
/area/fiorina/station/chapel)
"eFQ" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/fiorina/station/disco)
"eFR" = (
/obj/structure/prop/souto_land/streamer{
@@ -7596,9 +6062,7 @@
/obj/structure/window/reinforced,
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/firstaid/regular,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"eGm" = (
/obj/structure/stairs/perspective{
@@ -7613,9 +6077,7 @@
"eGO" = (
/obj/item/storage/toolbox/electrical,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"eHa" = (
/obj/structure/lattice,
@@ -7627,19 +6089,14 @@
dir = 2;
name = "Confession Booth"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"eHn" = (
/obj/structure/barricade/metal{
health = 250;
icon_state = "metal_1"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/tumor/ice_lab)
"eHt" = (
/obj/structure/window/reinforced{
@@ -7667,10 +6124,7 @@
/area/fiorina/tumor/civres)
"eHQ" = (
/obj/item/trash/popcorn,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/power_ring)
"eIx" = (
/obj/structure/window/reinforced{
@@ -7679,29 +6133,20 @@
/obj/structure/window/reinforced,
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/firstaid/regular,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"eIB" = (
/obj/item/frame/rack,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"eIF" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"eIX" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/oob)
"eJm" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -7715,22 +6160,15 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"eJy" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/lowsec)
"eJK" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"eJQ" = (
/obj/structure/platform/kutjevo/smooth{
@@ -7746,28 +6184,19 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"eLy" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/disco)
"eLB" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"eLQ" = (
/obj/item/weapon/gun/energy/taser,
@@ -7792,16 +6221,12 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"eME" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/fiorina/tumor/servers)
"eMG" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/access{
@@ -7814,9 +6239,7 @@
dir = 1;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"eMU" = (
/turf/closed/shuttle/ert{
@@ -7825,9 +6248,7 @@
},
/area/fiorina/station/power_ring)
"eNa" = (
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/fiorina/station/lowsec)
"eNn" = (
/obj/structure/prop/souto_land/pole,
@@ -7835,10 +6256,7 @@
dir = 4;
pixel_y = 24
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/station/park)
"eNr" = (
/obj/structure/surface/table/reinforced/prison,
@@ -7847,27 +6265,19 @@
/area/fiorina/station/lowsec)
"eNv" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/telecomm/lz1_tram)
"eOp" = (
/obj/effect/decal/medical_decals{
icon_state = "cryocell1decal"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"eOy" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"eOF" = (
/obj/structure/platform/kutjevo/smooth{
@@ -7882,17 +6292,11 @@
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/station/transit_hub)
"eOM" = (
/obj/item/reagent_container/food/snacks/eat_bar,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"ePq" = (
/obj/item/trash/cigbutt/ucigbutt,
@@ -7920,17 +6324,11 @@
/area/fiorina/station/security)
"ePU" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"eQb" = (
/obj/item/clothing/gloves/boxing/green,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"eQk" = (
/obj/structure/machinery/light/double/blue{
@@ -7946,42 +6344,28 @@
pixel_x = 8;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate,
/area/fiorina/station/botany)
"eQQ" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/prison/platingdmg1,
/area/fiorina/station/chapel)
"eQX" = (
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib3"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/flight_deck)
"eQY" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"eRl" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"eRq" = (
/obj/item/toy/bikehorn,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"eRz" = (
/obj/structure/machinery/vending/snack/packaged,
@@ -7989,30 +6373,19 @@
/area/fiorina/tumor/ice_lab)
"eRF" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"eRR" = (
/obj/item/ammo_magazine/smg/mp5,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"eRZ" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"eSn" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/southeast,
/area/fiorina/station/botany)
"eSF" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
@@ -8029,17 +6402,11 @@
"eSO" = (
/obj/structure/largecrate/random/case/double,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"eTa" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/lowsec)
"eTb" = (
/turf/closed/shuttle/ert{
@@ -8069,19 +6436,13 @@
"eUy" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/drinks/coffee,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"eUN" = (
/obj/effect/decal/medical_decals{
icon_state = "docdecal1"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"eUP" = (
/obj/item/tool/warning_cone,
@@ -8126,40 +6487,28 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"eVN" = (
/obj/item/bodybag,
/obj/item/bodybag{
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"eVO" = (
/turf/closed/shuttle/ert,
/area/fiorina/tumor/ship)
"eWf" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/central_ring)
"eWr" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/fiorina/tumor/civres)
"eWz" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/flash,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"eWA" = (
/obj/structure/filingcabinet{
@@ -8170,9 +6519,7 @@
pixel_x = -8;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"eWP" = (
/obj/structure/sign/prop3{
@@ -8190,9 +6537,7 @@
dir = 4;
pixel_y = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"eXp" = (
/turf/closed/wall/r_wall/prison,
@@ -8218,23 +6563,15 @@
"eYr" = (
/obj/structure/inflatable,
/obj/structure/barricade/handrail/type_b,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"eYs" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/fire/empty,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"eYz" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"eYC" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
@@ -8291,16 +6628,11 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"eZW" = (
/obj/item/stack/rods/plasteel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/disco)
"fac" = (
/obj/structure/platform/shiva{
@@ -8323,10 +6655,7 @@
/area/fiorina/station/power_ring)
"fbc" = (
/obj/item/reagent_container/food/drinks/cans/waterbottle,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"fbo" = (
/obj/structure/barricade/plasteel,
@@ -8341,18 +6670,13 @@
/obj/item/clothing/suit/chef/classic,
/obj/structure/bed/stool,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"fbX" = (
/obj/item/stack/sheet/wood{
amount = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"fcg" = (
/obj/structure/surface/table/reinforced/prison,
@@ -8361,9 +6685,7 @@
pixel_x = -2;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"fcA" = (
/obj/effect/landmark/yautja_teleport,
@@ -8373,10 +6695,7 @@
/obj/structure/barricade/deployable{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"fdf" = (
/obj/structure/closet,
@@ -8389,9 +6708,7 @@
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/lz/near_lzI)
"fdC" = (
/obj/item/prop/helmetgarb/spacejam_tickets{
@@ -8404,9 +6721,7 @@
/area/fiorina/station/flight_deck)
"fdR" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/fiorina/station/park)
"fdV" = (
/obj/structure/platform_decoration/kutjevo{
@@ -8426,10 +6741,7 @@
/area/fiorina/station/medbay)
"ffA" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"ffZ" = (
/obj/structure/extinguisher_cabinet,
@@ -8437,9 +6749,7 @@
/area/fiorina/station/power_ring)
"fgq" = (
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"fgM" = (
/obj/structure/platform,
@@ -8447,16 +6757,11 @@
dir = 2;
icon_state = "casing_5"
},
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/fiorina/station/park)
"fgN" = (
/obj/item/device/flashlight/flare,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzI)
"fgU" = (
/obj/structure/surface/table/reinforced/prison,
@@ -8468,17 +6773,12 @@
desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
name = "Surgery Cleaner"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"fhB" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/emergency,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"fic" = (
/obj/structure/bed/sofa/south/grey/right,
@@ -8488,10 +6788,7 @@
/turf/open/floor/wood,
/area/fiorina/station/park)
"fie" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/chapel)
"fiq" = (
/turf/open/floor/plating/prison,
@@ -8506,17 +6803,13 @@
/area/fiorina/station/research_cells)
"fiw" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"fiG" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_7"
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"fiU" = (
/turf/open/floor/plating/plating_catwalk,
@@ -8533,10 +6826,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"fjg" = (
/obj/structure/machinery/light/double/blue{
@@ -8551,10 +6841,7 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecaldir"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"fjr" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -8571,10 +6858,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"fjX" = (
/turf/closed/shuttle/elevator{
@@ -8586,9 +6870,7 @@
/obj/structure/machinery/computer/cameras{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"fkH" = (
/obj/structure/platform{
@@ -8597,16 +6879,11 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottomleft"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"fmb" = (
/obj/item/storage/firstaid/toxin,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"fmg" = (
/obj/item/shard{
@@ -8617,10 +6894,7 @@
"fmE" = (
/obj/effect/landmark/objective_landmark/medium,
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/maintenance)
"fmY" = (
/obj/item/device/cassette_tape/ocean,
@@ -8635,10 +6909,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/tumor/ice_lab)
"fnD" = (
/turf/closed/shuttle/elevator{
@@ -8647,9 +6918,7 @@
/area/fiorina/station/telecomm/lz1_cargo)
"fnY" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"fob" = (
/obj/structure/platform{
@@ -8662,10 +6931,7 @@
"fop" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"fou" = (
/obj/structure/barricade/deployable{
@@ -8682,9 +6948,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"fpn" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -8701,10 +6965,7 @@
dir = 4;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/fiorina/station/medbay)
"fpB" = (
/obj/item/tool/wirecutters/clippers,
@@ -8718,10 +6979,7 @@
/turf/open/floor/prison,
/area/fiorina/station/transit_hub)
"fqg" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/central_ring)
"fqh" = (
/obj/structure/machinery/light/double/blue{
@@ -8729,10 +6987,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/fiorina/station/medbay)
"fqF" = (
/obj/effect/landmark{
@@ -8744,16 +6999,11 @@
/area/fiorina/tumor/servers)
"fqI" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"frc" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/civres_blue)
"frv" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
@@ -8763,19 +7013,13 @@
/obj/effect/spawner/random/toolbox,
/obj/structure/surface/rack,
/obj/item/device/flashlight,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"frR" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottom"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"fsk" = (
/obj/structure/machinery/space_heater,
@@ -8783,9 +7027,7 @@
/area/fiorina/tumor/fiberbush)
"ftb" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"ftd" = (
/obj/structure/platform{
@@ -8795,37 +7037,26 @@
/obj/structure/platform_decoration{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/botany)
"fth" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"ftS" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"ftU" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"fun" = (
/obj/item/weapon/gun/smg/mp5,
/obj/item/ammo_casing{
icon_state = "casing_6_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"fuw" = (
/obj/item/stack/cable_coil,
@@ -8847,36 +7078,24 @@
pixel_y = 8
},
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"fuO" = (
/obj/item/clipboard,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"fvr" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/park)
"fvH" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/oob)
"fvK" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"fvL" = (
/obj/item/stack/sheet/metal,
@@ -8892,9 +7111,7 @@
pixel_x = 9;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"fwn" = (
/obj/structure/lattice,
@@ -8910,10 +7127,7 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecaldir"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"fwY" = (
/obj/structure/barricade/metal/wired{
@@ -8935,15 +7149,11 @@
/area/fiorina/station/security)
"fxt" = (
/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"fxL" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"fxS" = (
/obj/structure/surface/table/reinforced/prison,
@@ -8957,10 +7167,7 @@
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "ywflowers_3"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"fyy" = (
/obj/structure/bed/chair/wood/normal{
@@ -8985,34 +7192,25 @@
/area/fiorina/station/park)
"fzp" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue,
/area/fiorina/station/botany)
"fzC" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/gun/shotgun/highchance,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/maintenance)
"fzO" = (
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"fAf" = (
/turf/open/floor/prison,
/area/fiorina/lz/near_lzII)
"fAr" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/tumor/aux_engi)
"fAt" = (
/obj/structure/flora/bush/ausbushes/ausbush{
@@ -9020,10 +7218,7 @@
icon_state = "fullgrass_3";
name = "Fiberbush(tm) tubers"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/aux_engi)
"fAv" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -9036,9 +7231,7 @@
dir = 8;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"fAI" = (
/obj/structure/surface/table/reinforced/prison,
@@ -9047,18 +7240,14 @@
/area/fiorina/station/park)
"fAS" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"fAU" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin{
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"fAZ" = (
/obj/structure/surface/rack,
@@ -9070,9 +7259,7 @@
/area/fiorina/station/chapel)
"fBr" = (
/obj/structure/closet/secure_closet/engineering_materials,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"fBD" = (
/obj/structure/largecrate/random/case/small,
@@ -9089,19 +7276,13 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"fCr" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"fCw" = (
/obj/structure/machinery/vending/snack/packaged,
@@ -9110,9 +7291,7 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"fCD" = (
/obj/item/stack/sheet/metal,
@@ -9125,17 +7304,11 @@
pixel_y = 12
},
/obj/item/cell/super,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"fCJ" = (
/obj/structure/girder,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"fCW" = (
/obj/structure/surface/table/reinforced/prison,
@@ -9150,26 +7323,17 @@
/area/fiorina/station/power_ring)
"fDb" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"fDi" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"fDE" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/fiorina/station/central_ring)
"fDJ" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzI)
"fDQ" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -9195,22 +7359,16 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"fEH" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"fEY" = (
/obj/structure/machinery/power/apc,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/fiorina/station/power_ring)
"fFv" = (
/obj/structure/barricade/sandbags{
@@ -9218,17 +7376,11 @@
layer = 2.97;
pixel_y = -14
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/disco)
"fFw" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/fiorina/station/power_ring)
"fFE" = (
/obj/item/tool/screwdriver,
@@ -9238,10 +7390,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southeast,
/area/fiorina/station/park)
"fGA" = (
/obj/item/explosive/grenade/high_explosive/frag,
@@ -9252,9 +7401,7 @@
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"fHb" = (
/obj/structure/monorail{
@@ -9263,17 +7410,13 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/power_ring)
"fHo" = (
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"fHI" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"fHK" = (
/obj/structure/ice/thin/indestructible{
@@ -9285,9 +7428,7 @@
/area/fiorina/station/research_cells)
"fIn" = (
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"fIq" = (
/obj/effect/decal/hefa_cult_decals/d32{
@@ -9303,10 +7444,7 @@
desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured.";
name = "HEFA Order milita armband"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/chapel)
"fIT" = (
/obj/structure/largecrate/random/secure,
@@ -9326,9 +7464,7 @@
/area/fiorina/tumor/civres)
"fJV" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"fJW" = (
/obj/structure/surface/table/reinforced/prison,
@@ -9340,32 +7476,21 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"fKn" = (
/obj/item/stock_parts/manipulator/pico,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/fiorina/tumor/servers)
"fKu" = (
/obj/item/device/flashlight/flare,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"fKP" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"fKX" = (
/obj/item/storage/backpack{
@@ -9373,30 +7498,21 @@
pixel_y = 15
},
/obj/item/trash/syndi_cakes,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"fLb" = (
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"fLu" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"fLH" = (
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"fLS" = (
/obj/structure/bed/chair,
@@ -9404,17 +7520,13 @@
/area/fiorina/station/park)
"fLX" = (
/obj/structure/bed/sofa/south/grey/left,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"fLY" = (
/obj/structure/machinery/newscaster{
pixel_y = 32
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"fMc" = (
/obj/structure/platform{
@@ -9424,18 +7536,13 @@
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"fMn" = (
/obj/structure/machinery/photocopier{
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"fNA" = (
/obj/structure/stairs/perspective{
@@ -9451,17 +7558,13 @@
"fOe" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/disco)
"fOg" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
dir = 8
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"fOi" = (
/obj/structure/bed/chair{
@@ -9476,42 +7579,27 @@
/area/fiorina/station/central_ring)
"fOC" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"fOK" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/fiorina/station/flight_deck)
"fOT" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/fiorina/station/power_ring)
"fPl" = (
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"fPB" = (
/turf/open/space,
/area/fiorina/station/medbay)
"fQa" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/telecomm/lz1_tram)
"fQA" = (
/obj/structure/flora/pottedplant{
@@ -9519,9 +7607,7 @@
layer = 3.5;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"fQB" = (
/obj/item/ammo_casing/shell{
@@ -9537,10 +7623,7 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecaldir"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"fQV" = (
/obj/structure/platform/kutjevo/smooth{
@@ -9558,27 +7641,18 @@
pixel_y = 8
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/fiorina/station/research_cells)
"fRo" = (
/obj/structure/bed/chair,
/turf/open/floor/plating/prison,
/area/fiorina/tumor/ice_lab)
"fRq" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/security)
"fSa" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"fSp" = (
/obj/effect/decal/cleanable/blood{
@@ -9588,9 +7662,7 @@
/obj/item/stack/sheet/metal{
amount = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzI)
"fSq" = (
/obj/structure/machinery/door/airlock/almayer/marine{
@@ -9622,10 +7694,7 @@
/turf/open/floor/almayer,
/area/fiorina/tumor/ship)
"fTd" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/fiorina/tumor/aux_engi)
"fTn" = (
/obj/structure/stairs/perspective{
@@ -9649,10 +7718,7 @@
/obj/structure/barricade/plasteel{
dir = 4
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/fiorina/tumor/ship)
"fUm" = (
/obj/item/clothing/head/pirate,
@@ -9678,17 +7744,13 @@
/area/fiorina/tumor/servers)
"fUD" = (
/obj/structure/dropship_equipment/mg_holder,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"fUP" = (
/obj/structure/machinery/door/window/eastright{
dir = 2
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/lz/near_lzI)
"fUX" = (
/obj/structure/bedsheetbin,
@@ -9698,10 +7760,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/fiorina/station/chapel)
"fVY" = (
/obj/effect/decal{
@@ -9713,16 +7772,10 @@
/obj/item/stack/sheet/metal{
amount = 5
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/flight_deck)
"fWr" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/fiorina/lz/near_lzII)
"fWs" = (
/obj/structure/stairs/perspective{
@@ -9735,15 +7788,10 @@
/turf/open/floor/prison,
/area/fiorina/station/telecomm/lz1_tram)
"fWy" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/fiorina/station/power_ring)
"fWH" = (
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"fWI" = (
/obj/structure/monorail{
@@ -9753,33 +7801,23 @@
/turf/open/space,
/area/fiorina/oob)
"fWV" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/fiorina/station/disco)
"fXo" = (
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/disco)
"fXB" = (
/turf/open/floor/plating/plating_catwalk/prison,
/area/fiorina/station/security)
"fXD" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue,
/area/fiorina/station/botany)
"fXI" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/fiorina/station/transit_hub)
"fXL" = (
/obj/structure/disposalpipe/segment{
@@ -9794,23 +7832,15 @@
/area/fiorina/tumor/servers)
"fXW" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/fiorina/station/power_ring)
"fYa" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"fYf" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"fYo" = (
/obj/structure/machinery/light/double/blue{
@@ -9828,9 +7858,7 @@
/obj/item/ammo_casing{
icon_state = "casing_6"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"fZc" = (
/obj/structure/surface/table/reinforced/prison,
@@ -9838,9 +7866,7 @@
pixel_x = -4;
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"fZd" = (
/obj/structure/machinery/landinglight/ds2/delayone{
@@ -9850,9 +7876,7 @@
/area/fiorina/lz/near_lzII)
"fZe" = (
/obj/item/tool/shovel/etool,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"fZz" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -9871,9 +7895,7 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/fiorina/station/civres_blue)
"fZW" = (
/obj/structure/surface/table/reinforced/prison,
@@ -9884,14 +7906,10 @@
pixel_x = -6;
pixel_y = 16
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"gag" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"gaQ" = (
/obj/structure/machinery/power/apc{
@@ -9900,17 +7918,12 @@
/turf/open/floor/prison,
/area/fiorina/station/security)
"gbf" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"gbh" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"gbk" = (
/obj/item/trash/burger,
@@ -9922,27 +7935,18 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"gbF" = (
/obj/item/clothing/gloves/botanic_leather,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/west,
/area/fiorina/station/botany)
"gbO" = (
/obj/structure/platform_decoration{
dir = 4
},
/obj/item/trash/used_stasis_bag,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/station/medbay)
"gbR" = (
/obj/structure/machinery/light/double/blue{
@@ -9950,9 +7954,7 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"gbT" = (
/obj/structure/machinery/vending/cola,
@@ -9960,9 +7962,7 @@
/area/fiorina/station/medbay)
"gbV" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"gcx" = (
/obj/structure/monorail{
@@ -9973,16 +7973,11 @@
/area/fiorina/station/transit_hub)
"gcD" = (
/obj/structure/kitchenspike,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"gdQ" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/fiorina/station/chapel)
"gdS" = (
/obj/structure/machinery/light/double/blue{
@@ -9990,9 +7985,7 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"gec" = (
/obj/structure/prop/structure_lattice{
@@ -10001,9 +7994,7 @@
icon = 'icons/turf/elevator.dmi';
icon_state = "wall_broke"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/civres_blue)
"gef" = (
/obj/structure/lattice,
@@ -10016,9 +8007,7 @@
/obj/item/ammo_magazine/rifle/m16{
current_rounds = 0
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"geF" = (
/obj/structure/lattice,
@@ -10030,10 +8019,7 @@
/area/fiorina/station/chapel)
"geT" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"gfh" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -10079,9 +8065,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/spray/pepper,
/obj/item/clothing/glasses/sunglasses/sechud,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ghg" = (
/obj/structure/barricade/handrail{
@@ -10100,9 +8084,7 @@
"ghw" = (
/obj/structure/bed/chair/dropship/pilot,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"ghz" = (
/obj/structure/lz_sign/prison_sign,
@@ -10113,10 +8095,7 @@
/turf/open/floor/prison,
/area/fiorina/station/telecomm/lz1_cargo)
"gir" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/servers)
"giw" = (
/obj/structure/platform_decoration{
@@ -10126,9 +8105,7 @@
/area/fiorina/station/transit_hub)
"giA" = (
/obj/structure/bed/sofa/south/grey/left,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"giX" = (
/obj/structure/barricade/handrail/type_b{
@@ -10149,41 +8126,29 @@
/area/fiorina/lz/near_lzII)
"gjz" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"gjY" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/fiorina/station/chapel)
"gkv" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"gkC" = (
/obj/structure/machinery/vending/cola,
/obj/structure/prop/souto_land/streamer{
pixel_y = 24
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/station/park)
"gkE" = (
/obj/structure/surface/rack,
/obj/item/explosive/grenade/high_explosive/frag,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"glj" = (
/obj/structure/window/framed/prison,
@@ -10201,9 +8166,7 @@
/area/fiorina/tumor/aux_engi)
"gmg" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/flight_deck)
"gmp" = (
/obj/structure/machinery/light/double/blue{
@@ -10211,19 +8174,14 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_tram)
"gmx" = (
/obj/structure/closet/crate/miningcar{
name = "\improper materials storage bin"
},
/obj/item/reagent_container/food/snacks/meat,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/north,
/area/fiorina/station/botany)
"gmF" = (
/obj/structure/bed/sofa/vert/grey/top,
@@ -10237,36 +8195,25 @@
/obj/structure/closet/secure_closet/engineering_materials,
/obj/effect/spawner/random/gun/smg,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"gmT" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"gnG" = (
/obj/effect/decal/medical_decals{
icon_state = "docstripingdir"
},
/obj/structure/bed/roller,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"gnL" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/tool/kitchen/rollingpin,
/obj/item/reagent_container/food/snacks/grown/carrot,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"gnQ" = (
/obj/effect/spawner/random/toolbox,
@@ -10277,16 +8224,10 @@
icon_state = "abed"
},
/obj/item/storage/bible/hefa,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"goo" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/fiorina/lz/near_lzII)
"goG" = (
/obj/structure/window/framed/prison/reinforced,
@@ -10298,9 +8239,7 @@
/area/fiorina/station/telecomm/lz1_cargo)
"gpA" = (
/obj/item/trash/pistachios,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"gpG" = (
/obj/structure/window_frame/prison,
@@ -10315,30 +8254,20 @@
pixel_x = 6;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/tumor/servers)
"gqM" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"gqU" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper/janitor,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"grg" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"grA" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
@@ -10370,9 +8299,7 @@
"gsU" = (
/obj/structure/closet/secure_closet/engineering_welding,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"gsX" = (
/obj/structure/machinery/light/double/blue{
@@ -10388,9 +8315,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"gtg" = (
/obj/structure/barricade/sandbags{
@@ -10406,26 +8331,20 @@
/area/fiorina/lz/near_lzI)
"gtr" = (
/obj/structure/bedsheetbin,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"gtH" = (
/obj/structure/safe,
/obj/item/storage/beer_pack,
/obj/item/storage/beer_pack,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/medbay)
"gtN" = (
/obj/item/storage/beer_pack{
pixel_y = 10
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"gtP" = (
/obj/item/trash/uscm_mre,
@@ -10433,9 +8352,7 @@
/area/fiorina/station/telecomm/lz1_cargo)
"gtT" = (
/obj/item/trash/eat,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzI)
"guf" = (
/obj/structure/bed/chair{
@@ -10447,20 +8364,14 @@
"guv" = (
/obj/item/packageWrap,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/lz/near_lzI)
"gux" = (
/obj/effect/landmark/corpsespawner/ua_riot,
/turf/open/floor/prison,
/area/fiorina/station/disco)
"guz" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"guU" = (
/obj/structure/prop/structure_lattice{
@@ -10476,18 +8387,12 @@
"gve" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/servers)
"gvr" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/pill_bottle/inaprovaline/skillless,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"gvz" = (
/obj/structure/machinery/light/double/blue{
@@ -10508,9 +8413,7 @@
/obj/structure/platform_decoration{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"gvZ" = (
/obj/item/stack/sheet/wood{
@@ -10518,17 +8421,12 @@
pixel_y = -3
},
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/tumor/servers)
"gwm" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/weapon/gun/energy/taser,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"gws" = (
/turf/open/floor/plating,
@@ -10558,22 +8456,15 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/lz/near_lzI)
"gxQ" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"gxR" = (
/obj/item/stack/tile/plasteel,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"gyh" = (
/obj/effect/decal/medical_decals{
@@ -10584,17 +8475,11 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"gyt" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"gyy" = (
/obj/structure/platform{
@@ -10604,18 +8489,13 @@
/area/fiorina/station/transit_hub)
"gyA" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"gyB" = (
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "ywflowers_2"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"gyJ" = (
/obj/structure/machinery/light/double/blue{
@@ -10629,10 +8509,7 @@
/obj/item/stack/sheet/wood{
amount = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"gzb" = (
/obj/structure/cable/heavyduty{
@@ -10646,23 +8523,16 @@
pixel_x = -11;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"gzu" = (
/obj/item/clothing/mask/cigarette/bcigarette,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"gzN" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/toy/handcard/aceofspades,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"gAh" = (
/obj/structure/prop/structure_lattice{
@@ -10685,30 +8555,21 @@
/area/fiorina/tumor/ice_lab)
"gAC" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"gAQ" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"gBe" = (
/obj/structure/machinery/landinglight/ds2/delaythree,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"gBw" = (
/obj/item/trash/chunk,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"gBx" = (
/obj/structure/prop/structure_lattice{
@@ -10719,25 +8580,17 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"gBN" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/station/medbay)
"gBP" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"gBR" = (
/obj/structure/platform{
@@ -10751,9 +8604,7 @@
/area/fiorina/station/medbay)
"gBY" = (
/obj/structure/window/framed/prison/reinforced/hull,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/chapel)
"gCn" = (
/obj/structure/surface/table/woodentable,
@@ -10781,16 +8632,11 @@
"gCH" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"gCK" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"gDx" = (
/obj/structure/surface/table/woodentable,
@@ -10808,9 +8654,7 @@
/turf/open/floor/prison,
/area/fiorina/tumor/ice_lab)
"gEq" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/prison/platingdmg1,
/area/fiorina/oob)
"gEx" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -10837,33 +8681,21 @@
/area/fiorina/station/lowsec)
"gFp" = (
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"gFN" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"gFW" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/fiorina/tumor/aux_engi)
"gFZ" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"gGc" = (
/obj/structure/platform{
@@ -10895,9 +8727,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"gHo" = (
/obj/structure/machinery/light/double/blue{
@@ -10906,10 +8736,7 @@
pixel_y = -3
},
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/telecomm/lz1_tram)
"gHy" = (
/obj/item/stack/sheet/metal/medium_stack,
@@ -10936,10 +8763,7 @@
pixel_x = 15;
pixel_y = 25
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"gIo" = (
/obj/structure/surface/table/reinforced/prison,
@@ -10948,25 +8772,18 @@
pixel_y = 6
},
/obj/item/storage/box/cups,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"gIs" = (
/obj/item/reagent_container/food/drinks/bottle/rum,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"gIB" = (
/obj/structure/window/framed/prison,
/turf/open/floor/plating/prison,
/area/fiorina/station/security)
"gID" = (
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/oob)
"gJu" = (
/obj/effect/alien/weeds/node,
@@ -10974,9 +8791,7 @@
/area/fiorina/tumor/aux_engi)
"gKg" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"gKi" = (
/obj/structure/window/framed/prison,
@@ -10995,10 +8810,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/fiorina/station/chapel)
"gLk" = (
/obj/item/stool,
@@ -11018,17 +8830,11 @@
/area/fiorina/tumor/servers)
"gLK" = (
/obj/structure/tunnel/maint_tunnel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/southwest,
/area/fiorina/station/botany)
"gLV" = (
/obj/item/clothing/head/welding,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"gNx" = (
/obj/structure/platform{
@@ -11043,41 +8849,29 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottomright"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"gNJ" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"gNU" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"gNY" = (
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "ppflowers_2"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"gOd" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"gOk" = (
/obj/structure/cargo_container/grant/right{
@@ -11087,9 +8881,7 @@
layer = 4;
unacidable = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"gOJ" = (
/obj/structure/closet/secure_closet/medical2{
@@ -11097,16 +8889,11 @@
},
/obj/effect/spawner/random/pills,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/medbay)
"gOU" = (
/obj/item/bodybag,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/fiorina/station/lowsec)
"gPk" = (
/obj/structure/barricade/metal/wired{
@@ -11116,17 +8903,12 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/central_ring)
"gPo" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/fiorina/tumor/civres)
"gPp" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/tool/kitchen/rollingpin,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"gPs" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -11136,26 +8918,17 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"gPS" = (
/obj/item/stack/rods,
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"gPV" = (
/obj/item/ammo_casing{
icon_state = "casing_8"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"gQc" = (
/obj/item/stack/sheet/metal,
@@ -11163,10 +8936,7 @@
/area/fiorina/station/lowsec)
"gQz" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"gQK" = (
/obj/structure/disposalpipe/segment{
@@ -11186,22 +8956,14 @@
/area/fiorina/tumor/aux_engi)
"gRf" = (
/obj/structure/machinery/computer/crew,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"gRg" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"gRA" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/disco)
"gRT" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -11228,16 +8990,12 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"gSg" = (
/obj/structure/platform,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"gSC" = (
/obj/item/prop/helmetgarb/gunoil,
@@ -11245,9 +9003,7 @@
/area/fiorina/maintenance)
"gSK" = (
/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"gSP" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -11267,36 +9023,22 @@
"gTc" = (
/obj/item/storage/belt/shotgun/full/quackers,
/obj/effect/spawner/gibspawner/human,
-/turf/open/gm/river{
- color = "#990000";
- name = "pool"
- },
+/turf/open/gm/river/darkred_pool,
/area/fiorina/station/park)
"gTi" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/fiorina/station/chapel)
"gTy" = (
/obj/item/stack/sheet/metal/medium_stack,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/fiorina/lz/near_lzI)
"gTN" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/fiorina/tumor/ice_lab)
"gTW" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"gUj" = (
/turf/closed/shuttle/ert{
@@ -11305,10 +9047,7 @@
/area/fiorina/tumor/ship)
"gUu" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"gVc" = (
/obj/structure/barricade/sandbags{
@@ -11342,17 +9081,12 @@
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib3"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"gWg" = (
/obj/structure/powerloader_wreckage,
/obj/effect/decal/cleanable/blood/gibs/robot/limb,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"gWq" = (
/obj/item/ammo_casing{
@@ -11379,23 +9113,15 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/telecomm/lz2_maint)
"gXF" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/tumor/servers)
"gXI" = (
/obj/item/book/manual/atmospipes,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"gYD" = (
/obj/item/tool/wrench,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"gYH" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -11403,24 +9129,17 @@
dir = 8
},
/obj/item/ammo_magazine/shotgun/beanbag,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"gYM" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"gZc" = (
/obj/effect/decal/hefa_cult_decals/d32{
icon_state = "4"
},
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/maintenance)
"gZf" = (
/obj/structure/machinery/shower{
@@ -11431,9 +9150,7 @@
"gZg" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"gZx" = (
/obj/structure/surface/table/reinforced/prison,
@@ -11445,29 +9162,19 @@
pixel_x = 6;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"gZG" = (
/obj/item/stack/sheet/metal/medium_stack,
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/civres_blue)
"gZM" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/fiorina/station/park)
"hae" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/tumor/ice_lab)
"hao" = (
/obj/structure/surface/table/reinforced/prison,
@@ -11475,9 +9182,7 @@
pixel_y = 7
},
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"hay" = (
/turf/closed/shuttle/ert{
@@ -11486,24 +9191,17 @@
/area/fiorina/station/medbay)
"haJ" = (
/obj/item/disk,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"haQ" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"hbn" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"hbo" = (
/obj/structure/surface/table/reinforced/prison,
@@ -11545,23 +9243,17 @@
/area/fiorina/station/disco)
"hbt" = (
/obj/item/tool/screwdriver,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"hbH" = (
/obj/item/stack/sandbags_empty/half,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/lz/near_lzI)
"hcs" = (
/obj/item/stack/sheet/metal{
amount = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"hcv" = (
/obj/item/stack/tile/plasteel{
@@ -11579,18 +9271,13 @@
icon_state = "poster11";
pixel_y = 32
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"hcY" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"hds" = (
/obj/structure/cable/heavyduty{
@@ -11603,28 +9290,19 @@
dir = 4;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"hdR" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/disco)
"hej" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/maintenance)
"hek" = (
/obj/structure/closet/secure_closet/security_empty,
/obj/item/weapon/baton,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"heo" = (
/obj/structure/closet/crate/trashcart,
@@ -11633,15 +9311,11 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"heA" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"heO" = (
/turf/closed/shuttle/elevator,
@@ -11650,10 +9324,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/southeast,
/area/fiorina/station/botany)
"hfc" = (
/obj/structure/surface/table/reinforced/prison,
@@ -11678,37 +9349,23 @@
/area/fiorina/station/flight_deck)
"hgc" = (
/obj/structure/largecrate/supply/medicine/medivend,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"hgh" = (
/obj/item/trash/burger,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"hgA" = (
/obj/item/ammo_magazine/smg/nailgun,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"hgD" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/east,
/area/fiorina/tumor/aux_engi)
"hgP" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/fiorina/station/park)
"hgS" = (
/turf/closed/shuttle/ert{
@@ -11727,10 +9384,7 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/structure/surface/rack,
/obj/item/clothing/gloves/latex,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"hhL" = (
/obj/effect/spawner/random/powercell,
@@ -11747,10 +9401,7 @@
/obj/structure/surface/rack,
/obj/item/tool/plantspray/pests,
/obj/item/tool/plantspray/weeds,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"hir" = (
/obj/structure/window/framed/prison/reinforced,
@@ -11763,24 +9414,15 @@
/area/fiorina/tumor/aux_engi)
"hiP" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"hjp" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"hjB" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"hjC" = (
/obj/structure/platform{
@@ -11803,9 +9445,7 @@
"hjM" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"hjR" = (
/obj/effect/landmark/monkey_spawn,
@@ -11830,36 +9470,22 @@
/obj/effect/decal/medical_decals{
icon_state = "docdecal1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"hkA" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/flight_deck)
"hkB" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"hkH" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"hkM" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/body,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"hlk" = (
/obj/structure/surface/table/reinforced/prison,
@@ -11868,9 +9494,7 @@
pixel_x = -4;
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"hlB" = (
/obj/item/tool/kitchen/knife,
@@ -11886,16 +9510,11 @@
/area/fiorina/tumor/aux_engi)
"hmq" = (
/obj/item/device/flashlight,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/lz/near_lzI)
"hmE" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/tumor/ice_lab)
"hmS" = (
/obj/structure/monorail{
@@ -11909,17 +9528,13 @@
/area/fiorina/station/power_ring)
"hnK" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"hnM" = (
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"hob" = (
/obj/item/phone{
@@ -11928,24 +9543,17 @@
/turf/open/floor/plating/prison,
/area/fiorina/oob)
"hoo" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/fiorina/station/civres_blue)
"hox" = (
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"hoC" = (
/obj/item/trash/popcorn,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"hoH" = (
/obj/effect/decal/cleanable/cobweb{
@@ -11970,9 +9578,7 @@
/area/fiorina/station/security)
"hpn" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/tumor/aux_engi)
"hpz" = (
/obj/structure/ice/thin/indestructible{
@@ -11988,9 +9594,7 @@
/area/fiorina/station/power_ring)
"hpX" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"hqb" = (
/obj/structure/stairs/perspective{
@@ -12019,16 +9623,10 @@
/obj/structure/platform_decoration{
dir = 5
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/tumor/ice_lab)
"hqO" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/lz/near_lzII)
"hqX" = (
/obj/structure/bed/chair{
@@ -12039,9 +9637,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"hre" = (
/obj/structure/platform_decoration{
@@ -12059,10 +9655,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/tumor/servers)
"hrw" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/fiorina/tumor/servers)
"hrz" = (
/obj/structure/prop/almayer/computers/mission_planning_system{
@@ -12083,10 +9676,7 @@
/area/fiorina/station/disco)
"hrA" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"hrB" = (
/obj/item/tool/weldingtool,
@@ -12100,9 +9690,7 @@
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"hsc" = (
/obj/structure/cable/heavyduty{
@@ -12114,26 +9702,18 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"hsl" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/fiorina/tumor/servers)
"hsz" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"hsC" = (
/obj/structure/surface/table/reinforced/prison,
@@ -12158,18 +9738,14 @@
/obj/item/ammo_magazine/rifle/m16{
current_rounds = 0
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"htt" = (
/turf/closed/shuttle/ert,
/area/fiorina/station/power_ring)
"htD" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"htO" = (
/obj/item/ammo_casing{
@@ -12182,31 +9758,20 @@
icon_state = "metal_2"
},
/obj/effect/spawner/random/gun/smg,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"htT" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/fiorina/station/power_ring)
"htX" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/fiorina/station/chapel)
"hub" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"hul" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
@@ -12217,9 +9782,7 @@
/obj/structure/machinery/recharger{
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"huD" = (
/obj/item/tool/crowbar,
@@ -12227,17 +9790,13 @@
/area/fiorina/station/civres_blue)
"huG" = (
/obj/item/tool/wirecutters,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"huJ" = (
/obj/structure/prop/almayer/computers/sensor_computer1{
name = "computer"
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/lowsec)
"hva" = (
/obj/structure/bed/chair/office/light{
@@ -12253,25 +9812,18 @@
pixel_y = 13
},
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/civres_blue)
"hvp" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/tumor/ice_lab)
"hvF" = (
/obj/structure/grille,
/turf/open/floor/plating/prison,
/area/fiorina/station/power_ring)
"hvL" = (
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"hwr" = (
/obj/item/prop/helmetgarb/spacejam_tickets{
@@ -12280,26 +9832,18 @@
pixel_x = 7;
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/chapel)
"hwN" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/fiorina/station/lowsec)
"hwS" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"hxj" = (
/obj/structure/machinery/light/double/blue{
@@ -12308,9 +9852,7 @@
pixel_y = 13
},
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"hxq" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -12342,9 +9884,7 @@
/turf/open/ice/noweed,
/area/fiorina/station/research_cells)
"hyc" = (
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/fiorina/maintenance)
"hyo" = (
/obj/structure/machinery/light/double/blue{
@@ -12352,17 +9892,13 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/fiorina/station/civres_blue)
"hyq" = (
/obj/structure/closet/crate/medical,
/obj/item/tool/surgery/bonegel,
/obj/item/tool/surgery/bonegel,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"hys" = (
/obj/structure/grille,
@@ -12386,25 +9922,17 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"hzv" = (
/obj/structure/window/framed/prison,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"hzF" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"hzG" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
@@ -12417,9 +9945,7 @@
/area/fiorina/station/medbay)
"hzL" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/fiorina/tumor/aux_engi)
"hAs" = (
/obj/structure/reagent_dispensers/water_cooler{
@@ -12434,45 +9960,31 @@
pixel_x = 1;
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"hAI" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"hAP" = (
/obj/item/clothing/under/stowaway,
/obj/structure/machinery/shower{
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"hAX" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/fiorina/tumor/ice_lab)
"hBc" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"hBf" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/tumor/aux_engi)
"hBF" = (
/obj/structure/window_frame/prison/reinforced,
@@ -12490,9 +10002,7 @@
/area/fiorina/station/central_ring)
"hCk" = (
/obj/item/poster,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"hCp" = (
/obj/structure/prop/invuln{
@@ -12503,39 +10013,26 @@
name = "cell door"
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"hCR" = (
/obj/item/stack/sheet/wood,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"hDb" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"hDl" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"hDm" = (
/obj/item/trash/burger,
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"hDS" = (
/obj/structure/platform{
@@ -12546,19 +10043,14 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"hDV" = (
/obj/effect/decal/medical_decals{
icon_state = "docdecal1"
},
/obj/item/stack/cable_coil/blue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"hEb" = (
/turf/closed/shuttle/ert{
@@ -12566,10 +10058,7 @@
},
/area/fiorina/station/medbay)
"hEk" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/flight_deck)
"hEs" = (
/obj/structure/extinguisher_cabinet,
@@ -12583,9 +10072,7 @@
/turf/open/floor/prison,
/area/fiorina/station/disco)
"hEZ" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/prison/platingdmg3,
/area/fiorina/station/security)
"hFC" = (
/obj/item/disk,
@@ -12601,10 +10088,7 @@
/area/fiorina/station/park)
"hFW" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"hGg" = (
/obj/structure/sign/poster{
@@ -12612,9 +10096,7 @@
icon_state = "poster11";
pixel_x = -24
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"hGn" = (
/obj/structure/bed/sofa/vert/grey/bot,
@@ -12623,10 +10105,7 @@
"hGu" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"hGy" = (
/obj/structure/inflatable/popped/door,
@@ -12638,9 +10117,7 @@
icon_state = "abed"
},
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"hHc" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -12651,10 +10128,7 @@
},
/obj/effect/decal/cleanable/cobweb,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"hHq" = (
/obj/structure/closet/cabinet,
@@ -12663,10 +10137,7 @@
/area/fiorina/station/civres_blue)
"hHr" = (
/obj/item/tool/warning_cone,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/station/park)
"hHC" = (
/obj/structure/prop/souto_land/streamer{
@@ -12677,10 +10148,7 @@
dir = 1
},
/obj/effect/landmark/corpsespawner/security/liaison,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/station/park)
"hHH" = (
/obj/effect/decal/cleanable/blood{
@@ -12695,25 +10163,17 @@
pixel_y = 8
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/lowsec)
"hIO" = (
/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"hIX" = (
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/fiorina/station/chapel)
"hJo" = (
/obj/structure/sink{
@@ -12721,25 +10181,17 @@
pixel_x = -12
},
/obj/item/reagent_container/food/drinks/flask/barflask,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/station/research_cells)
"hKN" = (
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/fiorina/station/civres_blue)
"hKP" = (
/obj/structure/platform{
dir = 4
},
/obj/item/tool/shovel/spade,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"hLz" = (
/turf/closed/wall/prison,
@@ -12763,16 +10215,11 @@
/area/fiorina/station/lowsec)
"hMA" = (
/obj/item/tool/crowbar,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"hMH" = (
/obj/item/newspaper,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/fiorina/lz/near_lzII)
"hMK" = (
/obj/effect/landmark/nightmare{
@@ -12791,9 +10238,7 @@
pixel_x = 6;
pixel_y = 20
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"hNU" = (
/obj/structure/janitorialcart,
@@ -12812,18 +10257,13 @@
/area/fiorina/maintenance)
"hOG" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/station/medbay)
"hOQ" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"hPi" = (
/obj/structure/stairs/perspective{
@@ -12835,24 +10275,15 @@
/area/fiorina/station/park)
"hPq" = (
/obj/structure/machinery/power/apc,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"hPu" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/fiorina/station/power_ring)
"hPL" = (
/obj/item/tool/wrench,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/fiorina/tumor/servers)
"hPN" = (
/obj/item/stack/sheet/metal,
@@ -12860,10 +10291,7 @@
/area/fiorina/station/security)
"hPO" = (
/obj/effect/spawner/random/gun/rifle/highchance,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/lz/near_lzI)
"hPY" = (
/obj/structure/surface/rack,
@@ -12881,9 +10309,7 @@
dir = 1;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"hQk" = (
/obj/structure/monorail{
@@ -12913,16 +10339,11 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"hQQ" = (
/obj/structure/largecrate/supply/supplies/tables_racks,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"hQR" = (
/obj/structure/barricade/metal/wired{
@@ -12942,33 +10363,22 @@
dir = 4;
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"hRs" = (
/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"hRX" = (
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/fiorina/station/park)
"hSk" = (
/obj/structure/toilet,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/fiorina/station/civres_blue)
"hSl" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"hSo" = (
/obj/structure/barricade/wooden{
@@ -12979,32 +10389,21 @@
icon_state = "p_stair_ew_full_cap"
},
/obj/structure/platform/stair_cut/alt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/medbay)
"hSA" = (
/obj/item/reagent_container/food/drinks/bottle/tomatojuice,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"hSG" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/fiberbush)
"hSH" = (
/obj/item/reagent_container/food/snacks/donkpocket,
/turf/open/floor/plating/prison,
/area/fiorina/station/civres_blue)
"hSO" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/lz/near_lzI)
"hTf" = (
/obj/structure/prop/structure_lattice{
@@ -13013,18 +10412,13 @@
icon = 'icons/turf/elevator.dmi';
icon_state = "wall_broke"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/telecomm/lz1_cargo)
"hTh" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"hTo" = (
/obj/item/smallDelivery,
@@ -13040,10 +10434,7 @@
/area/fiorina/station/civres_blue)
"hTy" = (
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"hTM" = (
/obj/item/stack/rods,
@@ -13051,9 +10442,7 @@
/area/fiorina/station/transit_hub)
"hTN" = (
/obj/structure/girder,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"hUi" = (
/obj/item/stack/sheet/metal,
@@ -13066,10 +10455,7 @@
/area/fiorina/station/power_ring)
"hUD" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/east,
/area/fiorina/station/chapel)
"hUL" = (
/obj/structure/sink{
@@ -13079,16 +10465,10 @@
pixel_x = -11;
pixel_y = -5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"hUO" = (
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/maintenance)
"hVu" = (
/obj/item/stack/sheet/metal,
@@ -13099,10 +10479,7 @@
/area/fiorina/tumor/servers)
"hVA" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/station/research_cells)
"hVG" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -13123,9 +10500,7 @@
/obj/structure/machinery/photocopier{
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"hWi" = (
/obj/structure/machinery/door/airlock/almayer/maint/autoname{
@@ -13139,10 +10514,7 @@
"hWk" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/spawner/random/gun/rifle/lowchance,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/fiorina/lz/near_lzI)
"hWv" = (
/obj/structure/surface/rack,
@@ -13154,9 +10526,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/botany)
"hWF" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
@@ -13169,24 +10539,18 @@
/obj/item/device/radio{
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"hXF" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"hXG" = (
/obj/structure/barricade/metal/wired{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/lz/near_lzI)
"hXN" = (
/obj/structure/surface/table/reinforced/prison,
@@ -13214,10 +10578,7 @@
/area/fiorina/station/medbay)
"hYl" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"hYs" = (
/obj/structure/barricade/sandbags{
@@ -13237,19 +10598,14 @@
/area/fiorina/station/security)
"hYX" = (
/obj/structure/machinery/bot/medbot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"hZf" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber,
/turf/open/floor/prison,
/area/fiorina/station/medbay)
"hZi" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/telecomm/lz1_tram)
"hZG" = (
/obj/structure/machinery/light/double/blue{
@@ -13257,32 +10613,21 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"hZN" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/fiorina/maintenance)
"hZR" = (
/obj/structure/window/framed/prison/reinforced/hull,
/turf/open/floor/plating/prison,
/area/fiorina/station/lowsec)
"iaa" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/disco)
"iad" = (
/obj/item/device/multitool,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/fiorina/tumor/civres)
"iaE" = (
/obj/structure/prop/structure_lattice{
@@ -13293,15 +10638,10 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"ibl" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/fiorina/lz/near_lzI)
"ibz" = (
/obj/structure/stairs/perspective{
@@ -13319,10 +10659,7 @@
/area/fiorina/lz/near_lzII)
"icg" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/tumor/ice_lab)
"icu" = (
/obj/structure/surface/table/reinforced/prison,
@@ -13341,9 +10678,7 @@
/area/fiorina/tumor/aux_engi)
"idb" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"idi" = (
/obj/item/trash/sosjerky,
@@ -13352,9 +10687,7 @@
"idj" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/briefcase/inflatable,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"idP" = (
/obj/structure/platform{
@@ -13364,20 +10697,14 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"idS" = (
/obj/structure/largecrate/random,
/turf/open/floor/prison,
/area/fiorina/station/central_ring)
"iea" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/fiorina/station/medbay)
"ieu" = (
/obj/structure/platform{
@@ -13391,9 +10718,7 @@
dir = 8;
layer = 2.6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/medbay)
"ieA" = (
/obj/structure/barricade/handrail/type_b,
@@ -13401,29 +10726,20 @@
/area/fiorina/lz/near_lzI)
"ieJ" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"ifc" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"ifk" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"ifm" = (
-/turf/open/floor/prison{
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner,
/area/fiorina/tumor/civres)
"ifp" = (
/obj/structure/surface/table/woodentable,
@@ -13452,33 +10768,23 @@
/area/fiorina/tumor/ship)
"ifL" = (
/obj/item/stack/sheet/metal/medium_stack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"ifN" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/lz/near_lzI)
"ifP" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
density = 0;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/maintenance)
"igc" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/powercell,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"ign" = (
/obj/structure/machinery/light/double/blue{
@@ -13486,10 +10792,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/lz/near_lzI)
"igu" = (
/obj/structure/machinery/light/double/blue{
@@ -13497,10 +10800,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/east,
/area/fiorina/station/botany)
"igQ" = (
/obj/structure/closet/cabinet,
@@ -13511,16 +10811,11 @@
/area/fiorina/station/civres_blue)
"igV" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"ihn" = (
/obj/item/paper/crumpled,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"ihp" = (
/obj/structure/closet/crate/science{
@@ -13538,42 +10833,29 @@
/area/fiorina/station/medbay)
"ihv" = (
/obj/item/stock_parts/matter_bin/super,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/fiorina/tumor/servers)
"ihz" = (
/obj/effect/landmark/objective_landmark/medium,
/turf/open/floor/plating/plating_catwalk,
/area/fiorina/tumor/ship)
"ihB" = (
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ihO" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ihV" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/oob)
"iie" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/adv,
/obj/item/storage/firstaid/adv,
/obj/item/storage/firstaid/toxin,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"iiw" = (
/obj/structure/monorail{
@@ -13584,18 +10866,13 @@
/area/fiorina/station/transit_hub)
"iiz" = (
/obj/structure/machinery/gibber,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/west,
/area/fiorina/station/botany)
"iiY" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"ijd" = (
/obj/item/trash/cigbutt,
@@ -13607,30 +10884,20 @@
/turf/open/floor/plating/prison,
/area/fiorina/tumor/ice_lab)
"ijt" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/fiorina/station/park)
"ijC" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/lz/near_lzI)
"ika" = (
/obj/structure/bed{
icon_state = "abed"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"ikt" = (
/obj/structure/closet/bodybag,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/station/medbay)
"ikF" = (
/obj/structure/surface/table/reinforced/prison,
@@ -13657,50 +10924,34 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ilM" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/chapel)
"img" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"imp" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/fiorina/station/civres_blue)
"imt" = (
/turf/open/floor/almayer,
/area/fiorina/tumor/ship)
"imz" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/civres_blue)
"imG" = (
/obj/item/trash/chunk,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"imI" = (
/obj/structure/stairs/perspective{
@@ -13716,9 +10967,7 @@
/area/fiorina/tumor/servers)
"ing" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"inA" = (
/obj/structure/surface/table/reinforced/prison{
@@ -13729,39 +10978,27 @@
/area/fiorina/tumor/ice_lab)
"inO" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/tumor/aux_engi)
"ioc" = (
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"iox" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"ioE" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"ioM" = (
/turf/closed/wall/r_wall/prison,
/area/fiorina/station/medbay)
"ioS" = (
/obj/item/storage/briefcase,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"ioV" = (
/obj/structure/stairs/perspective{
@@ -13771,18 +11008,13 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"ioW" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"ipa" = (
/obj/structure/machinery/door/airlock/almayer/command{
@@ -13802,10 +11034,7 @@
/area/fiorina/lz/near_lzI)
"ipA" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"ipM" = (
/obj/structure/surface/table/reinforced/prison,
@@ -13815,17 +11044,11 @@
/obj/item/ammo_magazine/pistol/heavy{
pixel_y = 12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"ipV" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/lz/near_lzI)
"iqB" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -13850,19 +11073,14 @@
/obj/item/ammo_casing{
icon_state = "casing_5"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/flight_deck)
"irQ" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"itd" = (
/obj/item/tool/lighter/random,
@@ -13873,19 +11091,14 @@
/turf/open/floor/plating/prison,
/area/fiorina/tumor/servers)
"itK" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/prison/platingdmg3,
/area/fiorina/maintenance)
"itN" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/fiorina/station/park)
"itW" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"iuz" = (
/obj/vehicle/train/cargo/trolley,
@@ -13893,18 +11106,13 @@
/area/fiorina/station/transit_hub)
"iuC" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"iuN" = (
/obj/structure/barricade/handrail/type_b{
layer = 3.5
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/fiorina/tumor/servers)
"iuZ" = (
/obj/item/stack/rods,
@@ -13919,16 +11127,11 @@
/turf/open/space/basic,
/area/fiorina/oob)
"ivr" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/fiorina/station/power_ring)
"ivw" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"ivz" = (
/obj/structure/barricade/handrail/type_b{
@@ -13943,14 +11146,10 @@
pixel_x = 6;
pixel_y = -2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"ivK" = (
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/maintenance)
"ivN" = (
/obj/structure/window/reinforced,
@@ -13965,9 +11164,7 @@
"iwi" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"iwu" = (
/obj/item/newspaper,
@@ -13975,9 +11172,7 @@
/area/fiorina/station/security)
"iwy" = (
/obj/structure/bed/sofa/south/grey/right,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"iwT" = (
/obj/structure/ice/thin/indestructible{
@@ -13996,9 +11191,7 @@
dir = 2;
name = "Residential Archives"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"ixl" = (
/turf/open/floor/prison,
@@ -14007,16 +11200,11 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/station/medbay)
"ixK" = (
/obj/item/reagent_container/food/snacks/meat,
-/turf/open/floor/prison{
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue,
/area/fiorina/station/botany)
"iyc" = (
/obj/item/stack/rods/plasteel,
@@ -14039,16 +11227,11 @@
dir = 4;
pixel_y = 24
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/station/park)
"iys" = (
/obj/effect/spawner/random/sentry/midchance,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"iyS" = (
/obj/structure/bed/chair/dropship/pilot{
@@ -14067,10 +11250,7 @@
desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured.";
name = "HEFA Order milita armband"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/station/chapel)
"izh" = (
/obj/structure/platform{
@@ -14080,9 +11260,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/fiorina/station/lowsec)
"izN" = (
/obj/structure/machinery/computer/secure_data,
@@ -14118,20 +11296,14 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/medbay)
"iAB" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/fiorina/station/central_ring)
"iBr" = (
/turf/open/floor/prison,
/area/fiorina/station/flight_deck)
"iBM" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/northeast,
/area/fiorina/station/botany)
"iBP" = (
/turf/closed/shuttle/ert{
@@ -14142,9 +11314,7 @@
/obj/structure/closet/wardrobe/orange,
/obj/item/clothing/gloves/boxing/blue,
/obj/item/clothing/gloves/boxing/blue,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"iCE" = (
/obj/structure/flora/pottedplant{
@@ -14158,9 +11328,7 @@
/area/fiorina/station/disco)
"iCN" = (
/obj/item/tool/wrench,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"iCU" = (
/obj/structure/sign/nosmoking_1,
@@ -14196,34 +11364,24 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"iDK" = (
/obj/structure/closet/crate/miningcar{
name = "\improper materials storage bin"
},
/obj/item/reagent_container/food/snacks/meat,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"iDO" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"iDQ" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/effect/spawner/random/gun/rifle,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/station/chapel)
"iEl" = (
/obj/structure/platform_decoration,
@@ -14234,16 +11392,11 @@
name = "\improper materials storage bin"
},
/obj/item/reagent_container/food/snacks/meat,
-/turf/open/floor/prison{
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue,
/area/fiorina/station/botany)
"iEF" = (
/obj/item/tool/kitchen/utensil/fork,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"iEG" = (
/obj/structure/sink{
@@ -14254,10 +11407,7 @@
pixel_x = -12;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"iFg" = (
/obj/structure/machinery/light/double/blue{
@@ -14265,41 +11415,29 @@
pixel_y = 21
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue,
/area/fiorina/station/botany)
"iFz" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"iFB" = (
/obj/structure/toilet{
dir = 8;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/fiorina/station/research_cells)
"iFC" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"iFP" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"iFZ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -14307,22 +11445,15 @@
/obj/item/reagent_container/food/snacks/hugemushroomslice{
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"iGw" = (
/obj/item/stack/tile/plasteel,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"iGx" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"iGX" = (
/obj/effect/landmark/queen_spawn,
@@ -14338,24 +11469,17 @@
icon_state = "sandbag_0"
},
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/telecomm/lz1_cargo)
"iHT" = (
/obj/structure/barricade/handrail/type_b{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"iHW" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/east,
/area/fiorina/station/botany)
"iIl" = (
/obj/structure/stairs/perspective{
@@ -14374,10 +11498,7 @@
desc = "Watch your step.";
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/flight_deck)
"iIE" = (
/obj/structure/surface/table/reinforced/prison,
@@ -14400,9 +11521,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"iIS" = (
/obj/structure/machinery/constructable_frame,
@@ -14414,10 +11533,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/fiorina/tumor/servers)
"iJF" = (
/obj/structure/surface/table/reinforced/prison,
@@ -14425,9 +11541,7 @@
dir = 1;
pixel_y = 20
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/medbay)
"iKg" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
@@ -14442,31 +11556,21 @@
pixel_x = -12
},
/obj/effect/spawner/random/gun/pistol,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"iKF" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"iKI" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/fiorina/station/telecomm/lz1_cargo)
"iKO" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/fiorina/station/medbay)
"iLl" = (
/obj/structure/machinery/light/double/blue{
@@ -14474,9 +11578,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"iLJ" = (
/obj/effect/spawner/random/tool,
@@ -14493,33 +11595,22 @@
dir = 4;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"iMN" = (
/obj/structure/bed/chair/office/dark{
dir = 4;
layer = 3.25
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"iNk" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"iNt" = (
/obj/item/device/whistle,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"iOa" = (
/obj/structure/machinery/floodlight/landing/floor,
@@ -14528,30 +11619,20 @@
"iON" = (
/obj/structure/closet/bombcloset,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"iOX" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"iOY" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/fiorina/tumor/ice_lab)
"iPv" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/cameras{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/oob)
"iPx" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -14560,9 +11641,7 @@
"iPz" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/donut_box/empty,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"iQj" = (
/obj/structure/machinery/photocopier,
@@ -14571,9 +11650,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"iQz" = (
/obj/structure/stairs/perspective{
@@ -14583,9 +11660,7 @@
/area/fiorina/station/botany)
"iQH" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate,
/area/fiorina/station/botany)
"iQJ" = (
/obj/structure/flora/pottedplant{
@@ -14610,10 +11685,7 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/tumor/aux_engi)
"iRG" = (
/obj/structure/surface/table/reinforced/prison,
@@ -14626,16 +11698,10 @@
/turf/open/floor/carpet,
/area/fiorina/station/civres_blue)
"iRI" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/fiorina/tumor/ice_lab)
"iSg" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/flight_deck)
"iSu" = (
/turf/closed/wall/prison{
@@ -14645,15 +11711,10 @@
/area/fiorina/station/park)
"iSw" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"iSR" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/oob)
"iSW" = (
/obj/structure/surface/table/reinforced/prison,
@@ -14662,15 +11723,10 @@
desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
name = "Surgery Cleaner"
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/medbay)
"iTj" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/fiorina/station/security)
"iTm" = (
/turf/open/auto_turf/sand/layer1,
@@ -14679,9 +11735,7 @@
/obj/structure/closet/basketball,
/obj/item/storage/pill_bottle/tramadol/skillless,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"iTs" = (
/obj/structure/stairs/perspective{
@@ -14694,21 +11748,13 @@
/area/fiorina/station/botany)
"iTt" = (
/obj/structure/machinery/landinglight/ds2,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"iTE" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/fiorina/station/flight_deck)
"iTJ" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/northwest,
/area/fiorina/station/botany)
"iTK" = (
/obj/structure/largecrate/random/barrel/yellow,
@@ -14721,28 +11767,21 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottomright"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"iUc" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"iUr" = (
/obj/item/shard{
icon_state = "large";
name = "ice shard"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"iUB" = (
/obj/structure/machinery/light/double/blue{
@@ -14770,10 +11809,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/park)
"iVv" = (
/obj/structure/blocker/invisible_wall,
@@ -14794,19 +11830,13 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"iWp" = (
/obj/item/reagent_container/food/drinks/coffee{
name = "\improper paper cup"
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/lowsec)
"iWq" = (
/obj/structure/platform/kutjevo/smooth{
@@ -14824,17 +11854,11 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/central_ring)
"iXq" = (
/obj/item/stool,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/fiorina/station/lowsec)
"iXs" = (
/obj/structure/stairs/perspective{
@@ -14848,37 +11872,25 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/fiorina/station/civres_blue)
"iXV" = (
/obj/structure/closet/l3closet/general,
/turf/open/floor/prison,
/area/fiorina/tumor/aux_engi)
"iYa" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/fiorina/station/chapel)
"iYe" = (
/obj/item/tool/wirecutters,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/fiorina/station/power_ring)
"iYw" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/fiorina/station/central_ring)
"iYJ" = (
/obj/structure/machinery/power/apc,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"iYQ" = (
/obj/item/fuel_cell,
@@ -14892,10 +11904,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/servers)
"jaB" = (
/obj/structure/platform/kutjevo/smooth{
@@ -14910,22 +11919,14 @@
/obj/structure/holohoop{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"jbm" = (
/obj/item/clothing/under/color/orange,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"jbq" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"jbu" = (
/obj/structure/window/reinforced{
@@ -14945,9 +11946,7 @@
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"jbU" = (
/obj/structure/surface/table/reinforced/prison,
@@ -14966,10 +11965,7 @@
dir = 8;
health = 80
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"jcv" = (
/obj/structure/bed/chair/comfy{
@@ -14990,24 +11986,16 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"jdn" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"jew" = (
/obj/structure/largecrate/supply/ammo,
/obj/item/storage/fancy/crayons,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"jeL" = (
/obj/structure/platform{
@@ -15019,43 +12007,31 @@
/obj/structure/platform_decoration{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/chapel)
"jfc" = (
/obj/item/stack/rods,
/turf/open/floor/plating/prison,
/area/fiorina/station/research_cells)
"jfd" = (
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/fiorina/station/park)
"jfp" = (
/obj/structure/barricade/handrail,
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"jft" = (
/obj/structure/barricade/sandbags{
icon_state = "sandbag_0";
pixel_y = -14
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"jfO" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/central_ring)
"jfT" = (
/obj/structure/platform{
@@ -15076,31 +12052,22 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"jgL" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"jhl" = (
/obj/structure/closet/emcloset,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"jhp" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"jhG" = (
/turf/closed/shuttle/ert{
@@ -15113,10 +12080,7 @@
pixel_x = 12
},
/obj/item/clothing/suit/armor/bulletproof/badge,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/lowsec)
"jiq" = (
/obj/structure/lz_sign/prison_sign,
@@ -15137,16 +12101,11 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"jiA" = (
/obj/item/storage/firstaid/regular,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"jiV" = (
/obj/structure/surface/table/reinforced/prison,
@@ -15174,10 +12133,7 @@
/obj/item/storage/toolbox/emergency{
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"jjs" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -15194,10 +12150,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/tumor/fiberbush)
"jjW" = (
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"jkg" = (
/obj/structure/largecrate/supply,
@@ -15205,16 +12158,12 @@
/area/fiorina/maintenance)
"jkj" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"jkw" = (
/obj/structure/machinery/computer/atmos_alert,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"jkW" = (
/obj/structure/dropship_equipment/fulton_system,
@@ -15234,17 +12183,12 @@
icon_state = "abed"
},
/obj/item/card/id/silver/clearance_badge,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"jlq" = (
/obj/item/device/flashlight/lamp/tripod,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"jls" = (
/obj/item/reagent_container/glass/bucket/janibucket,
@@ -15252,10 +12196,7 @@
/area/fiorina/station/park)
"jlB" = (
/obj/item/stack/nanopaste,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/fiorina/station/civres_blue)
"jlH" = (
/obj/structure/platform/kutjevo/smooth{
@@ -15271,18 +12212,13 @@
/obj/structure/machinery/cm_vending/sorted/marine_food{
name = "\improper Fiorina Engineering Canteen Vendor"
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"jmp" = (
/obj/item/ammo_magazine/handful/shotgun/incendiary{
unacidable = 1
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/aux_engi)
"jmr" = (
/obj/structure/platform{
@@ -15299,18 +12235,13 @@
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"jmG" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/fiorina/station/research_cells)
"jna" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/west,
/area/fiorina/station/research_cells)
"jnd" = (
/obj/structure/machinery/light/double/blue{
@@ -15322,9 +12253,7 @@
/area/fiorina/lz/near_lzII)
"jnm" = (
/obj/structure/machinery/vending/sovietsoda,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"jnQ" = (
/obj/structure/machinery/light/double/blue{
@@ -15332,22 +12261,14 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"jnU" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/fiorina/tumor/servers)
"jnX" = (
/obj/item/storage/pill_bottle/spaceacillin/skillless,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/fiorina/station/research_cells)
"jor" = (
/obj/effect/spawner/random/attachment,
@@ -15368,9 +12289,7 @@
dir = 8;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"joJ" = (
/obj/structure/bed/roller,
@@ -15398,17 +12317,13 @@
/obj/item/clothing/head/soft/ferret{
pixel_y = 7
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"jpx" = (
/obj/item/ammo_casing{
icon_state = "casing_8"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"jpN" = (
/obj/structure/sign/prop3{
@@ -15425,16 +12340,11 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"jpW" = (
/obj/item/reagent_container/food/drinks/cans/souto/cherry,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"jqs" = (
/obj/structure/disposalpipe/segment{
@@ -15464,10 +12374,7 @@
/area/fiorina/station/disco)
"jqM" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"jri" = (
/obj/structure/closet/secure_closet/freezer/fridge/groceries,
@@ -15476,44 +12383,30 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"jrN" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/prison/platingdmg1,
/area/fiorina/tumor/aux_engi)
"jrO" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/fiorina/station/power_ring)
"jrT" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/recharger,
/obj/item/clothing/accessory/holobadge/cord,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/lz/near_lzI)
"jsf" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"jsp" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"jsu" = (
/obj/structure/surface/table/reinforced/prison{
@@ -15525,18 +12418,14 @@
pixel_x = 14;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"jsU" = (
/obj/item/stack/tile/plasteel{
pixel_x = 3;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"jta" = (
/obj/structure/bed{
@@ -15549,24 +12438,18 @@
icon_state = "pottedplant_29";
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"jtM" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"juX" = (
/obj/structure/machinery/door/poddoor/almayer{
density = 0;
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"jva" = (
/obj/structure/stairs/perspective{
@@ -15578,9 +12461,7 @@
/area/fiorina/station/disco)
"jvi" = (
/obj/structure/closet/wardrobe/orange,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"jvm" = (
/obj/item/storage/surgical_tray,
@@ -15589,9 +12470,7 @@
pixel_x = -4;
pixel_y = 12
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/medbay)
"jvy" = (
/mob/living/simple_animal/hostile/carp{
@@ -15616,35 +12495,25 @@
/area/fiorina/lz/near_lzII)
"jxm" = (
/obj/item/trash/hotdog,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"jyo" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/power_ring)
"jyv" = (
/obj/structure/stairs/perspective{
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"jyF" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"jyM" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
@@ -15660,31 +12529,21 @@
/area/fiorina/station/central_ring)
"jyY" = (
/obj/item/explosive/grenade/high_explosive/frag,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/tumor/servers)
"jzN" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"jzP" = (
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/fiorina/station/power_ring)
"jAF" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/effect/decal/medical_decals{
icon_state = "triagedecalleft"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"jAW" = (
/obj/structure/largecrate/supply/ammo,
@@ -15697,10 +12556,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"jBv" = (
/obj/structure/bed/sofa/vert/grey/bot{
@@ -15713,10 +12569,7 @@
/turf/open/floor/wood,
/area/fiorina/station/park)
"jCe" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/fiorina/tumor/servers)
"jCt" = (
/obj/structure/machinery/light/small{
@@ -15725,24 +12578,17 @@
pixel_y = 10
},
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"jCy" = (
/obj/structure/prop/dam/crane{
icon_state = "tractor_damaged"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/telecomm/lz1_cargo)
"jCA" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"jCO" = (
/obj/structure/platform{
@@ -15758,10 +12604,7 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"jDR" = (
/obj/structure/machinery/light/double/blue{
@@ -15772,10 +12615,7 @@
/area/fiorina/tumor/aux_engi)
"jEa" = (
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/fiorina/station/power_ring)
"jEr" = (
/obj/structure/machinery/vending/snack,
@@ -15783,16 +12623,11 @@
/area/fiorina/lz/near_lzII)
"jEy" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"jEz" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"jEK" = (
/obj/structure/bed/chair/office/light{
@@ -15809,9 +12644,7 @@
/obj/structure/barricade/metal/wired{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"jFh" = (
/obj/structure/stairs/perspective{
@@ -15829,19 +12662,14 @@
/area/fiorina/tumor/aux_engi)
"jFz" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/tumor/aux_engi)
"jFD" = (
/obj/structure/barricade/metal{
health = 250;
icon_state = "metal_1"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/ice_lab)
"jFO" = (
/obj/effect/landmark/nightmare{
@@ -15851,15 +12679,10 @@
/area/fiorina/station/park)
"jFP" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"jGf" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"jGs" = (
/obj/structure/toilet{
@@ -15867,10 +12690,7 @@
pixel_y = 8
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/fiorina/oob)
"jGz" = (
/obj/structure/closet{
@@ -15879,35 +12699,24 @@
},
/obj/effect/spawner/random/tool,
/obj/item/clothing/gloves/combat,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"jGC" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"jHj" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"jHp" = (
/obj/structure/bed/sofa/south/grey/left,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"jHz" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"jHC" = (
/obj/structure/surface/rack,
@@ -15920,32 +12729,23 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/botany)
"jHU" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"jHV" = (
/obj/item/paper,
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"jIw" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/cameras{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"jIz" = (
/obj/item/stack/sheet/metal/medium_stack,
@@ -15986,27 +12786,18 @@
/area/fiorina/station/park)
"jJZ" = (
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"jKv" = (
/obj/item/tool/warning_cone,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"jKz" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"jKI" = (
/obj/structure/platform/kutjevo/smooth{
@@ -16037,10 +12828,7 @@
dir = 8;
icon_state = "cartridge_2"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"jLD" = (
/obj/structure/platform{
@@ -16049,9 +12837,7 @@
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
layer = 3.5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"jMf" = (
/obj/item/stack/tile/plasteel{
@@ -16061,10 +12847,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/research_cells)
"jMh" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/medbay)
"jMk" = (
/obj/item/tool/screwdriver,
@@ -16072,27 +12855,20 @@
/area/fiorina/tumor/servers)
"jMv" = (
/obj/item/tool/wrench,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"jMH" = (
/obj/structure/barricade/metal/wired{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"jNi" = (
/obj/item/ammo_casing{
dir = 2;
icon_state = "casing_5"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"jNl" = (
/obj/structure/ice/thin/indestructible{
@@ -16102,10 +12878,7 @@
/turf/open/ice/noweed,
/area/fiorina/station/research_cells)
"jNw" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/fiorina/tumor/servers)
"jOb" = (
/obj/structure/stairs/perspective{
@@ -16124,19 +12897,13 @@
layer = 2.5;
pixel_y = -11
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/flight_deck)
"jOv" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/fiorina/station/power_ring)
"jOY" = (
/obj/structure/surface/table/reinforced/prison,
@@ -16144,9 +12911,7 @@
dir = 8
},
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"jPK" = (
/turf/closed/shuttle/elevator{
@@ -16157,38 +12922,24 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"jPY" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "Residential Apartment"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/servers)
"jQc" = (
/obj/item/organ/lungs,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"jQs" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"jQy" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"jQS" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -16196,9 +12947,7 @@
},
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"jRf" = (
/obj/structure/girder/displaced,
@@ -16228,9 +12977,7 @@
/obj/structure/platform_decoration{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"jRF" = (
/obj/item/stack/sheet/metal,
@@ -16245,10 +12992,7 @@
icon_state = "abed"
},
/obj/item/reagent_container/food/drinks/flask/marine,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/station/research_cells)
"jSD" = (
/obj/item/storage/toolbox/mechanical,
@@ -16265,33 +13009,21 @@
"jSU" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"jSZ" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"jTo" = (
/obj/item/prop/helmetgarb/gunoil,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"jTD" = (
/obj/structure/reagent_dispensers/water_cooler/stacks,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"jTJ" = (
/turf/closed/wall/r_wall/prison,
@@ -16305,18 +13037,13 @@
pixel_x = -8;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"jUa" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"jUs" = (
/obj/structure/machinery/light/double/blue{
@@ -16334,26 +13061,18 @@
/area/fiorina/station/park)
"jUP" = (
/obj/item/trash/c_tube,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"jVj" = (
/obj/structure/bed/chair,
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"jVt" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"jVE" = (
/obj/structure/surface/table/reinforced/prison,
@@ -16370,59 +13089,41 @@
/turf/open/floor/plating/prison,
/area/fiorina/lz/near_lzI)
"jVM" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/fiorina/station/botany)
"jWg" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"jWk" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/power_ring)
"jWy" = (
/obj/structure/barricade/handrail,
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"jWE" = (
/obj/item/trash/used_stasis_bag{
desc = "Wow, instant sand. They really have everything in space.";
name = "Insta-Sand! bag"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/civres_blue)
"jWI" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"jWY" = (
/obj/structure/bed{
icon_state = "abed"
},
/obj/item/storage/fancy/cigar/tarbacks,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"jXj" = (
/obj/item/stack/rods,
@@ -16444,15 +13145,11 @@
/area/fiorina/tumor/aux_engi)
"jYm" = (
/obj/structure/machinery/constructable_frame,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"jYn" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"jYs" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
@@ -16465,33 +13162,21 @@
dir = 8
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/lz/near_lzI)
"jYK" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"jYM" = (
/obj/item/trash/chips,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"jYU" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/telecomm/lz1_tram)
"jYV" = (
/obj/structure/stairs/perspective{
@@ -16514,22 +13199,13 @@
/area/fiorina/tumor/ice_lab)
"jZk" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/telecomm/lz1_tram)
"kag" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/power_ring)
"kat" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/fiorina/station/botany)
"kaw" = (
/obj/structure/stairs/perspective{
@@ -16537,17 +13213,12 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"kaF" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/drinks/bottle/sake,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"kaO" = (
/obj/structure/machinery/light/double/blue{
@@ -16566,9 +13237,7 @@
/area/fiorina/tumor/aux_engi)
"kbh" = (
/obj/item/explosive/grenade/incendiary/molotov,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"kbi" = (
/obj/item/ammo_casing{
@@ -16580,17 +13249,11 @@
/area/fiorina/station/park)
"kbj" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"kbo" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/west,
/area/fiorina/station/botany)
"kbt" = (
/obj/structure/janitorialcart,
@@ -16611,10 +13274,7 @@
/area/fiorina/tumor/fiberbush)
"kdq" = (
/obj/structure/machinery/vending/hydronutrients,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"kds" = (
/obj/item/clothing/suit/storage/hazardvest,
@@ -16653,27 +13313,18 @@
/area/fiorina/station/transit_hub)
"kgp" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"kgG" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"kgN" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"kgQ" = (
/obj/item/stool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"kgT" = (
/obj/structure/surface/table/reinforced/prison,
@@ -16682,23 +13333,15 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"kgY" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"khd" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/tumor/aux_engi)
"khu" = (
/obj/structure/prop/structure_lattice{
@@ -16707,23 +13350,15 @@
icon = 'icons/turf/elevator.dmi';
icon_state = "wall_broke"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/civres_blue)
"khw" = (
/obj/effect/spawner/random/gun/rifle/midchance,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/power_ring)
"khY" = (
/obj/structure/closet/secure_closet/medical3,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"kid" = (
/obj/item/ammo_casing{
@@ -16733,17 +13368,11 @@
dir = 4;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"kii" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/tumor/ice_lab)
"kil" = (
/obj/structure/machinery/light/double/blue,
@@ -16755,15 +13384,10 @@
/area/fiorina/station/civres_blue)
"kiT" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"kjt" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"kjP" = (
/obj/structure/surface/table/reinforced/prison,
@@ -16775,33 +13399,23 @@
/area/fiorina/station/security/wardens)
"kjT" = (
/obj/structure/flora/grass/tallgrass/jungle/corner,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"kjX" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"kka" = (
/obj/item/stack/sheet/metal{
amount = 5
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"kke" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecaldir"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"kkU" = (
/obj/structure/monorail{
@@ -16819,15 +13433,11 @@
/obj/structure/platform_decoration{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/botany)
"klh" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"klp" = (
/turf/closed/shuttle/ert{
@@ -16837,9 +13447,7 @@
/area/fiorina/tumor/ship)
"klt" = (
/obj/structure/closet/secure_closet/freezer/fridge/full,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"klB" = (
/obj/structure/machinery/landinglight/ds2/delayone,
@@ -16856,27 +13464,20 @@
/obj/item/storage/donut_box{
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"kmm" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/disco)
"kmn" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_29";
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"kmL" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{
@@ -16895,9 +13496,7 @@
/area/fiorina/station/security/wardens)
"knb" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"knh" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -16915,41 +13514,28 @@
/obj/structure/machinery/computer/station_alert{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"knY" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
indestructible = 1;
name = "launch bay door"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/oob)
"kob" = (
/obj/item/ammo_casing{
icon_state = "cartridge_2"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"kok" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/fiorina/station/transit_hub)
"kon" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/wood/medium_stack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"kor" = (
/obj/structure/bed/chair{
@@ -16966,10 +13552,7 @@
/obj/item/clipboard,
/obj/item/paper,
/obj/item/tool/pen,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"koK" = (
/obj/effect/decal{
@@ -16979,26 +13562,17 @@
pixel_y = -11
},
/obj/structure/closet/bombcloset,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"koY" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"kpe" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"kpp" = (
/obj/item/trash/popcorn,
@@ -17008,36 +13582,27 @@
/turf/open/floor/plating/prison,
/area/fiorina/tumor/aux_engi)
"kpq" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"kpu" = (
/obj/structure/closet/wardrobe/orange,
/obj/item/explosive/mine/pmc,
/obj/effect/spawner/random/gun/smg,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"kpv" = (
/obj/structure/pipes/standard/simple/visible{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"kpH" = (
/obj/effect/decal/medical_decals{
icon_state = "cryomid"
},
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"kpR" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -17046,65 +13611,45 @@
pixel_x = 1;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/station/chapel)
"kqy" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"kqC" = (
/turf/closed/wall/prison,
/area/fiorina/station/lowsec)
"kqJ" = (
/obj/item/trash/used_stasis_bag,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/fiorina/lz/near_lzI)
"krb" = (
/obj/structure/bookcase/manuals/engineering,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"krn" = (
/obj/structure/barricade/handrail/type_b{
dir = 8;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/servers)
"krE" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/fiorina/station/flight_deck)
"ksu" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"ksE" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"ksL" = (
/obj/structure/stairs/perspective{
@@ -17119,9 +13664,7 @@
dir = 4;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/servers)
"ksY" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -17129,9 +13672,7 @@
/area/fiorina/station/flight_deck)
"ktq" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/station/park)
"ktv" = (
/obj/item/trash/sosjerky,
@@ -17139,18 +13680,14 @@
/area/fiorina/station/security)
"ktC" = (
/obj/item/explosive/grenade/high_explosive/frag,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"kue" = (
/obj/structure/machinery/computer3/server/rack,
/obj/structure/window{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"kvg" = (
/obj/structure/machinery/light/double/blue{
@@ -17158,9 +13695,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"kvh" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -17173,17 +13708,12 @@
/obj/structure/barricade/handrail/type_b{
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"kvu" = (
/obj/item/weapon/gun/rifle/m16,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"kvx" = (
/obj/effect/landmark/monkey_spawn,
@@ -17196,9 +13726,7 @@
pixel_x = 7;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/fiorina/station/chapel)
"kwT" = (
/obj/structure/closet/firecloset,
@@ -17213,10 +13741,7 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/fiorina/station/civres_blue)
"kxf" = (
/obj/item/stack/sheet/wood,
@@ -17232,10 +13757,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"kxQ" = (
/obj/structure/prop/resin_prop{
@@ -17244,16 +13766,11 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/park)
"kxU" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/fiorina/station/transit_hub)
"kyd" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"kyh" = (
/obj/structure/platform_decoration{
@@ -17262,10 +13779,7 @@
/turf/open/floor/prison,
/area/fiorina/station/power_ring)
"kyF" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/civres_blue)
"kyU" = (
/obj/item/prop/helmetgarb/spacejam_tickets{
@@ -17274,10 +13788,7 @@
pixel_x = 1;
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"kyW" = (
/obj/item/stack/sandbags/large_stack,
@@ -17301,10 +13812,7 @@
/area/fiorina/station/research_cells)
"kzs" = (
/obj/item/stack/sandbags/large_stack,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/fiorina/tumor/civres)
"kzx" = (
/obj/structure/machinery/light/double/blue{
@@ -17312,10 +13820,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/civres_blue)
"kzz" = (
/obj/item/tool/shovel/etool,
@@ -17323,10 +13828,7 @@
/area/fiorina/station/civres_blue)
"kzB" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/fiorina/station/chapel)
"kzL" = (
/obj/structure/bed/sofa/south/grey/right,
@@ -17334,19 +13836,14 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"kzR" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/cameras{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"kAc" = (
/obj/structure/surface/table/reinforced/prison,
@@ -17357,10 +13854,7 @@
pixel_x = -2;
pixel_y = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"kAO" = (
/obj/item/folder/yellow,
@@ -17368,15 +13862,11 @@
/area/fiorina/tumor/servers)
"kBm" = (
/obj/item/device/multitool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"kBt" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"kBE" = (
/obj/item/toy/bikehorn/rubberducky,
@@ -17397,16 +13887,10 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/fiorina/station/chapel)
"kCH" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/fiorina/tumor/aux_engi)
"kCI" = (
/obj/item/weapon/baseballbat/metal,
@@ -17418,23 +13902,15 @@
/obj/structure/barricade/handrail/type_b{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"kCS" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"kCT" = (
/obj/effect/spawner/random/gun/smg,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/lowsec)
"kCY" = (
/obj/item/tool/weldingtool,
@@ -17444,22 +13920,16 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"kDw" = (
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/fiorina/station/telecomm/lz1_cargo)
"kDN" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
dir = 4
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"kEj" = (
/obj/structure/largecrate/random/barrel/blue,
@@ -17471,9 +13941,7 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"kEy" = (
/obj/structure/bed/chair/dropship/pilot{
@@ -17495,42 +13963,27 @@
/area/fiorina/tumor/ice_lab)
"kFd" = (
/obj/structure/machinery/vending/hydronutrients,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"kGc" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/telecomm/lz1_cargo)
"kGd" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/fiorina/station/research_cells)
"kGo" = (
/obj/structure/machinery/power/apc,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"kGB" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"kGD" = (
/obj/structure/largecrate/random/mini/med,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"kGZ" = (
/obj/structure/platform{
@@ -17558,21 +14011,13 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"kHv" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/fiorina/station/power_ring)
"kHF" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"kHG" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -17584,9 +14029,7 @@
/area/fiorina/station/disco)
"kHI" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"kHS" = (
/obj/structure/barricade/sandbags{
@@ -17594,46 +14037,30 @@
layer = 2.97;
pixel_y = -14
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"kHZ" = (
/obj/item/stack/folding_barricade,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"kIb" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/fiorina/station/lowsec)
"kIg" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"kIh" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"kIo" = (
/obj/structure/girder,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/fiorina/tumor/ship)
"kIA" = (
/obj/structure/surface/table/reinforced/prison,
@@ -17647,16 +14074,11 @@
/area/fiorina/station/security)
"kIO" = (
/obj/structure/machinery/vending/snack/packaged,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"kJd" = (
/obj/item/tool/warning_cone,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/station/park)
"kJf" = (
/obj/item/tool/wrench,
@@ -17672,10 +14094,7 @@
icon_state = "pottedplant_22"
},
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/disco)
"kJS" = (
/obj/structure/barricade/handrail/type_b{
@@ -17685,9 +14104,7 @@
dir = 8;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/servers)
"kJU" = (
/obj/item/ammo_magazine/rifle/m16{
@@ -17697,35 +14114,24 @@
/area/fiorina/station/security)
"kKd" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"kKs" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/fiorina/station/flight_deck)
"kKt" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/weapon/baton,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"kKP" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/power_ring)
"kKQ" = (
/obj/structure/platform/stair_cut/alt,
@@ -17738,15 +14144,10 @@
/obj/vehicle/powerloader{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"kLz" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/civres_blue)
"kLI" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -17759,15 +14160,11 @@
dir = 4;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"kMm" = (
/obj/structure/barricade/handrail,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"kMq" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -17775,9 +14172,7 @@
"kMC" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/objective,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"kME" = (
/obj/structure/surface/table/reinforced/prison,
@@ -17795,10 +14190,7 @@
layer = 2.5;
pixel_y = -11
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"kNk" = (
/obj/item/stack/sheet/metal/medium_stack,
@@ -17807,10 +14199,7 @@
/area/fiorina/lz/near_lzI)
"kNs" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"kNB" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -17832,9 +14221,7 @@
dir = 4;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/servers)
"kNY" = (
/obj/structure/surface/rack,
@@ -17845,16 +14232,10 @@
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"kOB" = (
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"kOV" = (
/obj/structure/surface/table/reinforced/prison,
@@ -17863,15 +14244,11 @@
pixel_x = 3;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"kPf" = (
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"kPz" = (
/obj/structure/lattice,
@@ -17886,10 +14263,7 @@
pixel_y = 4
},
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"kQy" = (
/obj/item/frame/rack,
@@ -17897,16 +14271,12 @@
dir = 4;
layer = 3.5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"kQG" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/snacks/ricepudding,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"kQH" = (
/obj/structure/stairs/perspective{
@@ -17932,23 +14302,16 @@
},
/obj/structure/surface/rack,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"kSd" = (
/obj/structure/toilet{
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"kSe" = (
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/disco)
"kSh" = (
/turf/closed/shuttle/elevator{
@@ -17957,9 +14320,7 @@
/area/fiorina/station/telecomm/lz1_cargo)
"kSB" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"kSD" = (
/obj/structure/monorail{
@@ -17972,18 +14333,13 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/telecomm/lz1_tram)
"kTs" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/maintenance)
"kTD" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/fiorina/station/power_ring)
"kTL" = (
/obj/item/stack/rods,
@@ -17994,17 +14350,13 @@
/area/fiorina/station/medbay)
"kTW" = (
/obj/structure/barricade/metal/wired,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"kTY" = (
/obj/structure/machinery/defenses/sentry/premade/dumb{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"kUj" = (
/obj/structure/window/framed/prison,
@@ -18015,17 +14367,13 @@
/obj/item/device/radio{
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"kUR" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"kVg" = (
/obj/item/stack/cable_coil/blue,
@@ -18037,15 +14385,11 @@
/area/fiorina/station/power_ring)
"kVN" = (
/obj/structure/window/framed/prison/reinforced,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"kVW" = (
/obj/item/weapon/pole/wooden_cane,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"kWv" = (
/obj/structure/surface/table/reinforced/prison,
@@ -18057,37 +14401,22 @@
pixel_x = 3;
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"kWL" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/fiorina/lz/near_lzII)
"kWS" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"kXk" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/fiorina/station/research_cells)
"kXm" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/pistol/heavy,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/medbay)
"kXs" = (
/obj/structure/prop/structure_lattice{
@@ -18099,9 +14428,7 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"kXD" = (
/obj/structure/window/framed/prison,
@@ -18119,26 +14446,18 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"kYi" = (
/obj/effect/decal/cleanable/blood/splatter{
icon_state = "handblood"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"kYz" = (
/obj/structure/closet/crate/medical,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"kYZ" = (
/obj/structure/surface/table/woodentable,
@@ -18147,9 +14466,7 @@
/area/fiorina/station/civres_blue)
"kZl" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"kZu" = (
/obj/structure/toilet{
@@ -18159,10 +14476,7 @@
pixel_x = 2;
pixel_y = 25
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"kZy" = (
/obj/item/clothing/mask/breath,
@@ -18175,19 +14489,14 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"kZV" = (
/obj/structure/bed/chair{
dir = 4;
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"lag" = (
/obj/structure/cable/heavyduty{
@@ -18199,10 +14508,7 @@
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"laJ" = (
/obj/structure/airlock_assembly,
@@ -18210,18 +14516,13 @@
/area/fiorina/lz/near_lzI)
"laK" = (
/obj/item/stool,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"laX" = (
/obj/structure/toilet{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/fiorina/station/civres_blue)
"lbt" = (
/obj/structure/disposalpipe/segment{
@@ -18238,9 +14539,7 @@
pixel_x = 1;
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"lbK" = (
/obj/structure/platform,
@@ -18253,39 +14552,26 @@
"lbL" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/trash/cigbutt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/disco)
"lbZ" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"lcm" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"lcn" = (
-/turf/open/floor/prison{
- icon_state = "panelscorched"
- },
+/turf/open/floor/prison/panelscorched,
/area/fiorina/station/transit_hub)
"lco" = (
/obj/item/stack/sandbags/large_stack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"lcq" = (
/obj/structure/platform/kutjevo/smooth,
@@ -18296,26 +14582,17 @@
/area/fiorina/oob)
"lcE" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/fiorina/station/research_cells)
"lcJ" = (
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/fiorina/tumor/ice_lab)
"ldd" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/stack/rods,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/station/chapel)
"lde" = (
/obj/structure/prop/resin_prop{
@@ -18328,45 +14605,30 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"ldz" = (
/obj/structure/bed{
icon_state = "abed"
},
/obj/effect/spawner/random/sentry/midchance,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"ldF" = (
/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/fiorina/station/power_ring)
"ldW" = (
/obj/item/stack/sandbags,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"ldZ" = (
/obj/item/explosive/grenade/incendiary/molotov,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/fiorina/station/security)
"lev" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"lex" = (
/obj/structure/closet/crate,
@@ -18380,17 +14642,11 @@
/obj/structure/barricade/metal/wired{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/fiorina/station/disco)
"leZ" = (
/obj/item/trash/cigbutt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"lfo" = (
/obj/structure/pipes/standard/manifold/visible,
@@ -18398,34 +14654,21 @@
/area/fiorina/station/medbay)
"lfX" = (
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"lge" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/fiorina/station/civres_blue)
"lgx" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/park)
"lgG" = (
/obj/structure/coatrack,
/obj/item/clothing/suit/storage/CMB,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"lgH" = (
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/fiorina/tumor/civres)
"lgS" = (
/obj/structure/machinery/light/double/blue,
@@ -18452,18 +14695,13 @@
/area/fiorina/station/power_ring)
"lic" = (
/obj/structure/machinery/vending/cigarette,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"lit" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"liA" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
@@ -18491,9 +14729,7 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"ljV" = (
/obj/effect/landmark/corpsespawner/ua_riot,
@@ -18505,10 +14741,7 @@
/turf/open/floor/prison,
/area/fiorina/station/lowsec)
"lkr" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/tumor/ice_lab)
"lku" = (
/turf/closed/shuttle/ert{
@@ -18517,24 +14750,17 @@
/area/fiorina/oob)
"lkA" = (
/obj/structure/bed/sofa/south/grey/right,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"lkM" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/tumor/servers)
"lkP" = (
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"lkQ" = (
/obj/structure/machinery/light/double/blue{
@@ -18544,10 +14770,7 @@
/turf/open/floor/prison,
/area/fiorina/station/security)
"lld" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/fiorina/station/security)
"lls" = (
/obj/structure/barricade/handrail/type_b{
@@ -18564,9 +14787,7 @@
pixel_y = 10
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"llJ" = (
/obj/item/stack/rods,
@@ -18574,9 +14795,7 @@
density = 0;
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/prison/platingdmg3,
/area/fiorina/station/security)
"llQ" = (
/obj/structure/platform/kutjevo/smooth{
@@ -18604,38 +14823,28 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"lnK" = (
/turf/closed/wall/r_wall/prison,
/area/fiorina/station/telecomm/lz1_tram)
"loj" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"lou" = (
/obj/item/ammo_box/magazine/misc/flares/empty{
pixel_x = -1;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"loE" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"loP" = (
/obj/structure/machinery/optable{
@@ -18646,15 +14855,11 @@
desc = "It crinkles, aggressively.";
name = "sterile wax sheet"
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/medbay)
"lpd" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/fiorina/station/chapel)
"lpl" = (
/turf/closed/shuttle/ert{
@@ -18673,16 +14878,10 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"lpH" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/fiorina/station/chapel)
"lpS" = (
/obj/structure/stairs/perspective{
@@ -18696,24 +14895,15 @@
/area/fiorina/station/disco)
"lpW" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"lpX" = (
/obj/structure/machinery/door/airlock/prison/horizontal,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"lpZ" = (
/obj/item/trash/boonie,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"lqa" = (
/obj/structure/flora/pottedplant{
@@ -18725,25 +14915,16 @@
/turf/open/floor/wood,
/area/fiorina/station/chapel)
"lqC" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/lz/near_lzI)
"lqI" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"lqJ" = (
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "lavendergrass_2"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"lqN" = (
/obj/effect/decal/cleanable/blood{
@@ -18751,16 +14932,10 @@
icon_state = "gib6"
},
/obj/effect/spawner/random/gun/rifle,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"lri" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/fiorina/station/transit_hub)
"lrA" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
@@ -18778,16 +14953,12 @@
pixel_x = 2;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"lrV" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"lsn" = (
/obj/structure/machinery/vending/cigarette/colony,
@@ -18805,9 +14976,7 @@
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"lsZ" = (
/obj/item/tool/soap,
@@ -18818,16 +14987,11 @@
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/research_cells)
"ltd" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"lte" = (
/obj/structure/barricade/metal{
@@ -18835,70 +14999,44 @@
health = 85;
icon_state = "metal_1"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"ltz" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"ltA" = (
-/turf/open/floor/prison{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/prison/floorscorched1,
/area/fiorina/tumor/aux_engi)
"ltQ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/security)
"luf" = (
/obj/effect/decal/medical_decals{
icon_state = "docdecal1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"lun" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"lux" = (
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"luy" = (
/obj/item/trash/candle,
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/maintenance)
"luZ" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"lvf" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"lvg" = (
/obj/item/trash/candle,
@@ -18927,16 +15065,11 @@
},
/area/fiorina/tumor/aux_engi)
"lvD" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"lvV" = (
/obj/structure/barricade/metal/wired,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/fiorina/station/lowsec)
"lwd" = (
/obj/structure/machinery/light/double/blue{
@@ -18967,35 +15100,25 @@
pixel_x = 3;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"lwq" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/central_ring)
"lwA" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/station/park)
"lxT" = (
/obj/item/ammo_casing{
dir = 8;
icon_state = "casing_6"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"lyf" = (
/obj/structure/flora/bush/ausbushes/ausbush{
@@ -19018,10 +15141,7 @@
/area/fiorina/station/civres_blue)
"lzd" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"lzm" = (
/obj/structure/surface/table/reinforced/prison,
@@ -19030,9 +15150,7 @@
/area/fiorina/station/research_cells)
"lzn" = (
/obj/structure/machinery/portable_atmospherics/canister/phoron,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/telecomm/lz1_cargo)
"lzq" = (
/obj/item/tool/wet_sign,
@@ -19047,26 +15165,18 @@
icon_state = "abed"
},
/obj/item/storage/fancy/crayons,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"lzB" = (
/obj/structure/closet/crate/miningcar{
name = "\improper materials storage bin"
},
/obj/item/reagent_container/food/snacks/meat,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"lzE" = (
/obj/structure/machinery/vending/snack/packaged,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"lzJ" = (
/turf/open/floor/plating/prison,
@@ -19076,25 +15186,18 @@
dir = 8;
icon_state = "cartridge_2"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/fiorina/station/park)
"lAh" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/fiorina/tumor/ice_lab)
"lAn" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"lAE" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/telecomm/lz1_cargo)
"lAM" = (
/obj/structure/surface/table/reinforced/prison,
@@ -19102,9 +15205,7 @@
dir = 4;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"lAN" = (
/obj/structure/machinery/light/double/blue{
@@ -19112,15 +15213,11 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"lAQ" = (
/obj/structure/machinery/vending/snack/packaged,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"lAV" = (
/obj/structure/bed/stool,
@@ -19144,34 +15241,24 @@
dir = 8
},
/obj/effect/spawner/random/sentry/midchance,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/telecomm/lz1_cargo)
"lBI" = (
/obj/item/ammo_casing{
icon_state = "casing_5_1"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"lBR" = (
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"lBS" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"lCl" = (
/obj/structure/surface/table/reinforced/prison,
@@ -19181,16 +15268,12 @@
pixel_x = -6;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"lCz" = (
/obj/structure/machinery/light/small,
/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"lDo" = (
/obj/item/storage/fancy/cigar,
@@ -19213,22 +15296,15 @@
/area/fiorina/station/power_ring)
"lDU" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"lEd" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"lEg" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"lEk" = (
/obj/structure/surface/table/reinforced/prison,
@@ -19268,9 +15344,7 @@
/obj/structure/machinery/computer/cameras{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"lEL" = (
/obj/structure/bed/chair{
@@ -19278,10 +15352,7 @@
},
/obj/effect/decal/cleanable/blood,
/obj/effect/spawner/gibspawner/human,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"lFc" = (
/obj/effect/decal/cleanable/blood,
@@ -19290,51 +15361,35 @@
/area/fiorina/station/park)
"lFg" = (
/obj/item/paper,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"lFm" = (
/obj/structure/bed/roller,
/obj/item/trash/used_stasis_bag,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"lFo" = (
/obj/structure/machinery/light/double/blue{
dir = 8;
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"lFv" = (
/obj/item/stack/cable_coil,
/turf/open/floor/prison,
/area/fiorina/station/disco)
"lFB" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/station/research_cells)
"lFD" = (
/obj/item/tool/crowbar/red,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/tumor/aux_engi)
"lFM" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/telecomm/lz1_tram)
"lFQ" = (
/obj/structure/machinery/m56d_hmg/mg_turret/dropship,
@@ -19342,10 +15397,7 @@
/area/fiorina/station/central_ring)
"lFV" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"lGL" = (
/obj/structure/machinery/light/double/blue{
@@ -19353,15 +15405,11 @@
pixel_x = 10;
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"lHw" = (
/obj/structure/barricade/handrail/type_b,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/flight_deck)
"lHx" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -19377,10 +15425,7 @@
/area/fiorina/station/security)
"lIj" = (
/obj/structure/prop/ice_colony/surveying_device,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/tumor/servers)
"lIk" = (
/obj/structure/surface/table/reinforced/prison,
@@ -19394,10 +15439,7 @@
pixel_x = 5;
pixel_y = 11
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"lIl" = (
/obj/structure/platform{
@@ -19409,10 +15451,7 @@
/obj/structure/platform_decoration{
dir = 9
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/fiorina/tumor/ice_lab)
"lIt" = (
/obj/structure/disposalpipe/segment{
@@ -19422,9 +15461,7 @@
name = "overhead pipe";
pixel_y = 12
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"lIv" = (
/turf/closed/shuttle/ert{
@@ -19433,9 +15470,7 @@
/area/fiorina/lz/near_lzI)
"lIA" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/tumor/aux_engi)
"lIC" = (
/obj/structure/barricade/handrail/type_b{
@@ -19445,10 +15480,7 @@
dir = 4;
layer = 3.25
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"lIG" = (
/obj/structure/extinguisher_cabinet,
@@ -19456,10 +15488,7 @@
/area/fiorina/station/research_cells)
"lIH" = (
/obj/structure/machinery/processor,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/west,
/area/fiorina/station/botany)
"lIJ" = (
/obj/item/stack/rods,
@@ -19470,9 +15499,7 @@
layer = 2.6
},
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"lJx" = (
/obj/structure/surface/table/reinforced/prison,
@@ -19486,16 +15513,11 @@
/obj/item/clothing/suit/storage/hazardvest,
/obj/item/clothing/suit/storage/hazardvest,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"lJS" = (
/obj/structure/largecrate/supply/medicine/iv,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"lKI" = (
/obj/structure/largecrate/random/case,
@@ -19506,10 +15528,7 @@
dir = 8;
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/chapel)
"lLe" = (
/obj/item/stack/sheet/metal,
@@ -19526,9 +15545,7 @@
/obj/structure/prop/resin_prop{
icon_state = "sheater0"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"lMh" = (
/obj/structure/machinery/vending/coffee,
@@ -19544,25 +15561,18 @@
icon_state = "mwo";
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"lMV" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/communications{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"lNc" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"lNf" = (
/obj/item/inflatable,
@@ -19570,17 +15580,11 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"lNv" = (
/obj/item/restraint/adjustable/cable/pink,
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"lNP" = (
/obj/structure/bed/roller,
@@ -19592,42 +15596,29 @@
/area/fiorina/station/power_ring)
"lOe" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/telecomm/lz1_tram)
"lOk" = (
/obj/structure/curtain,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/power_ring)
"lOm" = (
/obj/structure/largecrate/random/case/small,
/obj/item/bodybag/tarp/reactive{
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"lOx" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"lOy" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/lz/near_lzI)
"lPA" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -19637,53 +15628,35 @@
/obj/structure/closet/secure_closet/freezer/kitchen,
/obj/item/reagent_container/food/condiment/enzyme,
/obj/item/reagent_container/food/condiment/enzyme,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"lQo" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/station/transit_hub)
"lQJ" = (
/obj/structure/closet/emcloset,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/fiorina/maintenance)
"lQL" = (
/obj/structure/machinery/space_heater,
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/tumor/ice_lab)
"lRk" = (
/obj/item/stack/rods/plasteel,
-/turf/open/floor/prison{
- icon_state = "damaged3"
- },
+/turf/open/floor/prison/damaged3,
/area/fiorina/station/security)
"lRq" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/fiorina/station/park)
"lRr" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/fiorina/station/civres_blue)
"lRT" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -19693,9 +15666,7 @@
desc = "Wow, instant sand. They really have everything in space.";
name = "Insta-Sand! bag"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"lSb" = (
/obj/structure/machinery/vending/snack,
@@ -19710,9 +15681,7 @@
/area/fiorina/station/research_cells)
"lSq" = (
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"lSS" = (
/obj/structure/platform_decoration/kutjevo{
@@ -19725,9 +15694,7 @@
/obj/structure/sink{
pixel_y = 15
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"lTW" = (
/obj/structure/flora/pottedplant{
@@ -19760,9 +15727,7 @@
pixel_y = 13
},
/obj/item/clothing/suit/storage/hazardvest,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/civres_blue)
"lUv" = (
/obj/structure/platform{
@@ -19780,31 +15745,21 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"lVA" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/lz/near_lzII)
"lVQ" = (
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/fiorina/station/medbay)
"lWn" = (
/obj/structure/machinery/shower{
pixel_y = 13
},
/obj/item/tool/soap/nanotrasen,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"lWy" = (
/obj/item/fuel_cell,
@@ -19814,9 +15769,7 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"lXs" = (
/obj/item/book/manual/marine_law,
@@ -19848,9 +15801,7 @@
/obj/structure/mirror{
pixel_y = 28
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/fiorina/station/civres_blue)
"lZf" = (
/turf/closed/shuttle/elevator{
@@ -19859,10 +15810,7 @@
/area/fiorina/tumor/aux_engi)
"lZm" = (
/obj/item/trash/cigbutt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/power_ring)
"lZo" = (
/obj/structure/machinery/light/double/blue{
@@ -19870,14 +15818,10 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"lZp" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"lZs" = (
/obj/structure/disposalpipe/segment{
@@ -19902,16 +15846,11 @@
/area/fiorina/station/research_cells)
"maA" = (
/obj/item/stack/tile/plasteel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"maY" = (
/obj/structure/prop/almayer/computers/sensor_computer2,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"mbg" = (
/obj/structure/machinery/light/double/blue,
@@ -19925,10 +15864,7 @@
/area/fiorina/oob)
"mbz" = (
/obj/item/ammo_box/magazine/M16,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"mbC" = (
/obj/item/clipboard,
@@ -19940,16 +15876,12 @@
/turf/open/floor/wood,
/area/fiorina/station/park)
"mcH" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/fiorina/tumor/servers)
"mcJ" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"mdd" = (
/obj/item/storage/toolbox/electrical,
@@ -19963,10 +15895,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"mdD" = (
/obj/item/stool,
@@ -19974,9 +15903,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"mdG" = (
/obj/structure/prop/souto_land/streamer{
@@ -19987,9 +15914,7 @@
dir = 4;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"mdH" = (
/obj/structure/surface/table/reinforced/prison,
@@ -19999,9 +15924,7 @@
},
/obj/item/card/id/guest,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"mdJ" = (
/obj/structure/platform/kutjevo/smooth{
@@ -20011,10 +15934,7 @@
/turf/open/space,
/area/fiorina/oob)
"mdS" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greenbluecorner"
- },
+/turf/open/floor/prison/greenbluecorner/west,
/area/fiorina/station/botany)
"mdY" = (
/obj/structure/machinery/light/double/blue{
@@ -20022,9 +15942,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"mei" = (
/obj/structure/surface/table/reinforced/prison,
@@ -20049,9 +15967,7 @@
/area/fiorina/tumor/civres)
"mfF" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/lz/near_lzI)
"mfR" = (
/obj/structure/bed{
@@ -20065,32 +15981,23 @@
/area/fiorina/station/civres_blue)
"mgh" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"mgz" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"mgE" = (
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/lz/near_lzI)
"mgO" = (
/obj/structure/window{
dir = 8
},
/obj/item/circuitboard/machine/rdserver,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"mho" = (
/obj/structure/machinery/light/double/blue{
@@ -20112,10 +16019,7 @@
/area/fiorina/station/flight_deck)
"mhS" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/north,
/area/fiorina/station/botany)
"miU" = (
/obj/item/stack/sheet/metal,
@@ -20125,32 +16029,21 @@
/obj/item/reagent_container/food/drinks/coffee{
name = "\improper paper cup"
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/central_ring)
"mju" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"mjx" = (
/turf/open/floor/plating/plating_catwalk/prison,
/area/fiorina/tumor/servers)
"mjB" = (
/obj/structure/platform,
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/fiorina/station/park)
"mkn" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/fiorina/station/power_ring)
"mkI" = (
/obj/structure/machinery/microwave{
@@ -20163,31 +16056,21 @@
/area/fiorina/tumor/aux_engi)
"mlb" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/fiorina/tumor/ice_lab)
"mld" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"mlg" = (
/obj/effect/landmark/corpsespawner/ua_riot/burst,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"mlu" = (
/obj/structure/prop/invuln/minecart_tracks/bumper{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"mlC" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -20201,10 +16084,7 @@
/obj/structure/closet/crate/trashcart,
/obj/effect/spawner/random/gun/special,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"mmp" = (
/obj/structure/surface/table/reinforced/prison,
@@ -20235,25 +16115,18 @@
/area/fiorina/tumor/fiberbush)
"mns" = (
/obj/item/stool,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"mny" = (
/turf/closed/wall/prison,
/area/fiorina/station/flight_deck)
"mnJ" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"mnR" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"mok" = (
/obj/structure/closet/crate/bravo,
@@ -20262,22 +16135,16 @@
/obj/item/fuel_cell,
/obj/item/stack/sheet/plasteel,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"mom" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/tool/surgery/surgicaldrill,
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/fiorina/station/lowsec)
"moK" = (
/obj/item/clothing/under/shorts/red,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/central_ring)
"moQ" = (
/obj/structure/sink{
@@ -20285,10 +16152,7 @@
pixel_x = -12
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/station/research_cells)
"moW" = (
/obj/effect/landmark/corpsespawner/ua_riot/burst,
@@ -20324,23 +16188,15 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/botany)
"mpN" = (
/obj/item/stock_parts/manipulator/pico,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/fiorina/tumor/servers)
"mpR" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"mpY" = (
/obj/structure/flora/pottedplant{
@@ -20356,9 +16212,7 @@
/area/fiorina/station/medbay)
"mqB" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/fiorina/station/security)
"mqJ" = (
/obj/structure/barricade/metal/wired{
@@ -20369,10 +16223,7 @@
/area/fiorina/station/central_ring)
"mqM" = (
/obj/item/stack/sandbags_empty/half,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/flight_deck)
"mrk" = (
/obj/structure/machinery/light/double/blue{
@@ -20392,9 +16243,7 @@
/area/fiorina/station/medbay)
"mrK" = (
/obj/structure/closet/secure_closet/medical2,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"mrW" = (
/obj/item/stack/rods,
@@ -20410,9 +16259,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"msj" = (
/obj/item/toy/crayon/orange,
@@ -20422,10 +16269,7 @@
/obj/structure/barricade/metal/wired{
dir = 4
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/fiorina/tumor/ship)
"msu" = (
/obj/structure/barricade/wooden{
@@ -20437,16 +16281,11 @@
"msF" = (
/obj/structure/closet/secure_closet/engineering_materials,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"msH" = (
/obj/item/tool/surgery/cautery,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/fiorina/station/lowsec)
"mtj" = (
/obj/structure/machinery/light/double/blue{
@@ -20461,59 +16300,41 @@
/obj/structure/machinery/microwave{
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"mtG" = (
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/fiorina/station/park)
"mtP" = (
/obj/structure/window/reinforced{
dir = 8;
health = 80
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"mue" = (
/obj/structure/closet{
density = 0;
pixel_y = 18
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"muD" = (
/obj/structure/tunnel,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"muX" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/tumor/ice_lab)
"mvl" = (
/obj/structure/window/framed/prison/reinforced,
/turf/open/floor/plating/prison,
/area/fiorina/station/research_cells)
"mvp" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"mvF" = (
/obj/structure/monorail{
@@ -20530,18 +16351,13 @@
dir = 4
},
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/tumor/ice_lab)
"mvY" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"mwu" = (
/obj/structure/surface/table/reinforced/prison,
@@ -20555,9 +16371,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"mwK" = (
/obj/structure/surface/table/reinforced/prison,
@@ -20572,18 +16386,13 @@
pixel_x = 9;
pixel_y = -10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"mwP" = (
/obj/structure/bed{
icon_state = "abed"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"mxc" = (
/obj/effect/spawner/random/tool,
@@ -20596,18 +16405,12 @@
"mxm" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/tool/plantspray/pests,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"mxs" = (
/obj/item/storage/belt/marine/quackers,
/obj/effect/spawner/gibspawner/human,
-/turf/open/gm/river{
- color = "#990000";
- name = "pool"
- },
+/turf/open/gm/river/darkred_pool,
/area/fiorina/station/park)
"mxQ" = (
/turf/closed/wall/prison,
@@ -20623,9 +16426,7 @@
/area/fiorina/lz/near_lzI)
"myi" = (
/obj/item/tool/mop,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"myj" = (
/obj/structure/largecrate/random/case/small,
@@ -20637,50 +16438,33 @@
layer = 2.8
},
/obj/structure/barricade/handrail/type_b,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"myH" = (
/obj/item/storage/briefcase,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"myJ" = (
/obj/structure/closet/bombcloset,
/obj/effect/spawner/random/gun/rifle/midchance,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/fiorina/station/flight_deck)
"myK" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"myQ" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/fiorina/tumor/ice_lab)
"mzn" = (
/obj/item/frame/firstaid_arm_assembly,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"mzy" = (
/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"mzJ" = (
/obj/item/tool/lighter/random{
@@ -20690,9 +16474,7 @@
/turf/open/floor/prison,
/area/fiorina/station/power_ring)
"mzK" = (
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/fiorina/station/medbay)
"mzS" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
@@ -20709,15 +16491,10 @@
/area/fiorina/oob)
"mAs" = (
/obj/item/broken_device,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"mAt" = (
-/turf/open/floor/prison{
- icon_state = "greenbluecorner"
- },
+/turf/open/floor/prison/greenbluecorner,
/area/fiorina/station/botany)
"mAK" = (
/obj/structure/sign/poster{
@@ -20732,55 +16509,34 @@
pixel_x = 6;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"mAN" = (
/obj/item/toy/crayon/mime,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"mAS" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"mBG" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"mBJ" = (
/obj/item/ammo_box/magazine/misc/flares/empty,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"mBZ" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"mCe" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/fiorina/station/lowsec)
"mCp" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/fiorina/station/chapel)
"mCA" = (
/obj/structure/prop/resin_prop,
@@ -20801,25 +16557,17 @@
layer = 2.7
},
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"mDn" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/fiorina/tumor/servers)
"mDq" = (
/obj/structure/closet/crate/miningcar{
name = "\improper materials storage bin"
},
/obj/item/reagent_container/food/snacks/meat,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/east,
/area/fiorina/station/botany)
"mDz" = (
/obj/structure/bed/chair/wood/normal{
@@ -20831,26 +16579,19 @@
/obj/structure/bed{
icon_state = "abed"
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/lowsec)
"mDS" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"mEn" = (
/obj/structure/machinery/photocopier{
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"mEJ" = (
/obj/structure/window/reinforced{
@@ -20867,30 +16608,19 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/medbay)
"mEU" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/disco)
"mEY" = (
/obj/item/device/flashlight/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/fiorina/tumor/aux_engi)
"mFS" = (
/obj/structure/cargo_container/grant/left,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"mGf" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/civres_blue)
"mGr" = (
/obj/structure/stairs/perspective{
@@ -20908,9 +16638,7 @@
/area/fiorina/lz/near_lzI)
"mGX" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"mGZ" = (
/obj/item/trash/eat,
@@ -20937,9 +16665,7 @@
/area/fiorina/tumor/aux_engi)
"mHY" = (
/obj/item/frame/rack,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"mIf" = (
/obj/structure/stairs/perspective{
@@ -20954,9 +16680,7 @@
icon_state = "abed"
},
/obj/item/reagent_container/food/snacks/wrapped/barcardine,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"mIu" = (
/obj/effect/spawner/random/sentry/midchance,
@@ -20967,24 +16691,17 @@
/obj/structure/machinery/microwave{
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"mJc" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"mJg" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/item/storage/pill_bottle/inaprovaline/skillless,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"mJk" = (
/obj/structure/surface/table/reinforced/prison,
@@ -21007,36 +16724,23 @@
/area/fiorina/tumor/servers)
"mJH" = (
/obj/item/device/flashlight/flare/on,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"mKd" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/fiorina/station/lowsec)
"mKo" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/maintenance)
"mKp" = (
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"mKx" = (
-/turf/open/floor/prison{
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate,
/area/fiorina/station/botany)
"mKS" = (
/obj/structure/platform/kutjevo/smooth{
@@ -21056,15 +16760,11 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/botany)
"mLL" = (
/obj/item/tool/mop,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"mLP" = (
/obj/structure/surface/table/reinforced/prison,
@@ -21074,36 +16774,23 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/power_ring)
"mLY" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/tumor/aux_engi)
"mMa" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/fiorina/station/medbay)
"mMh" = (
/obj/effect/spawner/random/sentry/midchance,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"mMi" = (
/obj/item/tool/weldpack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"mMk" = (
/obj/structure/prop/resin_prop,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"mMH" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -21113,17 +16800,12 @@
dir = 8;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"mMP" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/trash/plate,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"mNc" = (
/obj/structure/reagent_dispensers/water_cooler,
@@ -21139,18 +16821,12 @@
/area/fiorina/station/medbay)
"mNN" = (
/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"mOf" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/ashtray/plastic,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"mOm" = (
/obj/structure/platform{
@@ -21162,9 +16838,7 @@
/obj/structure/platform_decoration{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"mOE" = (
/obj/structure/stairs/perspective{
@@ -21172,38 +16846,25 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/fiorina/station/power_ring)
"mOI" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"mOU" = (
/obj/structure/barricade/handrail/type_b{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"mPe" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/medbay)
"mPf" = (
/obj/item/ammo_magazine/smg/mp5,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"mPg" = (
/obj/item/trash/boonie,
@@ -21215,9 +16876,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"mPW" = (
/obj/structure/prop/structure_lattice{
@@ -21227,10 +16886,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/telecomm/lz1_cargo)
"mPX" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/fiorina/station/park)
"mQy" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -21239,9 +16895,7 @@
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"mQB" = (
/obj/structure/surface/table/reinforced/prison,
@@ -21253,9 +16907,7 @@
dir = 8;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"mQV" = (
/obj/item/tool/stamp,
@@ -21265,10 +16917,7 @@
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"mRM" = (
/obj/structure/monorail{
@@ -21278,10 +16927,7 @@
/turf/open/space,
/area/fiorina/oob)
"mRS" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/fiorina/station/central_ring)
"mSk" = (
/obj/structure/surface/rack,
@@ -21289,17 +16935,12 @@
/area/fiorina/lz/near_lzII)
"mSo" = (
/obj/structure/bed/sofa/south/grey/right,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"mSp" = (
/obj/item/clothing/under/marine/ua_riot,
/obj/item/weapon/gun/rifle/m16,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"mSP" = (
/obj/effect/landmark/railgun_camera_pos,
@@ -21307,9 +16948,7 @@
/area/fiorina/lz/near_lzI)
"mSZ" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/tumor/aux_engi)
"mTa" = (
/obj/structure/ice/thin/indestructible{
@@ -21325,10 +16964,7 @@
/area/fiorina/station/research_cells)
"mTl" = (
/obj/item/storage/box/gloves,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"mTs" = (
/obj/structure/barricade/wooden{
@@ -21345,10 +16981,7 @@
icon_state = "S"
},
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"mUA" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -21359,9 +16992,7 @@
dir = 4
},
/obj/item/circuitboard/machine/rdserver,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"mVd" = (
/obj/structure/surface/table/reinforced/prison,
@@ -21388,70 +17019,48 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"mVk" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"mVn" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/telecomm/lz1_tram)
"mVO" = (
/obj/item/tool/extinguisher,
/turf/open/floor/prison,
/area/fiorina/tumor/servers)
"mVY" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/fiorina/station/security)
"mWs" = (
/obj/structure/prop/souto_land/streamer{
dir = 6
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"mWO" = (
/obj/effect/spawner/random/tool,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"mWR" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/communications/simple,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"mWS" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"mWX" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"mWY" = (
/obj/item/coin/uranium{
@@ -21473,28 +17082,18 @@
},
/obj/item/weapon/gun/launcher/grenade/m81,
/obj/item/storage/pill_bottle/kelotane,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"mYl" = (
/obj/item/ammo_magazine/rifle/mar40,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/fiorina/station/lowsec)
"mYy" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/tumor/aux_engi)
"mYG" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ship)
"mZo" = (
/obj/item/tool/shovel,
@@ -21507,28 +17106,21 @@
pixel_y = 21
},
/obj/effect/spawner/random/gun/smg/lowchance,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"mZH" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/central_ring)
"naf" = (
/turf/closed/shuttle/ert,
/area/fiorina/oob)
"naI" = (
/obj/item/clothing/under/color/orange,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"naW" = (
/turf/closed/wall/r_wall/prison,
@@ -21539,16 +17131,10 @@
/area/fiorina/station/telecomm/lz2_maint)
"nbP" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"ncb" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/fiorina/lz/near_lzI)
"ncj" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -21571,33 +17157,22 @@
/obj/item/reagent_container/food/snacks/cherrypie{
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/flight_deck)
"ncs" = (
/obj/structure/machinery/vending/sovietsoda,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"ncF" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/tumor/ice_lab)
"ncY" = (
/obj/structure/bed/sofa/south/grey/right,
/obj/item/storage/briefcase{
pixel_y = -2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"ndl" = (
/obj/item/storage/box/cups,
@@ -21607,16 +17182,11 @@
/area/fiorina/station/power_ring)
"ndD" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"ndQ" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/fiorina/station/research_cells)
"ndZ" = (
/obj/structure/machinery/constructable_frame{
@@ -21635,19 +17205,14 @@
dir = 8;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"nez" = (
/obj/item/ammo_casing{
dir = 6;
icon_state = "casing_5"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"neE" = (
/obj/structure/largecrate/random/barrel/red,
@@ -21658,9 +17223,7 @@
/turf/open/floor/prison,
/area/fiorina/tumor/servers)
"neY" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/fiorina/station/central_ring)
"nfe" = (
/obj/effect/decal/cleanable/blood/writing{
@@ -21677,26 +17240,19 @@
pixel_x = -12;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"nfh" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"nfu" = (
/obj/effect/decal/medical_decals{
icon_state = "cryomid"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"nfA" = (
/obj/structure/platform,
@@ -21722,22 +17278,16 @@
/area/fiorina/station/civres_blue)
"ngg" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"ngn" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ngF" = (
/obj/item/device/flashlight/lamp/tripod,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"nho" = (
/obj/structure/platform{
@@ -21753,10 +17303,7 @@
/obj/structure/barricade/handrail/type_b{
layer = 3.5
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/fiorina/station/civres_blue)
"nhX" = (
/obj/structure/machinery/gibber,
@@ -21764,9 +17311,7 @@
pixel_x = -6;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate,
/area/fiorina/station/botany)
"nhY" = (
/obj/structure/extinguisher_cabinet,
@@ -21783,10 +17328,7 @@
/turf/open/floor/prison,
/area/fiorina/station/flight_deck)
"nim" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/fiorina/lz/near_lzI)
"nip" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
@@ -21798,16 +17340,11 @@
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"njg" = (
/obj/effect/spawner/random/gun/rifle/lowchance,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/flight_deck)
"njm" = (
/obj/structure/machinery/light/double/blue{
@@ -21815,25 +17352,18 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"nju" = (
/obj/item/gift,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"njG" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"njK" = (
/obj/structure/surface/table/reinforced/prison,
@@ -21851,10 +17381,7 @@
/area/fiorina/station/security)
"njN" = (
/obj/item/stock_parts/micro_laser/ultra,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/fiorina/tumor/servers)
"njY" = (
/obj/structure/inflatable/popped,
@@ -21862,41 +17389,26 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"nkg" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"nkF" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/park)
"nkJ" = (
/obj/structure/largecrate/supply/medicine/medkits,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"nkM" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/fiorina/tumor/servers)
"nlw" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"nlR" = (
/obj/structure/flora/bush/ausbushes/ausbush{
@@ -21904,63 +17416,43 @@
icon_state = "fullgrass_2";
name = "Fiberbush(tm) tubers"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"nmh" = (
/obj/structure/window{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"nmi" = (
/obj/structure/machinery/door/airlock/almayer/marine{
dir = 1;
icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi'
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/research_cells)
"nmm" = (
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"nmy" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"nmK" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"nmL" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"nmM" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"nmT" = (
/obj/item/toy/crayon/blue,
@@ -21975,16 +17467,12 @@
"nny" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/trash/cigbutt/bcigbutt,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"nnC" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"nnG" = (
/obj/structure/platform{
@@ -22003,19 +17491,14 @@
/area/fiorina/station/power_ring)
"noe" = (
/obj/structure/flora/grass/tallgrass/jungle,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"nor" = (
/obj/effect/decal/medical_decals{
dir = 4;
icon_state = "triagedecaldir"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"noz" = (
/obj/structure/platform{
@@ -22028,9 +17511,7 @@
dir = 4;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"nqL" = (
/obj/structure/surface/rack,
@@ -22051,19 +17532,14 @@
/obj/structure/platform_decoration{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/botany)
"nre" = (
/obj/item/stack/rods,
/turf/open/floor/plating/prison,
/area/fiorina/station/civres_blue)
"nrn" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/fiorina/maintenance)
"nrU" = (
/obj/item/tool/pickaxe,
@@ -22074,10 +17550,7 @@
pixel_y = 10
},
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"nsm" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
@@ -22086,10 +17559,7 @@
health = 80
},
/obj/structure/medical_supply_link,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"nss" = (
/obj/structure/stairs/perspective{
@@ -22108,45 +17578,30 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"ntc" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/fiorina/tumor/civres)
"ntf" = (
/obj/item/implanter/compressed,
/obj/structure/safe,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ntv" = (
/obj/structure/window/framed/prison,
/turf/open/floor/plating/prison,
/area/fiorina/station/lowsec)
"ntw" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/lz/near_lzI)
"ntx" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/disco)
"ntE" = (
/obj/structure/barricade/handrail/type_b,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"ntH" = (
/obj/structure/ice/thin/indestructible{
@@ -22162,10 +17617,7 @@
/area/fiorina/tumor/ice_lab)
"ntM" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"ntZ" = (
/obj/structure/machinery/light/double/blue{
@@ -22184,30 +17636,21 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"nuo" = (
/obj/structure/bed/sofa/south/grey/left,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"nup" = (
/obj/structure/barricade/handrail/type_b,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"nuN" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"nuX" = (
/obj/structure/stairs/perspective{
@@ -22221,16 +17664,11 @@
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"nvn" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/fiorina/station/chapel)
"nvs" = (
/obj/structure/platform_decoration{
@@ -22239,10 +17677,7 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecaldir"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"nvD" = (
/turf/closed/wall/r_wall/prison,
@@ -22253,39 +17688,25 @@
/turf/open/floor/prison,
/area/fiorina/tumor/aux_engi)
"nvX" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/power_ring)
"nwv" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/tumor/aux_engi)
"nwS" = (
/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/telecomm/lz1_tram)
"nwT" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/fiorina/tumor/aux_engi)
"nxc" = (
/obj/structure/sign/poster{
icon_state = "poster18";
pixel_y = 32
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"nxl" = (
/obj/structure/machinery/light/double/blue{
@@ -22293,9 +17714,7 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/civres_blue)
"nxq" = (
/obj/item/prop/helmetgarb/spacejam_tickets{
@@ -22313,9 +17732,7 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"nxY" = (
/obj/structure/sink{
@@ -22324,30 +17741,22 @@
},
/obj/structure/surface/table/reinforced/prison,
/obj/item/clothing/gloves/latex,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/medbay)
"nyq" = (
/obj/structure/platform,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"nyC" = (
/obj/item/stack/rods/plasteel,
-/turf/open/floor/prison{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/prison/floorscorched2,
/area/fiorina/station/security)
"nyF" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/disco)
"nyO" = (
/obj/structure/machinery/light/double/blue{
@@ -22372,9 +17781,7 @@
/obj/effect/decal/cleanable/blood{
pixel_y = 20
},
-/turf/open/floor/prison{
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate,
/area/fiorina/station/botany)
"nzi" = (
/obj/structure/barricade/wooden{
@@ -22384,16 +17791,11 @@
/area/fiorina/station/central_ring)
"nzu" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"nzw" = (
/obj/item/clothing/head/soft/yellow,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/fiorina/tumor/servers)
"nzI" = (
/obj/structure/largecrate/random,
@@ -22416,39 +17818,25 @@
/turf/open/floor/wood,
/area/fiorina/station/park)
"nAm" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/fiorina/lz/near_lzII)
"nAs" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"nAK" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/north,
/area/fiorina/station/lowsec)
"nAV" = (
/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/fiorina/station/power_ring)
"nBb" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"nBt" = (
/obj/effect/decal/hefa_cult_decals/d32{
@@ -22460,10 +17848,7 @@
/turf/open/floor/prison,
/area/fiorina/station/medbay)
"nBw" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/fiorina/station/power_ring)
"nCh" = (
/obj/structure/machinery/light/double/blue{
@@ -22474,10 +17859,7 @@
/turf/open/floor/prison,
/area/fiorina/station/medbay)
"nCm" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/fiorina/lz/near_lzI)
"nCt" = (
/obj/effect/decal/hefa_cult_decals/d32{
@@ -22487,30 +17869,20 @@
/area/fiorina/station/medbay)
"nCH" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"nCV" = (
/obj/item/ammo_casing{
icon_state = "casing_7_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"nCX" = (
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"nDq" = (
/obj/structure/bed/sofa/south/grey/left,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"nDr" = (
/obj/structure/machinery/door/airlock/almayer/maint/autoname{
@@ -22522,22 +17894,15 @@
/area/fiorina/station/medbay)
"nDI" = (
/obj/item/stack/tile/plasteel,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"nEh" = (
/obj/item/device/flashlight,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/civres_blue)
"nEB" = (
/obj/item/device/flashlight,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"nEI" = (
/obj/structure/machinery/deployable/barrier,
@@ -22546,9 +17911,7 @@
"nEN" = (
/obj/item/clothing/glasses/material,
/obj/structure/barricade/handrail,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"nEP" = (
/obj/structure/closet,
@@ -22561,18 +17924,13 @@
/obj/structure/machinery/computer/communications{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"nFb" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/fancy/cigarettes/emeraldgreen,
/obj/item/tool/lighter,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"nFc" = (
/obj/item/ammo_casing{
@@ -22605,30 +17963,21 @@
/area/fiorina/station/security/wardens)
"nGB" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/disco)
"nGO" = (
/obj/structure/largecrate/random/barrel/yellow,
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"nGV" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/fiorina/station/research_cells)
"nGZ" = (
/turf/open/floor/prison,
@@ -22636,10 +17985,7 @@
"nHm" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/storage/fancy/cigar,
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"nHZ" = (
/turf/closed/shuttle/ert{
@@ -22653,10 +17999,7 @@
pixel_x = 1;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/station/transit_hub)
"nIc" = (
/obj/structure/disposalpipe/segment{
@@ -22679,17 +18022,13 @@
/obj/structure/prop/almayer/computers/sensor_computer1{
name = "computer"
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"nJq" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"nJu" = (
/obj/item/stack/rods,
@@ -22697,18 +18036,13 @@
/area/fiorina/station/transit_hub)
"nJT" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"nKf" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"nKl" = (
/obj/structure/platform{
@@ -22728,16 +18062,11 @@
icon_state = "mwo";
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"nKG" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"nKX" = (
/obj/structure/barricade/metal{
@@ -22762,10 +18091,7 @@
pixel_y = -11
},
/obj/item/reagent_container/food/snacks/doughslice,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/flight_deck)
"nLV" = (
/turf/closed/shuttle/ert{
@@ -22774,22 +18100,14 @@
/area/fiorina/tumor/aux_engi)
"nMg" = (
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/fiorina/station/telecomm/lz1_tram)
"nMi" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"nMm" = (
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/tumor/aux_engi)
"nMn" = (
/obj/structure/surface/table/reinforced/prison,
@@ -22797,10 +18115,7 @@
/turf/open/floor/prison,
/area/fiorina/station/power_ring)
"nMp" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/east,
/area/fiorina/station/botany)
"nMz" = (
/obj/structure/stairs/perspective{
@@ -22810,10 +18125,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/central_ring)
"nMI" = (
/obj/structure/machinery/light/double/blue{
@@ -22843,10 +18155,7 @@
/area/fiorina/maintenance)
"nNS" = (
/obj/item/device/flashlight/flare,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"nOe" = (
/obj/structure/barricade/handrail/type_b{
@@ -22860,16 +18169,11 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"nOi" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/station/park)
"nOw" = (
/obj/structure/ice/thin/indestructible{
@@ -22903,35 +18207,25 @@
pixel_y = -3
},
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"nQl" = (
/obj/effect/decal/medical_decals{
icon_state = "docstripingdir"
},
/obj/item/stack/rods/plasteel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"nQq" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited,
/turf/closed/wall/prison,
/area/fiorina/station/medbay)
"nQu" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"nQE" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/tumor/ice_lab)
"nQF" = (
/obj/structure/largecrate/random,
@@ -22942,9 +18236,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"nQJ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -22952,9 +18244,7 @@
pixel_y = 32
},
/obj/item/tool/kitchen/knife/butcher,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"nRQ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -22966,10 +18256,7 @@
pixel_x = -5;
pixel_y = -11
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/flight_deck)
"nRT" = (
/obj/structure/platform_decoration{
@@ -22980,17 +18267,11 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/fiorina/station/medbay)
"nRU" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/fiorina/station/medbay)
"nSh" = (
/obj/structure/stairs/perspective{
@@ -23009,10 +18290,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/dropper,
/obj/item/attachable/bipod,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"nSU" = (
/obj/structure/surface/rack,
@@ -23025,15 +18303,11 @@
},
/area/fiorina/tumor/ship)
"nTv" = (
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/fiorina/station/chapel)
"nTV" = (
/obj/structure/machinery/autolathe/full,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"nUb" = (
/obj/item/stack/rods,
@@ -23047,9 +18321,7 @@
/area/fiorina/station/park)
"nUm" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"nUr" = (
/obj/structure/ice/thin/indestructible,
@@ -23082,9 +18354,7 @@
/area/fiorina/maintenance)
"nUS" = (
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"nVu" = (
/obj/structure/sink{
@@ -23092,10 +18362,7 @@
pixel_x = 12
},
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"nVE" = (
/obj/item/stack/tile/plasteel,
@@ -23103,16 +18370,11 @@
/area/fiorina/station/disco)
"nVN" = (
/obj/item/trash/cigbutt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"nVR" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/tumor/aux_engi)
"nWh" = (
/obj/item/tool/wrench,
@@ -23120,10 +18382,7 @@
/area/fiorina/tumor/aux_engi)
"nWk" = (
/obj/effect/spawner/random/gun/smg/midchance,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"nWv" = (
/obj/item/reagent_container/food/drinks/coffee{
@@ -23144,10 +18403,7 @@
pixel_y = 13
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/fiorina/maintenance)
"nWC" = (
/obj/item/clothing/shoes/yellow,
@@ -23155,9 +18411,7 @@
/area/fiorina/station/civres_blue)
"nWM" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"nXj" = (
/obj/structure/curtain/black,
@@ -23188,15 +18442,11 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"nYE" = (
/obj/item/tool/wrench,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"nYT" = (
/obj/structure/platform/kutjevo/smooth{
@@ -23213,14 +18463,10 @@
/turf/open/space/basic,
/area/fiorina/oob)
"nZB" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"nZI" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"nZQ" = (
/obj/structure/bed/chair/comfy{
@@ -23235,16 +18481,10 @@
layer = 2.5;
pixel_y = -11
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/flight_deck)
"oaa" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"obh" = (
/obj/structure/window/framed/prison/reinforced,
@@ -23254,10 +18494,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"obz" = (
/obj/structure/machinery/computer/arcade,
@@ -23311,9 +18548,7 @@
/area/fiorina/station/disco)
"odl" = (
/obj/structure/tunnel/maint_tunnel,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"ody" = (
/obj/structure/machinery/autolathe,
@@ -23321,37 +18556,25 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"odC" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/prison/platingdmg1,
/area/fiorina/tumor/civres)
"odQ" = (
/obj/structure/largecrate/supply,
/turf/open/floor/plating/prison,
/area/fiorina/station/research_cells)
"oer" = (
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"oev" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"oeN" = (
/obj/effect/landmark/corpsespawner/prison_security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"oeT" = (
/obj/structure/disposalpipe/segment{
@@ -23361,17 +18584,11 @@
name = "overhead pipe";
pixel_y = 12
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"oeV" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/west,
/area/fiorina/station/botany)
"oeY" = (
/obj/effect/spawner/random/tool,
@@ -23381,10 +18598,7 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/disco)
"ofq" = (
/turf/closed/shuttle/elevator{
@@ -23418,10 +18632,7 @@
/obj/structure/bed{
icon_state = "psychbed"
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/fiorina/station/medbay)
"ogf" = (
/obj/structure/monorail{
@@ -23435,22 +18646,15 @@
/area/fiorina/tumor/fiberbush)
"ohc" = (
/obj/item/clothing/head/helmet/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"ohl" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/fiorina/station/central_ring)
"ohx" = (
/obj/item/tool/match,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ohF" = (
/obj/structure/platform/kutjevo/smooth,
@@ -23465,17 +18669,11 @@
/area/fiorina/tumor/aux_engi)
"oib" = (
/obj/item/trash/hotdog,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/power_ring)
"oih" = (
/obj/item/paper/crumpled/bloody,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"oiF" = (
/obj/structure/filingcabinet,
@@ -23484,27 +18682,18 @@
pixel_y = 21
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/servers)
"oiV" = (
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/fiorina/tumor/servers)
"oiX" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"ojc" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"ojj" = (
/obj/effect/decal{
@@ -23513,9 +18702,7 @@
layer = 2.5;
pixel_y = -11
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"ojk" = (
/obj/structure/stairs/perspective{
@@ -23544,9 +18731,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"okg" = (
/obj/structure/barricade/handrail/type_b{
@@ -23613,9 +18798,7 @@
/obj/structure/barricade/deployable{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"okJ" = (
/obj/structure/machinery/shower{
@@ -23624,9 +18807,7 @@
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/research_cells)
"okT" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -23644,9 +18825,7 @@
pixel_y = 5
},
/obj/item/storage/firstaid/adv,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"olg" = (
/obj/structure/closet/crate/delta{
@@ -23662,10 +18841,7 @@
/area/fiorina/tumor/aux_engi)
"olo" = (
/obj/structure/machinery/disposal,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"oly" = (
/obj/structure/machinery/light/double/blue{
@@ -23701,15 +18877,11 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/botany)
"omO" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/fiorina/station/medbay)
"onb" = (
/obj/structure/bed/chair{
@@ -23722,26 +18894,20 @@
dir = 8;
pixel_y = 24
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"onh" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/cameras{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ont" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"onB" = (
/obj/structure/closet/secure_closet/engineering_personal,
@@ -23752,27 +18918,19 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"onW" = (
/obj/structure/machinery/shower{
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/research_cells)
"ooq" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"oou" = (
/obj/structure/closet/emcloset,
@@ -23787,9 +18945,7 @@
/area/fiorina/station/medbay)
"oox" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/fiorina/station/power_ring)
"ooF" = (
/obj/structure/machinery/power/apc,
@@ -23803,44 +18959,28 @@
/obj/structure/surface/table/woodentable/fancy,
/obj/item/reagent_container/food/drinks/bottle/holywater,
/obj/item/reagent_container/food/drinks/bottle/holywater,
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"opj" = (
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/fiorina/station/lowsec)
"opM" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"opN" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/chapel)
"opP" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/west,
/area/fiorina/station/botany)
"oqG" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"orr" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -23850,32 +18990,21 @@
pixel_y = 13
},
/obj/effect/decal/cleanable/cobweb2,
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"ort" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/fiorina/station/chapel)
"orB" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/fiorina/tumor/servers)
"orC" = (
/obj/structure/machinery/vending/sovietsoda,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"orD" = (
/obj/structure/surface/table/reinforced/prison,
@@ -23883,9 +19012,7 @@
name = "Lung Transplants for Dummies";
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"orV" = (
/obj/item/tool/weldingtool,
@@ -23895,10 +19022,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/fiorina/station/park)
"osN" = (
/obj/structure/closet/bodybag,
@@ -23910,10 +19034,7 @@
icon_state = "abed"
},
/obj/item/bedsheet/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"osX" = (
/obj/structure/cable/heavyduty{
@@ -23923,31 +19044,20 @@
/area/fiorina/tumor/aux_engi)
"ota" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"otg" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/fiorina/tumor/servers)
"oty" = (
/obj/structure/closet/bombcloset,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"otz" = (
/obj/structure/closet/crate/medical,
/obj/item/storage/fancy/vials/random,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"otC" = (
/obj/structure/bed/chair/comfy{
@@ -23956,10 +19066,7 @@
/turf/open/floor/prison,
/area/fiorina/station/security/wardens)
"otK" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/fiorina/tumor/servers)
"ouH" = (
/obj/structure/surface/table/reinforced/prison,
@@ -23976,16 +19083,10 @@
/area/fiorina/station/park)
"ovk" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/fiorina/tumor/ice_lab)
"ovq" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"ovr" = (
/obj/structure/girder/displaced,
@@ -23998,10 +19099,7 @@
/obj/item/storage/bible/hefa{
pixel_y = 3
},
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"owd" = (
/obj/item/storage/backpack/souto,
@@ -24009,9 +19107,7 @@
/area/fiorina/station/chapel)
"owp" = (
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"owS" = (
/obj/structure/machinery/light/double/blue{
@@ -24019,10 +19115,7 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/fiorina/station/research_cells)
"oxp" = (
/obj/structure/platform{
@@ -24032,15 +19125,11 @@
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"oxv" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"oxA" = (
/turf/closed/shuttle/ert{
@@ -24049,21 +19138,14 @@
/area/fiorina/tumor/ship)
"oxK" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"oxS" = (
/obj/item/paper/crumpled/bloody,
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"oxU" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/station/transit_hub)
"oyd" = (
/obj/item/stack/sheet/metal,
@@ -24083,19 +19165,13 @@
/area/fiorina/lz/near_lzI)
"oyo" = (
/obj/structure/flora/pottedplant/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"oyy" = (
/obj/structure/bed{
icon_state = "abed"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/station/research_cells)
"oyC" = (
/obj/structure/bed/sofa/south/grey/right,
@@ -24114,30 +19190,21 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean_marked"
- },
+/turf/open/floor/prison/bright_clean_marked/southwest,
/area/fiorina/station/power_ring)
"oyS" = (
/obj/structure/bed/sofa/south/grey/left,
/turf/open/floor/prison,
/area/fiorina/station/disco)
"oyT" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/station/park)
"oza" = (
/obj/structure/largecrate/random/case/double,
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottom"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"ozC" = (
/obj/structure/flora/pottedplant{
@@ -24148,19 +19215,13 @@
/area/fiorina/station/security)
"oAf" = (
/obj/item/trash/boonie,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"oAj" = (
/obj/structure/machinery/bot/medbot{
name = "Dr. O"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"oBj" = (
/obj/effect/decal/cleanable/blood,
@@ -24187,9 +19248,7 @@
/obj/structure/platform_decoration{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"oDe" = (
/obj/effect/landmark/monkey_spawn,
@@ -24207,9 +19266,7 @@
/obj/item/phone{
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"oDh" = (
/obj/item/stack/rods,
@@ -24221,22 +19278,14 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"oDV" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"oEi" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/fiorina/station/civres_blue)
"oEs" = (
/obj/structure/barricade/handrail/type_b{
@@ -24246,9 +19295,7 @@
dir = 8;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"oEu" = (
/obj/structure/platform_decoration,
@@ -24256,9 +19303,7 @@
icon_state = "medium";
name = "ice shard"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"oED" = (
/obj/effect/landmark/monkey_spawn,
@@ -24292,30 +19337,21 @@
/turf/open/floor/prison,
/area/fiorina/lz/near_lzI)
"oEQ" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/fiorina/station/power_ring)
"oEX" = (
/obj/structure/closet/crate/miningcar{
name = "\improper materials storage bin"
},
-/turf/open/floor/prison{
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue,
/area/fiorina/station/botany)
"oFf" = (
/obj/item/reagent_container/food/drinks/cans/aspen,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"oFk" = (
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"oFp" = (
/obj/structure/barricade/metal/wired{
@@ -24325,10 +19361,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"oFI" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
@@ -24343,10 +19376,7 @@
/obj/structure/pipes/standard/simple/visible{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"oFU" = (
/obj/structure/machinery/light/double/blue{
@@ -24354,17 +19384,11 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/east,
/area/fiorina/station/botany)
"oGg" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/tumor/aux_engi)
"oGy" = (
/obj/structure/stairs/perspective{
@@ -24374,18 +19398,13 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"oGR" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"oGU" = (
/obj/structure/surface/table/woodentable,
@@ -24399,10 +19418,7 @@
/turf/open/floor/prison,
/area/fiorina/station/disco)
"oHm" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/fiorina/tumor/aux_engi)
"oHX" = (
/obj/structure/ice/thin/indestructible{
@@ -24427,33 +19443,22 @@
"oIz" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/mechanical/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"oIE" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/tumor/aux_engi)
"oJd" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/station/park)
"oJl" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"oJm" = (
/obj/item/tool/weldingtool,
@@ -24463,9 +19468,7 @@
/obj/structure/window/reinforced/tinted,
/obj/item/storage/briefcase,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/lz/near_lzI)
"oJL" = (
/obj/structure/machinery/light/small{
@@ -24486,17 +19489,11 @@
flipped = 1
},
/obj/item/reagent_container/food/snacks/eat_bar,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"oJY" = (
/obj/item/stack/sandbags/large_stack,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/fiorina/tumor/civres)
"oKf" = (
/obj/structure/stairs/perspective{
@@ -24515,9 +19512,7 @@
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"oKq" = (
/obj/effect/landmark/objective_landmark/close,
@@ -24525,22 +19520,16 @@
/area/fiorina/tumor/civres)
"oKV" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/freight,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/civres_blue)
"oLF" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"oLK" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/objective,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"oLV" = (
/obj/structure/largecrate/random/secure,
@@ -24549,15 +19538,11 @@
"oLX" = (
/obj/structure/surface/rack,
/obj/item/tank/emergency_oxygen/engi,
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/fiorina/station/power_ring)
"oMf" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"oMu" = (
/obj/effect/landmark/survivor_spawner,
@@ -24574,33 +19559,23 @@
pixel_x = 1;
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/fiorina/station/research_cells)
"oNu" = (
/obj/structure/barricade/handrail/type_b{
layer = 3.4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"oNx" = (
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"oNC" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"oOg" = (
/obj/structure/barricade/handrail/type_b{
@@ -24610,9 +19585,7 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"oOh" = (
/obj/structure/surface/table/reinforced/prison,
@@ -24623,16 +19596,11 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"oOi" = (
/obj/effect/decal/hefa_cult_decals/d32,
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/maintenance)
"oOk" = (
/obj/structure/platform,
@@ -24640,9 +19608,7 @@
dir = 1;
layer = 2.7
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"oOp" = (
/obj/structure/machinery/power/smes/buildable{
@@ -24653,9 +19619,7 @@
/area/fiorina/tumor/aux_engi)
"oOw" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"oOU" = (
/obj/structure/reagent_dispensers/water_cooler{
@@ -24663,9 +19627,7 @@
pixel_x = -8;
pixel_y = 16
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"oOV" = (
/obj/structure/machinery/filtration/console{
@@ -24675,19 +19637,14 @@
/area/fiorina/tumor/ship)
"oPn" = (
/obj/structure/bed/roller,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"oPN" = (
/obj/structure/inflatable/popped/door,
/turf/open/floor/plating/prison,
/area/fiorina/station/lowsec)
"oPR" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"oPU" = (
/turf/open/floor/prison,
@@ -24698,10 +19655,7 @@
/area/fiorina/station/park)
"oQk" = (
/obj/structure/inflatable/popped,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"oQI" = (
/obj/item/prop/helmetgarb/spacejam_tickets{
@@ -24717,16 +19671,10 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/disco)
"oRg" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/telecomm/lz1_cargo)
"oRR" = (
/obj/structure/surface/table/reinforced/prison,
@@ -24734,19 +19682,13 @@
/area/fiorina/station/park)
"oSn" = (
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/lowsec)
"oSz" = (
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/disco)
"oTa" = (
/obj/structure/surface/table/reinforced/prison,
@@ -24755,15 +19697,10 @@
pixel_y = 8
},
/obj/item/trash/cigbutt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"oTi" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"oTy" = (
/obj/structure/prop/structure_lattice{
@@ -24773,9 +19710,7 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"oTz" = (
/obj/structure/barricade/handrail/type_b{
@@ -24785,15 +19720,10 @@
dir = 4;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"oTP" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/fiorina/station/telecomm/lz1_tram)
"oTS" = (
/obj/structure/stairs/perspective{
@@ -24823,22 +19753,14 @@
/area/fiorina/oob)
"oVk" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"oWw" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/east,
/area/fiorina/station/park)
"oWC" = (
/obj/item/stack/sandbags/large_stack,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"oWF" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
@@ -24849,47 +19771,31 @@
dir = 6;
icon_state = "casing_10_1"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"oWY" = (
/obj/structure/largecrate/random,
/obj/item/reagent_container/food/drinks/coffee{
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/fiorina/station/medbay)
"oXb" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"oXg" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"oXk" = (
/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"oXD" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/drinks/cans/aspen,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"oXI" = (
/obj/structure/platform{
@@ -24898,10 +19804,7 @@
/obj/effect/decal/medical_decals{
icon_state = "docdecal1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"oXR" = (
/obj/structure/ice/thin/indestructible{
@@ -24934,10 +19837,7 @@
dir = 4;
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/chapel)
"oYW" = (
/obj/structure/machinery/light/double/blue{
@@ -24945,17 +19845,12 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"oZf" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"oZi" = (
/obj/item/clothing/under/color/orange,
@@ -24963,15 +19858,10 @@
/area/fiorina/station/security)
"oZj" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"oZk" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/fiorina/tumor/ice_lab)
"oZx" = (
/obj/item/trash/used_stasis_bag{
@@ -24999,16 +19889,11 @@
"oZS" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/clipboard,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"oZU" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"pab" = (
/obj/item/tool/weldpack{
@@ -25024,9 +19909,7 @@
/obj/effect/decal/medical_decals{
icon_state = "docdecal1"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"pah" = (
/obj/structure/platform{
@@ -25039,15 +19922,11 @@
desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society.";
name = "\improper Fiorina Green Block Canteen Vendor"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"paF" = (
/obj/item/tool/shovel/etool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"paI" = (
/obj/structure/monorail{
@@ -25060,15 +19939,11 @@
/obj/structure/machinery/computer/cameras{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"pbp" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/freight,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/telecomm/lz1_cargo)
"pbv" = (
/obj/structure/prop/structure_lattice{
@@ -25079,9 +19954,7 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"pbV" = (
/obj/structure/platform/kutjevo/smooth{
@@ -25098,9 +19971,7 @@
/turf/open/space,
/area/fiorina/oob)
"pbX" = (
-/turf/open/floor/prison{
- icon_state = "red"
- },
+/turf/open/floor/prison/red,
/area/fiorina/station/security)
"pca" = (
/obj/structure/stairs/perspective{
@@ -25121,9 +19992,7 @@
"pcN" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"pdB" = (
/obj/structure/machinery/light/double/blue{
@@ -25138,9 +20007,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"pdP" = (
/obj/structure/largecrate/random/case/double,
@@ -25150,16 +20017,11 @@
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "lavendergrass_1"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"pen" = (
/obj/structure/bed/sofa/vert/grey/bot,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/fiorina/station/transit_hub)
"peA" = (
/obj/structure/machinery/computer/communications{
@@ -25167,38 +20029,26 @@
pixel_y = 5
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/servers)
"peP" = (
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/telecomm/lz1_cargo)
"pgb" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/ice_lab)
"pgx" = (
/obj/structure/machinery/computer3/server/rack,
/obj/structure/window{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"pgQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/fiorina/station/chapel)
"phe" = (
/obj/structure/girder,
@@ -25206,34 +20056,24 @@
/area/fiorina/maintenance)
"pho" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"phz" = (
/turf/open/floor/plating/prison,
/area/fiorina/tumor/ice_lab)
"phC" = (
/obj/item/newspaper,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/tumor/ice_lab)
"phQ" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/tumor/ice_lab)
"pim" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/lowsec)
"piw" = (
/obj/structure/platform{
@@ -25250,15 +20090,10 @@
"pjf" = (
/obj/item/ammo_magazine/rifle/m16,
/obj/item/clothing/head/helmet/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"pjg" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northwest,
/area/fiorina/tumor/servers)
"pjE" = (
/obj/structure/filingcabinet/filingcabinet{
@@ -25268,10 +20103,7 @@
pixel_x = -8
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"pjR" = (
/obj/structure/surface/table/reinforced/prison,
@@ -25286,9 +20118,7 @@
pixel_x = -3;
pixel_y = 16
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"pjT" = (
/obj/structure/surface/table/reinforced/prison,
@@ -25297,27 +20127,18 @@
/area/fiorina/station/power_ring)
"pjW" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"pkB" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/lz/near_lzI)
"pkM" = (
/obj/structure/largecrate/machine,
/turf/open/floor/plating/prison,
/area/fiorina/station/medbay)
"plh" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/southwest,
/area/fiorina/station/botany)
"plu" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -25334,10 +20155,7 @@
/obj/structure/surface/rack,
/obj/item/poster,
/obj/item/poster,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"pmv" = (
/obj/structure/disposalpipe/segment{
@@ -25348,25 +20166,17 @@
pixel_x = -16;
pixel_y = 12
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/fiorina/tumor/servers)
"pmC" = (
/obj/effect/decal{
icon = 'icons/obj/items/policetape.dmi';
icon_state = "engineering_v"
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/telecomm/lz1_cargo)
"pnh" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/tumor/servers)
"pnx" = (
/obj/effect/landmark/xeno_spawn,
@@ -25374,9 +20184,7 @@
/area/fiorina/tumor/aux_engi)
"pnP" = (
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"pnS" = (
/obj/structure/surface/table/reinforced/prison,
@@ -25384,9 +20192,7 @@
/area/fiorina/tumor/servers)
"poC" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"ppq" = (
/obj/structure/surface/table/reinforced/prison,
@@ -25394,9 +20200,7 @@
icon_state = "pottedplant_29";
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ppG" = (
/obj/item/stack/rods/plasteel,
@@ -25414,32 +20218,22 @@
/area/fiorina/station/transit_hub)
"ppS" = (
/obj/structure/bed/sofa/vert/grey/top,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/fiorina/station/transit_hub)
"ppX" = (
/obj/structure/closet/secure_closet/medical2{
req_access_txt = "100"
},
/obj/item/alienjar,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/medbay)
"ppZ" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"pqz" = (
/obj/item/clothing/suit/storage/labcoat,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"pqC" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -25459,16 +20253,11 @@
/area/fiorina/lz/near_lzI)
"prh" = (
/obj/structure/girder/reinforced,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/fiorina/tumor/ship)
"prC" = (
/obj/structure/machinery/autolathe/medilathe/full,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"prG" = (
/obj/structure/platform{
@@ -25485,10 +20274,7 @@
pixel_x = -1;
pixel_y = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/fiorina/station/power_ring)
"pse" = (
/obj/item/weapon/gun/rifle/m16,
@@ -25496,10 +20282,7 @@
dir = 6;
icon_state = "casing_5"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"psm" = (
/obj/effect/decal/cleanable/blood,
@@ -25509,16 +20292,11 @@
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"psx" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/botany)
"psL" = (
/obj/structure/machinery/optable{
@@ -25533,19 +20311,14 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"psP" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"pte" = (
/obj/structure/extinguisher_cabinet,
@@ -25553,9 +20326,7 @@
/area/fiorina/station/power_ring)
"pti" = (
/obj/structure/machinery/vending/dinnerware,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"ptH" = (
/obj/structure/surface/table/reinforced/prison,
@@ -25564,9 +20335,7 @@
pixel_x = 11
},
/obj/item/clothing/gloves/latex,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/medbay)
"puw" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -25580,10 +20349,7 @@
/obj/item/stack/sheet/metal{
amount = 5
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/lz/near_lzI)
"pvz" = (
/obj/structure/janitorialcart,
@@ -25591,10 +20357,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"pvD" = (
/turf/closed/wall/r_wall/prison_unmeltable{
@@ -25604,29 +20367,20 @@
/area/fiorina/oob)
"pvE" = (
/obj/item/clothing/under/color/orange,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"pvF" = (
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/fiorina/tumor/ice_lab)
"pwo" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/flight_deck)
"pwC" = (
/obj/effect/spawner/random/gun/rifle/highchance,
-/turf/open/floor/prison{
- icon_state = "damaged3"
- },
+/turf/open/floor/prison/damaged3,
/area/fiorina/station/security)
"pwL" = (
/obj/item/stack/tile/plasteel{
@@ -25637,9 +20391,7 @@
/area/fiorina/tumor/civres)
"pxf" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"pxk" = (
/obj/structure/closet/cabinet,
@@ -25653,71 +20405,46 @@
/obj/item/storage/donut_box{
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"pxL" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/maintenance)
"pxW" = (
/obj/structure/platform_decoration{
dir = 1
},
/obj/item/tool/pickaxe,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"pxX" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"pyK" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/freight,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"pzh" = (
/obj/item/toy/beach_ball,
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/fiorina/station/park)
"pzE" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"pzL" = (
/obj/item/ammo_magazine/m56d,
/obj/item/ammo_magazine/m56d,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/central_ring)
"pAl" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/west,
/area/fiorina/station/botany)
"pAr" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/station/park)
"pBb" = (
/obj/structure/curtain/open/black,
@@ -25725,10 +20452,7 @@
/area/fiorina/maintenance)
"pBe" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/fiorina/station/chapel)
"pBq" = (
/obj/structure/largecrate/random/barrel/white,
@@ -25739,9 +20463,7 @@
health = 250;
icon_state = "metal_1"
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"pBV" = (
/obj/item/trash/used_stasis_bag{
@@ -25752,10 +20474,7 @@
/area/fiorina/lz/near_lzII)
"pBW" = (
/obj/structure/largecrate/supply/floodlights,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"pCc" = (
/obj/structure/ice/thin/indestructible{
@@ -25789,9 +20508,7 @@
pixel_x = 4;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"pCX" = (
/obj/item/stack/sheet/metal,
@@ -25801,28 +20518,18 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{
icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi'
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"pDQ" = (
/obj/structure/bed/sofa/south/grey/right,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"pEt" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/fiorina/maintenance)
"pFc" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"pFi" = (
/obj/structure/platform_decoration{
@@ -25832,10 +20539,7 @@
/area/fiorina/station/telecomm/lz1_tram)
"pFA" = (
/obj/item/storage/toolbox/emergency,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"pFP" = (
/obj/structure/ice/thin/indestructible{
@@ -25873,18 +20577,14 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/fiorina/station/park)
"pGS" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"pHh" = (
/obj/structure/ice/thin/indestructible{
@@ -25903,18 +20603,14 @@
dir = 4
},
/obj/structure/machinery/space_heater,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"pHx" = (
/obj/structure/barricade/metal/wired{
dir = 4
},
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"pIs" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -25924,9 +20620,7 @@
dir = 8;
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"pIt" = (
/obj/structure/barricade/handrail/type_b{
@@ -25937,9 +20631,7 @@
/area/fiorina/station/park)
"pIw" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"pIA" = (
/obj/structure/prop/structure_lattice{
@@ -25961,9 +20653,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/maintenance)
"pJP" = (
-/turf/open/floor/prison{
- icon_state = "panelscorched"
- },
+/turf/open/floor/prison/panelscorched,
/area/fiorina/station/chapel)
"pKf" = (
/obj/structure/machinery/washing_machine,
@@ -25974,15 +20664,11 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/fiorina/station/civres_blue)
"pKu" = (
/obj/item/tool/wet_sign,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"pKJ" = (
/obj/structure/flora/grass/tallgrass/jungle/corner,
@@ -25993,17 +20679,13 @@
layer = 2.9;
pixel_y = 17
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"pKO" = (
/obj/effect/decal/hefa_cult_decals/d32{
icon_state = "2"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"pKY" = (
/obj/structure/cable/heavyduty{
@@ -26024,16 +20706,11 @@
/obj/structure/machinery/washing_machine{
pixel_y = 15
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"pLM" = (
/obj/item/trash/cigbutt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/power_ring)
"pLQ" = (
/obj/effect/decal/cleanable/blood/oil/streak,
@@ -26041,10 +20718,7 @@
/area/fiorina/station/transit_hub)
"pLS" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/fiorina/tumor/aux_engi)
"pNj" = (
/obj/structure/bookcase,
@@ -26083,10 +20757,7 @@
/area/fiorina/tumor/ice_lab)
"pPo" = (
/obj/effect/landmark/corpsespawner/ua_riot/burst,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/fiorina/tumor/servers)
"pPG" = (
/obj/structure/disposalpipe/segment{
@@ -26101,51 +20772,34 @@
"pQc" = (
/obj/structure/closet/basketball,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"pQs" = (
/turf/open/floor/prison,
/area/fiorina/station/civres_blue)
"pQz" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/fiorina/station/civres_blue)
"pRa" = (
/obj/structure/bed{
icon_state = "abed"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"pRp" = (
/obj/structure/platform,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"pRx" = (
/obj/structure/largecrate/random/barrel/white,
/turf/open/floor/prison,
/area/fiorina/station/power_ring)
"pRz" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/southwest,
/area/fiorina/station/power_ring)
"pRD" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/fiorina/station/power_ring)
"pRG" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -26157,10 +20811,7 @@
/area/fiorina/tumor/fiberbush)
"pSr" = (
/obj/structure/pipes/standard/manifold/visible,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"pSs" = (
/obj/item/ammo_box/magazine/misc/flares{
@@ -26168,10 +20819,7 @@
pixel_y = 16
},
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"pSU" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -26198,32 +20846,22 @@
pixel_y = -1
},
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"pUo" = (
/obj/structure/platform,
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"pUG" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"pUO" = (
/obj/item/trash/boonie,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"pVc" = (
/obj/structure/flora/pottedplant{
@@ -26236,17 +20874,11 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"pVD" = (
/obj/structure/window/framed/prison,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"pVR" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -26258,16 +20890,11 @@
/area/fiorina/station/chapel)
"pVY" = (
/obj/item/stack/sheet/mineral/plastic,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/lowsec)
"pWc" = (
/obj/item/tool/crowbar/red,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"pWp" = (
/turf/closed/shuttle/ert{
@@ -26286,17 +20913,11 @@
icon_state = "casing_5"
},
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"pXt" = (
/obj/item/reagent_container/food/snacks/wrapped/booniebars,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"pXH" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -26309,10 +20930,7 @@
layer = 2.5;
pixel_y = -11
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"pXY" = (
/obj/structure/bookcase{
@@ -26328,14 +20946,10 @@
/area/fiorina/station/chapel)
"pYz" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"pYB" = (
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"pYD" = (
/obj/structure/monorail{
@@ -26349,9 +20963,7 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/botany)
"pZm" = (
/obj/structure/machinery/light/small{
@@ -26368,32 +20980,22 @@
/turf/open/floor/plating/prison,
/area/fiorina/oob)
"pZn" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/fiorina/station/lowsec)
"pZp" = (
/obj/item/tool/soap,
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/research_cells)
"qaA" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/clipboard,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/fiorina/tumor/servers)
"qaL" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"qaO" = (
/obj/structure/barricade/handrail/type_b{
@@ -26410,9 +21012,7 @@
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"qbd" = (
/obj/structure/flora/bush/ausbushes/ausbush{
@@ -26429,9 +21029,7 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/maintenance)
"qby" = (
/obj/item/stack/sheet/metal{
@@ -26447,9 +21045,7 @@
/turf/open/floor/prison,
/area/fiorina/station/security)
"qbR" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"qbW" = (
/obj/item/tool/candle{
@@ -26469,16 +21065,11 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"qcX" = (
/obj/structure/machinery/vending/snack/packaged,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"qdd" = (
/obj/structure/grille,
@@ -26502,9 +21093,7 @@
pixel_y = 7
},
/obj/item/tool/pen,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"qdJ" = (
/obj/structure/window/framed/prison/reinforced,
@@ -26515,16 +21104,11 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_tram)
"qet" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"qeC" = (
/obj/structure/surface/table/reinforced/prison,
@@ -26554,10 +21138,7 @@
dir = 4;
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/fiorina/station/park)
"qeX" = (
/obj/structure/surface/table/reinforced/prison{
@@ -26583,9 +21164,7 @@
"qfi" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/telecomm/lz1_cargo)
"qgd" = (
/obj/item/explosive/grenade/incendiary/molotov{
@@ -26608,10 +21187,7 @@
/obj/structure/barricade/metal/wired{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/lz/near_lzI)
"qgv" = (
/obj/structure/surface/table/reinforced/prison,
@@ -26622,9 +21198,7 @@
/obj/item/tool/surgery/circular_saw{
pixel_y = -2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"qgB" = (
/obj/item/clothing/gloves/rainbow,
@@ -26635,64 +21209,43 @@
/turf/open/space,
/area/fiorina/oob)
"qhk" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southeast,
/area/fiorina/station/park)
"qhC" = (
/obj/effect/decal/cleanable/blood/splatter{
icon_state = "gib2"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"qhD" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/cameras{
network = list("PRISON")
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/fiorina/station/power_ring)
"qhJ" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/fiorina/station/power_ring)
"qhN" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/fiorina/station/security)
"qhP" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/newspaper,
/obj/item/attachable/bipod,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/lz/near_lzI)
"qhZ" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/prison/platingdmg3,
/area/fiorina/station/transit_hub)
"qif" = (
/obj/item/inflatable,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"qiq" = (
/obj/item/trash/cigbutt,
@@ -26705,34 +21258,24 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottomleft"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/station/medbay)
"qjb" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/toolbox,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"qjh" = (
/obj/item/reagent_container/food/snacks/boiledegg,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"qjM" = (
/obj/structure/inflatable,
/obj/structure/barricade/handrail/type_b{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"qjR" = (
/obj/structure/machinery/computer/station_alert{
@@ -26740,19 +21283,14 @@
pixel_y = 5
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"qjX" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/north,
/area/fiorina/station/botany)
"qkg" = (
/obj/structure/machinery/light/double/blue,
@@ -26764,17 +21302,11 @@
/turf/open/floor/plating/prison,
/area/fiorina/maintenance)
"qkq" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/oob)
"qkt" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"qkN" = (
/obj/structure/surface/table/reinforced/prison,
@@ -26806,45 +21338,30 @@
/area/fiorina/oob)
"qnb" = (
/obj/structure/bed/roller,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"qny" = (
/obj/item/tool/wirecutters/clippers,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"qob" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/telecomm/lz1_cargo)
"qoc" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"qof" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/fiorina/station/disco)
"qov" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/newspaper,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"qoG" = (
/obj/item/toy/crayon/rainbow,
@@ -26856,15 +21373,10 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/servers)
"qpk" = (
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/fiorina/station/civres_blue)
"qpB" = (
/obj/item/stack/cable_coil/blue,
@@ -26887,26 +21399,18 @@
pixel_x = -6;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/flight_deck)
"qpX" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"qqc" = (
/obj/structure/inflatable/popped,
/obj/effect/decal/medical_decals{
icon_state = "triagedecaldir"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"qqd" = (
/obj/structure/stairs/perspective{
@@ -26919,42 +21423,26 @@
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"qqQ" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/fiorina/station/transit_hub)
"qqW" = (
/obj/item/trash/cigbutt/cigarbutt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"qre" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"qrn" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"qrt" = (
/obj/effect/landmark/xeno_spawn,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/tumor/ice_lab)
"qrz" = (
/obj/item/explosive/plastic,
@@ -26965,15 +21453,11 @@
/obj/item/reagent_container/food/snacks/sandwich{
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"qrU" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"qsc" = (
/obj/structure/machinery/light/double/blue,
@@ -26989,9 +21473,7 @@
/area/fiorina/maintenance)
"qss" = (
/obj/structure/flora/pottedplant/random,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"qsE" = (
/obj/item/shard{
@@ -27001,16 +21483,10 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/tumor/ice_lab)
"qsF" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/maintenance)
"qtP" = (
/obj/structure/surface/table/reinforced/prison,
@@ -27022,10 +21498,7 @@
pixel_x = 1;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/civres_blue)
"qun" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -27034,15 +21507,11 @@
/obj/structure/barricade/handrail/type_b{
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"quL" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"qva" = (
/obj/structure/surface/table/reinforced/prison,
@@ -27056,50 +21525,31 @@
/obj/structure/prop/resin_prop{
icon_state = "rack"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"qws" = (
/obj/effect/decal/hefa_cult_decals/d32{
icon_state = "bee"
},
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/maintenance)
"qwG" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southeast,
/area/fiorina/maintenance)
"qwH" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/lowsec)
"qwK" = (
-/turf/open/floor/prison{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/prison/floorscorched2,
/area/fiorina/station/civres_blue)
"qxx" = (
/obj/item/ammo_magazine/smg/mp5,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/station/research_cells)
"qxy" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/servers)
"qxN" = (
/obj/structure/barricade/sandbags{
@@ -27110,10 +21560,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/lz/near_lzII)
"qxP" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/fiorina/tumor/aux_engi)
"qxZ" = (
/obj/structure/machinery/light/double/blue{
@@ -27121,9 +21568,7 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"qya" = (
/obj/structure/closet{
@@ -27132,10 +21577,7 @@
},
/obj/item/clothing/gloves/combat,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"qyq" = (
/obj/structure/closet/secure_closet/engineering_personal,
@@ -27144,15 +21586,10 @@
pixel_y = 21
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"qyM" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/disco)
"qzb" = (
/obj/structure/stairs/perspective{
@@ -27170,9 +21607,7 @@
/area/fiorina/station/security)
"qzM" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"qzZ" = (
/obj/structure/barricade/sandbags{
@@ -27180,55 +21615,37 @@
icon_state = "sandbag_0";
pixel_y = 2
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/disco)
"qAe" = (
/obj/item/trash/eat,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"qAk" = (
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"qAl" = (
/obj/structure/reagent_dispensers/water_cooler/stacks,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"qAQ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/tumor/aux_engi)
"qBe" = (
/turf/open/floor/prison,
/area/fiorina/station/disco)
"qBf" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/central_ring)
"qBj" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/item/storage/briefcase,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"qBB" = (
/obj/item/prop/helmetgarb/spacejam_tickets{
@@ -27249,9 +21666,7 @@
"qBI" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"qBT" = (
/obj/structure/sink{
@@ -27259,10 +21674,7 @@
pixel_x = 12
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"qCa" = (
/obj/structure/prop/resin_prop{
@@ -27282,15 +21694,11 @@
pixel_x = -5;
pixel_y = -11
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"qCx" = (
/obj/item/reagent_container/food/drinks/sillycup,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"qCE" = (
/obj/structure/machinery/computer/emails{
@@ -27298,16 +21706,10 @@
pixel_y = 4
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"qCK" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/fiorina/station/lowsec)
"qCW" = (
/turf/closed/shuttle/elevator{
@@ -27320,10 +21722,7 @@
icon_state = "poster15";
pixel_y = 32
},
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/maintenance)
"qDq" = (
/obj/structure/machinery/light/double/blue{
@@ -27331,16 +21730,11 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_tram)
"qDZ" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"qEk" = (
/obj/structure/bed/sofa/south/grey/left,
@@ -27348,34 +21742,22 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"qEl" = (
/obj/structure/closet/bodybag,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"qEs" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/east,
/area/fiorina/station/lowsec)
"qEC" = (
/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/disco)
"qFf" = (
/obj/item/tool/kitchen/rollingpin,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"qFi" = (
/obj/structure/machinery/light/small{
@@ -27409,37 +21791,24 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"qGe" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"qGf" = (
/obj/item/tool/scythe,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"qGh" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"qGn" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/telecomm/lz1_cargo)
"qGy" = (
/obj/structure/reagent_dispensers/watertank,
@@ -27447,18 +21816,12 @@
/area/fiorina/tumor/servers)
"qGB" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/fiorina/station/research_cells)
"qGO" = (
/obj/structure/machinery/photocopier,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"qGP" = (
/obj/effect/spawner/random/tool,
@@ -27492,9 +21855,7 @@
desc = "A ticket to Souto Man's raffle!";
name = "\improper Souto Raffle Ticket"
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/fiorina/station/chapel)
"qJf" = (
/obj/structure/surface/table/reinforced/prison,
@@ -27527,10 +21888,7 @@
/obj/structure/bedsheetbin{
icon_state = "linenbin-empty"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/fiorina/station/lowsec)
"qJr" = (
/turf/open/floor/prison,
@@ -27545,15 +21903,11 @@
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"qJK" = (
/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"qJL" = (
/obj/structure/bed/chair/comfy{
@@ -27568,9 +21922,7 @@
/area/fiorina/station/park)
"qJP" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"qJQ" = (
/obj/structure/barricade/metal/wired{
@@ -27580,9 +21932,7 @@
/area/fiorina/station/central_ring)
"qJR" = (
/obj/item/disk/data,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"qKq" = (
/obj/structure/machinery/computer/arcade,
@@ -27609,20 +21959,14 @@
/area/fiorina/lz/near_lzII)
"qLa" = (
/obj/item/weapon/baseballbat/metal,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/chapel)
"qLi" = (
/obj/structure/toilet{
dir = 8;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/lowsec)
"qLv" = (
/obj/structure/platform_decoration,
@@ -27630,9 +21974,7 @@
/area/fiorina/station/transit_hub)
"qLH" = (
/obj/item/trash/used_stasis_bag,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzI)
"qLI" = (
/obj/item/storage/toolbox,
@@ -27641,36 +21983,25 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/civres_blue)
"qLN" = (
/obj/item/storage/toolbox/mechanical/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"qMi" = (
/obj/structure/platform{
dir = 8
},
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/tumor/ice_lab)
"qMs" = (
/obj/item/stack/cable_coil/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"qMI" = (
-/turf/open/floor/prison{
- icon_state = "damaged3"
- },
+/turf/open/floor/prison/damaged3,
/area/fiorina/station/security)
"qNj" = (
/obj/structure/platform,
@@ -27681,10 +22012,7 @@
dir = 10
},
/obj/structure/closet/firecloset/full,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"qNu" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -27692,9 +22020,7 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"qNv" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
@@ -27709,16 +22035,10 @@
pixel_y = 22
},
/obj/item/reagent_container/food/snacks/cheesyfries,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/flight_deck)
"qNF" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/lowsec)
"qOk" = (
/obj/structure/platform/kutjevo/smooth{
@@ -27731,9 +22051,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/lowsec)
"qOu" = (
-/turf/open/floor/prison{
- icon_state = "damaged3"
- },
+/turf/open/floor/prison/damaged3,
/area/fiorina/station/disco)
"qON" = (
/obj/item/stack/cable_coil/cyan,
@@ -27753,16 +22071,10 @@
/area/fiorina/station/park)
"qPa" = (
/obj/item/device/motiondetector,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"qPb" = (
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"qPr" = (
/obj/item/ammo_magazine/smg/nailgun,
@@ -27775,15 +22087,10 @@
pixel_x = -10;
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"qQa" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/fiorina/station/central_ring)
"qQb" = (
/obj/structure/stairs/perspective{
@@ -27821,19 +22128,14 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/fiorina/station/power_ring)
"qQA" = (
/obj/item/reagent_container/food/drinks/bottle/holywater{
desc = "A flask of the holy HEFA grenade oil.";
name = "Flask of HEFA Oil"
},
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"qQM" = (
/obj/structure/stairs/perspective{
@@ -27854,10 +22156,7 @@
icon_state = "abed"
},
/obj/item/toy/beach_ball/holoball,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"qRg" = (
/obj/structure/sign/prop3{
@@ -27878,16 +22177,11 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/lowsec)
"qRK" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/fiorina/station/central_ring)
"qRS" = (
/obj/item/trash/candy,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"qRW" = (
/obj/structure/stairs/perspective{
@@ -27909,16 +22203,11 @@
"qSz" = (
/obj/structure/closet/wardrobe/orange,
/obj/item/clothing/gloves/boxing/yellow,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"qSA" = (
/obj/item/trash/candy,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/tumor/ice_lab)
"qTe" = (
/obj/structure/largecrate/random/case/double,
@@ -27926,33 +22215,22 @@
/area/fiorina/station/central_ring)
"qTt" = (
/obj/item/stack/tile/plasteel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"qTx" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/regular,
/obj/item/storage/firstaid/regular,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"qTQ" = (
/obj/structure/platform_decoration,
/obj/item/reagent_container/food/drinks/sillycup,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"qTW" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/power_ring)
"qUo" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -27969,26 +22247,18 @@
layer = 2.9;
pixel_y = 17
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"qUw" = (
/obj/item/device/multitool,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"qUC" = (
/obj/item/ammo_casing{
dir = 2;
icon_state = "casing_5"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"qVW" = (
/obj/effect/landmark/objective_landmark/close,
@@ -28000,9 +22270,7 @@
pixel_y = -1
},
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"qXM" = (
/obj/item/stack/tile/plasteel,
@@ -28010,9 +22278,7 @@
/area/fiorina/tumor/civres)
"qYZ" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"qZc" = (
/obj/structure/prop/structure_lattice{
@@ -28023,62 +22289,42 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"qZv" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/central_ring)
"raC" = (
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/lz/near_lzI)
"raL" = (
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"raP" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"rbp" = (
/obj/structure/closet/crate/medical,
/obj/item/clothing/gloves/latex,
/obj/item/clothing/gloves/latex,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"rbv" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"rbI" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/fiorina/lz/near_lzI)
"rbK" = (
/obj/effect/spawner/random/tool,
@@ -28093,26 +22339,18 @@
/area/fiorina/station/power_ring)
"rbZ" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"rcc" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"rce" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/reagent_dispensers/water_cooler{
pixel_y = 11
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"rcg" = (
/turf/open/floor/plating/prison,
@@ -28130,30 +22368,18 @@
/obj/structure/inflatable/popped/door,
/obj/item/stack/barbed_wire,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/fiorina/station/medbay)
"rcI" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/limb,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/fiorina/station/medbay)
"rdi" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"rdo" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greenbluecorner"
- },
+/turf/open/floor/prison/greenbluecorner/north,
/area/fiorina/station/botany)
"rdt" = (
/obj/structure/platform_decoration{
@@ -28173,19 +22399,14 @@
/obj/structure/machinery/computer/cameras{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/disco)
"reZ" = (
/obj/structure/barricade/sandbags{
dir = 8;
icon_state = "sandbag_0"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"rfd" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited,
@@ -28194,15 +22415,10 @@
"rfe" = (
/obj/structure/surface/rack,
/obj/item/tool/mop,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"rft" = (
-/turf/open/floor/prison{
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue,
/area/fiorina/station/botany)
"rfQ" = (
/obj/effect/spawner/random/tech_supply,
@@ -28218,10 +22434,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"rgg" = (
/obj/item/tool/candle{
@@ -28230,65 +22443,45 @@
/turf/open/floor/wood,
/area/fiorina/station/chapel)
"rhf" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/fiorina/station/research_cells)
"rhh" = (
/obj/structure/monorail{
dir = 4;
name = "launch track"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"rhH" = (
/obj/structure/bed{
icon_state = "abed"
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"rie" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"riP" = (
/obj/item/stack/tile/plasteel,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"rja" = (
/turf/closed/wall/prison,
/area/fiorina/station/civres_blue)
"rjy" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"rjP" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"rki" = (
/obj/item/stack/tile/plasteel,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"rko" = (
/obj/structure/platform_decoration,
@@ -28300,22 +22493,14 @@
pixel_y = 8
},
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/lowsec)
"rkv" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/fiorina/station/chapel)
"rkF" = (
/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/telecomm/lz1_cargo)
"rkH" = (
/obj/structure/grille,
@@ -28332,9 +22517,7 @@
/area/fiorina/station/chapel)
"rlP" = (
/obj/structure/largecrate/supply,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"rmh" = (
/obj/structure/surface/rack,
@@ -28393,37 +22576,25 @@
/area/fiorina/lz/near_lzI)
"rnE" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/lowsec)
"rnM" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/fancy/crayons,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"roi" = (
/obj/structure/prop/souto_land/streamer{
dir = 9
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"rot" = (
/obj/structure/barricade/metal{
health = 250;
icon_state = "metal_1"
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/fiorina/tumor/ice_lab)
"roE" = (
/obj/structure/platform_decoration{
@@ -28432,10 +22603,7 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecalleft"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"roF" = (
/obj/structure/surface/table/reinforced/prison,
@@ -28445,36 +22613,24 @@
/obj/structure/machinery/computer/cameras{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"roH" = (
/obj/structure/machinery/photocopier{
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/oob)
"roQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"rpf" = (
/obj/structure/grille,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"rpt" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"rpL" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -28484,10 +22640,7 @@
/obj/item/ammo_casing{
icon_state = "casing_5"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/lz/near_lzI)
"rqh" = (
/obj/structure/stairs/perspective{
@@ -28503,59 +22656,38 @@
pixel_y = 21
},
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"rqA" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/tumor/servers)
"rqC" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"rqG" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"rqY" = (
/obj/structure/filingcabinet/disk,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"rrs" = (
/obj/item/stack/rods/plasteel,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/fiorina/lz/near_lzI)
"rru" = (
/obj/effect/spawner/random/goggles/midchance,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"rrD" = (
/obj/structure/machinery/landinglight/ds1{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"rsg" = (
/obj/structure/platform_decoration,
@@ -28578,15 +22710,10 @@
/obj/structure/platform_decoration{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"rsR" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/fiorina/station/power_ring)
"rsU" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
@@ -28602,39 +22729,26 @@
layer = 2.8
},
/obj/structure/barricade/handrail/type_b,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"rty" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/fiorina/station/civres_blue)
"rtP" = (
/obj/item/trash/cigbutt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"rur" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/station/park)
"ruu" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/tumor/aux_engi)
"ruD" = (
/turf/open/floor/wood,
@@ -28652,19 +22766,14 @@
/area/fiorina/tumor/servers)
"rwj" = (
/obj/structure/barricade/plasteel,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"rwm" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/station/research_cells)
"rwu" = (
/obj/structure/bed/chair{
@@ -28683,22 +22792,14 @@
/obj/item/clothing/under/color/orange,
/obj/item/clothing/under/color/orange,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/fiorina/station/lowsec)
"rwQ" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/west,
/area/fiorina/station/botany)
"rxg" = (
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/fiorina/station/security)
"rxr" = (
/obj/structure/bed/chair/office/light{
@@ -28734,10 +22835,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/lowsec)
"rzp" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/lowsec)
"rzt" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -28747,9 +22845,7 @@
/obj/structure/holohoop{
pixel_y = 25
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"rAm" = (
/obj/structure/surface/rack,
@@ -28758,10 +22854,7 @@
/area/fiorina/station/telecomm/lz2_maint)
"rAw" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"rAK" = (
/obj/structure/barricade/metal{
@@ -28779,9 +22872,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"rAY" = (
/obj/item/ammo_magazine/rifle/m16{
@@ -28795,18 +22886,13 @@
/turf/open/floor/plating/prison,
/area/fiorina/tumor/ice_lab)
"rBs" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/civres_blue)
"rBu" = (
/obj/structure/barricade/handrail/type_b{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"rBz" = (
/obj/structure/bed/chair/comfy{
@@ -28821,10 +22907,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/disco)
"rCq" = (
/obj/structure/largecrate/supply/supplies/flares,
@@ -28849,9 +22932,7 @@
/area/fiorina/station/medbay)
"rFu" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"rFw" = (
/obj/structure/largecrate/random/case/double,
@@ -28859,25 +22940,16 @@
/area/fiorina/lz/near_lzI)
"rFF" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"rGc" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"rGe" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer3/laptop/secure_data,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"rGf" = (
/turf/open/auto_turf/sand/layer1,
@@ -28897,25 +22969,18 @@
health = 250;
icon_state = "metal_1"
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"rHf" = (
/obj/structure/machinery/optable{
desc = "This maybe could be used for advanced medical procedures.";
name = "Exam Table"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"rHh" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/prison/floorscorched1,
/area/fiorina/station/chapel)
"rHr" = (
/obj/effect/alien/weeds/node,
@@ -28931,15 +22996,10 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"rHX" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"rIr" = (
/obj/structure/machinery/light/double/blue{
@@ -28947,19 +23007,14 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/station/research_cells)
"rIy" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/phone{
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"rIE" = (
/obj/item/stack/rods,
@@ -28973,9 +23028,7 @@
/area/fiorina/station/medbay)
"rJc" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"rJh" = (
/obj/effect/decal/cleanable/blood,
@@ -28988,9 +23041,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/maintenance)
"rJF" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"rJO" = (
/turf/open/floor/carpet,
@@ -29023,81 +23074,52 @@
icon_state = "poster14";
pixel_y = 32
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"rKm" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"rKs" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/box/cups,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"rKy" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/north,
/area/fiorina/station/botany)
"rKA" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/fiorina/station/civres_blue)
"rKG" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/west,
/area/fiorina/station/botany)
"rLA" = (
/obj/structure/platform,
/turf/open/floor/prison,
/area/fiorina/station/botany)
"rLG" = (
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"rLJ" = (
/obj/item/clothing/gloves/boxing,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"rMo" = (
/obj/effect/landmark/objective_landmark/far,
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/maintenance)
"rMq" = (
/obj/structure/closet/secure_closet/medical3,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"rMw" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"rMT" = (
/obj/structure/prop/almayer/computers/mission_planning_system{
@@ -29114,9 +23136,7 @@
pixel_x = -11;
pixel_y = 10
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"rNc" = (
/obj/structure/flora/bush/ausbushes/ausbush{
@@ -29124,24 +23144,15 @@
icon_state = "fullgrass_1";
name = "Fiberbush(tm) tubers"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"rNK" = (
/obj/effect/spawner/random/gun/pistol/lowchance,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"rNV" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"rOu" = (
/obj/structure/closet,
@@ -29160,17 +23171,13 @@
/obj/structure/machinery/floodlight{
name = "Yard Floodlight"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"rPd" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/stack/sheet/metal/medium_stack,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"rPf" = (
/obj/structure/surface/table/reinforced/prison,
@@ -29179,15 +23186,11 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"rPD" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"rPI" = (
/obj/structure/surface/table/reinforced/prison,
@@ -29222,9 +23225,7 @@
/area/fiorina/station/research_cells)
"rPW" = (
/obj/effect/spawner/random/gun/rifle/lowchance,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzI)
"rPZ" = (
/obj/item/shard{
@@ -29241,51 +23242,33 @@
"rQu" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/stack/cable_coil/orange,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/maintenance)
"rQB" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/west,
/area/fiorina/station/lowsec)
"rQK" = (
/obj/item/bananapeel{
name = "tactical banana peel"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/medbay)
"rQN" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southeast,
/area/fiorina/station/power_ring)
"rRg" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/stack/sheet/mineral/plastic,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"rRo" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/telecomm/lz1_tram)
"rRz" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/fiorina/station/civres_blue)
"rSr" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -29315,16 +23298,11 @@
/obj/item/ammo_casing{
icon_state = "casing_5"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/tumor/ice_lab)
"rTD" = (
/obj/effect/spawner/random/powercell,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"rTH" = (
/obj/structure/sign/prop1{
@@ -29343,22 +23321,13 @@
/obj/effect/decal/cleanable/blood/splatter{
icon_state = "gibup1"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"rTZ" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/north,
/area/fiorina/station/research_cells)
"rUf" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/fiorina/tumor/servers)
"rUA" = (
/obj/effect/landmark/objective_landmark/close,
@@ -29378,25 +23347,16 @@
pixel_x = 17;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"rVi" = (
/obj/structure/barricade/handrail/type_b,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/fiorina/station/flight_deck)
"rVp" = (
/obj/structure/closet/secure_closet/engineering_welding,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southeast,
/area/fiorina/maintenance)
"rVM" = (
/obj/structure/closet/crate/miningcar,
@@ -29439,16 +23399,11 @@
"rXt" = (
/obj/structure/surface/rack,
/obj/item/device/camera,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"rYw" = (
/obj/item/trash/liquidfood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"rYy" = (
/obj/item/stool{
@@ -29459,18 +23414,13 @@
icon_state = "poster1";
pixel_y = 32
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"rYK" = (
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"rYY" = (
/obj/structure/bed/roller,
@@ -29483,9 +23433,7 @@
/area/fiorina/station/medbay)
"rZe" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security/wardens)
"rZi" = (
/turf/closed/shuttle/ert{
@@ -29495,34 +23443,24 @@
"rZI" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"rZM" = (
/obj/item/circuitboard/exosuit/peripherals/max/targeting,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"rZN" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/fiorina/station/flight_deck)
"rZO" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"rZP" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -29540,29 +23478,18 @@
pixel_x = 1;
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"sbf" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/gm/river{
- color = "#990000";
- name = "pool"
- },
+/turf/open/gm/river/darkred_pool,
/area/fiorina/station/park)
"sbF" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/fiorina/station/security)
"sbL" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"sbU" = (
/obj/item/trash/pistachios,
@@ -29574,18 +23501,12 @@
/turf/open/floor/prison,
/area/fiorina/station/power_ring)
"sbW" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenbluecorner"
- },
+/turf/open/floor/prison/greenbluecorner/east,
/area/fiorina/station/botany)
"scp" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/trash/uscm_mre,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"scG" = (
/obj/item/reagent_container/food/drinks/sillycup,
@@ -29593,9 +23514,7 @@
/area/fiorina/station/flight_deck)
"scH" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/fiorina/station/civres_blue)
"scM" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -29605,9 +23524,7 @@
dir = 8;
layer = 3.5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"scZ" = (
/obj/structure/platform,
@@ -29625,17 +23542,11 @@
/area/fiorina/lz/near_lzI)
"sdr" = (
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"sdE" = (
/obj/item/storage/wallet/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"sdK" = (
/obj/structure/surface/table/woodentable,
@@ -29652,40 +23563,27 @@
health = 80
},
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"sdV" = (
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"sdY" = (
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/civres_blue)
"seh" = (
/obj/item/reagent_container/glass/bucket/janibucket,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"set" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"seF" = (
/obj/structure/monorail{
@@ -29703,18 +23601,13 @@
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"sfi" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"sfn" = (
/obj/structure/disposalpipe/segment{
@@ -29723,28 +23616,19 @@
name = "overhead ducting";
pixel_y = 33
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"sfs" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/storage/fancy/candle_box,
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"sfu" = (
/obj/structure/toilet{
dir = 4;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/lowsec)
"sfI" = (
/obj/structure/monorail{
@@ -29765,9 +23649,7 @@
pixel_x = -6;
pixel_y = 12
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"sga" = (
/obj/effect/decal{
@@ -29777,10 +23659,7 @@
pixel_y = -11
},
/obj/structure/barricade/metal/wired,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"sgt" = (
/obj/structure/inflatable/popped/door,
@@ -29795,9 +23674,7 @@
/obj/item/storage/belt/gun/flaregun/full,
/obj/item/storage/belt/gun/flaregun/full,
/obj/item/storage/belt/gun/flaregun/full,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/lz/near_lzI)
"sha" = (
/obj/item/storage/bible/hefa{
@@ -29812,9 +23689,7 @@
dir = 1;
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/research_cells)
"shH" = (
/obj/structure/machinery/light/double/blue,
@@ -29822,34 +23697,23 @@
/area/fiorina/station/central_ring)
"sia" = (
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"sig" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"siy" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"siB" = (
/obj/item/poster,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"siE" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"siK" = (
/obj/structure/prop/resin_prop{
@@ -29876,16 +23740,12 @@
/obj/structure/machinery/recharger{
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"sjM" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/goggles/lowchance,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"sjR" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -29895,9 +23755,7 @@
dir = 4;
pixel_y = 4
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"sjT" = (
/obj/structure/prop/structure_lattice{
@@ -29917,16 +23775,11 @@
pixel_x = -16;
pixel_y = 12
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"sjX" = (
/obj/item/reagent_container/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenbluecorner"
- },
+/turf/open/floor/prison/greenbluecorner/east,
/area/fiorina/station/botany)
"sjZ" = (
/obj/structure/machinery/light/double/blue{
@@ -29934,62 +23787,42 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"skj" = (
/obj/structure/closet/crate/miningcar{
name = "\improper materials storage bin"
},
/obj/item/reagent_container/food/snacks/meat,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"skG" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/fiorina/tumor/servers)
"slc" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"slh" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"sli" = (
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"sls" = (
/obj/structure/pipes/standard/tank/oxygen,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"slR" = (
/obj/effect/decal/cleanable/blood{
desc = "Watch your step.";
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"slT" = (
/obj/structure/bed/chair/comfy{
@@ -30002,10 +23835,7 @@
/turf/open/floor/prison,
/area/fiorina/station/disco)
"sms" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/north,
/area/fiorina/station/civres_blue)
"smv" = (
/obj/item/trash/used_stasis_bag{
@@ -30018,35 +23848,26 @@
/obj/structure/barricade/metal/wired{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzI)
"snr" = (
/obj/structure/platform{
dir = 4
},
/obj/item/stool,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"snW" = (
/obj/structure/prop/resin_prop{
icon_state = "rack"
},
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"soj" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"sov" = (
/turf/closed/shuttle/ert{
@@ -30063,19 +23884,14 @@
"spb" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"spl" = (
/obj/item/stack/sheet/metal,
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"spm" = (
/obj/structure/surface/table/reinforced/prison,
@@ -30100,10 +23916,7 @@
dir = 8;
pixel_y = 24
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/station/park)
"spH" = (
/obj/structure/disposalpipe/segment{
@@ -30112,16 +23925,11 @@
name = "overhead ducting";
pixel_y = 33
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"spR" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"sqx" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -30150,9 +23958,7 @@
/area/fiorina/station/central_ring)
"srt" = (
/obj/item/reagent_container/food/drinks/bottle/sake,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"srI" = (
/obj/item/tool/crowbar/red,
@@ -30160,10 +23966,7 @@
/area/fiorina/maintenance)
"srQ" = (
/obj/structure/barricade/handrail,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/fiorina/station/research_cells)
"ssb" = (
/turf/open/floor/prison,
@@ -30172,10 +23975,7 @@
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "ywflowers_2"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"sso" = (
/obj/structure/surface/table/reinforced/prison,
@@ -30195,9 +23995,7 @@
/area/fiorina/oob)
"ssM" = (
/obj/structure/janitorialcart,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"ssO" = (
/obj/item/ashtray/glass,
@@ -30205,9 +24003,7 @@
/area/fiorina/station/power_ring)
"ssR" = (
/obj/item/clothing/under/shorts/black,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"sta" = (
/obj/structure/machinery/door/airlock/almayer/marine{
@@ -30221,17 +24017,11 @@
/area/fiorina/tumor/aux_engi)
"stw" = (
/obj/structure/machinery/line_nexter,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/fiorina/station/security)
"stC" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"stP" = (
/obj/structure/window/reinforced{
@@ -30247,40 +24037,27 @@
pixel_y = 6
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"sue" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/tracker,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/disco)
"suq" = (
/obj/item/stool,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/fiorina/station/lowsec)
"suX" = (
/turf/open/floor/prison,
/area/fiorina/station/central_ring)
"suY" = (
/obj/item/device/cassette_tape/nam,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"svc" = (
/obj/structure/prop/almayer/computers/sensor_computer2,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"sve" = (
/obj/item/explosive/grenade/phosphorus,
@@ -30288,10 +24065,7 @@
/obj/item/explosive/grenade/phosphorus,
/obj/structure/surface/rack,
/obj/item/explosive/grenade/phosphorus,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"svh" = (
/obj/structure/machinery/computer/telecomms/monitor,
@@ -30305,63 +24079,45 @@
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"svP" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"svW" = (
/obj/structure/surface/rack,
/obj/item/clothing/gloves/latex,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"swg" = (
/obj/structure/platform_decoration/kutjevo,
/turf/open/space,
/area/fiorina/oob)
"swj" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"swJ" = (
/obj/item/tool/shovel/snow,
/obj/item/device/flashlight,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"swT" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"sxc" = (
/obj/item/weapon/gun/rifle/mar40,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"sxk" = (
/obj/effect/landmark/objective_landmark/science,
/turf/open/floor/prison,
/area/fiorina/tumor/servers)
"sxE" = (
-/turf/open/floor/prison{
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner,
/area/fiorina/station/power_ring)
"sxH" = (
/obj/structure/platform{
@@ -30374,16 +24130,11 @@
/area/fiorina/tumor/ice_lab)
"syj" = (
/obj/item/clothing/under/color/orange,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"syG" = (
/obj/item/tool/wirecutters/clippers,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"syU" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -30394,29 +24145,21 @@
icon_state = "casing_6"
},
/obj/effect/spawner/random/gun/smg/midchance,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"syV" = (
/obj/structure/sign/safety/fridge,
/turf/closed/wall/prison,
/area/fiorina/station/power_ring)
"sze" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/north,
/area/fiorina/tumor/civres)
"szs" = (
/obj/item/clothing/accessory/armband/cargo{
desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured.";
name = "HEFA Order milita armband"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/fiorina/station/chapel)
"szD" = (
/obj/structure/stairs/perspective{
@@ -30439,10 +24182,7 @@
/area/fiorina/station/civres_blue)
"sAF" = (
/obj/item/inflatable,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/lowsec)
"sBf" = (
/obj/structure/platform{
@@ -30452,9 +24192,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"sBj" = (
/obj/structure/barricade/metal{
@@ -30472,17 +24210,11 @@
/area/fiorina/station/chapel)
"sBM" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/fiorina/station/medbay)
"sBO" = (
/obj/structure/machinery/power/apc,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"sBW" = (
/obj/structure/platform{
@@ -30493,9 +24225,7 @@
"sBY" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/goggles/lowchance,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"sCe" = (
/obj/structure/machinery/light/double/blue{
@@ -30503,23 +24233,17 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"sCH" = (
/obj/item/frame/rack,
/obj/item/clothing/under/marine/ua_riot,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"sDn" = (
/obj/structure/inflatable/popped/door,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"sDL" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -30533,40 +24257,29 @@
dir = 1;
icon_state = "human2"
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"sDS" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/ammo_magazine/rifle/m16,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/lz/near_lzI)
"sEO" = (
/turf/closed/wall/r_wall/prison,
/area/fiorina/lz/near_lzII)
"sFd" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/northeast,
/area/fiorina/station/botany)
"sFo" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"sFr" = (
/obj/structure/barricade/handrail/type_b{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"sFH" = (
/obj/structure/surface/table/reinforced/prison,
@@ -30579,9 +24292,7 @@
pixel_y = 2
},
/obj/item/tool/stamp,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/lowsec)
"sFY" = (
/obj/structure/barricade/metal/wired{
@@ -30592,9 +24303,7 @@
/area/fiorina/station/central_ring)
"sGa" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"sGg" = (
/obj/structure/platform_decoration{
@@ -30610,26 +24319,18 @@
},
/obj/item/newspaper,
/obj/item/bedsheet/green,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"sGx" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"sGC" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"sGI" = (
/obj/structure/largecrate/random/case/double,
@@ -30641,9 +24342,7 @@
name = "\improper prison food";
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"sHe" = (
/obj/structure/surface/table/reinforced/prison,
@@ -30655,9 +24354,7 @@
pixel_x = -9;
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"sHj" = (
/obj/structure/machinery/light/double/blue{
@@ -30665,24 +24362,17 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"sHL" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"sHM" = (
/obj/effect/decal/medical_decals{
icon_state = "cryocell2deval"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"sHO" = (
/obj/structure/platform/kutjevo/smooth{
@@ -30695,48 +24385,34 @@
/area/fiorina/oob)
"sIg" = (
/obj/item/device/pinpointer,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"sIh" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"sIj" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/flight_deck)
"sIk" = (
/obj/structure/machinery/shower{
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"sIs" = (
/obj/item/weapon/gun/smg/nailgun,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"sIz" = (
/obj/structure/machinery/computer/emails{
pixel_y = 6
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"sIC" = (
/turf/open/floor/prison,
@@ -30762,10 +24438,7 @@
/obj/item/ammo_casing{
icon_state = "casing_9_1"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner/west,
/area/fiorina/station/lowsec)
"sJB" = (
/obj/item/stack/folding_barricade,
@@ -30779,27 +24452,21 @@
/area/fiorina/lz/near_lzI)
"sJP" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"sKr" = (
/obj/item/storage/secure/briefcase{
pixel_x = 9;
pixel_y = 18
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"sKt" = (
/obj/structure/bed/chair{
dir = 1;
layer = 2.7
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"sKu" = (
/obj/structure/stairs/perspective{
@@ -30820,9 +24487,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/lz/near_lzI)
"sLx" = (
/obj/structure/disposalpipe/segment{
@@ -30840,44 +24505,28 @@
pixel_x = 3;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"sMX" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"sMY" = (
/obj/item/reagent_container/food/snacks/eat_bar,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"sNb" = (
/obj/item/device/radio,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"sNg" = (
/obj/structure/closet/firecloset/full,
/obj/item/storage/pill_bottle/bicaridine/skillless,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"sNi" = (
/obj/item/device/flashlight,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"sNj" = (
/obj/structure/barricade/metal/wired{
@@ -30886,10 +24535,7 @@
/obj/item/stack/sheet/metal{
amount = 5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"sNN" = (
/obj/structure/platform,
@@ -30902,15 +24548,10 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_tram)
"sNU" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/north,
/area/fiorina/station/security)
"sOf" = (
/obj/item/clothing/mask/cigarette/weed{
@@ -30939,10 +24580,7 @@
/area/fiorina/station/security)
"sOs" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/fiorina/tumor/ship)
"sOM" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -30955,16 +24593,10 @@
"sPh" = (
/obj/item/stack/sheet/metal/medium_stack,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"sPi" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"sPt" = (
/obj/structure/stairs/perspective{
@@ -30978,9 +24610,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"sQr" = (
/obj/structure/janitorialcart,
@@ -30993,29 +24623,20 @@
"sQy" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/spawner/random/gun/pistol/midchance,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"sQz" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"sQC" = (
/obj/structure/surface/rack,
/obj/item/restraint/handcuffs,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"sQL" = (
/obj/structure/platform,
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/fiorina/station/park)
"sRv" = (
/obj/item/clothing/shoes/marine/upp/knife,
@@ -31024,9 +24645,7 @@
"sRE" = (
/obj/structure/platform,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"sRJ" = (
/obj/structure/machinery/constructable_frame,
@@ -31034,10 +24653,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2/southwest,
/area/fiorina/station/lowsec)
"sSM" = (
/obj/structure/stairs/perspective{
@@ -31087,25 +24703,16 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/telecomm/lz1_cargo)
"sTI" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"sTK" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"sTU" = (
/obj/structure/platform,
@@ -31115,9 +24722,7 @@
/obj/structure/platform_decoration{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"sUc" = (
/obj/structure/bed/chair/office/light{
@@ -31131,9 +24736,7 @@
},
/obj/effect/decal/cleanable/blood,
/obj/effect/spawner/gibspawner/human,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"sUl" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -31144,32 +24747,22 @@
"sUr" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/storage/bible/hefa,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/station/chapel)
"sUt" = (
/obj/effect/landmark/objective_landmark/far,
/turf/open/floor/prison,
/area/fiorina/station/park)
"sUV" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/east,
/area/fiorina/tumor/aux_engi)
"sUX" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"sUY" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/civres_blue)
"sVd" = (
/obj/structure/stairs/perspective{
@@ -31189,17 +24782,11 @@
/area/fiorina/oob)
"sVS" = (
/obj/item/trash/pistachios,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"sVT" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"sVU" = (
/obj/structure/largecrate/machine,
@@ -31210,18 +24797,12 @@
/area/fiorina/station/medbay)
"sVW" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/tumor/aux_engi)
"sVZ" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/effect/spawner/random/pills/lowchance,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"sWb" = (
/obj/structure/prop/structure_lattice{
@@ -31233,15 +24814,10 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"sWe" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/civres_blue)
"sWl" = (
/obj/structure/bed/roller,
@@ -31273,9 +24849,7 @@
/turf/open/floor/prison,
/area/fiorina/station/research_cells)
"sXi" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"sXt" = (
/obj/structure/stairs/perspective{
@@ -31290,9 +24864,7 @@
pixel_x = -1;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/lz/near_lzI)
"sYn" = (
/obj/structure/machinery/light/double/blue,
@@ -31302,16 +24874,10 @@
/obj/item/ammo_casing{
icon_state = "casing_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"sYB" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/fiorina/station/telecomm/lz1_tram)
"sYP" = (
/obj/item/stack/sheet/metal,
@@ -31323,17 +24889,11 @@
/area/fiorina/station/telecomm/lz1_tram)
"sZZ" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"tad" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/disco)
"tai" = (
/obj/structure/bed/chair,
@@ -31342,9 +24902,7 @@
dir = 4;
pixel_y = 24
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"taj" = (
/turf/open/floor/prison,
@@ -31360,22 +24918,15 @@
/area/fiorina/station/park)
"taI" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"taL" = (
/obj/item/clothing/under/color/orange,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"taS" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/fiorina/station/power_ring)
"taY" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -31383,52 +24934,35 @@
/area/fiorina/lz/near_lzI)
"tbd" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ship)
"tbj" = (
/obj/item/stack/sandbags_empty/half,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"tbm" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/fiorina/tumor/servers)
"tbG" = (
/obj/structure/bed{
icon_state = "psychbed"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/servers)
"tco" = (
/obj/item/paper/crumpled/bloody/csheet,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"tcB" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"tcD" = (
/obj/effect/decal/cleanable/blood/splatter{
icon_state = "gib2"
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"tcL" = (
/obj/structure/platform{
@@ -31438,9 +24972,7 @@
/obj/structure/platform_decoration{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/chapel)
"tcW" = (
/obj/structure/monorail{
@@ -31455,17 +24987,13 @@
/area/fiorina/station/transit_hub)
"tde" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"tdq" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"tdr" = (
/obj/structure/prop/resin_prop{
@@ -31473,19 +25001,13 @@
icon_state = "chair";
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"tel" = (
/turf/closed/wall/mineral/bone_resin,
/area/fiorina/station/medbay)
"teq" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"tet" = (
/obj/structure/machinery/light/double/blue{
@@ -31493,45 +25015,31 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/telecomm/lz1_cargo)
"teu" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"teI" = (
/obj/structure/largecrate/supply/supplies/tables_racks,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"teK" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"tfl" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/tumor/ice_lab)
"tfw" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"tfx" = (
/obj/structure/barricade/wooden{
@@ -31553,9 +25061,7 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"tgB" = (
/obj/structure/barricade/wooden{
@@ -31565,10 +25071,7 @@
/area/fiorina/station/chapel)
"tgK" = (
/obj/structure/machinery/landinglight/ds1/delayone,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"tgL" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber,
@@ -31584,9 +25087,7 @@
pixel_x = -4;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"thI" = (
/obj/structure/machinery/light/double/blue{
@@ -31594,17 +25095,11 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/civres_blue)
"thV" = (
/obj/item/tool/kitchen/utensil/pfork,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/power_ring)
"tii" = (
/obj/structure/monorail{
@@ -31618,9 +25113,7 @@
},
/obj/item/stool,
/obj/item/clothing/shoes/slippers_worn,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"tir" = (
/obj/item/ammo_magazine/rifle/m16,
@@ -31632,10 +25125,7 @@
/obj/structure/barricade/handrail/type_b{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"tiM" = (
/obj/item/shard{
@@ -31645,31 +25135,20 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/tumor/ice_lab)
"tiX" = (
/obj/item/stack/sheet/mineral/plastic,
/turf/open/floor/plating/prison,
/area/fiorina/station/lowsec)
"tiY" = (
-/turf/open/floor/prison{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/prison/floorscorched2,
/area/fiorina/tumor/civres)
"tiZ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/station/park)
"tja" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"tji" = (
/obj/structure/flora/pottedplant{
@@ -31690,9 +25169,7 @@
"tjw" = (
/obj/structure/platform_decoration,
/obj/structure/inflatable,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"tjR" = (
/obj/structure/machinery/shower{
@@ -31702,9 +25179,7 @@
dir = 1;
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/research_cells)
"tkd" = (
/obj/structure/filingcabinet,
@@ -31715,15 +25190,10 @@
/area/fiorina/station/security)
"tkg" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"tkj" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"tkP" = (
/obj/structure/stairs/perspective{
@@ -31738,10 +25208,7 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/fiorina/station/research_cells)
"tle" = (
/obj/structure/filingcabinet{
@@ -31753,17 +25220,13 @@
pixel_y = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"tlj" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/fiorina/station/power_ring)
"tlq" = (
/obj/structure/surface/table/reinforced/prison,
@@ -31791,9 +25254,7 @@
/obj/structure/platform_decoration{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"tlF" = (
/obj/structure/stairs/perspective{
@@ -31812,10 +25273,7 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"tlQ" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -31845,23 +25303,15 @@
/area/fiorina/station/park)
"tmF" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/tumor/ice_lab)
"tmI" = (
/obj/effect/alien/weeds/node,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/tumor/aux_engi)
"tmL" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"tmX" = (
/obj/structure/largecrate/random/case/small,
@@ -31879,16 +25329,11 @@
/area/fiorina/station/chapel)
"tnw" = (
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/tumor/aux_engi)
"tnY" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"tob" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -31910,9 +25355,7 @@
/obj/effect/decal/hefa_cult_decals/d32{
icon_state = "2"
},
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/maintenance)
"tpt" = (
/obj/structure/closet/wardrobe/chaplain_black,
@@ -31931,23 +25374,15 @@
/area/fiorina/lz/near_lzI)
"tpz" = (
/obj/item/paper/carbon,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"tpE" = (
/obj/item/tank/jetpack/carbondioxide,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"tpF" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/fiorina/tumor/aux_engi)
"tpY" = (
/obj/effect/landmark/monkey_spawn,
@@ -31957,19 +25392,14 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecalleft"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"tql" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue,
/area/fiorina/station/botany)
"tqw" = (
/obj/structure/stairs/perspective{
@@ -31983,10 +25413,7 @@
},
/obj/item/storage/toolbox,
/obj/item/storage/toolbox,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/tumor/servers)
"tqP" = (
/obj/structure/platform/kutjevo/smooth{
@@ -32008,16 +25435,11 @@
/turf/open/floor/plating/prison,
/area/fiorina/tumor/ice_lab)
"trJ" = (
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/fiorina/station/central_ring)
"trN" = (
/obj/item/stack/barbed_wire,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"trR" = (
/obj/structure/sink{
@@ -32025,10 +25447,7 @@
pixel_x = 12
},
/obj/item/storage/fancy/cigarettes/blackpack,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"trS" = (
/obj/structure/barricade/wooden{
@@ -32052,31 +25471,21 @@
/obj/item/storage/donut_box{
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"tsr" = (
/obj/structure/pipes/unary/freezer{
icon_state = "freezer_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"tss" = (
/obj/structure/bookcase/manuals/engineering,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"tst" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/oob)
"tsA" = (
/obj/structure/barricade/metal{
@@ -32084,25 +25493,18 @@
health = 150;
icon_state = "metal_2"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/ice_lab)
"tsH" = (
/obj/structure/tunnel,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"tsN" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/ammo_magazine/rifle/m16{
current_rounds = 0
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"tuf" = (
/obj/item/clothing/shoes/jackboots{
@@ -32120,10 +25522,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/tumor/aux_engi)
"tuA" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/telecomm/lz1_tram)
"tuX" = (
/obj/structure/platform{
@@ -32140,10 +25539,7 @@
"tvi" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"twb" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -32152,19 +25548,14 @@
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"txb" = (
/obj/structure/window/framed/prison/reinforced{
opacity = 1
},
/obj/structure/machinery/door/poddoor/shutters/almayer,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"txf" = (
/obj/structure/prop/almayer/computers/sensor_computer1{
@@ -32174,9 +25565,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"txh" = (
/obj/structure/bed/sofa/vert/grey,
@@ -32188,43 +25577,30 @@
pixel_y = 24
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/station/park)
"tyj" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/chapel)
"tyt" = (
/obj/item/ammo_casing{
dir = 8;
icon_state = "cartridge_2"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/flight_deck)
"tyC" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"tyJ" = (
/obj/item/reagent_container/food/snacks/xenoburger,
/obj/item/reagent_container/food/snacks/xenoburger,
/obj/item/reagent_container/food/snacks/xenoburger,
/obj/structure/closet/crate/freezer,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"tzy" = (
/obj/item/ammo_magazine/smg/mp5,
@@ -32249,16 +25625,11 @@
/area/fiorina/oob)
"tzU" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"tzW" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/fiorina/tumor/aux_engi)
"tAb" = (
/obj/structure/surface/rack,
@@ -32273,17 +25644,11 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/medbay)
"tAE" = (
/obj/structure/barricade/handrail,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"tAR" = (
/obj/structure/surface/rack,
@@ -32293,10 +25658,7 @@
pixel_y = -5
},
/obj/item/tool/crowbar,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"tBP" = (
/obj/structure/machinery/shower{
@@ -32306,16 +25668,11 @@
/area/fiorina/station/research_cells)
"tCv" = (
/obj/effect/landmark/corpsespawner/ua_riot/burst,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"tCH" = (
/obj/item/stack/folding_barricade,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"tCZ" = (
/obj/structure/platform/kutjevo/smooth{
@@ -32340,9 +25697,7 @@
/area/fiorina/station/civres_blue)
"tDC" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"tDE" = (
/obj/structure/machinery/light/double/blue{
@@ -32361,9 +25716,7 @@
/area/fiorina/station/civres_blue)
"tEA" = (
/obj/item/reagent_container/glass/bucket/janibucket,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"tEH" = (
/obj/structure/window/framed/prison,
@@ -32378,9 +25731,7 @@
/area/fiorina/station/transit_hub)
"tEX" = (
/obj/structure/machinery/vending/cigarette,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"tEY" = (
/obj/structure/machinery/newscaster{
@@ -32392,9 +25743,7 @@
/obj/structure/reagent_dispensers/watertank{
layer = 2.6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"tFA" = (
/obj/structure/platform{
@@ -32411,18 +25760,12 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/fiorina/station/medbay)
"tGU" = (
/obj/structure/closet/crate/medical,
/obj/item/storage/pill_bottle/tramadol/skillless,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"tGY" = (
/obj/structure/surface/table/reinforced/prison,
@@ -32441,27 +25784,18 @@
/area/fiorina/station/lowsec)
"tHw" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/tumor/aux_engi)
"tHF" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"tHJ" = (
/obj/structure/closet/firecloset,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/fiorina/maintenance)
"tHL" = (
/obj/structure/blocker/invisible_wall,
@@ -32476,9 +25810,7 @@
pixel_x = 1;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"tIn" = (
/obj/structure/reagent_dispensers/water_cooler,
@@ -32499,48 +25831,31 @@
icon_state = "fullgrass_1";
name = "Fiberbush(tm) tubers"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"tIU" = (
/obj/item/tool/candle,
/turf/open/floor/prison/chapel_carpet,
/area/fiorina/maintenance)
"tIW" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/fiorina/lz/near_lzI)
"tJw" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/fiorina/station/medbay)
"tJC" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"tJH" = (
/obj/item/reagent_container/food/drinks/coffee,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"tJQ" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/clothing/mask/cigarette/cigar/tarbacks,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"tJR" = (
/obj/structure/machinery/computer/cameras/wooden_tv{
@@ -32556,20 +25871,14 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"tKk" = (
/obj/structure/bed{
icon_state = "abed"
},
/obj/item/reagent_container/food/snacks/wrapped/barcardine,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"tKv" = (
/obj/structure/machinery/computer/secure_data{
@@ -32583,17 +25892,11 @@
desc = "Wow, instant sand. They really have everything in space.";
name = "Insta-Sand! bag"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/fiorina/tumor/civres)
"tLk" = (
/obj/item/paper/crumpled,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"tLC" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
@@ -32603,17 +25906,12 @@
/obj/structure/prop/souto_land/pole{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"tMs" = (
/obj/item/weapon/gun/smg/mp5,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"tMS" = (
/obj/effect/alien/weeds/node,
@@ -32628,25 +25926,18 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"tMV" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"tNf" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"tNF" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -32657,9 +25948,7 @@
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"tNV" = (
/obj/item/stack/sheet/wood,
@@ -32691,9 +25980,7 @@
desc = "Eggplant. Or, wait...";
layer = 2
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"tPz" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -32702,27 +25989,17 @@
pixel_x = 1;
pixel_y = 13
},
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"tPA" = (
/obj/structure/largecrate/supply/medicine/iv,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"tPB" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"tPC" = (
-/turf/open/floor/prison{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2,
/area/fiorina/station/flight_deck)
"tPN" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -32732,9 +26009,7 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"tQm" = (
/obj/item/trash/boonie,
@@ -32750,15 +26025,10 @@
"tSl" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/stack/sheet/mineral/plastic,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"tSm" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/west,
/area/fiorina/station/botany)
"tSL" = (
/obj/structure/platform{
@@ -32771,9 +26041,7 @@
dir = 9
},
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"tSY" = (
/obj/structure/machinery/light/double/blue,
@@ -32784,16 +26052,11 @@
/obj/item/stool{
pixel_y = 12
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"tTv" = (
/obj/item/stack/sandbags/large_stack,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"tTA" = (
/obj/structure/prop/souto_land/pole{
@@ -32803,10 +26066,7 @@
/area/fiorina/station/park)
"tTB" = (
/obj/item/clothing/gloves/boxing/green,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/central_ring)
"tTI" = (
/obj/structure/closet/bodybag,
@@ -32814,10 +26074,7 @@
dir = 4;
icon_state = "triagedecaldir"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"tUs" = (
/turf/open/floor/plating/prison,
@@ -32826,25 +26083,17 @@
/obj/item/stack/sheet/metal{
amount = 5
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/lz/near_lzI)
"tUD" = (
/obj/structure/closet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"tUG" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/toolbox/mechanical/green,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"tUS" = (
/obj/item/explosive/grenade/high_explosive/frag,
@@ -32852,10 +26101,7 @@
/area/fiorina/station/medbay)
"tVI" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"tVV" = (
/obj/effect/landmark/corpsespawner/ua_riot,
@@ -32871,23 +26117,16 @@
/area/fiorina/station/central_ring)
"tWh" = (
/obj/structure/closet/secure_closet/hydroponics,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"tWs" = (
/obj/item/toy/deck,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"tWz" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"tWI" = (
/obj/structure/platform/kutjevo/smooth,
@@ -32901,10 +26140,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"tXD" = (
/obj/structure/stairs/perspective{
@@ -32918,9 +26154,7 @@
/area/fiorina/station/park)
"tXT" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"tYd" = (
/obj/structure/machinery/light/double/blue{
@@ -32928,68 +26162,44 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"tYg" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/tumor/servers)
"tYt" = (
/obj/structure/bed/roller,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"tYw" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/fiorina/tumor/civres)
"tYD" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/fiorina/station/power_ring)
"tYQ" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"tYU" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/tumor/ice_lab)
"tZe" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"tZk" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/aux_engi)
"tZz" = (
/obj/structure/prop/almayer/computers/sensor_computer1,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/lz/near_lzI)
"tZO" = (
/obj/item/frame/rack,
@@ -32997,9 +26207,7 @@
/area/fiorina/station/disco)
"tZW" = (
/obj/item/tool/wet_sign,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"uap" = (
/obj/structure/surface/table/reinforced/prison,
@@ -33008,17 +26216,11 @@
/area/fiorina/station/power_ring)
"uaL" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/station/park)
"uaM" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/fiorina/tumor/aux_engi)
"ubc" = (
/obj/structure/largecrate/random/barrel/green,
@@ -33032,26 +26234,19 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"ubo" = (
/obj/item/stack/sheet/metal/medium_stack,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"ubA" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/emails{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/fiorina/station/medbay)
"ubN" = (
/turf/closed/shuttle/ert{
@@ -33071,10 +26266,7 @@
/turf/open/ice/noweed,
/area/fiorina/station/research_cells)
"ubX" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/fiorina/tumor/ice_lab)
"uci" = (
/obj/effect/spawner/random/tool,
@@ -33083,9 +26275,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"ucj" = (
/turf/closed/shuttle/ert{
@@ -33096,16 +26286,11 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ucN" = (
/obj/structure/tunnel,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"ucS" = (
/obj/structure/machinery/light/double/blue,
@@ -33113,9 +26298,7 @@
/area/fiorina/station/telecomm/lz1_tram)
"udj" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"udt" = (
/obj/structure/barricade/handrail{
@@ -33130,23 +26313,15 @@
"udB" = (
/obj/structure/bed/roller,
/obj/effect/spawner/random/gun/rifle/highchance,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzI)
"udE" = (
/obj/structure/barricade/metal/wired,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"uen" = (
/obj/item/weapon/gun/rifle/m16,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"uep" = (
/obj/effect/decal/cleanable/blood,
@@ -33162,25 +26337,17 @@
/area/fiorina/station/park)
"ueI" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"ueP" = (
/obj/item/paper/crumpled,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ueX" = (
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"ufE" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -33198,15 +26365,10 @@
/area/fiorina/station/central_ring)
"ufN" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- icon_state = "panelscorched"
- },
+/turf/open/floor/prison/panelscorched,
/area/fiorina/tumor/aux_engi)
"ufR" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/east,
/area/fiorina/station/research_cells)
"ugg" = (
/obj/structure/closet/crate/miningcar{
@@ -33216,26 +26378,19 @@
/turf/open/floor/prison,
/area/fiorina/station/lowsec)
"ugk" = (
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/fiorina/tumor/aux_engi)
"ugm" = (
/obj/structure/prop/resin_prop{
icon_state = "coolanttank"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"ugq" = (
/obj/effect/decal/cleanable/blood/splatter{
icon_state = "gibdown1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"ugv" = (
/obj/structure/platform/kutjevo/smooth,
@@ -33268,9 +26423,7 @@
/obj/structure/prop/resin_prop{
icon_state = "sheater0"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"uhm" = (
/obj/structure/window_frame/prison/reinforced,
@@ -33278,35 +26431,24 @@
/area/fiorina/station/research_cells)
"uhA" = (
/obj/structure/closet/bodybag,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"uhX" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/fiorina/station/medbay)
"uia" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"uiD" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"uiV" = (
/obj/structure/platform{
@@ -33321,47 +26463,32 @@
/turf/open/floor/plating/prison,
/area/fiorina/lz/near_lzI)
"ujb" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/fiorina/station/telecomm/lz1_cargo)
"ujo" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"ujs" = (
/obj/item/shard{
icon_state = "large";
name = "ice shard"
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"ujz" = (
/obj/item/paper/prison_station/inmate_handbook,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"ukg" = (
/obj/item/trash/candle,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/telecomm/lz1_cargo)
"ukr" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
dir = 10
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"uky" = (
/obj/structure/platform,
@@ -33371,22 +26498,11 @@
/obj/structure/platform_decoration{
dir = 10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/fiorina/tumor/ice_lab)
-"ukR" = (
-/obj/structure/window/framed/prison/reinforced/hull,
-/obj/structure/window/framed/prison/reinforced/hull,
-/turf/open/space/basic,
-/area/fiorina/lz/near_lzI)
"ulc" = (
/obj/item/paper,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/fiorina/station/research_cells)
"ume" = (
/obj/structure/surface/table/reinforced/prison,
@@ -33402,15 +26518,10 @@
/area/fiorina/station/flight_deck)
"umg" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/fiorina/station/civres_blue)
"umm" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/north,
/area/fiorina/station/central_ring)
"umy" = (
/obj/structure/prop/resin_prop{
@@ -33422,17 +26533,11 @@
/area/fiorina/tumor/aux_engi)
"umz" = (
/obj/item/trash/kepler,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"umI" = (
/obj/item/clothing/gloves/boxing/blue,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/central_ring)
"umW" = (
/obj/structure/bed/sofa/pews,
@@ -33452,10 +26557,7 @@
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"unu" = (
/obj/structure/stairs/perspective{
@@ -33469,14 +26571,10 @@
dir = 8
},
/obj/item/storage/box/flashbangs,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"unA" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/prison/platingdmg1,
/area/fiorina/station/civres_blue)
"unF" = (
/obj/item/tool/wirecutters,
@@ -33501,29 +26599,18 @@
pixel_y = 2
},
/obj/item/storage/pouch/tools/full,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"upf" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/maintenance)
"upr" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"upw" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/fiorina/lz/near_lzII)
"upK" = (
/obj/structure/surface/table/reinforced/prison,
@@ -33533,10 +26620,7 @@
pixel_x = -2;
pixel_y = 10
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/east,
/area/fiorina/station/power_ring)
"upM" = (
/obj/structure/disposalpipe/broken,
@@ -33552,10 +26636,7 @@
"uqd" = (
/obj/item/pamphlet/skill/powerloader,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"uqj" = (
/obj/structure/stairs/perspective{
@@ -33564,17 +26645,11 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/fiorina/station/park)
"uqV" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"urv" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -33598,23 +26673,15 @@
/obj/structure/machinery/computer/secure_data{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"utL" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"utW" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/lz/near_lzI)
"uud" = (
/obj/structure/bed/chair/office/dark,
@@ -33622,9 +26689,7 @@
/area/fiorina/station/disco)
"uuk" = (
/obj/item/reagent_container/food/drinks/cans/waterbottle,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"uuG" = (
/obj/structure/machinery/washing_machine,
@@ -33632,9 +26697,7 @@
pixel_y = 15
},
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"uuJ" = (
/obj/structure/holohoop{
@@ -33645,9 +26708,7 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"uuL" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -33661,15 +26722,10 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/power_ring)
"uvn" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/telecomm/lz1_cargo)
"uvu" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/north,
/area/fiorina/station/power_ring)
"uvF" = (
/obj/structure/prop/structure_lattice{
@@ -33684,16 +26740,11 @@
/area/fiorina/maintenance)
"uvS" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/fiorina/oob)
"uvV" = (
/obj/structure/coatrack,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"uvZ" = (
/obj/structure/prop/structure_lattice{
@@ -33705,16 +26756,11 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"uwb" = (
/obj/structure/largecrate/supply/supplies/water,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"uwk" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -33736,9 +26782,7 @@
/area/fiorina/station/power_ring)
"uxd" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"uxv" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
@@ -33746,10 +26790,7 @@
/area/fiorina/station/security)
"uxN" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/fiorina/station/park)
"uye" = (
/obj/item/weapon/gun/rifle/m16,
@@ -33763,9 +26804,7 @@
/area/fiorina/lz/near_lzI)
"uyw" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"uyC" = (
/obj/structure/machinery/shower{
@@ -33774,9 +26813,7 @@
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/research_cells)
"uyM" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -33792,9 +26829,7 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"uza" = (
/obj/effect/decal/cleanable/blood/splatter{
@@ -33805,9 +26840,7 @@
/area/fiorina/station/medbay)
"uzi" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"uzw" = (
/obj/structure/machinery/light/double/blue,
@@ -33821,22 +26854,14 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/civres_blue)
"uzG" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/tumor/aux_engi)
"uAg" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/fiorina/tumor/ice_lab)
"uAX" = (
/obj/effect/decal/hefa_cult_decals/d32,
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"uBq" = (
/obj/item/stack/rods,
@@ -33850,17 +26875,13 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"uCO" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"uCX" = (
/obj/structure/stairs/perspective{
@@ -33877,9 +26898,7 @@
/obj/structure/prop/structure_lattice{
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"uEh" = (
/obj/structure/surface/table/reinforced/prison,
@@ -33887,9 +26906,7 @@
dir = 4;
reason = "Visitor"
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"uEj" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -33897,28 +26914,20 @@
/area/fiorina/station/transit_hub)
"uEy" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/tumor/servers)
"uEM" = (
/obj/effect/decal/cleanable/blood{
icon_state = "xtracks"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/fiorina/station/chapel)
"uEY" = (
/obj/structure/machinery/power/smes/buildable{
capacity = 1e+006;
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"uFd" = (
/obj/structure/machinery/light/double/blue{
@@ -33928,17 +26937,13 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"uFg" = (
/obj/effect/landmark/nightmare{
insert_tag = "birthday"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"uFs" = (
/obj/structure/stairs/perspective{
@@ -33951,37 +26956,26 @@
/area/fiorina/station/telecomm/lz1_tram)
"uFC" = (
/obj/structure/barricade/metal/wired,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"uGu" = (
/obj/effect/decal/hefa_cult_decals/d32{
icon_state = "3"
},
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"uGI" = (
/obj/structure/monorail{
name = "launch track"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzI)
"uGL" = (
/obj/item/trash/used_stasis_bag{
desc = "Wow, instant sand. They really have everything in space.";
name = "Insta-Sand! bag"
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"uGT" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -33999,18 +26993,13 @@
/obj/item/storage/toolbox/mechanical{
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"uIB" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"uIL" = (
/obj/structure/machinery/light/double/blue{
@@ -34020,9 +27009,7 @@
dir = 1;
layer = 2.8
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"uIS" = (
/obj/structure/window/framed/prison,
@@ -34040,48 +27027,31 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"uJp" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/lowsec)
"uJG" = (
/obj/item/ammo_casing{
icon_state = "casing_10_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"uJQ" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/fiorina/station/medbay)
"uJR" = (
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "ppflowers_2"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"uKb" = (
/obj/item/stack/tile/plasteel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"uKx" = (
/turf/closed/shuttle/ert,
@@ -34093,35 +27063,22 @@
"uKK" = (
/obj/structure/bed/roller,
/obj/item/bedsheet/green,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"uKX" = (
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security/wardens)
"uLf" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"uLj" = (
/obj/effect/decal/cleanable/blood/gibs/robot/limb,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/fiorina/station/research_cells)
"uLq" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/telecomm/lz1_tram)
"uLr" = (
/obj/vehicle/powerloader,
@@ -34141,16 +27098,11 @@
"uLM" = (
/obj/item/clothing/mask/cigarette/cigar/cohiba,
/obj/structure/surface/table/woodentable/fancy,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/station/chapel)
"uLV" = (
/obj/item/bedsheet,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"uMc" = (
/obj/structure/largecrate/random/barrel/white,
@@ -34158,10 +27110,7 @@
/area/fiorina/station/security)
"uMm" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/tumor/aux_engi)
"uMq" = (
/obj/structure/machinery/light/small{
@@ -34177,14 +27126,10 @@
/area/fiorina/station/security/wardens)
"uMN" = (
/obj/item/trash/semki,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"uMT" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/fiorina/station/medbay)
"uMZ" = (
/obj/structure/disposalpipe/segment{
@@ -34210,16 +27155,11 @@
/obj/structure/monorail{
name = "launch track"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"uNs" = (
/obj/structure/machinery/landinglight/ds1,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"uNG" = (
/obj/structure/machinery/power/apc{
@@ -34244,21 +27184,14 @@
/obj/effect/decal/hefa_cult_decals/d32{
icon_state = "bee"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"uOC" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/fiorina/tumor/servers)
"uOM" = (
/obj/structure/curtain,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"uOP" = (
/obj/item/newspaper,
@@ -34267,15 +27200,10 @@
"uPi" = (
/obj/item/device/binoculars,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"uPl" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"uPA" = (
/obj/structure/platform{
@@ -34290,16 +27218,11 @@
/turf/open/gm/river/desert/deep,
/area/fiorina/lz/near_lzII)
"uPX" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/northeast,
/area/fiorina/tumor/civres)
"uQk" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"uQE" = (
/obj/item/stack/tile/plasteel{
@@ -34309,17 +27232,11 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/civres_blue)
"uQJ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/tumor/servers)
"uQT" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/fiorina/tumor/ice_lab)
"uRv" = (
/obj/structure/machinery/light/double/blue{
@@ -34330,23 +27247,14 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/central_ring)
"uRF" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/fiorina/station/medbay)
"uRI" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/east,
/area/fiorina/maintenance)
"uRT" = (
/obj/item/device/flashlight,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"uRZ" = (
/obj/item/trash/barcardine,
@@ -34366,9 +27274,7 @@
icon_state = "pottedplant_29";
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"uSX" = (
/obj/item/tool/kitchen/utensil/pknife,
@@ -34388,52 +27294,34 @@
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"uTr" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/tumor/ice_lab)
"uTs" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"uTt" = (
/obj/item/device/flashlight/flare,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/prison/darkyellowcorners2/north,
/area/fiorina/station/telecomm/lz1_cargo)
"uTw" = (
/obj/item/weapon/gun/rifle/mar40,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"uTA" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/effect/spawner/random/gun/rifle/midchance,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/power_ring)
"uTR" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"uVk" = (
/obj/effect/decal{
@@ -34443,9 +27331,7 @@
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/station/telecomm/lz1_cargo)
"uVn" = (
/turf/closed/shuttle/ert{
@@ -34453,19 +27339,14 @@
},
/area/fiorina/tumor/ship)
"uVD" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/medbay)
"uVH" = (
/obj/effect/decal{
icon = 'icons/obj/items/policetape.dmi';
icon_state = "engineering_v"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/telecomm/lz1_cargo)
"uVL" = (
/obj/structure/surface/table/reinforced/prison,
@@ -34483,10 +27364,7 @@
dir = 8;
pixel_y = 24
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/station/park)
"uVX" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
@@ -34505,10 +27383,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"uWA" = (
/obj/structure/closet/secure_closet/engineering_electrical,
@@ -34518,16 +27393,11 @@
pixel_y = -3
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"uWO" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"uWQ" = (
/obj/structure/platform{
@@ -34545,10 +27415,7 @@
icon_state = "fullgrass_3";
name = "Fiberbush(tm) tubers"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"uXw" = (
/obj/structure/surface/table/reinforced/prison,
@@ -34566,29 +27433,20 @@
/area/fiorina/tumor/ship)
"uXK" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"uXP" = (
/obj/item/reagent_container/food/drinks/bottle/pwine,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"uXY" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
pixel_y = 32
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"uYi" = (
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/lz/near_lzI)
"uYo" = (
/obj/structure/stairs/perspective{
@@ -34617,19 +27475,14 @@
pixel_x = 7;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"uZu" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/tumor/aux_engi)
"uZA" = (
/turf/closed/shuttle/ert{
@@ -34638,10 +27491,7 @@
/area/fiorina/tumor/ship)
"uZP" = (
/obj/effect/spawner/random/gun/rifle/lowchance,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"uZX" = (
/obj/structure/curtain,
@@ -34655,10 +27505,7 @@
pixel_y = -11
},
/obj/item/device/flashlight/flare,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"vao" = (
/obj/structure/machinery/light/double/blue,
@@ -34670,9 +27517,7 @@
/obj/item/stack/sheet/mineral/plastic,
/obj/item/stack/sheet/mineral/plastic,
/obj/item/stack/sheet/mineral/plastic,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"vbV" = (
/obj/structure/machinery/vending/coffee,
@@ -34685,30 +27530,21 @@
/area/fiorina/oob)
"vci" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"vcq" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/west,
/area/fiorina/station/botany)
"vcu" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"vcv" = (
/obj/item/tool/screwdriver,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"vcC" = (
/obj/item/stack/rods,
@@ -34717,61 +27553,41 @@
"vcN" = (
/obj/structure/largecrate/random/case,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/station/park)
"vdn" = (
/obj/item/ammo_casing{
icon_state = "cartridge_2"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"vds" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/west,
/area/fiorina/station/lowsec)
"vdH" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate,
/area/fiorina/station/botany)
"vdJ" = (
/obj/effect/spawner/random/gun/smg,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/fiorina/tumor/civres)
"vdN" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"vdW" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"vel" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"vem" = (
/turf/closed/shuttle/ert{
@@ -34794,16 +27610,11 @@
/area/fiorina/station/park)
"veP" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"veR" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/fiorina/station/medbay)
"veW" = (
/obj/structure/stairs/perspective{
@@ -34824,10 +27635,7 @@
"vfL" = (
/obj/item/storage/box/flashbangs,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"vfM" = (
/turf/closed/shuttle/ert{
@@ -34835,33 +27643,22 @@
},
/area/fiorina/station/power_ring)
"vfO" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/fiorina/station/lowsec)
"vgi" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"vgw" = (
/obj/item/storage/toolbox/antag,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/fiorina/tumor/civres)
"vgC" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/fiorina/lz/near_lzI)
"vgL" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -34873,17 +27670,13 @@
/obj/item/clothing/under/marine/ua_riot,
/obj/item/storage/pill_bottle/alkysine,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"vhd" = (
/obj/structure/window/reinforced/tinted,
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/lz/near_lzI)
"vhk" = (
/obj/structure/stairs/perspective{
@@ -34895,19 +27688,13 @@
/area/fiorina/station/power_ring)
"vhy" = (
/obj/item/reagent_container/food/drinks/cans/waterbottle,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"vhB" = (
/turf/open/floor/plating/plating_catwalk/prison,
/area/fiorina/station/park)
"vhI" = (
-/turf/open/gm/river{
- color = "#990000";
- name = "pool"
- },
+/turf/open/gm/river/darkred_pool,
/area/fiorina/station/park)
"viL" = (
/obj/item/stock_parts/micro_laser/ultra,
@@ -34931,10 +27718,7 @@
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"vjl" = (
/obj/structure/closet/crate/trashcart,
@@ -34978,10 +27762,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"vkt" = (
/obj/structure/stairs/perspective{
@@ -34993,25 +27774,17 @@
/area/fiorina/station/central_ring)
"vlK" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/fiorina/station/medbay)
"vlN" = (
/obj/structure/surface/rack,
/obj/item/frame/table/almayer,
/obj/item/frame/table/almayer,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"vlO" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/central_ring)
"vlS" = (
/obj/structure/surface/table/reinforced/prison,
@@ -35048,28 +27821,20 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/telecomm/lz1_cargo)
"vmT" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"vnl" = (
/obj/structure/largecrate/random/barrel/white,
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"vnr" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -35088,30 +27853,21 @@
pixel_y = 8
},
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"vnG" = (
/turf/open/floor/prison,
/area/fiorina/maintenance)
"vnM" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/fiorina/lz/near_lzI)
"voh" = (
/obj/item/tool/warning_cone,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"voi" = (
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/station/park)
"voq" = (
/obj/structure/machinery/computer/secure_data{
@@ -35128,9 +27884,7 @@
/area/fiorina/station/transit_hub)
"voI" = (
/obj/item/tool/wrench,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"voK" = (
/obj/structure/stairs/perspective{
@@ -35143,24 +27897,17 @@
/area/fiorina/station/medbay)
"voO" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"voP" = (
/obj/structure/dropship_equipment/medevac_system,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/fiorina/station/power_ring)
"voV" = (
/obj/item/ammo_casing{
icon_state = "casing_6_1"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"vpN" = (
/obj/structure/stairs/perspective{
@@ -35177,22 +27924,15 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"vqs" = (
/obj/item/paper/prison_station/inmate_handbook,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"vqW" = (
/obj/item/stack/sheet/cardboard,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/fiorina/station/research_cells)
"vrp" = (
/obj/structure/ice/thin/indestructible{
@@ -35205,10 +27945,7 @@
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"vrF" = (
/obj/item/toy/crayon/green,
@@ -35217,16 +27954,11 @@
"vrH" = (
/obj/item/stack/sheet/metal,
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"vrO" = (
/obj/structure/closet/secure_closet/engineering_materials,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"vrR" = (
/obj/structure/platform_decoration,
@@ -35234,16 +27966,11 @@
dir = 4;
layer = 3.5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"vrS" = (
/obj/item/reagent_container/food/snacks/donkpocket,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"vrT" = (
/obj/structure/platform{
@@ -35253,27 +27980,18 @@
/area/fiorina/station/chapel)
"vsr" = (
/obj/structure/barricade/handrail,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"vsL" = (
/obj/structure/prop/dam/crane,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/fiorina/tumor/servers)
"vsM" = (
/obj/structure/bed{
icon_state = "abed"
},
/obj/item/ammo_magazine/smg/mp5,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"vsT" = (
/obj/structure/cable/heavyduty{
@@ -35285,9 +28003,7 @@
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/fiorina/station/civres_blue)
"vtk" = (
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
@@ -35314,10 +28030,7 @@
pixel_x = 5;
pixel_y = 2
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"vts" = (
/obj/effect/landmark/corpsespawner/engineer,
@@ -35328,10 +28041,7 @@
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/disco)
"vuK" = (
/obj/structure/filingcabinet/chestdrawer,
@@ -35348,10 +28058,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/fiorina/station/power_ring)
"vuV" = (
/obj/structure/stairs/perspective{
@@ -35364,9 +28071,7 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"vvp" = (
/obj/item/tool/candle{
@@ -35382,9 +28087,7 @@
icon = 'icons/turf/elevator.dmi';
icon_state = "wall_broke"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/telecomm/lz1_cargo)
"vvT" = (
/obj/structure/surface/table/reinforced/prison,
@@ -35393,10 +28096,7 @@
icon_state = "mwbloodyo";
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"vwt" = (
/obj/effect/landmark/objective_landmark/medium,
@@ -35410,9 +28110,7 @@
/area/fiorina/lz/near_lzI)
"vwD" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/servers)
"vwM" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -35425,27 +28123,19 @@
/obj/structure/machinery/microwave{
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"vwX" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"vxm" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue/east,
/area/fiorina/station/botany)
"vxs" = (
/turf/closed/shuttle/ert{
@@ -35454,26 +28144,18 @@
/area/fiorina/tumor/ship)
"vxu" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"vxz" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
indestructible = 1;
name = "launch bay door"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/oob)
"vxI" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/station/park)
"vyu" = (
/obj/item/clothing/suit/storage/hazardvest,
@@ -35484,25 +28166,17 @@
dir = 1
},
/obj/structure/inflatable/popped,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"vyw" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/fiorina/station/telecomm/lz1_cargo)
"vyK" = (
/obj/structure/barricade/sandbags{
dir = 1;
icon_state = "sandbag_0"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/telecomm/lz1_cargo)
"vzh" = (
/obj/structure/foamed_metal,
@@ -35537,9 +28211,7 @@
"vzT" = (
/obj/item/frame/toolbox_tiles_sensor,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"vzU" = (
/turf/closed/shuttle/ert{
@@ -35552,24 +28224,16 @@
dir = 8
},
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"vAX" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/west,
/area/fiorina/station/botany)
"vBa" = (
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/research_cells)
"vBF" = (
/obj/structure/machinery/light/double/blue{
@@ -35577,16 +28241,11 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"vBH" = (
/obj/item/storage/firstaid/regular,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"vBP" = (
/obj/structure/platform/kutjevo/smooth{
@@ -35611,23 +28270,15 @@
/area/fiorina/lz/near_lzI)
"vCl" = (
/obj/item/tool/shovel/spade,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"vCm" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/botany)
"vCu" = (
/obj/item/storage/bible/hefa,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/fiorina/station/chapel)
"vCL" = (
/obj/structure/prop/almayer/computers/mission_planning_system{
@@ -35637,10 +28288,7 @@
pixel_x = 2;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"vCQ" = (
/obj/item/prop/helmetgarb/spacejam_tickets{
@@ -35649,26 +28297,18 @@
pixel_x = 7;
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/chapel)
"vDf" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"vDL" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/central_ring)
"vDO" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
@@ -35678,9 +28318,7 @@
/area/fiorina/station/power_ring)
"vDR" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/station/civres_blue)
"vEi" = (
/obj/structure/platform{
@@ -35698,10 +28336,7 @@
health = 150;
icon_state = "metal_2"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/station/park)
"vFi" = (
/obj/structure/window_frame/prison,
@@ -35721,9 +28356,7 @@
icon = 'icons/turf/elevator.dmi';
icon_state = "wall_broke"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/civres_blue)
"vFs" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -35734,22 +28367,15 @@
/area/fiorina/station/security/wardens)
"vFA" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/fiorina/tumor/servers)
"vFS" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/ice_lab)
"vFV" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/lowsec)
"vFY" = (
/obj/item/reagent_container/glass/bucket,
@@ -35763,23 +28389,15 @@
},
/obj/item/reagent_container/food/snacks/eat_bar,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/flight_deck)
"vHo" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/fiorina/tumor/servers)
"vHD" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/trash/cigbutt,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"vHU" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -35800,14 +28418,10 @@
name = "overhead ducting";
pixel_y = 33
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/ice_lab)
"vIG" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg2"
- },
+/turf/open/floor/prison/platingdmg2,
/area/fiorina/station/security)
"vJh" = (
/obj/effect/spawner/random/sentry/midchance,
@@ -35823,10 +28437,7 @@
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"vJL" = (
/obj/structure/machinery/light/double/blue{
@@ -35847,10 +28458,7 @@
/obj/item/stack/sheet/metal{
amount = 5
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/lz/near_lzI)
"vKP" = (
/obj/structure/surface/rack,
@@ -35860,10 +28468,7 @@
"vLe" = (
/obj/structure/closet/toolcloset,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/maintenance)
"vLH" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -35873,30 +28478,19 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"vLX" = (
/obj/effect/landmark/corpsespawner/ua_riot/burst,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"vMk" = (
/obj/structure/machinery/vending/snack/packaged,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"vMs" = (
/obj/structure/machinery/vending/hydroseeds,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"vMK" = (
/turf/closed/wall/r_wall/prison,
@@ -35905,16 +28499,10 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/fiorina/station/park)
"vMT" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/station/flight_deck)
"vNd" = (
/obj/structure/machinery/light/double/blue{
@@ -35922,9 +28510,7 @@
pixel_y = 21
},
/obj/item/toy/beach_ball,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"vNq" = (
/turf/closed/wall/r_wall/prison,
@@ -35940,10 +28526,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/lowsec)
"vOm" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/botany)
"vOD" = (
/obj/effect/landmark/corpsespawner/ua_riot,
@@ -35951,9 +28534,7 @@
/area/fiorina/lz/near_lzI)
"vOO" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/fiorina/station/chapel)
"vOP" = (
/obj/structure/disposalpipe/segment{
@@ -35978,9 +28559,7 @@
pixel_y = 13
},
/obj/structure/barricade/handrail/type_b,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"vPM" = (
/obj/structure/platform_decoration/kutjevo{
@@ -35996,10 +28575,7 @@
/area/fiorina/tumor/ship)
"vQi" = (
/obj/item/clothing/gloves/botanic_leather,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"vQC" = (
/obj/structure/closet/crate/trashcart,
@@ -36012,17 +28588,11 @@
density = 0;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/fiorina/maintenance)
"vRk" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/fiorina/station/power_ring)
"vRu" = (
/obj/structure/sink{
@@ -36030,10 +28600,7 @@
pixel_x = 12
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/oob)
"vRA" = (
/turf/open/floor/plating/prison,
@@ -36041,17 +28608,11 @@
"vRF" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/pamphlet/skill/powerloader,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"vRH" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"vRP" = (
/obj/item/trash/cigbutt/cigarbutt,
@@ -36062,9 +28623,7 @@
pixel_x = -5;
pixel_y = -6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"vSW" = (
/obj/structure/closet/crate/internals,
@@ -36073,10 +28632,7 @@
/area/fiorina/lz/near_lzI)
"vTq" = (
/obj/structure/prop/resin_prop,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"vTv" = (
/turf/closed/shuttle/elevator{
@@ -36084,42 +28640,30 @@
},
/area/fiorina/station/civres_blue)
"vTA" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/fiorina/station/flight_deck)
"vTI" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"vTL" = (
/obj/item/trash/hotdog,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"vTM" = (
/obj/item/storage/donut_box{
pixel_y = 6
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"vTR" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"vUf" = (
/obj/structure/platform,
@@ -36134,9 +28678,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"vUv" = (
/obj/structure/surface/table/reinforced/prison,
@@ -36146,23 +28688,16 @@
/area/fiorina/station/security)
"vUF" = (
/obj/item/tool/screwdriver,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southwest,
/area/fiorina/tumor/civres)
"vUP" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"vUZ" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"vVi" = (
/obj/structure/window/framed/prison,
@@ -36190,25 +28725,17 @@
"vWj" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/fiorina/tumor/servers)
"vWL" = (
/obj/item/stock_parts/matter_bin/super,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/fiorina/tumor/servers)
"vXk" = (
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"vXl" = (
/obj/structure/surface/rack,
@@ -36217,10 +28744,7 @@
/turf/open/floor/prison,
/area/fiorina/station/medbay)
"vXy" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/southeast,
/area/fiorina/tumor/civres)
"vXT" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -36228,9 +28752,7 @@
/area/fiorina/station/security/wardens)
"vYw" = (
/obj/structure/girder/reinforced,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"vYX" = (
/obj/item/roller,
@@ -36242,22 +28764,15 @@
layer = 3.5;
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/station/transit_hub)
"vZe" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner,
/area/fiorina/station/power_ring)
"vZs" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"vZD" = (
/obj/item/storage/box/donkpockets,
@@ -36293,10 +28808,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/power_ring)
"waQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/fiorina/station/power_ring)
"waU" = (
/obj/structure/machinery/light/double/blue,
@@ -36304,18 +28816,12 @@
/area/fiorina/station/telecomm/lz2_maint)
"wbp" = (
/obj/item/inflatable,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"wbr" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/firstaid/regular,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"wbB" = (
/obj/structure/computerframe,
@@ -36356,18 +28862,13 @@
"wcB" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/gun/pistol/midchance,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/fiorina/tumor/servers)
"wcC" = (
/obj/structure/closet/basketball,
/obj/item/storage/pill_bottle/bicaridine/skillless,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"wcP" = (
/obj/effect/landmark/queen_spawn,
@@ -36381,41 +28882,28 @@
/obj/structure/barricade/handrail/type_b{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"wdo" = (
/obj/structure/closet,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/east,
/area/fiorina/station/power_ring)
"wdL" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"wdU" = (
/obj/structure/foamed_metal,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"wef" = (
/turf/open/floor/plating/prison,
/area/fiorina/station/research_cells)
"wet" = (
/obj/item/stack/sandbags/large_stack,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/telecomm/lz1_cargo)
"weB" = (
/obj/structure/machinery/light/double/blue{
@@ -36423,21 +28911,14 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"weE" = (
-/turf/open/floor/prison{
- icon_state = "panelscorched"
- },
+/turf/open/floor/prison/panelscorched,
/area/fiorina/oob)
"weM" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow,
/area/fiorina/station/lowsec)
"weV" = (
/obj/structure/sink{
@@ -36448,9 +28929,7 @@
/obj/structure/mirror{
pixel_x = -29
},
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/fiorina/station/civres_blue)
"weX" = (
/obj/structure/barricade/metal{
@@ -36468,10 +28947,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"wfo" = (
/obj/structure/coatrack,
@@ -36483,10 +28959,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"wfu" = (
/obj/structure/machinery/light/double/blue{
@@ -36500,16 +28973,11 @@
dir = 4;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "damaged3"
- },
+/turf/open/floor/prison/damaged3,
/area/fiorina/station/central_ring)
"wfV" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"wfY" = (
/obj/item/device/flashlight/flare/on,
@@ -36523,10 +28991,7 @@
/area/fiorina/oob)
"wgq" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"wgs" = (
/obj/structure/surface/table/reinforced/prison,
@@ -36537,15 +29002,10 @@
/obj/item/book/manual/engineering_guide{
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"wgO" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/park)
"whf" = (
/turf/closed/shuttle/elevator{
@@ -36554,16 +29014,11 @@
/area/fiorina/station/civres_blue)
"whl" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/aux_engi)
"whr" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/station/civres_blue)
"whu" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -36572,25 +29027,17 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"wiR" = (
/obj/structure/surface/rack,
/obj/item/key,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/fiorina/station/medbay)
"wjC" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/fiorina/tumor/aux_engi)
"wjH" = (
/obj/item/stack/barbed_wire,
@@ -36614,40 +29061,26 @@
/area/fiorina/station/medbay)
"wkg" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/down,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"wky" = (
/obj/structure/tunnel/maint_tunnel,
/turf/open/floor/plating/prison,
/area/fiorina/tumor/aux_engi)
"wkA" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/power_ring)
"wkL" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southeast,
/area/fiorina/station/flight_deck)
"wln" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/tumor/ice_lab)
"wlv" = (
/obj/item/trash/barcardine,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"wly" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -36666,23 +29099,15 @@
/area/fiorina/tumor/fiberbush)
"wmm" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/fiorina/station/power_ring)
"wmx" = (
/obj/item/stack/folding_barricade,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/fiorina/station/security)
"wnh" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/fiorina/station/civres_blue)
"wnq" = (
/obj/item/tool/match,
@@ -36695,9 +29120,7 @@
/turf/open/floor/wood,
/area/fiorina/station/park)
"wnD" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"wnM" = (
/obj/structure/surface/rack,
@@ -36708,18 +29131,13 @@
pixel_y = 6
},
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/maintenance)
"woh" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"wol" = (
/obj/structure/platform{
@@ -36729,25 +29147,17 @@
icon_state = "medium";
name = "ice shard"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/tumor/ice_lab)
"wou" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"wow" = (
/obj/structure/closet/crate/medical,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"woB" = (
/obj/structure/closet/crate/bravo,
@@ -36755,9 +29165,7 @@
/obj/item/stack/sheet/metal/medium_stack,
/obj/item/fuel_cell,
/obj/item/stack/sheet/plasteel,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"wps" = (
/obj/structure/bed/sofa/south/grey/left,
@@ -36765,16 +29173,10 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"wpy" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/north,
/area/fiorina/station/chapel)
"wpD" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
@@ -36794,17 +29196,12 @@
name = "Fiberbush(tm) safety plaque";
pixel_y = 29
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"wqs" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/poster,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"wqz" = (
/obj/structure/closet{
@@ -36812,20 +29209,14 @@
pixel_y = 18
},
/obj/item/clothing/gloves/combat,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"wqY" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"wrR" = (
/turf/closed/wall/prison,
@@ -36838,15 +29229,10 @@
/area/fiorina/station/disco)
"wsw" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"wsz" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/tumor/aux_engi)
"wsM" = (
/obj/structure/barricade/handrail/type_b{
@@ -36855,10 +29241,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"wtm" = (
/obj/structure/monorail{
@@ -36877,24 +29260,16 @@
dir = 4
},
/obj/item/weapon/classic_baton,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"wua" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/prison/bluecorner/west,
/area/fiorina/station/power_ring)
"wun" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/fiorina/tumor/ice_lab)
"wuz" = (
/obj/structure/stairs/perspective{
@@ -36927,21 +29302,15 @@
/area/fiorina/station/park)
"wuN" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"wuW" = (
/obj/item/tool/warning_cone,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"wvH" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"wvL" = (
/obj/item/tool/wrench,
@@ -36949,10 +29318,7 @@
/area/fiorina/station/central_ring)
"wvU" = (
/obj/structure/largecrate/supply/explosives/mines,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"wvY" = (
/obj/item/reagent_container/food/snacks/eat_bar,
@@ -36962,31 +29328,22 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/civres_blue)
"wwa" = (
-/turf/open/floor/prison{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/prison/floorscorched1,
/area/fiorina/tumor/civres)
"wwo" = (
/obj/structure/machinery/cm_vending/sorted/marine_food{
desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society.";
name = "\improper Fiorina Engineering Canteen Vendor"
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"wxl" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/fiorina/maintenance)
"wxW" = (
/obj/structure/prop/almayer/computers/mapping_computer,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"wxX" = (
/obj/structure/machinery/computer/cameras{
@@ -36998,9 +29355,7 @@
/area/fiorina/station/security/wardens)
"wxY" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"wxZ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -37023,9 +29378,7 @@
/obj/structure/platform_decoration{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/botany)
"wyl" = (
/obj/structure/machinery/power/port_gen/pacman,
@@ -37041,15 +29394,11 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/oob)
"wyQ" = (
/obj/structure/largecrate/supply/supplies/mre,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/lowsec)
"wyT" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -37057,9 +29406,7 @@
/area/fiorina/station/transit_hub)
"wyU" = (
/obj/effect/decal/cleanable/blood/gibs/robot/up,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"wzd" = (
/obj/structure/stairs/perspective{
@@ -37070,19 +29417,13 @@
/area/fiorina/station/security)
"wzg" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/flight_deck)
"wzE" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/fiorina/station/lowsec)
"wzH" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/fiorina/station/chapel)
"wzK" = (
/obj/structure/platform{
@@ -37113,18 +29454,13 @@
"wAt" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/lz/near_lzI)
"wAQ" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/tumor/ice_lab)
"wBx" = (
/obj/item/prop/helmetgarb/spacejam_tickets{
@@ -37133,26 +29469,18 @@
pixel_x = 6;
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/station/park)
"wBB" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southwest,
/area/fiorina/station/disco)
"wBE" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/drinks/cans/aspen,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/fiorina/lz/near_lzI)
"wBK" = (
/obj/item/stack/tile/plasteel,
@@ -37163,33 +29491,22 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/power_ring)
"wCI" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/fiorina/station/park)
"wCJ" = (
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"wDe" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- icon_state = "greenblue"
- },
+/turf/open/floor/prison/greenblue,
/area/fiorina/station/botany)
"wDw" = (
/obj/effect/decal/medical_decals{
icon_state = "cryomid"
},
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"wDz" = (
/obj/structure/machinery/vending/snack,
@@ -37197,9 +29514,7 @@
/area/fiorina/station/security)
"wDJ" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"wDK" = (
/obj/structure/machinery/shower{
@@ -37209,10 +29524,7 @@
/obj/structure/window{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"wED" = (
/obj/structure/machinery/light/double/blue{
@@ -37220,17 +29532,11 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/civres_blue)
"wEE" = (
/obj/item/tool/crowbar/red,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"wEX" = (
/obj/structure/machinery/light/double/blue{
@@ -37238,26 +29544,18 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"wFd" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/fiorina/tumor/servers)
"wFp" = (
/obj/item/stack/cable_coil/pink,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"wFB" = (
/obj/structure/machinery/light/double/blue{
@@ -37265,23 +29563,16 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"wFM" = (
/obj/structure/machinery/power/apc{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"wFS" = (
-/turf/open/floor/prison{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/prison/floorscorched1,
/area/fiorina/station/chapel)
"wFU" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -37291,9 +29582,7 @@
/obj/item/ammo_casing{
icon_state = "casing_1"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/central_ring)
"wGf" = (
/obj/item/stack/rods,
@@ -37305,9 +29594,7 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"wGM" = (
/obj/item/device/taperecorder{
@@ -37324,10 +29611,7 @@
layer = 2.5;
pixel_y = -11
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"wHl" = (
/obj/structure/platform_decoration{
@@ -37343,10 +29627,7 @@
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/fiorina/station/security)
"wHw" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
@@ -37357,9 +29638,7 @@
dir = 4
},
/obj/item/clothing/gloves/botanic_leather,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/botany)
"wId" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -37377,16 +29656,11 @@
/area/fiorina/tumor/aux_engi)
"wIx" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/east,
/area/fiorina/station/security)
"wIy" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"wIG" = (
/obj/structure/platform/kutjevo/smooth{
@@ -37416,15 +29690,11 @@
/area/fiorina/tumor/aux_engi)
"wIL" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"wJd" = (
/obj/structure/barricade/handrail,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/research_cells)
"wJw" = (
/obj/structure/closet/crate/trashcart,
@@ -37441,9 +29711,7 @@
/area/fiorina/station/park)
"wKl" = (
/obj/structure/bed/sofa/south/grey/right,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"wKm" = (
/obj/item/stack/sheet/cardboard,
@@ -37453,10 +29721,7 @@
/obj/structure/machinery/landinglight/ds1{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/fiorina/lz/near_lzI)
"wKE" = (
/obj/effect/landmark/monkey_spawn,
@@ -37469,9 +29734,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/medbay)
"wLA" = (
/obj/structure/extinguisher_cabinet,
@@ -37479,10 +29742,7 @@
/area/fiorina/station/security)
"wLS" = (
/obj/item/tool/wrench,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/fiorina/tumor/servers)
"wLT" = (
/obj/structure/prop/structure_lattice{
@@ -37493,9 +29753,7 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"wMe" = (
/obj/structure/surface/table/reinforced/prison,
@@ -37507,9 +29765,7 @@
pixel_x = 7;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/telecomm/lz1_cargo)
"wMh" = (
/obj/structure/surface/table/reinforced/prison,
@@ -37526,9 +29782,7 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/chapel)
"wMz" = (
/obj/structure/machinery/faxmachine,
@@ -37537,10 +29791,7 @@
/area/fiorina/station/security/wardens)
"wMA" = (
/obj/item/disk/botany,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"wNi" = (
/obj/effect/landmark/yautja_teleport,
@@ -37550,10 +29801,7 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/fiorina/station/chapel)
"wNB" = (
/obj/structure/closet/firecloset/full,
@@ -37561,61 +29809,40 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"wND" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/fiorina/station/civres_blue)
"wNG" = (
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"wNM" = (
/obj/item/tool/weldingtool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"wNX" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/fiorina/station/chapel)
"wOG" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/disco)
"wPz" = (
/turf/closed/shuttle/elevator,
/area/fiorina/station/telecomm/lz1_cargo)
"wQb" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/fiorina/station/civres_blue)
"wQg" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/door/window/eastright{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"wQD" = (
/obj/structure/surface/table/reinforced/prison,
@@ -37623,9 +29850,7 @@
dir = 1
},
/obj/item/weapon/gun/energy/taser,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"wQN" = (
/obj/structure/machinery/floodlight/landing/floor,
@@ -37652,10 +29877,7 @@
/area/fiorina/station/park)
"wQY" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"wRg" = (
/obj/item/stack/sheet/metal,
@@ -37666,10 +29888,7 @@
/area/fiorina/tumor/servers)
"wRz" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/central_ring)
"wRP" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -37680,9 +29899,7 @@
/area/fiorina/lz/near_lzI)
"wSb" = (
/obj/structure/machinery/gibber,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/power_ring)
"wSc" = (
/obj/structure/barricade/wooden{
@@ -37699,9 +29916,7 @@
pixel_x = -6;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"wSm" = (
/turf/open/floor/plating/prison,
@@ -37710,10 +29925,7 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/fiorina/station/park)
"wSt" = (
/obj/structure/monorail{
@@ -37729,9 +29941,7 @@
pixel_y = 4
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"wSD" = (
/obj/item/reagent_container/food/drinks/cans/waterbottle,
@@ -37740,43 +29950,28 @@
"wSN" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/firstaid/regular,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/research_cells)
"wSU" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/transit_hub)
"wSX" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/transit_hub)
"wTC" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/fiorina/station/telecomm/lz1_cargo)
"wTW" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
/turf/open/floor/plating/prison,
/area/fiorina/station/disco)
"wUs" = (
-/turf/open/floor/prison{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/prison/floorscorched1,
/area/fiorina/station/civres_blue)
"wUz" = (
/obj/item/frame/toolbox_tiles,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/fiorina/station/research_cells)
"wVc" = (
/obj/structure/surface/table/reinforced/prison,
@@ -37784,9 +29979,7 @@
pixel_x = 11;
pixel_y = 14
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"wWs" = (
/turf/open/floor/greengrid,
@@ -37804,9 +29997,7 @@
/obj/structure/machinery/computer/cameras{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"wXy" = (
/obj/structure/largecrate/random,
@@ -37820,10 +30011,7 @@
"wXN" = (
/obj/structure/machinery/cryo_cell,
/obj/structure/pipes/standard/cap/hidden,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"wXQ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -37832,37 +30020,25 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"wYq" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/chem_dispenser/soda,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"wYP" = (
/obj/structure/platform,
/obj/item/clothing/gloves/botanic_leather,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/botany)
"wYT" = (
/obj/structure/surface/rack,
/obj/item/tank/emergency_oxygen/engi,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/fiorina/station/power_ring)
"wZt" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/fiorina/station/research_cells)
"wZv" = (
/obj/item/stack/sheet/metal,
@@ -37879,32 +30055,22 @@
"xak" = (
/obj/structure/closet/emcloset,
/obj/item/storage/pill_bottle/kelotane/skillless,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"xat" = (
/obj/item/stool,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"xaO" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"xbc" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/fiorina/station/central_ring)
"xbm" = (
/obj/structure/machinery/line_nexter{
@@ -37920,10 +30086,7 @@
icon_state = "sandbag_0";
pixel_y = 2
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northeast,
/area/fiorina/station/disco)
"xbp" = (
/obj/item/card/id/silver/clearance_badge/cl{
@@ -37931,30 +30094,21 @@
name = "certified powerloader operator card";
registered_name = "John Forklift"
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"xbr" = (
/obj/structure/machinery/power/apc{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/north,
/area/fiorina/station/transit_hub)
"xbE" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/drinks/cans/waterbottle,
-/turf/open/floor/prison{
- icon_state = "yellowfull"
- },
+/turf/open/floor/prison/yellowfull,
/area/fiorina/station/disco)
"xbM" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"xck" = (
/obj/structure/largecrate/random/case/small,
@@ -37967,9 +30121,7 @@
pixel_y = 21
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"xcS" = (
/obj/structure/platform{
@@ -37980,9 +30132,7 @@
pixel_x = -10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"xdb" = (
/obj/structure/closet/bodybag,
@@ -38004,15 +30154,11 @@
/area/fiorina/station/telecomm/lz1_tram)
"xdL" = (
/obj/effect/landmark/corpsespawner/ua_riot/burst,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/servers)
"xdT" = (
/obj/item/trash/cigbutt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"xdZ" = (
/obj/structure/machinery/light/double/blue{
@@ -38020,22 +30166,15 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"xei" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"xel" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"xew" = (
/turf/closed/shuttle/ert{
@@ -38046,9 +30185,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/lz/near_lzI)
"xeX" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/prison/platingdmg1,
/area/fiorina/tumor/servers)
"xfb" = (
/obj/item/inflatable,
@@ -38063,40 +30200,28 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/medbay)
"xgb" = (
/obj/effect/landmark/corpsespawner/ua_riot/burst,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"xgn" = (
/obj/structure/machinery/optable,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/fiorina/station/medbay)
"xgx" = (
/obj/structure/machinery/defenses/tesla_coil{
faction_group = list("USCM")
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"xgC" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/disco)
"xgF" = (
/obj/structure/machinery/light/double/blue,
@@ -38104,37 +30229,25 @@
/area/fiorina/station/medbay)
"xgH" = (
/obj/item/toy/handcard/uno_reverse_blue,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"xgU" = (
/obj/item/circuitboard/machine/rdserver,
-/turf/open/floor/prison{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/prison/floorscorched1,
/area/fiorina/tumor/servers)
"xhL" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecaltopleft"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"xhM" = (
/obj/structure/curtain/red,
-/turf/open/floor/prison{
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white,
/area/fiorina/station/civres_blue)
"xia" = (
/obj/item/ammo_magazine/smg/mp5,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"xiF" = (
/obj/structure/largecrate/random/case/double,
@@ -38145,16 +30258,11 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/fiorina/station/security)
"xiL" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/fiorina/station/botany)
"xiO" = (
/obj/structure/machinery/vending/cigarette/free,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"xja" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -38167,16 +30275,11 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/telecomm/lz2_maint)
"xjM" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/prison/redcorner/west,
/area/fiorina/station/security)
"xkm" = (
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"xkq" = (
/obj/structure/platform,
@@ -38186,9 +30289,7 @@
/obj/structure/platform_decoration{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"xkv" = (
/turf/closed/wall/prison,
@@ -38197,18 +30298,13 @@
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"xlk" = (
/obj/effect/decal/medical_decals{
icon_state = "cryomid"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"xlp" = (
/obj/structure/bed/chair/office/dark{
@@ -38219,9 +30315,7 @@
"xlx" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/snacks/tomatosoup,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/fiorina/station/power_ring)
"xlZ" = (
/obj/structure/surface/table/woodentable,
@@ -38240,17 +30334,11 @@
/area/fiorina/station/security/wardens)
"xmC" = (
/obj/item/device/flashlight/flare/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/tumor/ice_lab)
"xmV" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/fiorina/station/telecomm/lz1_tram)
"xna" = (
/obj/item/stack/tile/plasteel,
@@ -38266,10 +30354,7 @@
pixel_y = 18
},
/obj/item/clothing/gloves/combat,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"xnU" = (
/obj/structure/machinery/camera/autoname/lz_camera,
@@ -38280,10 +30365,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/medbay)
"xow" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/east,
/area/fiorina/station/chapel)
"xoK" = (
/obj/structure/closet,
@@ -38295,18 +30377,13 @@
"xoR" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"xpj" = (
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "lavendergrass_4"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/central_ring)
"xpw" = (
/obj/structure/machinery/power/apc{
@@ -38320,32 +30397,22 @@
/area/fiorina/station/security)
"xpM" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"xpO" = (
/obj/structure/machinery/power/terminal{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"xqP" = (
/obj/structure/surface/rack,
/obj/item/tool/plantspray/weeds,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"xqY" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/tumor/ice_lab)
"xrd" = (
/obj/structure/machinery/computer3/server/rack,
@@ -38359,15 +30426,11 @@
/obj/structure/machinery/computer/skills{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"xrz" = (
/obj/item/clothing/head/cmcap,
-/turf/open/floor/prison{
- icon_state = "green"
- },
+/turf/open/floor/prison/green,
/area/fiorina/station/transit_hub)
"xrH" = (
/obj/structure/machinery/landinglight/ds2{
@@ -38379,9 +30442,7 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"xsh" = (
/obj/structure/bed/roller,
@@ -38389,10 +30450,7 @@
pixel_y = 19
},
/obj/item/bedsheet/green,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"xst" = (
/obj/structure/platform,
@@ -38400,10 +30458,7 @@
/area/fiorina/station/chapel)
"xsC" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"xsS" = (
/obj/structure/bed/chair{
@@ -38413,10 +30468,7 @@
/area/fiorina/station/power_ring)
"xsX" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"xtd" = (
/obj/structure/largecrate/random/case/small,
@@ -38429,9 +30481,7 @@
/area/fiorina/station/telecomm/lz1_tram)
"xtm" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"xtP" = (
/obj/structure/platform/kutjevo/smooth{
@@ -38451,10 +30501,7 @@
/obj/effect/decal/medical_decals{
icon_state = "docstripingdir"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"xvv" = (
/turf/open/floor/prison,
@@ -38467,9 +30514,7 @@
/area/fiorina/station/transit_hub)
"xvC" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/fiorina/tumor/servers)
"xvI" = (
/obj/structure/disposalpipe/segment{
@@ -38484,17 +30529,11 @@
"xwo" = (
/obj/structure/surface/rack,
/obj/item/storage/box/sprays,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"xwt" = (
/obj/structure/bed/chair/comfy,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"xwC" = (
/turf/closed/wall/mineral/bone_resin,
@@ -38506,19 +30545,13 @@
/obj/structure/flora/bush/ausbushes/grassybush{
icon_state = "lavendergrass_2"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/civres_blue)
"xxU" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/tumor/ice_lab)
"xxX" = (
/obj/effect/decal/cleanable/blood/splatter{
@@ -38530,10 +30563,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/east,
/area/fiorina/station/botany)
"xyw" = (
/obj/structure/machinery/computer/arcade,
@@ -38544,16 +30574,10 @@
/area/fiorina/tumor/civres)
"xzs" = (
/obj/structure/machinery/space_heater,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"xzN" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/fiorina/station/chapel)
"xAl" = (
/obj/structure/cargo_container/grant/right{
@@ -38564,24 +30588,15 @@
"xAo" = (
/obj/item/trash/cigbutt/bcigbutt,
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"xAq" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"xAs" = (
/obj/item/device/reagent_scanner,
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/tumor/fiberbush)
"xAY" = (
/obj/effect/landmark{
@@ -38589,16 +30604,11 @@
name = "xeno_hive_spawn"
},
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/north,
/area/fiorina/tumor/ice_lab)
"xBc" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"xBl" = (
/obj/structure/surface/table/woodentable,
@@ -38628,9 +30638,7 @@
pixel_x = 1;
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"xCa" = (
/obj/item/toy/crayon/rainbow,
@@ -38638,32 +30646,21 @@
/area/fiorina/station/power_ring)
"xCg" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"xCh" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"xCp" = (
/obj/structure/inflatable/popped,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/station/medbay)
"xCr" = (
/obj/structure/curtain/shower,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen/southwest,
/area/fiorina/tumor/civres)
"xCv" = (
/obj/structure/platform{
@@ -38676,10 +30673,7 @@
/turf/open/floor/prison,
/area/fiorina/station/civres_blue)
"xDk" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/fiorina/station/civres_blue)
"xDq" = (
/turf/closed/shuttle/ert{
@@ -38695,9 +30689,7 @@
icon_state = "pottedplant_29";
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"xEy" = (
/obj/structure/machinery/light/double/blue{
@@ -38705,56 +30697,36 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/civres)
"xEH" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/fiorina/station/medbay)
"xEW" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"xEX" = (
/obj/effect/spawner/random/gun/rifle,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/southwest,
/area/fiorina/lz/near_lzI)
"xFf" = (
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/fiorina/tumor/aux_engi)
"xFg" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/central_ring)
"xFJ" = (
/obj/item/tool/soap,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/fiorina/station/lowsec)
"xFL" = (
/obj/effect/decal{
icon = 'icons/obj/items/policetape.dmi';
icon_state = "engineering_v"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"xFP" = (
/turf/closed/shuttle/ert{
@@ -38765,40 +30737,28 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"xGd" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/clothing/mask/cigarette/weed{
icon_state = "ucigoff"
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/lowsec)
"xGi" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"xGl" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"xGr" = (
/obj/item/trash/sosjerky,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/flight_deck)
"xGt" = (
/obj/structure/window/framed/prison/reinforced,
@@ -38811,10 +30771,7 @@
/area/fiorina/station/security)
"xHi" = (
/obj/item/trash/candle,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"xHV" = (
/turf/closed/wall/mineral/bone_resin,
@@ -38833,9 +30790,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/disco)
"xIx" = (
/obj/structure/largecrate/random,
@@ -38843,9 +30798,7 @@
/area/fiorina/station/chapel)
"xJn" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/disco)
"xJw" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -38855,10 +30808,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/northwest,
/area/fiorina/station/lowsec)
"xKj" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
@@ -38885,15 +30835,11 @@
pixel_x = 8;
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/lowsec)
"xKP" = (
/obj/structure/barricade/handrail,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/fiorina/station/research_cells)
"xKX" = (
/turf/open/floor/plating/prison,
@@ -38902,18 +30848,13 @@
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 30
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"xLf" = (
/obj/effect/decal/cleanable/blood/splatter{
icon_state = "gibmid1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
"xLi" = (
/turf/closed/wall/prison,
@@ -38930,18 +30871,14 @@
/area/fiorina/station/medbay)
"xLx" = (
/obj/item/bedsheet,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/lowsec)
"xLD" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/power_ring)
"xLQ" = (
/obj/structure/window/framed/prison,
@@ -38954,10 +30891,7 @@
/area/fiorina/station/medbay)
"xMp" = (
/obj/item/trash/c_tube,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"xMO" = (
/obj/item/stack/sandbags_empty/half,
@@ -38979,18 +30913,13 @@
/area/fiorina/oob)
"xMX" = (
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/fiorina/station/medbay)
"xNg" = (
/obj/effect/decal/hefa_cult_decals/d32{
icon_state = "2"
},
-/turf/open/floor/prison/chapel_carpet{
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside,
/area/fiorina/station/chapel)
"xNm" = (
/obj/structure/extinguisher_cabinet,
@@ -39008,67 +30937,46 @@
"xNG" = (
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"xNJ" = (
/obj/structure/barricade/handrail/type_b{
dir = 1
},
/obj/item/frame/rack,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/southeast,
/area/fiorina/station/disco)
"xNU" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northeast,
/area/fiorina/station/flight_deck)
"xOm" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/power_ring)
"xOs" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/fiorina/station/medbay)
"xOE" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/fiorina/tumor/ship)
"xOU" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/fiorina/station/telecomm/lz1_cargo)
"xPk" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/prison/greencorner/west,
/area/fiorina/tumor/civres)
"xPG" = (
/obj/structure/bed/chair/comfy{
@@ -39077,9 +30985,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/maintenance)
"xQx" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"xQC" = (
/obj/structure/platform/kutjevo/smooth,
@@ -39102,25 +31008,17 @@
/area/fiorina/station/power_ring)
"xRw" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/fiorina/station/power_ring)
"xRI" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/prison/yellow/east,
/area/fiorina/station/lowsec)
"xRY" = (
/obj/structure/bed{
icon_state = "abed"
},
/obj/item/card/id/visa,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/fiorina/station/research_cells)
"xSz" = (
/obj/structure/barricade/metal/wired{
@@ -39133,33 +31031,22 @@
dir = 1;
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/fiorina/station/central_ring)
"xTf" = (
/obj/item/tool/kitchen/utensil/pspoon,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/power_ring)
"xTD" = (
/obj/structure/inflatable/popped/door,
/obj/effect/decal/medical_decals{
icon_state = "triagedecaldir"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/fiorina/station/medbay)
"xTW" = (
/obj/structure/bed/sofa/vert/grey/top,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"xUi" = (
/obj/structure/surface/rack,
@@ -39179,26 +31066,19 @@
/area/fiorina/lz/near_lzII)
"xUr" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/station/park)
"xVw" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/fiorina/station/research_cells)
"xVJ" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/mechanical/green,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"xVK" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -39207,15 +31087,10 @@
/obj/structure/barricade/handrail/type_b{
layer = 3.5
},
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"xVW" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/fiorina/station/park)
"xWc" = (
/obj/item/clothing/shoes/dress,
@@ -39226,16 +31101,11 @@
pixel_x = -5;
pixel_y = -11
},
-/turf/open/floor/prison{
- icon_state = "bluefull"
- },
+/turf/open/floor/prison/bluefull,
/area/fiorina/station/civres_blue)
"xWG" = (
/obj/item/weapon/twohanded/spear,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/research_cells)
"xWV" = (
/obj/structure/surface/table/reinforced/prison,
@@ -39250,17 +31120,13 @@
pixel_y = 10
},
/obj/item/tool/pen,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"xXh" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/medbay)
"xXl" = (
/obj/structure/flora/pottedplant{
@@ -39283,9 +31149,7 @@
/area/fiorina/station/power_ring)
"xXY" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/flight_deck)
"xYe" = (
/obj/structure/tunnel/maint_tunnel,
@@ -39299,49 +31163,33 @@
/obj/structure/machinery/power/apc{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/tumor/aux_engi)
"xYJ" = (
/obj/structure/bed{
icon_state = "abed"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/fiorina/station/research_cells)
"xYN" = (
/obj/item/device/t_scanner,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/civres_blue)
"xYR" = (
/obj/item/paper_bin{
pixel_x = 5;
pixel_y = 22
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/fiorina/station/civres_blue)
"xZx" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin,
/obj/item/tool/stamp,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/fiorina/tumor/civres)
"xZA" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/east,
/area/fiorina/station/telecomm/lz1_tram)
"xZD" = (
/obj/structure/surface/table/reinforced/prison,
@@ -39361,23 +31209,15 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security/wardens)
"xZM" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/prison/green/west,
/area/fiorina/tumor/civres)
"xZN" = (
/obj/item/clothing/under/shorts/green,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/central_ring)
"xZR" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
@@ -39389,17 +31229,11 @@
/obj/structure/closet/crate/miningcar{
name = "\improper materials storage bin"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/station/botany)
"xZV" = (
/obj/item/trash/semki,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/telecomm/lz1_cargo)
"yar" = (
/obj/structure/machinery/vending/cola,
@@ -39407,10 +31241,7 @@
dir = 1;
pixel_y = 24
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/fiorina/station/park)
"yat" = (
/obj/item/inflatable/door,
@@ -39463,9 +31294,7 @@
/area/fiorina/station/park)
"ycf" = (
/obj/structure/closet/secure_closet/security_empty,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ycw" = (
/obj/structure/machinery/light/double/blue{
@@ -39473,10 +31302,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/fiorina/tumor/civres)
"ycC" = (
/turf/open/floor/plating/prison,
@@ -39487,9 +31313,7 @@
/area/fiorina/tumor/fiberbush)
"ycT" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/tumor/fiberbush)
"ydb" = (
/obj/structure/machinery/light/double/blue{
@@ -39501,29 +31325,20 @@
/area/fiorina/station/civres_blue)
"ydd" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/fiorina/station/park)
"ydK" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/fiorina/station/power_ring)
"ydQ" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/fiorina/tumor/ice_lab)
"yet" = (
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/fiorina/maintenance)
"yeA" = (
/obj/item/reagent_container/food/drinks/cans/waterbottle,
@@ -39543,20 +31358,14 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/station/disco)
"yfA" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/fiorina/station/telecomm/lz1_cargo)
"yfE" = (
/obj/structure/disposalpipe/junction{
@@ -39565,10 +31374,7 @@
/turf/open/floor/plating/prison,
/area/fiorina/station/power_ring)
"yfK" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/fiorina/maintenance)
"yge" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -39579,24 +31385,17 @@
layer = 3.5
},
/obj/effect/spawner/random/technology_scanner,
-/turf/open/organic/grass{
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/fiorina/station/park)
"ygk" = (
/obj/item/ammo_magazine/rifle/m16{
current_rounds = 0
},
-/turf/open/floor/prison{
- icon_state = "yellowcorner"
- },
+/turf/open/floor/prison/yellowcorner,
/area/fiorina/station/lowsec)
"ygr" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/security)
"ygs" = (
/obj/structure/platform{
@@ -39626,9 +31425,7 @@
/obj/structure/surface/rack,
/obj/item/storage/firstaid/regular,
/obj/item/storage/pill_bottle/dexalin/skillless,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/medbay)
"yhu" = (
/obj/structure/window/framed/prison,
@@ -39645,10 +31442,7 @@
pixel_x = 1;
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/fiorina/station/research_cells)
"yhR" = (
/obj/structure/sign/prop3{
@@ -39671,30 +31465,21 @@
/area/fiorina/tumor/civres)
"yiL" = (
/obj/item/trash/cigbutt/bcigbutt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"yiR" = (
-/turf/open/floor/prison{
- icon_state = "panelscorched"
- },
+/turf/open/floor/prison/panelscorched,
/area/fiorina/station/civres_blue)
"yiT" = (
/obj/structure/barricade/sandbags{
icon_state = "sandbag_0";
pixel_y = -14
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate/southwest,
/area/fiorina/lz/near_lzI)
"yjW" = (
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"ykw" = (
/obj/structure/inflatable/popped,
@@ -39725,10 +31510,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/fiorina/station/research_cells)
"ylu" = (
/obj/item/tool/wrench,
@@ -39738,10 +31520,7 @@
/obj/effect/decal/medical_decals{
icon_state = "cryomid"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/fiorina/station/medbay)
(1,1,1) = {"
@@ -85644,7 +77423,7 @@ vlU
xSz
uYi
lRT
-deL
+dzl
dzl
dzl
dzl
@@ -88367,10 +80146,10 @@ xDw
lRT
lRT
lRT
-ukR
-ukR
-ukR
-ukR
+taY
+taY
+taY
+taY
lRT
lRT
lRT
diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm
index b2a660473a19..410ef56b0c1e 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm
@@ -13,9 +13,7 @@
},
/area/template_noop)
"aW" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"bh" = (
/turf/closed/wall/strata_ice/jungle{
@@ -31,21 +29,15 @@
/area/template_noop)
"bC" = (
/obj/item/tool/wet_sign,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"eF" = (
/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"fE" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"fI" = (
/obj/structure/machinery/light/small{
@@ -73,9 +65,7 @@
pixel_y = 7;
pixel_x = -1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"fN" = (
/obj/structure/largecrate/random/barrel{
@@ -96,9 +86,7 @@
/obj/structure/barricade/sandbags/wired{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"gi" = (
/obj/structure/girder/displaced,
@@ -106,9 +94,7 @@
/area/template_noop)
"hP" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"iT" = (
/obj/structure/barricade/metal/wired{
@@ -118,9 +104,7 @@
pixel_x = -15;
pixel_y = 2
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"iU" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -134,9 +118,7 @@
"kA" = (
/obj/structure/bed/chair/dropship/pilot,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"kO" = (
/obj/structure/machinery/light/small{
@@ -145,9 +127,7 @@
pixel_y = 10
},
/obj/structure/largecrate/supply/weapons/pistols,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"kR" = (
/obj/structure/machinery/light/small{
@@ -159,9 +139,7 @@
pixel_y = 29;
pixel_x = 5
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"lI" = (
/obj/structure/largecrate/random/barrel{
@@ -251,9 +229,7 @@
/area/template_noop)
"qn" = (
/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"qI" = (
/turf/closed/shuttle/ert{
@@ -284,9 +260,7 @@
pixel_x = -7;
pixel_y = -1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"tp" = (
/turf/open/floor/almayer,
@@ -304,9 +278,7 @@
/area/template_noop)
"vI" = (
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"wO" = (
/turf/closed/shuttle/ert{
@@ -380,10 +352,7 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/template_noop)
"EW" = (
/turf/closed/shuttle/ert{
@@ -393,15 +362,10 @@
/area/template_noop)
"Fd" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"FV" = (
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/template_noop)
"Gu" = (
/obj/structure/prop/structure_lattice{
@@ -412,9 +376,7 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"Hb" = (
/obj/structure/machinery/light/small{
@@ -462,18 +424,13 @@
icon_state = "fullgrass_2";
name = "Fiberbush(tm) tubers"
},
-/turf/open/organic/grass{
- desc = "It'll get in your shoes no matter what you do.";
- name = "astroturf"
- },
+/turf/open/organic/grass/astroturf,
/area/template_noop)
"JP" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
dir = 1
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"Ki" = (
/obj/effect/landmark/survivor_spawner,
@@ -490,9 +447,7 @@
/obj/item/clothing/head/soft/ferret{
pixel_y = 7
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"Ky" = (
/obj/structure/bed,
@@ -553,9 +508,7 @@
/obj/item/device/healthanalyzer{
pixel_y = -9
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"ON" = (
/turf/closed/shuttle/ert{
@@ -574,9 +527,7 @@
/turf/open/floor/plating/plating_catwalk,
/area/template_noop)
"QZ" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"Sh" = (
/obj/structure/machinery/light/small{
@@ -597,10 +548,7 @@
/area/template_noop)
"TS" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
+/turf/open/floor/almayer/plating/northeast,
/area/template_noop)
"Uh" = (
/turf/closed/shuttle/ert{
@@ -621,9 +569,7 @@
/obj/structure/barricade/metal/wired{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"Vh" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -633,9 +579,7 @@
/obj/structure/machinery/defenses/sentry/premade/dumb{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/almayer/plate,
/area/template_noop)
"VD" = (
/obj/structure/bed,
diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm
index 826f67364751..4013f2605422 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm
@@ -1,27 +1,21 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"b" = (
/obj/item/reagent_container/food/drinks/bottle/gin{
pixel_y = -6;
pixel_x = -9
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"e" = (
/obj/effect/landmark/corpsespawner/prison_security,
/obj/item/clothing/head/cakehat{
pixel_x = -10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"h" = (
/obj/structure/surface/table/woodentable/poor,
@@ -33,17 +27,13 @@
pixel_x = -1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"i" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"o" = (
/obj/structure/machinery/light/double/blue{
@@ -53,18 +43,14 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"s" = (
/obj/item/weapon/broken_bottle{
pixel_x = 5;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"u" = (
/turf/closed/wall/prison,
@@ -76,23 +62,17 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"B" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"C" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"E" = (
/obj/structure/surface/table/woodentable/poor,
@@ -100,9 +80,7 @@
pixel_y = 14;
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"G" = (
/obj/structure/surface/table/woodentable/poor,
@@ -114,15 +92,11 @@
pixel_x = -3;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"H" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"K" = (
/obj/structure/prop/souto_land/pole{
@@ -130,9 +104,7 @@
pixel_x = 10;
pixel_y = 16
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"L" = (
/obj/structure/surface/table/woodentable/poor,
@@ -144,25 +116,19 @@
pixel_y = 2;
pixel_x = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"N" = (
/obj/item/stack/sheet/wood{
amount = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"P" = (
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"U" = (
/obj/structure/prop/souto_land/pole{
@@ -177,9 +143,7 @@
pixel_x = 8;
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"Y" = (
/obj/structure/machinery/light/double/blue{
@@ -188,17 +152,13 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"Z" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
(1,1,1) = {"
diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm
index f9a376869849..62e24f138207 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm
@@ -14,23 +14,18 @@
req_access = null
},
/obj/item/clothing/under/color/orange,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/template_noop)
"e" = (
/turf/closed/wall/prison,
/area/template_noop)
"g" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"i" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
dir = 1;
- req_access = null;
req_one_access = null
},
/turf/open/floor/plating/prison,
@@ -42,9 +37,7 @@
/obj/item/clothing/shoes/galoshes{
pixel_y = -6
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/template_noop)
"l" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -53,9 +46,7 @@
/obj/item/clothing/shoes/dress/commander{
pixel_y = -9
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/template_noop)
"m" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -63,21 +54,15 @@
dir = 8
},
/obj/item/storage/box/flashbangs,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/template_noop)
"n" = (
/obj/item/stack/folding_barricade,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"r" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/template_noop)
"s" = (
/obj/structure/machinery/power/apc{
@@ -95,9 +80,7 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/template_noop)
"v" = (
/obj/item/clothing/under/color/orange,
@@ -108,18 +91,14 @@
dir = 1
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"x" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/prison,
/area/template_noop)
"y" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"z" = (
/obj/item/clothing/shoes/black{
@@ -134,9 +113,7 @@
pixel_x = -7;
pixel_y = -15
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"C" = (
/obj/structure/machinery/light/double/blue{
@@ -159,18 +136,14 @@
"F" = (
/obj/item/prop/helmetgarb/riot_shield,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"I" = (
/obj/structure/closet/secure_closet/guncabinet{
req_access = null
},
/obj/effect/spawner/random/gun/pistol/lowchance,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/template_noop)
"J" = (
/obj/structure/window/reinforced{
@@ -180,9 +153,7 @@
/area/template_noop)
"K" = (
/obj/item/clothing/under/color/orange,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"L" = (
/obj/structure/window/framed/prison/reinforced,
@@ -202,9 +173,7 @@
/area/template_noop)
"U" = (
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"V" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -217,15 +186,11 @@
pixel_x = 2;
pixel_y = -9
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/template_noop)
"X" = (
/obj/item/frame/rack,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/template_noop)
"Z" = (
/obj/effect/landmark/corpsespawner/ua_riot,
diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm
index c9f19cbe91e5..eb7b53bac0de 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm
@@ -3,10 +3,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/template_noop)
"aA" = (
/obj/effect/landmark/monkey_spawn,
@@ -23,9 +20,7 @@
/turf/open/floor/prison,
/area/template_noop)
"fi" = (
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/template_noop)
"gB" = (
/obj/structure/surface/table/reinforced/prison,
@@ -42,16 +37,11 @@
/area/template_noop)
"hT" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/template_noop)
"jh" = (
/obj/item/trash/pistachios,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"ji" = (
/obj/structure/surface/table/reinforced/prison,
@@ -64,24 +54,18 @@
pixel_y = 18;
desc = "Wait, why won't it work with my computer?"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"kU" = (
/obj/structure/machinery/deployable/barrier,
/turf/open/floor/plating/prison,
/area/template_noop)
"lm" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"mN" = (
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"na" = (
/obj/structure/surface/table/reinforced/prison,
@@ -97,29 +81,18 @@
/obj/item/reagent_container/food/drinks/cans/dr_gibb{
pixel_y = 10
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/template_noop)
"nZ" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"pq" = (
/obj/structure/prop/dam/crane,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/template_noop)
"sl" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/template_noop)
"sF" = (
/obj/structure/surface/table/reinforced/prison,
@@ -131,83 +104,55 @@
pixel_x = 4;
pixel_y = -8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/template_noop)
"tg" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"tn" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/template_noop)
"tH" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/template_noop)
"uf" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/template_noop)
"ur" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"uD" = (
/obj/item/trash/wy_chips_pepper,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"uO" = (
/obj/item/stock_parts/manipulator/pico,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/template_noop)
"va" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/template_noop)
"wj" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/template_noop)
"xH" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/effect/landmark/corpsespawner/ua_riot/burst,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"yS" = (
/turf/closed/wall/prison,
@@ -218,27 +163,17 @@
},
/obj/effect/decal/cleanable/blood/oil/streak,
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"zL" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"CE" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/template_noop)
"CO" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/template_noop)
"CV" = (
/obj/structure/surface/table/reinforced/prison,
@@ -246,17 +181,13 @@
dir = 8;
icon_state = "commb"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"DF" = (
/obj/structure/bed/chair/comfy,
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/template_noop)
"DV" = (
/obj/structure/machinery/light/double/blue{
@@ -264,9 +195,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"El" = (
/obj/structure/bed/chair{
@@ -276,9 +205,7 @@
/area/template_noop)
"Ep" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"Fp" = (
/turf/open/floor/prison,
@@ -288,16 +215,11 @@
dir = 4
},
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"Jv" = (
/obj/item/trash/chunk,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/west,
/area/template_noop)
"Kd" = (
/obj/structure/prop/structure_lattice{
@@ -309,9 +231,7 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"Mn" = (
/obj/structure/machinery/light/double/blue{
@@ -319,9 +239,7 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"MZ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -330,17 +248,11 @@
icon_state = "commb";
layer = 2.99
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/template_noop)
"Ng" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/template_noop)
"Ot" = (
/obj/structure/surface/table/reinforced/prison,
@@ -348,17 +260,12 @@
dir = 4;
icon_state = "commb"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"Oy" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/trash/chips,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/template_noop)
"OG" = (
/turf/closed/wall/mineral/bone_resin,
@@ -387,23 +294,16 @@
pixel_y = 21
},
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"QF" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/newspaper,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"QG" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/template_noop)
"Rd" = (
/obj/structure/bed/chair{
@@ -411,19 +311,13 @@
},
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/template_noop)
"RW" = (
/turf/open/floor/bluegrid,
/area/template_noop)
"Ss" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/template_noop)
"SF" = (
/obj/structure/surface/table/reinforced/prison,
@@ -436,32 +330,24 @@
pixel_x = 8;
pixel_y = 16
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"Tl" = (
/obj/structure/computer3frame,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"TI" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"Vc" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"VZ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -481,28 +367,18 @@
dir = 4;
icon_state = "commb"
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/template_noop)
"WV" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/template_noop)
"XD" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/template_noop)
"Yj" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/template_noop)
"Za" = (
/obj/structure/surface/table/reinforced/prison,
@@ -518,17 +394,12 @@
pixel_y = 13
},
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"Zn" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/template_noop)
(1,1,1) = {"
diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm
index 61fd7320e1ce..8ec3365773a2 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm
@@ -4,9 +4,7 @@
layer = 2.7;
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/template_noop)
"aZ" = (
/obj/structure/bed/roller,
@@ -14,10 +12,7 @@
pixel_y = 19
},
/obj/item/bedsheet/medical,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"bl" = (
/obj/structure/machinery/light/double/blue{
@@ -25,27 +20,18 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/template_noop)
"bm" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottom"
},
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"bs" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"bv" = (
/obj/structure/stairs/perspective{
@@ -62,10 +48,7 @@
dir = 4;
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"cO" = (
/obj/structure/machinery/door/airlock/almayer/marine{
@@ -76,43 +59,29 @@
/area/template_noop)
"dg" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"dp" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/template_noop)
"dK" = (
/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/template_noop)
"eb" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
dir = 1;
- req_access = null;
req_one_access = null
},
/turf/open/floor/plating/prison,
/area/template_noop)
"eO" = (
/obj/structure/largecrate/supply/supplies/tables_racks,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/template_noop)
"fn" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/template_noop)
"go" = (
/obj/structure/sign/prop3{
@@ -122,79 +91,52 @@
/area/template_noop)
"gC" = (
/obj/structure/largecrate/supply/medicine/medkits,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"ir" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/template_noop)
"it" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northeast,
/area/template_noop)
"iK" = (
/obj/structure/janitorialcart,
/turf/open/floor/prison,
/area/template_noop)
"jy" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/template_noop)
"kE" = (
/turf/closed/wall/prison,
/area/template_noop)
"kG" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"kK" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"kY" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalleft"
},
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"kZ" = (
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"lm" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottom"
},
/obj/structure/inflatable/popped,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"nj" = (
/obj/structure/bed/chair/janicart,
@@ -212,17 +154,11 @@
/area/template_noop)
"nx" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/limb,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/template_noop)
"nJ" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"nR" = (
/obj/structure/platform{
@@ -230,10 +166,7 @@
},
/obj/effect/decal/cleanable/blood/drip,
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/template_noop)
"nX" = (
/obj/structure/bed/roller,
@@ -242,10 +175,7 @@
},
/obj/item/bedsheet/medical,
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"of" = (
/obj/structure/surface/table/reinforced/prison,
@@ -258,10 +188,7 @@
pixel_y = 6;
layer = 3.1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southeast,
/area/template_noop)
"oy" = (
/obj/structure/machinery/light/double/blue{
@@ -269,45 +196,27 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"ph" = (
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"pR" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/template_noop)
"qb" = (
/obj/structure/inflatable/popped,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/template_noop)
"qe" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/template_noop)
"qS" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"sk" = (
/obj/structure/bed/roller,
@@ -317,53 +226,33 @@
/obj/item/bedsheet/medical,
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"tE" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"tL" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/template_noop)
"uE" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/template_noop)
"uG" = (
/obj/effect/decal/prints{
pixel_y = -10
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"uU" = (
/obj/item/storage/pill_bottle/tramadol/skillless,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"vA" = (
/obj/structure/inflatable/popped,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"xC" = (
/obj/structure/surface/table/reinforced/prison,
@@ -371,10 +260,7 @@
pixel_y = 4
},
/obj/item/storage/surgical_tray,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"xY" = (
/obj/structure/largecrate/random/case/double{
@@ -389,37 +275,23 @@
pixel_y = -17;
pixel_x = -5
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"zm" = (
/obj/structure/machinery/optable,
/obj/item/bedsheet/rainbow,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/template_noop)
"zG" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/template_noop)
"Be" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"BS" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/template_noop)
"Cr" = (
/obj/structure/largecrate/random/barrel/yellow{
@@ -437,10 +309,7 @@
pixel_y = 6;
layer = 2.7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"CA" = (
/obj/structure/extinguisher_cabinet,
@@ -448,10 +317,7 @@
/area/template_noop)
"Df" = (
/obj/structure/largecrate/supply/supplies/water,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/template_noop)
"Es" = (
/obj/item/reagent_container/glass/bucket/mopbucket,
@@ -463,10 +329,7 @@
dir = 4;
layer = 2.7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"ES" = (
/obj/structure/platform{
@@ -476,10 +339,7 @@
icon_state = "triagedecalbottomleft"
},
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"EZ" = (
/obj/structure/machinery/shower{
@@ -515,10 +375,7 @@
"GL" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"GT" = (
/obj/structure/machinery/cryo_cell,
@@ -532,26 +389,17 @@
icon_state = "triagedecalbottomleft"
},
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/template_noop)
"Hw" = (
/obj/item/ammo_casing{
icon_state = "cartridge_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"HS" = (
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/template_noop)
"IK" = (
/obj/structure/platform{
@@ -571,10 +419,7 @@
layer = 2.9;
pixel_y = -8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/template_noop)
"JJ" = (
/obj/structure/platform_decoration{
@@ -584,29 +429,21 @@
dir = 4;
layer = 2.8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/template_noop)
"JL" = (
/obj/structure/platform_decoration{
dir = 1
},
/obj/structure/inflatable,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/template_noop)
"JW" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottom"
},
/obj/structure/inflatable/popped,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/west,
/area/template_noop)
"Kk" = (
/obj/structure/machinery/door/airlock/almayer/marine{
@@ -622,30 +459,19 @@
/obj/item/reagent_container/food/drinks/coffee{
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"Ky" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner,
/area/template_noop)
"KF" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"KJ" = (
/obj/structure/inflatable/door,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/east,
/area/template_noop)
"Mi" = (
/obj/structure/machinery/light/double/blue{
@@ -654,10 +480,7 @@
pixel_y = 13
},
/obj/structure/largecrate/supply/supplies/flares,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/template_noop)
"NV" = (
/obj/structure/machinery/light/double/blue{
@@ -666,10 +489,7 @@
pixel_y = -3
},
/obj/structure/largecrate/supply/medicine/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/east,
/area/template_noop)
"Od" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -682,10 +502,7 @@
/obj/effect/decal/cleanable/mucus{
pixel_x = -16
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"OH" = (
/obj/structure/largecrate/random/case/double{
@@ -697,31 +514,19 @@
/obj/structure/largecrate/random/case/double{
pixel_y = -18
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"Pa" = (
/obj/structure/largecrate/supply/weapons/pistols,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"Pd" = (
/obj/structure/machinery/medical_pod/bodyscanner,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/southwest,
/area/template_noop)
"Pt" = (
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"PE" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
@@ -734,23 +539,14 @@
icon_state = "triagedecalbottom"
},
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"PV" = (
/obj/structure/inflatable/popped,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/prison/whitegreencorner/west,
/area/template_noop)
"QG" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/template_noop)
"Ro" = (
/obj/structure/machinery/shower{
@@ -763,10 +559,7 @@
/area/template_noop)
"RG" = (
/obj/structure/largecrate/supply/medicine/iv,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"Sz" = (
/obj/structure/platform{
@@ -778,20 +571,14 @@
layer = 3.1;
pixel_y = -4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/template_noop)
"Tb" = (
/obj/structure/bed/chair{
dir = 8;
layer = 2.7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"TF" = (
/obj/structure/platform_decoration{
@@ -801,47 +588,31 @@
icon_state = "triagedecalleft"
},
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/north,
/area/template_noop)
"TV" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"UI" = (
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/template_noop)
"US" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalleft"
},
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"Va" = (
/obj/structure/extinguisher_cabinet,
/turf/closed/wall/prison,
/area/template_noop)
"Vp" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen/northwest,
/area/template_noop)
"VD" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "whitegreen"
- },
+/turf/open/floor/prison/whitegreen,
/area/template_noop)
"WP" = (
/obj/structure/platform_decoration{
@@ -850,34 +621,22 @@
/obj/effect/decal/medical_decals{
icon_state = "triagedecaldir"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"WY" = (
/obj/structure/inflatable,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"Xl" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalleft"
},
/obj/structure/inflatable/popped/door,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"Yy" = (
/obj/structure/largecrate/supply/supplies/mre,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/template_noop)
"Yz" = (
/obj/structure/window/framed/prison/cell,
@@ -890,10 +649,7 @@
"Zp" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/structure/machinery/defenses/bell_tower/md,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
(1,1,1) = {"
diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm
index 34dc51f305fb..f30a796cdd74 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm
@@ -15,9 +15,7 @@
/area/template_noop)
"bO" = (
/obj/item/storage/belt/marine/quackers,
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"cb" = (
/obj/item/trash/barcardine{
@@ -35,9 +33,7 @@
pixel_y = -7;
pixel_x = -1
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"cq" = (
/obj/structure/surface/table/reinforced/prison,
@@ -53,44 +49,31 @@
/area/template_noop)
"cK" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"cU" = (
/obj/structure/machinery/power/apc,
/turf/open/floor/wood,
/area/template_noop)
"dB" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northwest,
/area/template_noop)
"ef" = (
/obj/item/toy/beach_ball,
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"el" = (
/obj/structure/prop/souto_land/streamer{
dir = 6
},
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/template_noop)
"fv" = (
/obj/item/toy/crossbow_ammo{
pixel_x = -16
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/template_noop)
"fL" = (
/obj/structure/grille,
@@ -105,36 +88,26 @@
/obj/structure/prop/invuln/fire{
layer = 2.9
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/template_noop)
"fN" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"fX" = (
/turf/closed/wall/mineral/bone_resin,
/area/template_noop)
"gs" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/template_noop)
"gV" = (
/turf/open/space,
/area/template_noop)
"hf" = (
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"hP" = (
/obj/structure/platform{
@@ -163,19 +136,13 @@
pixel_x = -13;
pixel_y = -11
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/template_noop)
"is" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southeast,
/area/template_noop)
"iC" = (
/obj/item/tool/mop{
@@ -187,17 +154,11 @@
pixel_x = 9;
pixel_y = -5
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/template_noop)
"iK" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/template_noop)
"iY" = (
/obj/structure/surface/table/reinforced/prison,
@@ -220,27 +181,20 @@
pixel_y = 6;
pixel_x = 6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/template_noop)
"kb" = (
/obj/item/trash/crushed_cup{
pixel_y = -65;
pixel_x = 29
},
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"kA" = (
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"lc" = (
/obj/structure/surface/table/reinforced/prison,
@@ -288,16 +242,11 @@
/obj/item/trash/kepler{
pixel_x = 13
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/template_noop)
"mj" = (
/obj/structure/prop/souto_land/pole,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"mk" = (
/obj/structure/machinery/light/double/blue{
@@ -311,10 +260,7 @@
/turf/open/floor/wood,
/area/template_noop)
"mq" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/template_noop)
"mu" = (
/turf/open/floor/plating/prison,
@@ -327,10 +273,7 @@
pixel_x = 31;
pixel_y = -16
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/template_noop)
"ni" = (
/turf/closed/wall/prison,
@@ -356,9 +299,7 @@
/area/template_noop)
"ou" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"oL" = (
/obj/structure/lattice,
@@ -377,10 +318,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "bright_clean2"
- },
+/turf/open/floor/prison/bright_clean2/southwest,
/area/template_noop)
"pG" = (
/obj/structure/stairs/perspective{
@@ -394,10 +332,7 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/template_noop)
"ql" = (
/obj/item/trash/sosjerky{
@@ -405,10 +340,7 @@
pixel_y = -20
},
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/template_noop)
"qm" = (
/obj/structure/stairs/perspective{
@@ -440,9 +372,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"rp" = (
/obj/item/reagent_container/glass/bucket/janibucket,
@@ -452,19 +382,14 @@
/obj/item/trash/semki{
pixel_x = 15
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/template_noop)
"rt" = (
/obj/item/trash/crushed_cup{
pixel_x = -2;
pixel_y = 36
},
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"rU" = (
/obj/structure/grille,
@@ -479,9 +404,7 @@
/obj/structure/prop/invuln/fire{
layer = 2.9
},
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/template_noop)
"rW" = (
/obj/structure/bed/chair/comfy{
@@ -523,16 +446,11 @@
/obj/item/trash/plate{
pixel_x = -9
},
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/template_noop)
"tM" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/east,
/area/template_noop)
"tT" = (
/obj/effect/decal/cleanable/blood/oil/streak,
@@ -542,10 +460,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/template_noop)
"vd" = (
/obj/structure/prop/souto_land/pole,
@@ -558,18 +473,13 @@
pixel_y = -9
},
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/template_noop)
"vf" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"vU" = (
/obj/structure/surface/table/reinforced/prison,
@@ -627,10 +537,7 @@
/turf/open/floor/wood,
/area/template_noop)
"wS" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southeast,
/area/template_noop)
"wV" = (
/obj/structure/platform{
@@ -640,9 +547,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"xz" = (
/obj/structure/prop/souto_land/streamer{
@@ -652,9 +557,7 @@
/area/template_noop)
"xQ" = (
/obj/item/reagent_container/food/drinks/cans/beer,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"xS" = (
/obj/structure/platform{
@@ -668,10 +571,7 @@
/area/template_noop)
"yx" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/template_noop)
"yL" = (
/obj/structure/stairs/perspective{
@@ -689,9 +589,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"zR" = (
/obj/item/trash/cigbutt{
@@ -719,9 +617,7 @@
/area/template_noop)
"Bj" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"Bm" = (
/obj/structure/prop/souto_land/pole{
@@ -735,10 +631,7 @@
pixel_x = -3;
pixel_y = -9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/template_noop)
"Bv" = (
/obj/structure/prop/souto_land/streamer{
@@ -786,10 +679,7 @@
pixel_x = -17;
pixel_y = 41
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/template_noop)
"Cx" = (
/obj/item/weapon/baseballbat/metal,
@@ -799,21 +689,15 @@
/obj/item/trash/crushed_cup{
pixel_x = -20
},
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"DN" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/template_noop)
"DT" = (
/obj/structure/platform,
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"Fj" = (
/obj/structure/platform_decoration{
@@ -828,10 +712,7 @@
/turf/open/floor/prison,
/area/template_noop)
"Fo" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/template_noop)
"Fy" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -840,10 +721,7 @@
/obj/structure/prop/souto_land/streamer{
dir = 9
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/template_noop)
"FD" = (
/obj/structure/surface/table/reinforced/prison,
@@ -865,9 +743,7 @@
pixel_x = 11;
pixel_y = -8
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"Gi" = (
/obj/structure/stairs/perspective{
@@ -908,20 +784,14 @@
pixel_y = -2;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/template_noop)
"GO" = (
/obj/item/toy/crossbow_ammo{
pixel_y = -14;
pixel_x = -15
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/template_noop)
"Hn" = (
/obj/structure/platform{
@@ -933,9 +803,7 @@
/obj/structure/platform_decoration{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"HP" = (
/obj/structure/prop/souto_land/streamer{
@@ -952,10 +820,7 @@
pixel_y = -6;
pixel_x = -8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/template_noop)
"IU" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -974,10 +839,7 @@
/turf/open/floor/wood,
/area/template_noop)
"Jr" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/east,
/area/template_noop)
"Jw" = (
/obj/structure/machinery/light/double/blue{
@@ -992,24 +854,17 @@
/area/template_noop)
"JR" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/template_noop)
"Ke" = (
/obj/item/toy/crossbow_ammo{
pixel_x = 19;
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"Kx" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"KL" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1033,10 +888,7 @@
/area/template_noop)
"KM" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/template_noop)
"KO" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1055,9 +907,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"Ls" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1101,10 +951,7 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/template_noop)
"Mn" = (
/obj/structure/platform,
@@ -1114,9 +961,7 @@
/obj/structure/platform_decoration{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"MS" = (
/obj/structure/platform,
@@ -1126,78 +971,54 @@
/obj/structure/platform_decoration{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"ND" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/template_noop)
"NQ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/southwest,
/area/template_noop)
"Oz" = (
/obj/item/trash/crushed_cup{
pixel_y = 5;
pixel_x = 11
},
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"PA" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/northeast,
/area/template_noop)
"PR" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2,
/area/template_noop)
"Qn" = (
/turf/open/floor/prison,
/area/template_noop)
"QF" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/west,
/area/template_noop)
"QO" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"Rg" = (
/obj/structure/prop/souto_land/pole{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"Ro" = (
/obj/item/toy/bikehorn/rubberducky{
pixel_x = -2;
pixel_y = -15
},
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"Rr" = (
/obj/structure/stairs/perspective{
@@ -1207,9 +1028,7 @@
/turf/open/floor/plating/prison,
/area/template_noop)
"Rs" = (
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"RW" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1230,17 +1049,11 @@
/area/template_noop)
"Sg" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/prison/darkbrowncorners2/north,
/area/template_noop)
"SC" = (
/obj/effect/landmark/corpsespawner/ua_riot/burst,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/template_noop)
"SO" = (
/obj/structure/machinery/light/double/blue{
@@ -1275,23 +1088,14 @@
pixel_x = 1;
pixel_y = -9
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/template_noop)
"Th" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/template_noop)
"Tq" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/template_noop)
"TO" = (
/obj/structure/prop/souto_land/streamer{
@@ -1319,9 +1123,7 @@
pixel_x = -13;
pixel_y = 48
},
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"Vi" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1371,10 +1173,7 @@
/turf/open/floor/prison,
/area/template_noop)
"Wh" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/north,
/area/template_noop)
"Wx" = (
/obj/structure/platform,
@@ -1382,17 +1181,13 @@
pixel_y = 13;
pixel_x = 45
},
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"WY" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"Xn" = (
/obj/item/storage/belt/shotgun/full/quackers{
@@ -1406,32 +1201,22 @@
pixel_y = 4;
pixel_x = 1
},
-/turf/open/gm/river{
- name = "pool"
- },
+/turf/open/gm/river/pool,
/area/template_noop)
"Xu" = (
/obj/structure/platform,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2,
/area/template_noop)
"Xw" = (
/obj/item/toy/beach_ball/holoball{
pixel_x = -10;
pixel_y = -7
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/template_noop)
"XM" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/west,
/area/template_noop)
"XS" = (
/obj/effect/landmark/corpsespawner/prisoner,
@@ -1456,16 +1241,11 @@
pixel_x = -1;
pixel_y = -9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/prison/darkbrown2/east,
/area/template_noop)
"XX" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"Yd" = (
/obj/structure/machinery/light/double/blue,
@@ -1502,9 +1282,7 @@
/area/template_noop)
"ZB" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
(1,1,1) = {"
diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm
index 9ff0e6e4a246..ddf166738112 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm
@@ -1,10 +1,7 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"aU" = (
/obj/structure/sign/poster{
@@ -18,44 +15,30 @@
/turf/closed/wall/r_wall/prison_unmeltable,
/area/template_noop)
"bO" = (
-/turf/open/floor/prison{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/prison/floorscorched1,
/area/template_noop)
"bZ" = (
-/turf/open/floor/prison{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/prison/floorscorched2,
/area/template_noop)
"cz" = (
/obj/structure/machinery/vending/sovietsoda,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"cL" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"cM" = (
/obj/structure/bed{
icon_state = "abed"
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/template_noop)
"dR" = (
/obj/structure/bookcase/manuals/research_and_development{
pixel_y = 10
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/template_noop)
"eG" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -67,24 +50,18 @@
/obj/item/clothing/head/helmet/marine/veteran/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"eQ" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"fg" = (
/obj/item/device/flashlight/lamp/tripod,
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/template_noop)
"fk" = (
/obj/item/explosive/grenade/incendiary/molotov{
@@ -94,16 +71,11 @@
/turf/open/space/basic,
/area/template_noop)
"gy" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/template_noop)
"gB" = (
/obj/effect/decal/cleanable/blood/tracks/footprints,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"gR" = (
/obj/structure/extinguisher_cabinet{
@@ -126,64 +98,43 @@
dir = 4;
health = 150
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/template_noop)
"jM" = (
/obj/structure/bed{
icon_state = "abed"
},
/obj/item/reagent_container/food/snacks/wrapped/barcardine,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
"ke" = (
/obj/effect/decal/cleanable/blood/gibs/body,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"ks" = (
/obj/structure/bed{
icon_state = "abed"
},
/obj/item/card/id/visa,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/template_noop)
"kx" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"kY" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/prison/platingdmg1,
/area/template_noop)
"me" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/body,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
"mu" = (
/obj/structure/bed{
icon_state = "abed"
},
/obj/effect/spawner/random/pills/lowchance,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/template_noop)
"mz" = (
/obj/item/tool/kitchen/utensil/pspoon,
@@ -194,68 +145,42 @@
dir = 4;
health = 200
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"nw" = (
/obj/structure/bed{
icon_state = "abed"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/template_noop)
"on" = (
/obj/structure/barricade/metal/wired{
dir = 1;
health = 55
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/template_noop)
"oR" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
"pp" = (
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/template_noop)
"pP" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/prison/whitepurplecorner/west,
/area/template_noop)
"qk" = (
/obj/structure/bed{
icon_state = "abed"
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
"qu" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "damaged1"
- },
+/turf/open/floor/prison/damaged1/southwest,
/area/template_noop)
"qL" = (
-/turf/open/floor/prison{
- icon_state = "panelscorched"
- },
+/turf/open/floor/prison/panelscorched,
/area/template_noop)
"rb" = (
/obj/structure/toilet{
@@ -266,10 +191,7 @@
dir = 6
},
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/template_noop)
"sa" = (
/obj/structure/sink{
@@ -277,56 +199,38 @@
pixel_x = -12
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/template_noop)
"tc" = (
/obj/structure/bed{
icon_state = "abed"
},
/obj/item/toy/deck,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
"tr" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/template_noop)
"tB" = (
/obj/structure/barricade/metal/wired{
dir = 1;
health = 65
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"tD" = (
/obj/structure/machinery/light/double/blue,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/template_noop)
"tI" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/template_noop)
"tN" = (
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"ux" = (
/obj/structure/sink{
@@ -334,45 +238,32 @@
pixel_x = -12
},
/obj/effect/spawner/random/pills/lowchance,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/template_noop)
"uF" = (
/obj/effect/decal/prints{
pixel_y = 3;
pixel_x = -10
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/template_noop)
"uM" = (
/obj/structure/bed{
icon_state = "abed"
},
/obj/effect/spawner/random/goggles/lowchance,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
"we" = (
/obj/structure/machinery/light/double/blue{
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"wv" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"wy" = (
/obj/structure/surface/table/reinforced/prison,
@@ -387,49 +278,32 @@
/obj/item/implanter{
pixel_x = -4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"xy" = (
/obj/structure/grille,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"yv" = (
/obj/structure/sink{
dir = 4;
pixel_x = 12
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
"zj" = (
/obj/item/stack/sheet/metal{
pixel_y = -9;
pixel_x = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/template_noop)
"zA" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/template_noop)
"zT" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/template_noop)
"Bl" = (
/obj/structure/sink{
@@ -437,17 +311,11 @@
pixel_x = 12
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
"Bx" = (
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/template_noop)
"Dq" = (
/obj/structure/barricade/metal/wired{
@@ -458,70 +326,45 @@
pixel_y = 4;
pixel_x = -10
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"Dt" = (
/obj/structure/bed{
icon_state = "abed"
},
/obj/item/toy/beach_ball/holoball,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
"DE" = (
/obj/structure/toilet{
dir = 4;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/template_noop)
"DV" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/template_noop)
"EQ" = (
/obj/effect/decal/cleanable/blood/gibs/limb,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/template_noop)
"ES" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/template_noop)
"Fc" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/template_noop)
"FP" = (
/obj/structure/barricade/metal/wired{
dir = 4;
health = 55
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"Gy" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"GR" = (
/turf/closed/wall/r_wall/prison_unmeltable{
@@ -531,71 +374,47 @@
/area/template_noop)
"Hf" = (
/obj/effect/decal/cleanable/blood/tracks/footprints,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/template_noop)
"Hp" = (
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/template_noop)
"Hw" = (
/obj/structure/toilet{
dir = 8;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/template_noop)
"HN" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"Id" = (
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"Ig" = (
/obj/structure/machinery/vending/snack/packaged,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"Io" = (
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/prison/floorscorched1,
/area/template_noop)
"Ix" = (
/obj/structure/machinery/door/airlock/prison/horizontal,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"IN" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/north,
/area/template_noop)
"IW" = (
-/turf/open/floor/prison{
- icon_state = "damaged2"
- },
+/turf/open/floor/prison/damaged2,
/area/template_noop)
"Jm" = (
/obj/structure/sink{
@@ -605,38 +424,25 @@
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/blood/gibs,
/obj/effect/landmark/corpsespawner/prisoner,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
"JQ" = (
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southwest,
/area/template_noop)
"Kc" = (
/obj/structure/barricade/metal/wired,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"Kj" = (
/obj/effect/decal/cleanable/blood/gibs/core,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/template_noop)
"KF" = (
-/turf/open/floor/prison{
- icon_state = "damaged3"
- },
+/turf/open/floor/prison/damaged3,
/area/template_noop)
"LM" = (
/turf/closed/wall/prison,
@@ -652,10 +458,7 @@
icon_state = "abed"
},
/obj/item/storage/fancy/crayons,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
"Mo" = (
/obj/structure/window/framed/prison/cell,
@@ -665,30 +468,20 @@
/obj/structure/machinery/light/double/blue{
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"MI" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/core,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"MO" = (
/obj/structure/barricade/metal/wired,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"Nr" = (
/obj/structure/machinery/light/double/blue,
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/template_noop)
"Ns" = (
/obj/structure/surface/table/reinforced/prison,
@@ -703,15 +496,10 @@
/obj/item/restraint/handcuffs{
pixel_x = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"NI" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"Oo" = (
/obj/effect/spawner/gibspawner/human,
@@ -719,96 +507,63 @@
/area/template_noop)
"Pd" = (
/obj/effect/decal/cleanable/blood/tracks/footprints,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/template_noop)
"Pk" = (
/obj/effect/decal/cleanable/spiderling_remains,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
"PS" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"Qc" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/template_noop)
"Qn" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/east,
/area/template_noop)
"QF" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{
icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi'
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "sterile_white"
- },
+/turf/open/floor/prison/sterile_white/southwest,
/area/template_noop)
"QU" = (
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"Sx" = (
/obj/effect/landmark/corpsespawner/ua_riot,
-/turf/open/floor/prison{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/prison/floorscorched2,
/area/template_noop)
"TD" = (
/obj/effect/decal/cleanable/blood/tracks/footprints,
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/template_noop)
"TE" = (
/obj/structure/barricade/metal/wired{
dir = 1;
health = 150
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/template_noop)
"TH" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/prison/platingdmg3,
/area/template_noop)
"VP" = (
/obj/structure/barricade/metal/wired{
dir = 8;
health = 200
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northwest,
/area/template_noop)
"VQ" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/west,
/area/template_noop)
"Wo" = (
/obj/structure/toilet{
@@ -816,10 +571,7 @@
pixel_y = 8
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/northeast,
/area/template_noop)
"Yw" = (
/obj/structure/extinguisher_cabinet,
@@ -830,14 +582,10 @@
dir = 8;
health = 55
},
-/turf/open/floor/prison{
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple,
/area/template_noop)
"YY" = (
-/turf/open/floor/prison{
- icon_state = "platingdmg2"
- },
+/turf/open/floor/prison/platingdmg2,
/area/template_noop)
"Zi" = (
/turf/open/space/basic,
@@ -847,10 +595,7 @@
icon_state = "abed"
},
/obj/item/storage/fancy/cigar/tarbacks,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "whitepurple"
- },
+/turf/open/floor/prison/whitepurple/southeast,
/area/template_noop)
(1,1,1) = {"
diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm
index 408bccfc7eea..55e933cf4d27 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm
@@ -6,35 +6,23 @@
/turf/open/floor/plating/prison,
/area/template_noop)
"h" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/template_noop)
"k" = (
/obj/structure/sign/poster/hero/voteno{
pixel_y = 29
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/template_noop)
"n" = (
/obj/structure/machinery/power/apc,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/template_noop)
"o" = (
/turf/closed/wall/mineral/bone_resin,
/area/template_noop)
"s" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/template_noop)
"t" = (
/obj/structure/filingcabinet{
@@ -46,9 +34,7 @@
pixel_y = 4
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"x" = (
/obj/structure/surface/table/reinforced/prison,
@@ -60,10 +46,7 @@
layer = 2.8;
pixel_y = -7
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/template_noop)
"z" = (
/obj/structure/coatrack,
@@ -77,10 +60,7 @@
pixel_x = -2;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/template_noop)
"D" = (
/obj/structure/closet/secure_closet/freezer/fridge/groceries,
@@ -89,10 +69,7 @@
pixel_x = 10;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/template_noop)
"E" = (
/obj/structure/machinery/photocopier,
@@ -104,9 +81,7 @@
/obj/item/paper{
desc = "The image appears to be someone's backside, the page number is labled as 259."
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"F" = (
/obj/structure/surface/table/reinforced/prison,
@@ -127,10 +102,7 @@
/obj/item/weapon/butterfly{
pixel_x = 17
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/template_noop)
"O" = (
/obj/structure/surface/table/reinforced/prison,
@@ -138,10 +110,7 @@
icon_state = "mwo";
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/template_noop)
"Q" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -154,15 +123,10 @@
/obj/item/storage/firstaid/regular/empty{
pixel_x = 14
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/template_noop)
"T" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"V" = (
/obj/structure/filingcabinet{
@@ -175,9 +139,7 @@
},
/obj/effect/landmark/objective_landmark/close,
/obj/item/pamphlet/engineer,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"X" = (
/obj/structure/closet/secure_closet/engineering_electrical,
@@ -188,10 +150,7 @@
},
/obj/effect/landmark/objective_landmark/medium,
/obj/item/storage/backpack/marine/engineerpack/satchel,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/template_noop)
"Z" = (
/obj/structure/surface/table/reinforced/prison,
@@ -202,10 +161,7 @@
/obj/item/book/manual/engineering_guide{
pixel_x = -4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/template_noop)
(1,1,1) = {"
diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm
index 101db372897e..8b840ec4ec8c 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm
@@ -1,16 +1,11 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/obj/structure/kitchenspike,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"b" = (
/obj/structure/closet/secure_closet/freezer/fridge/full,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/template_noop)
"c" = (
/obj/structure/surface/table/reinforced/prison,
@@ -26,9 +21,7 @@
pixel_x = -1;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"d" = (
/obj/structure/surface/table/reinforced/prison,
@@ -46,17 +39,12 @@
/area/template_noop)
"e" = (
/obj/effect/decal/cleanable/flour,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/template_noop)
"f" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/chem_dispenser/soda,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"g" = (
/obj/structure/surface/table/reinforced/prison,
@@ -67,9 +55,7 @@
pixel_y = -2
},
/obj/item/tool/kitchen/rollingpin,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"i" = (
/turf/open/space,
@@ -90,10 +76,7 @@
pixel_x = -6;
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/template_noop)
"k" = (
/obj/structure/surface/table/reinforced/prison,
@@ -101,17 +84,13 @@
pixel_y = 32
},
/obj/item/tool/kitchen/knife/butcher,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"l" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/obj/item/reagent_container/food/condiment/enzyme,
/obj/item/reagent_container/food/condiment/enzyme,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"m" = (
/obj/structure/closet/secure_closet/freezer/fridge/full,
@@ -120,15 +99,11 @@
/obj/item/reagent_container/food/snacks/grown/tomato,
/obj/item/reagent_container/food/snacks/grown/tomato,
/obj/item/reagent_container/food/snacks/grown/tomato,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"o" = (
/obj/effect/landmark/corpsespawner/pizza/burst,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"p" = (
/obj/structure/surface/table/reinforced/prison,
@@ -157,32 +132,21 @@
pixel_y = -16;
pixel_x = 9
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"r" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/template_noop)
"s" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname,
/turf/open/floor/plating/prison,
/area/template_noop)
"t" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/template_noop)
"u" = (
/obj/effect/decal/cleanable/flour,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/template_noop)
"v" = (
/obj/structure/window/framed/prison,
@@ -197,9 +161,7 @@
pixel_y = 10
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"y" = (
/obj/structure/closet/crate/freezer,
@@ -208,18 +170,13 @@
/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita,
/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita,
/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"z" = (
/turf/closed/wall/prison,
/area/template_noop)
"A" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/template_noop)
"B" = (
/obj/structure/surface/table/reinforced/prison,
@@ -232,9 +189,7 @@
pixel_x = 12;
pixel_y = -2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"C" = (
/obj/structure/surface/table/reinforced/prison,
@@ -250,23 +205,16 @@
/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"D" = (
/obj/item/stool,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/template_noop)
"E" = (
/obj/structure/machinery/gibber,
/obj/effect/decal/cleanable/egg_smudge,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"G" = (
/obj/structure/surface/table/reinforced/prison,
@@ -293,44 +241,30 @@
/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza,
/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza,
/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"I" = (
/obj/effect/decal/cleanable/egg_smudge,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"K" = (
/obj/structure/closet/secure_closet/freezer/fridge/full,
/obj/item/weapon/pizza_cutter,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"L" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"M" = (
/obj/structure/sign/safety/fridge,
/turf/closed/wall/prison,
/area/template_noop)
"N" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/template_noop)
"O" = (
/obj/item/card/id/pizza,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/template_noop)
"P" = (
/obj/structure/lattice,
@@ -342,9 +276,7 @@
pixel_x = 1;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"S" = (
/obj/effect/decal/cleanable/blood/writing{
@@ -362,9 +294,7 @@
pixel_y = 2
},
/obj/effect/decal/cleanable/flour,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/template_noop)
"T" = (
/turf/closed/wall/r_wall/prison_unmeltable,
@@ -383,15 +313,11 @@
/turf/open/floor/plating/prison,
/area/template_noop)
"X" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"Y" = (
/obj/structure/closet/secure_closet/freezer/fridge/full,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/template_noop)
(1,1,1) = {"
diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm
index 6cda425f51b0..bba4398e4d95 100644
--- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm
@@ -26,9 +26,7 @@
/turf/open/space/basic,
/area/template_noop)
"e" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/template_noop)
"f" = (
/obj/item/stack/sandbags_empty/half,
@@ -119,10 +117,7 @@
/area/template_noop)
"y" = (
/obj/item/stack/sandbags_empty/half,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/template_noop)
"z" = (
/obj/structure/platform/kutjevo/smooth{
@@ -141,11 +136,6 @@
},
/turf/open/space,
/area/template_noop)
-"C" = (
-/obj/structure/window/framed/prison/reinforced/hull,
-/obj/structure/window/framed/prison/reinforced/hull,
-/turf/open/floor/plating/prison,
-/area/template_noop)
"D" = (
/obj/item/trash/used_stasis_bag{
desc = "Wow, instant sand. They really have everything in space.";
@@ -165,10 +155,7 @@
/turf/open/floor/plating/prison,
/area/template_noop)
"G" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/north,
/area/template_noop)
"H" = (
/obj/structure/reagent_dispensers/fueltank/oxygentank,
@@ -198,21 +185,14 @@
/turf/open/space,
/area/template_noop)
"L" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/west,
/area/template_noop)
"M" = (
/obj/structure/platform/kutjevo/smooth,
/turf/open/space,
/area/template_noop)
"N" = (
-/turf/open/floor{
- desc = "A sophisticated device that captures and converts light from the system's star into energy for the station.";
- icon_state = "solarpanel";
- name = "solarpanel"
- },
+/turf/open/floor/solarpanel,
/area/template_noop)
"O" = (
/obj/structure/platform/kutjevo/smooth,
@@ -239,9 +219,7 @@
/area/template_noop)
"T" = (
/obj/item/stack/sandbags_empty/half,
-/turf/open/floor/prison{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2,
/area/template_noop)
"U" = (
/obj/item/stack/sheet/metal,
@@ -261,10 +239,7 @@
/turf/open/floor/almayer_hull,
/area/template_noop)
"X" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/prison/darkyellow2/northwest,
/area/template_noop)
"Y" = (
/obj/structure/platform/kutjevo/smooth{
@@ -284,7 +259,7 @@
(1,1,1) = {"
x
-C
+F
F
F
F
diff --git a/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm b/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm
index 721ebbc10aed..4cdabb8199c1 100644
--- a/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm
+++ b/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm
@@ -4,15 +4,11 @@
/obj/item/storage/donut_box{
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"aE" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"aK" = (
/obj/item/clothing/under/marine/ua_riot,
@@ -28,9 +24,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"bb" = (
/obj/structure/stairs/perspective{
@@ -38,23 +32,17 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"bl" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"bm" = (
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"bC" = (
/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control,
@@ -65,9 +53,7 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"ce" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -77,9 +63,7 @@
/obj/structure/barricade/deployable{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"cn" = (
/obj/structure/surface/table/reinforced/prison,
@@ -87,15 +71,11 @@
dir = 8
},
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"co" = (
/obj/structure/prop/almayer/computers/sensor_computer3,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"cr" = (
/obj/structure/sign/poster/clf,
@@ -103,25 +83,18 @@
/area/fiorina/station/security)
"cI" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/security)
"cZ" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"do" = (
/obj/structure/coatrack,
/obj/item/clothing/suit/storage/CMB,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"dT" = (
/obj/structure/surface/table/reinforced/prison,
@@ -131,9 +104,7 @@
/obj/structure/machinery/computer/cameras{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"eK" = (
/obj/structure/window/framed/prison/reinforced/hull,
@@ -145,9 +116,7 @@
/area/fiorina/station/security)
"fh" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"fs" = (
/obj/structure/window/reinforced{
@@ -162,17 +131,13 @@
/area/fiorina/station/security)
"fy" = (
/obj/item/explosive/grenade/flashbang,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"fX" = (
/obj/structure/machinery/photocopier{
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"fZ" = (
/obj/item/ammo_magazine/rifle/m16,
@@ -187,15 +152,11 @@
/obj/item/reagent_container/glass/bottle/robot/antitoxin,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"gl" = (
/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"gI" = (
/obj/structure/surface/table/reinforced/prison,
@@ -204,9 +165,7 @@
pixel_y = 7
},
/obj/item/tool/pen,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"gT" = (
/obj/structure/surface/table/reinforced/prison,
@@ -224,21 +183,15 @@
/area/fiorina/station/security)
"hg" = (
/obj/effect/landmark/corpsespawner/security/marshal,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"hI" = (
/obj/item/stack/folding_barricade,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"hY" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"is" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -249,9 +202,7 @@
"iK" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"jb" = (
/obj/structure/surface/table/reinforced/prison,
@@ -259,49 +210,34 @@
pixel_x = -3;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ji" = (
/obj/item/device/flash,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"jI" = (
/obj/item/tool/crowbar/red,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"jJ" = (
/obj/item/clothing/head/helmet/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"jL" = (
/obj/structure/barricade/deployable{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/lz/near_lzII)
"jW" = (
/obj/item/frame/table/almayer,
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"ke" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"kX" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -314,22 +250,14 @@
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"lv" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/security)
"lA" = (
/obj/item/stack/folding_barricade,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/lz/near_lzII)
"lE" = (
/obj/structure/window/reinforced,
@@ -343,10 +271,7 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/lz/near_lzII)
"lP" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -355,33 +280,25 @@
/obj/item/storage/box/pillbottles,
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"lR" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"lZ" = (
/obj/item/clothing/under/marine/ua_riot,
/obj/item/weapon/gun/rifle/m16,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"ma" = (
/obj/structure/stairs/perspective{
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"mf" = (
/obj/structure/window/reinforced{
@@ -392,9 +309,7 @@
/area/fiorina/station/security)
"mn" = (
/obj/structure/prop/almayer/computers/sensor_computer2,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"mt" = (
/obj/effect/spawner/random/gun/shotgun/midchance,
@@ -406,16 +321,12 @@
dir = 1;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"nf" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/box/nade_box/tear_gas,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"nl" = (
/turf/template_noop,
@@ -429,22 +340,16 @@
"nD" = (
/obj/structure/platform,
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"nN" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"oi" = (
/obj/structure/machinery/door/airlock/prison_hatch/autoname{
locked = 1
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"on" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -452,26 +357,20 @@
},
/obj/item/weapon/gun/launcher/grenade/m81,
/obj/item/storage/pill_bottle/kelotane,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"oE" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/recharger{
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"oS" = (
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"pa" = (
/obj/structure/filingcabinet{
@@ -484,15 +383,11 @@
pixel_x = -7;
pixel_y = 11
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"pd" = (
/obj/item/ammo_magazine/handful/shotgun/beanbag,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"pn" = (
/obj/effect/acid_hole,
@@ -508,9 +403,7 @@
/area/fiorina/station/security)
"pN" = (
/obj/item/ammo_box/magazine/shotgun/beanbag,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"pR" = (
/obj/structure/surface/table/reinforced/prison,
@@ -523,23 +416,17 @@
"pV" = (
/obj/effect/landmark/corpsespawner/prisoner,
/obj/item/tool/kitchen/utensil/knife,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"qd" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"qw" = (
/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"qQ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -548,9 +435,7 @@
pixel_x = 3;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"qX" = (
/obj/structure/surface/table/reinforced/prison,
@@ -561,9 +446,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"qY" = (
/obj/structure/surface/table/reinforced/prison,
@@ -579,9 +462,7 @@
/area/fiorina/lz/near_lzII)
"rg" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"rl" = (
/obj/item/tool/weldingtool,
@@ -603,24 +484,18 @@
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"sj" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"sq" = (
/turf/open/floor/prison,
/area/fiorina/station/security)
"sA" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"tf" = (
/obj/item/prop/helmetgarb/riot_shield,
@@ -632,18 +507,13 @@
/area/fiorina/station/security)
"tl" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/fiorina/station/security)
"tv" = (
/obj/structure/machinery/photocopier{
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"ty" = (
/obj/structure/machinery/power/apc{
@@ -657,31 +527,22 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"uh" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/flash,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"uQ" = (
/turf/open/floor/prison,
/area/fiorina/lz/near_lzII)
"uX" = (
/obj/item/ammo_magazine/shotgun/beanbag,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"vf" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/fiorina/lz/near_lzII)
"vq" = (
/turf/closed/wall/r_wall/prison,
@@ -691,9 +552,7 @@
/obj/structure/filingcabinet{
pixel_x = 16
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"wi" = (
/obj/structure/machinery/vending/snack,
@@ -708,9 +567,7 @@
/obj/structure/machinery/computer/secure_data{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"wH" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -733,9 +590,7 @@
icon_state = "pottedplant_29";
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"xv" = (
/obj/structure/surface/table/reinforced/prison,
@@ -743,15 +598,11 @@
pixel_x = 3;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"xI" = (
/obj/effect/landmark/survivor_spawner/fiorina_armory_cmb,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"xM" = (
/obj/structure/surface/table/reinforced/prison,
@@ -767,30 +618,21 @@
pixel_y = 16
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"xW" = (
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"yf" = (
/obj/item/frame/table/reinforced,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"yn" = (
/obj/item/weapon/classic_baton,
/turf/open/floor/prison,
/area/fiorina/lz/near_lzII)
"yv" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/lz/near_lzII)
"yP" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -799,16 +641,12 @@
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"zb" = (
/obj/structure/machinery/light/double/blue,
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"zx" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -816,9 +654,7 @@
dir = 8
},
/obj/item/ammo_magazine/shotgun/beanbag,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"zA" = (
/obj/structure/surface/table/reinforced/prison,
@@ -826,9 +662,7 @@
icon_state = "pottedplant_29";
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"zI" = (
/obj/structure/machinery/computer/secure_data,
@@ -840,23 +674,17 @@
/area/fiorina/station/security)
"Ac" = (
/obj/structure/window/framed/prison/reinforced,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Ai" = (
/obj/structure/bed/sofa/south/grey/left,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"AD" = (
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib3"
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"AM" = (
/obj/structure/surface/table/reinforced/prison,
@@ -872,9 +700,7 @@
pixel_x = 3;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"AY" = (
/obj/structure/surface/table/reinforced/prison,
@@ -889,9 +715,7 @@
pixel_x = 9;
pixel_y = -10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"Bd" = (
/obj/structure/barricade/handrail{
@@ -910,17 +734,13 @@
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Cb" = (
/obj/structure/barricade/deployable{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"CO" = (
/obj/item/ammo_magazine/handful/shotgun/beanbag,
@@ -931,9 +751,7 @@
/obj/item/phone{
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"DH" = (
/obj/structure/surface/table/reinforced/prison,
@@ -943,9 +761,7 @@
/obj/structure/machinery/computer/cameras{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"Ek" = (
/obj/item/reagent_container/food/drinks/coffeecup{
@@ -960,15 +776,11 @@
/area/fiorina/station/security)
"ER" = (
/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"EV" = (
/obj/item/frame/rack,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Fj" = (
/obj/structure/stairs/perspective{
@@ -989,17 +801,13 @@
/turf/open/floor/prison,
/area/fiorina/station/security)
"FH" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"FK" = (
/obj/item/frame/rack,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"FQ" = (
/obj/effect/landmark/corpsespawner/ua_riot,
@@ -1020,14 +828,10 @@
/obj/item/clothing/under/marine/ua_riot,
/obj/item/storage/pill_bottle/alkysine,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Gl" = (
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"GH" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1042,15 +846,11 @@
pixel_y = 10
},
/obj/item/tool/pen,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"GZ" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Ho" = (
/obj/structure/window_frame/prison/reinforced,
@@ -1061,9 +861,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/spray/pepper,
/obj/item/clothing/glasses/sunglasses/sechud,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"HH" = (
/obj/item/weapon/gun/launcher/grenade/m81/riot,
@@ -1072,10 +870,7 @@
"HL" = (
/obj/item/clothing/under/color/orange,
/obj/effect/spawner/gibspawner/human,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/fiorina/lz/near_lzII)
"HW" = (
/obj/structure/machinery/computer/cameras{
@@ -1085,9 +880,7 @@
pixel_x = 5;
pixel_y = -4
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Ie" = (
/obj/structure/stairs/perspective{
@@ -1102,9 +895,7 @@
dir = 8
},
/obj/item/storage/box/flashbangs,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"IG" = (
/obj/structure/extinguisher_cabinet,
@@ -1112,22 +903,15 @@
/area/fiorina/station/security)
"IK" = (
/obj/item/clothing/head/helmet/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/lz/near_lzII)
"JR" = (
/obj/item/ammo_casing,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Kb" = (
/obj/item/weapon/baton,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"KU" = (
/obj/item/shard{
@@ -1140,9 +924,7 @@
/obj/structure/machinery/computer/cameras{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"Mg" = (
/obj/structure/sign/poster/clf,
@@ -1153,9 +935,7 @@
pixel_y = 30
},
/obj/item/explosive/grenade/custom/teargas,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"MX" = (
/obj/item/stack/sheet/metal,
@@ -1170,36 +950,25 @@
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"NL" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/fiorina/station/security)
"NN" = (
/obj/item/ammo_magazine/rifle/m16,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"Ox" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"OA" = (
/obj/item/implanter/compressed,
/obj/structure/safe,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"OE" = (
/obj/structure/machinery/vending/cola,
@@ -1212,9 +981,7 @@
/area/fiorina/lz/near_lzII)
"Pt" = (
/obj/item/prop/helmetgarb/riot_shield,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"PA" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -1229,17 +996,13 @@
/area/fiorina/station/security)
"QC" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"QF" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"QJ" = (
/turf/closed/wall/prison,
@@ -1247,32 +1010,24 @@
"QV" = (
/obj/item/frame/rack,
/obj/item/clothing/under/marine/ua_riot,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Re" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/recharger{
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"RR" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/fancy/cigarettes/emeraldgreen,
/obj/item/tool/lighter,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Sd" = (
/obj/item/poster,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"Sl" = (
/obj/structure/extinguisher_cabinet,
@@ -1280,17 +1035,13 @@
/area/fiorina/station/security)
"Sm" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"Sn" = (
/obj/structure/prop/almayer/computers/sensor_computer1{
name = "computer"
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/fiorina/station/security)
"Sp" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1306,9 +1057,7 @@
"Su" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/stack/rods,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"SD" = (
/obj/structure/machinery/vending/coffee,
@@ -1329,9 +1078,7 @@
/area/fiorina/station/security)
"Tp" = (
/obj/item/paper/crumpled,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"TO" = (
/obj/item/stack/tile/plasteel,
@@ -1342,37 +1089,27 @@
/obj/structure/machinery/computer/cameras{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"UU" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/ammo_magazine/rifle/m16,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Va" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Vb" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"Vd" = (
/obj/effect/decal/cleanable/blood{
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"Vs" = (
/obj/structure/closet/secure_closet/guncabinet{
@@ -1380,9 +1117,7 @@
},
/obj/item/clothing/under/marine/ua_riot,
/obj/item/clothing/suit/storage/marine/veteran/ua_riot,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"VF" = (
/turf/closed/wall/prison,
@@ -1390,9 +1125,7 @@
"VG" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/goggles/lowchance,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Wc" = (
/obj/structure/machinery/light/double/blue{
@@ -1407,21 +1140,15 @@
dir = 4
},
/obj/item/weapon/classic_baton,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Ws" = (
/obj/structure/bed/sofa/south/grey/right,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Wy" = (
/obj/item/weapon/shield/riot,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"WB" = (
/obj/structure/bed/chair/office/light{
@@ -1431,9 +1158,7 @@
/area/fiorina/station/security)
"WG" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"WI" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1447,15 +1172,11 @@
/obj/item/phone{
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"WW" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"Xj" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1475,9 +1196,7 @@
dir = 1;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"XA" = (
/obj/item/storage/belt/marine,
@@ -1487,27 +1206,20 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/lz/near_lzII)
"XV" = (
/turf/closed/wall/r_wall/prison_unmeltable,
/area/fiorina/station/security)
"Yt" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/fiorina/station/security)
"YH" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/item/weapon/gun/energy/taser,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/fiorina/station/security)
"YI" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1519,9 +1231,7 @@
pixel_x = 6;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"YL" = (
/obj/structure/window/framed/prison/reinforced,
@@ -1537,9 +1247,7 @@
/obj/structure/sign/nosmoking_1{
pixel_y = 30
},
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"YZ" = (
/obj/effect/landmark/corpsespawner/prisoner,
@@ -1547,9 +1255,7 @@
dir = 8
},
/obj/item/shard/shrapnel,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
"Zg" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1562,16 +1268,11 @@
"Zi" = (
/obj/structure/machinery/line_nexter,
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/prison/red/west,
/area/fiorina/station/security)
"Zo" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "redfull"
- },
+/turf/open/floor/prison/redfull,
/area/fiorina/station/security)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm
index 5326d72de2a8..80342068f6e6 100644
--- a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm
+++ b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm
@@ -93,25 +93,16 @@
/turf/open/ice,
/area/ice_colony/exterior/surface/valley/northwest)
"aau" = (
-/turf/open/floor/plating/icefloor{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northwest,
/area/ice_colony/exterior/surface/landing_pad2)
"aav" = (
/obj/structure/barricade/metal{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/exterior/surface/landing_pad2)
"aaw" = (
-/turf/open/floor/plating/icefloor{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northeast,
/area/ice_colony/exterior/surface/landing_pad2)
"aax" = (
/turf/open/auto_turf/snow/layer2,
@@ -165,10 +156,7 @@
/obj/structure/barricade/metal{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/exterior/surface/landing_pad2)
"aaL" = (
/obj/structure/machinery/colony_floodlight,
@@ -179,19 +167,13 @@
/area/ice_colony/exterior/surface/landing_pad2)
"aaN" = (
/obj/structure/fence,
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/exterior/surface/landing_pad2)
"aaO" = (
/obj/structure/barricade/metal{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/exterior/surface/landing_pad2)
"aaP" = (
/turf/closed/ice/corner{
@@ -225,16 +207,10 @@
},
/area/ice_colony/exterior/surface/cliff)
"aaV" = (
-/turf/open/floor/plating/icefloor{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southwest,
/area/ice_colony/exterior/surface/landing_pad2)
"aaW" = (
-/turf/open/floor/plating/icefloor{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southeast,
/area/ice_colony/exterior/surface/landing_pad2)
"aaX" = (
/turf/closed/ice/end{
@@ -314,10 +290,7 @@
/area/ice_colony/exterior/surface/cliff)
"abo" = (
/obj/structure/fence,
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/exterior/surface/landing_pad2)
"abp" = (
/turf/closed/wall{
@@ -336,10 +309,7 @@
/area/ice_colony/exterior/surface/landing_pad2)
"abs" = (
/obj/structure/fence,
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/exterior/surface/landing_pad2)
"abt" = (
/obj/structure/ice/thin/straight{
@@ -627,16 +597,10 @@
/area/ice_colony/exterior/surface/valley/northwest)
"acF" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/access/freight,
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/surface/requesitions)
"acG" = (
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/surface/requesitions)
"acH" = (
/obj/structure/machinery/light,
@@ -653,24 +617,15 @@
/obj/item/tool/extinguisher/mini,
/obj/item/circuitboard/airlock,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering/electric)
"acK" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering/electric)
"acL" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering/electric)
"acM" = (
/obj/structure/surface/table,
@@ -679,10 +634,7 @@
},
/obj/item/storage/toolbox/emergency,
/obj/item/circuitboard/firealarm,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering/electric)
"acN" = (
/obj/structure/surface/table,
@@ -691,10 +643,7 @@
/obj/item/device/assembly/igniter,
/obj/item/device/assembly/signaller,
/obj/item/circuitboard/airlock,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering/electric)
"acO" = (
/obj/structure/tunnel{
@@ -706,10 +655,7 @@
/obj/structure/surface/table,
/obj/item/device/assembly/infra,
/obj/item/device/assembly/voice,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/engineering/electric)
"acQ" = (
/obj/structure/ice/thin/end{
@@ -754,28 +700,18 @@
/turf/open/floor/plating/icefloor,
/area/ice_colony/surface/requesitions)
"acW" = (
-/turf/open/floor/plating/icefloor{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southwest,
/area/ice_colony/surface/requesitions)
"acX" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/surface/requesitions)
"acY" = (
/obj/effect/landmark/corpsespawner/miner,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/surface/requesitions)
"acZ" = (
-/turf/open/floor/plating/icefloor{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southeast,
/area/ice_colony/surface/requesitions)
"ada" = (
/obj/item/lightstick/planted,
@@ -804,36 +740,22 @@
/obj/item/explosive/grenade/custom/metal_foam,
/obj/item/explosive/grenade/custom/metal_foam,
/obj/item/device/flashlight,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering/electric)
"adf" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/ice_colony/surface/engineering/electric)
"adg" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/electric)
"adh" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/ice_colony/surface/engineering/electric)
"adi" = (
/obj/structure/surface/table,
/obj/item/storage/box/lights/mixed,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/engineering/electric)
"adj" = (
/turf/open/ice,
@@ -855,9 +777,7 @@
/obj/structure/shuttle/diagonal{
icon_state = "heater"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"ado" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -881,34 +801,25 @@
/turf/open/ice,
/area/ice_colony/exterior/surface/clearing/north)
"ads" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/engineering/electric)
"adt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/electric)
"adu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/electric)
"adv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/electric)
"adw" = (
/obj/structure/shuttle/diagonal{
@@ -917,15 +828,11 @@
/obj/structure/shuttle/diagonal{
icon_state = "heater"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"adx" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/electric)
"ady" = (
/obj/structure/surface/table,
@@ -935,10 +842,7 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/engineering/electric)
"adz" = (
/obj/structure/ice/thin/corner{
@@ -976,16 +880,10 @@
name = "Storage Unit Control";
pixel_x = -24
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/surface/requesitions)
"adF" = (
-/turf/open/floor/plating/icefloor{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northeast,
/area/ice_colony/surface/requesitions)
"adG" = (
/obj/structure/shuttle/diagonal{
@@ -995,9 +893,7 @@
dir = 1;
icon_state = "platform"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"adH" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -1005,10 +901,7 @@
/turf/open/floor/plating/icefloor,
/area/ice_colony/surface/requesitions)
"adI" = (
-/turf/open/floor/plating/icefloor{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northwest,
/area/ice_colony/surface/requesitions)
"adJ" = (
/obj/structure/machinery/conveyor{
@@ -1018,10 +911,7 @@
name = "Storage Unit Control";
pixel_x = 24
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/surface/requesitions)
"adK" = (
/obj/structure/machinery/door_control{
@@ -1048,52 +938,35 @@
/obj/structure/surface/table,
/obj/item/tool/crowbar/red,
/obj/item/device/flash,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/engineering/electric)
"adO" = (
/obj/structure/surface/table,
/obj/item/device/flashlight/flare,
/obj/item/device/radio,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/engineering/electric)
"adP" = (
/obj/structure/surface/table,
/obj/item/device/assembly/prox_sensor,
/obj/item/device/assembly/timer,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering/electric)
"adQ" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/engineering/electric)
"adR" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/electric)
"adS" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/engineering/electric)
"adT" = (
/obj/structure/surface/table,
/obj/item/storage/box/lightstick,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/engineering/electric)
"adU" = (
/obj/structure/ice/thin/end,
@@ -1135,10 +1008,7 @@
/turf/open/floor/plating/icefloor,
/area/ice_colony/surface/requesitions)
"aea" = (
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/surface/requesitions)
"aeb" = (
/turf/closed/ice_rock/singlePart,
@@ -1159,9 +1029,7 @@
name = "\improper Colony Engineering Electric Storage";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/electric)
"aeg" = (
/turf/closed/wall,
@@ -1183,17 +1051,13 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/surface/requesitions)
"ael" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/surface/requesitions)
"aem" = (
/turf/open/auto_turf/snow/layer1,
@@ -1208,10 +1072,7 @@
/obj/effect/spawner/random/technology_scanner,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering/tool)
"aeo" = (
/obj/structure/surface/table,
@@ -1223,19 +1084,13 @@
start_charge = 0
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering/tool)
"aep" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering/tool)
"aeq" = (
/obj/structure/surface/rack,
@@ -1246,10 +1101,7 @@
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/engineering/tool)
"aer" = (
/obj/structure/window/framed/colony,
@@ -1257,40 +1109,26 @@
/area/ice_colony/surface/engineering/tool)
"aes" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering)
"aet" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"aeu" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/engineering)
"aev" = (
/obj/structure/surface/table,
/obj/item/stack/medical/ointment,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering/generator)
"aew" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/engineering/generator)
"aey" = (
/obj/item/lightstick/planted,
@@ -1299,10 +1137,7 @@
"aez" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/engineering/generator)
"aeA" = (
/obj/effect/landmark/monkey_spawn,
@@ -1367,32 +1202,22 @@
/area/ice_colony/surface/engineering)
"aeL" = (
/obj/structure/dispenser,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering/tool)
"aeM" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/ice_colony/surface/engineering/tool)
"aeN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/tool)
"aeO" = (
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/ice_colony/surface/engineering/tool)
"aeP" = (
/obj/structure/surface/rack,
@@ -1403,43 +1228,26 @@
/obj/item/storage/belt/utility,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/engineering/tool)
"aeQ" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/engineering)
"aeR" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/engineering)
"aeS" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/engineering/generator)
"aeT" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/ice_colony/surface/engineering/generator)
"aeU" = (
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/ice_colony/surface/engineering/generator)
"aeV" = (
/obj/structure/shuttle/diagonal{
@@ -1449,15 +1257,10 @@
dir = 1;
icon_state = "platform"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aeW" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/ice_colony/surface/engineering/generator)
"aeX" = (
/obj/structure/surface/table,
@@ -1465,10 +1268,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/engineering/generator)
"aeY" = (
/obj/vehicle/train/cargo/trolley,
@@ -1520,10 +1320,7 @@
id = "engineering_ladder";
pixel_y = 16
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering)
"afh" = (
/obj/structure/ladder{
@@ -1532,85 +1329,56 @@
id = "engineering_ladder1";
pixel_y = 16
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering)
"afi" = (
/obj/structure/surface/table/reinforced,
/obj/item/stack/medical/bruise_pack,
/obj/item/cell,
/obj/item/clothing/gloves/yellow,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/engineering)
"afj" = (
/obj/structure/surface/table,
/obj/item/cell/high/empty,
/obj/structure/machinery/cell_charger,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/engineering/tool)
"afk" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/engineering/tool)
"afl" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/tool)
"afm" = (
/obj/structure/surface/rack,
/obj/item/stack/cable_coil,
/obj/item/storage/box/engineer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/engineering/tool)
"afn" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/engineering)
"afo" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"afp" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Colony Engineering Generator Room"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/generator)
"afq" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/generator)
"afr" = (
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/ice_colony/surface/engineering/generator)
"afs" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/engineering/generator)
"aft" = (
/obj/structure/shuttle/diagonal{
@@ -1620,23 +1388,15 @@
dir = 1;
icon_state = "platform"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"afu" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/ice_colony/surface/engineering/generator)
"afv" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/engineering/generator)
"afw" = (
/obj/structure/ice/ice_rock/cornerOverlay{
@@ -1662,22 +1422,13 @@
},
/obj/item/cell,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering)
"afA" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/ice_colony/surface/engineering)
"afB" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/engineering)
"afC" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -1685,42 +1436,28 @@
dir = 1;
name = "\improper Colony Engineering Tool Storage"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/tool)
"afD" = (
/obj/structure/closet/firecloset,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering)
"afE" = (
/obj/effect/decal/cleanable/blood/drip{
icon_state = "3"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/ice_colony/surface/engineering)
"afF" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/engineering)
"afG" = (
/obj/structure/window/framed/colony,
/turf/open/floor/plating,
/area/ice_colony/surface/engineering/generator)
"afH" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/engineering/generator)
"afI" = (
/obj/structure/shuttle/diagonal{
@@ -1730,9 +1467,7 @@
dir = 1;
icon_state = "platform"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"afJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1752,10 +1487,7 @@
pixel_x = -5;
pixel_y = -5
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/engineering/generator)
"afM" = (
/obj/item/storage/toolbox/emergency,
@@ -1791,18 +1523,13 @@
},
/obj/item/stack/cable_coil,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/engineering)
"afS" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"afT" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1811,9 +1538,7 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Colony Engineering Material Storage"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"afU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1822,9 +1547,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"afV" = (
/obj/structure/machinery/power/apc{
@@ -1835,18 +1558,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering)
"afW" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"afX" = (
/obj/structure/machinery/light{
@@ -1855,25 +1573,17 @@
/obj/structure/closet/fireaxecabinet{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering)
"afY" = (
/obj/structure/machinery/light_switch{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering)
"afZ" = (
/obj/item/weapon/gun/pistol/highpower,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"aga" = (
/obj/effect/decal/cleanable/blood,
@@ -1882,17 +1592,12 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"agb" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/engineering/generator)
"agc" = (
/obj/item/stack/sheet/mineral/phoron,
@@ -1907,14 +1612,10 @@
"age" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/cans/thirteenloko,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/engineering/electric)
"agf" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/engineering)
"agg" = (
/obj/structure/closet/secure_closet/engineering_electrical,
@@ -1922,16 +1623,11 @@
/obj/item/circuitboard/apc,
/obj/item/circuitboard/apc,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/engineering)
"agh" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/engineering)
"agi" = (
/turf/closed/wall,
@@ -1946,32 +1642,23 @@
/area/ice_colony/exterior/surface/valley/northwest)
"agl" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"agm" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"agn" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"ago" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/engineering)
"agp" = (
/obj/structure/window/framed/colony,
@@ -1984,27 +1671,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/engineering/generator)
"agr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/engineering/generator)
"agt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/ice_colony/surface/engineering/generator)
"agu" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2016,16 +1695,11 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering/generator)
"agw" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering/generator)
"agx" = (
/obj/structure/ice/ice_rock/cornerOverlay,
@@ -2066,18 +1740,13 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/engineering)
"agE" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"agF" = (
/obj/structure/bed/chair{
@@ -2087,9 +1756,7 @@
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"agG" = (
/obj/structure/surface/table,
@@ -2099,9 +1766,7 @@
icon_state = "pipe-c"
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"agH" = (
/obj/structure/surface/table/reinforced,
@@ -2112,42 +1777,29 @@
amount = 15
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/engineering)
"agI" = (
/obj/structure/surface/table,
/obj/item/tool/wrench,
/obj/item/tool/screwdriver,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"agJ" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"agK" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/engineering)
"agL" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/underground/hallway/north_west)
"agM" = (
/obj/structure/surface/table,
@@ -2156,10 +1808,7 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/engineering/generator)
"agN" = (
/turf/closed/wall/r_wall,
@@ -2207,28 +1856,19 @@
/obj/structure/surface/rack,
/obj/item/storage/toolbox/electrical,
/obj/item/storage/toolbox/electrical,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering)
"agZ" = (
/obj/structure/closet/radiation,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering)
"aha" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/mechanical,
/obj/item/storage/toolbox/mechanical,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/engineering)
"ahb" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2241,26 +1881,20 @@
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"ahd" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/human/burger,
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"ahe" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"ahf" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2295,10 +1929,7 @@
/turf/open/auto_turf/snow/layer3,
/area/ice_colony/exterior/surface/clearing/north)
"ahm" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering/generator)
"ahn" = (
/obj/item/lightstick/planted,
@@ -2314,10 +1945,7 @@
"ahq" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/engineering/generator)
"ahr" = (
/obj/structure/surface/table/reinforced,
@@ -2326,28 +1954,19 @@
pixel_x = 4;
pixel_y = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/substation/smes)
"ahs" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{
req_access_txt = "102"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/substation/smes)
"aht" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
req_access_txt = "102"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/substation/smes)
"ahu" = (
/obj/structure/ladder{
@@ -2355,10 +1974,7 @@
icon_state = "ladderdown";
id = "power_storage_ladder1"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/substation/smes)
"ahv" = (
/obj/structure/ladder{
@@ -2366,10 +1982,7 @@
icon_state = "ladderdown";
id = "power_storage_ladder"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/substation/smes)
"ahw" = (
/turf/closed/wall,
@@ -2378,44 +1991,30 @@
/obj/structure/machinery/power/smes/buildable{
name = "colony distribution SMES"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/substation/smes)
"ahy" = (
/obj/structure/machinery/power/terminal{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/substation/smes)
"ahz" = (
/obj/structure/machinery/power/smes/buildable{
name = "colony distribution SMES"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/substation/smes)
"ahA" = (
/turf/open/auto_turf/snow/layer3,
/area/ice_colony/exterior/surface/valley/west)
"ahB" = (
/obj/structure/barricade/metal,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/surface/requesitions)
"ahC" = (
/obj/structure/barricade/metal,
-/turf/open/floor/plating/icefloor{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southeast,
/area/ice_colony/surface/requesitions)
"ahD" = (
/obj/structure/barricade/metal,
@@ -2423,10 +2022,7 @@
/area/ice_colony/surface/requesitions)
"ahE" = (
/obj/structure/barricade/metal,
-/turf/open/floor/plating/icefloor{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southwest,
/area/ice_colony/surface/requesitions)
"ahG" = (
/turf/closed/wall/r_wall,
@@ -2446,23 +2042,17 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Colony Engineering Locker Room"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"ahL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"ahM" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"ahN" = (
/obj/structure/bed/chair{
@@ -2472,9 +2062,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"ahO" = (
/obj/structure/bed/chair{
@@ -2483,9 +2071,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"ahP" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2497,9 +2083,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/ice_colony/surface/engineering)
"ahR" = (
/obj/structure/disposalpipe/segment{
@@ -2545,45 +2129,28 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/engineering/generator)
"ahW" = (
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/substation/smes)
"ahX" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/ice_colony/surface/substation/smes)
"ahY" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"ahZ" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/substation/smes)
"aia" = (
/obj/structure/machinery/power/terminal{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/substation/smes)
"aib" = (
/obj/structure/disposalpipe/segment{
@@ -2595,10 +2162,7 @@
/turf/open/auto_turf/snow/layer0,
/area/ice_colony/exterior/surface/clearing/north)
"aic" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/ice_colony/surface/substation/smes)
"aid" = (
/obj/structure/disposalpipe/segment{
@@ -2655,75 +2219,48 @@
/area/ice_colony/exterior/surface/cliff)
"ail" = (
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/engineering)
"aim" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/engineering)
"ain" = (
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/engineering)
"aio" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/engineering)
"aip" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/ice_colony/surface/engineering)
"aiq" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"air" = (
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/ice_colony/surface/engineering)
"ais" = (
/obj/structure/disposalpipe/segment,
/turf/open/auto_turf/snow/layer0,
/area/ice_colony/exterior/surface/clearing/north)
"ait" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/engineering)
"aiu" = (
/obj/structure/surface/table,
/obj/item/tool/wrench,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/engineering/generator)
"aiv" = (
/obj/structure/machinery/light,
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/engineering/generator)
"aiw" = (
/obj/structure/disposalpipe/segment{
@@ -2734,18 +2271,12 @@
/area/ice_colony/exterior/surface/clearing/north)
"aix" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/engineering/generator)
"aiy" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/engineering/generator)
"aiz" = (
/obj/structure/disposalpipe/segment{
@@ -2763,10 +2294,7 @@
"aiB" = (
/obj/structure/surface/rack,
/obj/item/cell/high/empty,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/substation/smes)
"aiC" = (
/obj/item/lightstick/red/planted,
@@ -2779,28 +2307,21 @@
pixel_x = 2;
pixel_y = 2
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"aiE" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/wood{
amount = 10
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"aiF" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/wood{
amount = 10
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/substation/smes)
"aiG" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -2814,16 +2335,11 @@
dir = 8
},
/obj/item/storage/toolbox/emergency,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/substation/smes)
"aiI" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"aiJ" = (
/obj/structure/machinery/colony_floodlight,
@@ -2833,10 +2349,7 @@
/obj/structure/machinery/power/terminal{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/substation/smes)
"aiL" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2896,9 +2409,7 @@
dir = 1;
name = "\improper Colony Engineering"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"aiU" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -2914,9 +2425,7 @@
dir = 1;
name = "\improper Colony Engineering Backup Power Storage"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"aiW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2933,47 +2442,31 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/substation/smes)
"aja" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/substation/smes)
"ajb" = (
/obj/structure/surface/table/reinforced,
/obj/item/cell/high/empty,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/substation/smes)
"ajc" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"ajd" = (
/obj/structure/machinery/power/terminal{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/substation/smes)
"aje" = (
/obj/structure/machinery/power/smes/buildable{
name = "colony distribution SMES"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/substation/smes)
"ajf" = (
/obj/item/lightstick/red/planted,
@@ -2994,23 +2487,16 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Hydroponics North Wing Dome"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/north)
"ajm" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/north)
"ajn" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/north)
"ajo" = (
/obj/structure/machinery/light{
@@ -3019,16 +2505,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/north)
"ajp" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/hydroponics/north)
"ajq" = (
/obj/structure/disposalpipe/segment,
@@ -3041,10 +2522,7 @@
pixel_y = 4
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering)
"ajs" = (
/obj/structure/surface/rack,
@@ -3055,10 +2533,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/engineering)
"ajt" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -3070,10 +2545,7 @@
/obj/structure/machinery/power/smes/buildable{
name = "backup power SMES"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/engineering)
"ajv" = (
/obj/structure/machinery/power/terminal{
@@ -3082,27 +2554,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"ajw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering)
"ajx" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering)
"ajy" = (
/obj/structure/machinery/colony_floodlight_switch{
@@ -3111,41 +2575,27 @@
/obj/effect/decal/warning_stripes{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering)
"ajz" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/engineering)
"ajA" = (
/obj/structure/machinery/computer3/powermonitor,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/engineering)
"ajB" = (
/obj/structure/surface/rack,
/obj/item/cell/high/empty,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/substation/smes)
"ajC" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/plasteel{
amount = 15
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"ajD" = (
/obj/structure/surface/rack,
@@ -3154,10 +2604,7 @@
pixel_x = -5;
pixel_y = -5
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/substation/smes)
"ajE" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -3165,9 +2612,7 @@
dir = 1;
name = "\improper Colony Power Substation SMES"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"ajF" = (
/obj/item/disk/botany,
@@ -3175,47 +2620,31 @@
/area/ice_colony/surface/hydroponics/north)
"ajG" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/north)
"ajH" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/north)
"ajI" = (
/obj/structure/fence,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/exterior/surface/landing_pad2)
"ajJ" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/engineering)
"ajK" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"ajL" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/engineering)
"ajM" = (
/obj/item/lightstick/red/planted,
@@ -3226,27 +2655,19 @@
/obj/structure/machinery/power/smes/buildable{
name = "backup power SMES"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/engineering)
"ajO" = (
/obj/structure/machinery/power/terminal{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/ice_colony/surface/engineering)
"ajP" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"ajQ" = (
/turf/open/auto_turf/snow/layer2,
@@ -3263,10 +2684,7 @@
/obj/item/stack/sheet/mineral/phoron{
amount = 50
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/engineering)
"ajU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -3302,10 +2720,7 @@
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/cell_charger,
/obj/item/clothing/mask/rebreather,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/substation/smes)
"ajZ" = (
/obj/structure/fence,
@@ -3324,29 +2739,19 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/substation/smes)
"akc" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/substation/smes)
"akd" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"ake" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/engineering)
"akf" = (
/obj/structure/ice/ice_rock/cornerOverlay{
@@ -3363,9 +2768,7 @@
/area/ice_colony/exterior/surface/valley/northwest)
"akh" = (
/obj/structure/barricade/metal,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/exterior/surface/landing_pad2)
"aki" = (
/obj/structure/surface/rack,
@@ -3373,54 +2776,35 @@
amount = 50
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/engineering)
"akj" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/phoron{
amount = 50
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/engineering)
"akk" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/ice_colony/surface/engineering)
"akl" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/ice_colony/surface/engineering)
"akm" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/engineering/generator)
"akn" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/ice_colony/surface/substation/smes)
"ako" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"akp" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -3430,9 +2814,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"akq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -3441,9 +2823,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"akr" = (
/obj/structure/disposalpipe/junction{
@@ -3459,27 +2839,20 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"akt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/ice_colony/surface/substation/smes)
"aku" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
/obj/structure/machinery/disposal,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/substation/smes)
"akv" = (
/obj/structure/disposalpipe/segment{
@@ -3550,48 +2923,32 @@
/obj/structure/surface/rack,
/obj/item/cell,
/obj/item/cell,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/substation/smes)
"akJ" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/substation/smes)
"akK" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"akL" = (
/obj/structure/machinery/portable_atmospherics/canister/empty,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/substation/smes)
"akM" = (
/obj/structure/machinery/portable_atmospherics/canister/empty,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/substation/smes)
"akN" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/substation/smes)
"akO" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/substation/smes)
"akP" = (
/obj/structure/ice/thin/corner,
@@ -3628,29 +2985,21 @@
pixel_x = 5;
pixel_y = -8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"akV" = (
/obj/structure/curtain/open/shower,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"akW" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"akX" = (
/obj/structure/pipes/vents/pump,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"akY" = (
/obj/structure/machinery/power/apc{
@@ -3658,17 +3007,13 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"akZ" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"ala" = (
/obj/structure/machinery/shower{
@@ -3676,20 +3021,14 @@
pixel_x = 5;
pixel_y = -8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"alb" = (
/obj/structure/curtain/open/shower,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"alc" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"ald" = (
/obj/structure/machinery/power/apc{
@@ -3697,33 +3036,25 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"ale" = (
/obj/structure/pipes/vents/pump,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"alf" = (
/obj/structure/curtain/shower,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"alg" = (
/obj/structure/machinery/shower{
dir = 8
},
/obj/item/tool/soap,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"alh" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -3732,9 +3063,7 @@
dir = 1;
name = "\improper Colony Power Substation"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation/smes)
"ali" = (
/obj/structure/ice/thin/straight,
@@ -3748,15 +3077,11 @@
/area/ice_colony/surface/dorms/restroom_w)
"all" = (
/obj/item/tool/soap,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"alm" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"aln" = (
/obj/effect/landmark/hunter_secondary,
@@ -3772,9 +3097,7 @@
/area/ice_colony/exterior/surface/clearing/north)
"alq" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"alr" = (
/obj/item/shard,
@@ -3789,16 +3112,10 @@
/obj/item/circuitboard/airlock,
/obj/item/circuitboard/airlock,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/substation)
"alu" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/substation)
"alv" = (
/obj/structure/disposalpipe/segment,
@@ -3815,10 +3132,7 @@
"alx" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/airalarm,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/substation)
"aly" = (
/obj/structure/machinery/power/apc{
@@ -3826,34 +3140,22 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/substation)
"alz" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/substation)
"alA" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/apc,
/obj/item/circuitboard/apc,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/substation)
"alB" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/substation)
"alC" = (
/obj/structure/ice/thin/corner,
@@ -3911,10 +3213,7 @@
start_charge = 0
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/hydroponics/north)
"alO" = (
/obj/structure/machinery/shower{
@@ -3924,15 +3223,11 @@
},
/obj/effect/landmark/survivor_spawner,
/obj/item/storage/toolbox/emergency,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"alP" = (
/obj/structure/curtain/shower,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"alQ" = (
/obj/structure/machinery/shower{
@@ -3940,9 +3235,7 @@
},
/obj/effect/landmark/corpsespawner/bridgeofficer,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"alR" = (
/turf/closed/ice_rock/singlePart{
@@ -3955,43 +3248,29 @@
/obj/item/circuitboard/airlock,
/obj/item/circuitboard/airlock,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/substation)
"alT" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation)
"alU" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation)
"alV" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/airalarm,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation)
"alW" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/apc,
/obj/item/circuitboard/apc,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation)
"alX" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/substation)
"alY" = (
/obj/effect/landmark/monkey_spawn,
@@ -4024,56 +3303,40 @@
/area/ice_colony/surface/mining)
"ame" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/north)
"amf" = (
/obj/item/storage/toolbox/emergency,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/north)
"amg" = (
/obj/structure/machinery/vending/hydroseeds,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/hydroponics/north)
"amh" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"ami" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"amj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"amk" = (
/obj/item/tool/soap,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"aml" = (
/obj/item/lightstick/red/planted,
@@ -4115,39 +3378,25 @@
"ams" = (
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/bomb_supply,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/substation/smes)
"amt" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/ice_colony/surface/substation)
"amu" = (
/obj/effect/landmark/hunter_primary,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation)
"amv" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/ice_colony/surface/substation)
"amw" = (
/obj/structure/surface/table/reinforced,
/obj/item/explosive/grenade/custom/metal_foam,
/obj/item/explosive/grenade/custom/metal_foam,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/substation/smes)
"amx" = (
/obj/structure/disposalpipe/segment{
@@ -4178,10 +3427,7 @@
/area/ice_colony/exterior/surface/cliff)
"amD" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/north)
"amE" = (
/obj/structure/disposalpipe/segment,
@@ -4193,17 +3439,12 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/north)
"amG" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/item/tool/soap,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"amH" = (
/obj/structure/disposalpipe/segment{
@@ -4217,9 +3458,7 @@
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"amJ" = (
/obj/structure/disposalpipe/junction{
@@ -4299,24 +3538,16 @@
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/substation)
"amV" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/ice_colony/surface/substation)
"amW" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation)
"amX" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -4324,9 +3555,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation)
"amY" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4335,9 +3564,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation)
"amZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4347,23 +3574,16 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation)
"ana" = (
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/ice_colony/surface/substation)
"anb" = (
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/bomb_supply,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/substation)
"anc" = (
/turf/open/floor,
@@ -4382,9 +3602,7 @@
/area/ice_colony/exterior/surface/valley/west)
"anf" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/north)
"ang" = (
/obj/structure/disposalpipe/segment{
@@ -4394,9 +3612,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/north)
"anh" = (
/obj/structure/disposalpipe/segment{
@@ -4409,9 +3625,7 @@
name = "\improper Hydroponics North Wing Technical Storage";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/north)
"ani" = (
/obj/structure/disposalpipe/segment{
@@ -4421,17 +3635,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/north)
"anj" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/north)
"ank" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
@@ -4442,18 +3652,13 @@
dir = 8;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/north)
"anl" = (
/obj/structure/window/reinforced/tinted{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"anm" = (
/obj/structure/disposalpipe/segment{
@@ -4478,9 +3683,7 @@
/obj/structure/window/reinforced/tinted{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"anr" = (
/obj/structure/disposalpipe/segment{
@@ -4534,28 +3737,19 @@
/area/ice_colony/exterior/surface/valley/southeast)
"any" = (
/obj/structure/dispenser,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/substation)
"anz" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/substation)
"anA" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/substation)
"anB" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/substation)
"anC" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4565,26 +3759,19 @@
/area/ice_colony/exterior/surface/valley/southeast)
"anD" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/substation)
"anE" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
req_access_txt = "102"
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/substation)
"anF" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
req_access_txt = "102"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/substation)
"anG" = (
/obj/effect/landmark/corpsespawner/miner,
@@ -4622,24 +3809,15 @@
/area/ice_colony/exterior/surface/valley/southeast)
"anM" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/north)
"anN" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/north)
"anO" = (
/obj/structure/closet/wardrobe/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/north)
"anP" = (
/obj/structure/toilet{
@@ -4648,17 +3826,13 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"anQ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Toilet Unit"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"anR" = (
/obj/structure/sink{
@@ -4668,9 +3842,7 @@
/obj/structure/mirror{
pixel_x = 24
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"anS" = (
/turf/closed/shuttle/elevator{
@@ -4699,17 +3871,13 @@
/obj/structure/mirror{
pixel_x = -24
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"anY" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Toilet Unit"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"anZ" = (
/obj/structure/toilet{
@@ -4718,9 +3886,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"aoa" = (
/obj/structure/disposalpipe/segment{
@@ -4760,9 +3926,7 @@
dir = 1;
name = "\improper Colony Power Substation"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/substation)
"aof" = (
/obj/structure/disposalpipe/segment{
@@ -4804,10 +3968,7 @@
/area/ice_colony/exterior/surface/valley/west)
"aol" = (
/obj/structure/machinery/vending/hydronutrients,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/hydroponics/north)
"aom" = (
/turf/closed/shuttle/elevator,
@@ -4831,23 +3992,14 @@
/area/shuttle/elevator2/ground)
"aor" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/surface/clinic/treatment)
"aos" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/surface/clinic/treatment)
"aot" = (
/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/surface/clinic/treatment)
"aou" = (
/turf/closed/wall,
@@ -4856,54 +4008,33 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/surface/clinic/treatment)
"aow" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/surface/clinic/treatment)
"aox" = (
/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/surface/clinic/treatment)
"aoy" = (
/obj/structure/machinery/sleep_console,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/surface/clinic/treatment)
"aoz" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/surface/clinic/treatment)
"aoA" = (
/obj/structure/machinery/medical_pod/bodyscanner,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/surface/clinic/treatment)
"aoB" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/surface/clinic/treatment)
"aoC" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4992,17 +4123,11 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/surface/hydroponics/north)
"aoS" = (
/obj/structure/closet/crate/hydroponics,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/hydroponics/north)
"aoT" = (
/turf/open/auto_turf/snow/layer3,
@@ -5013,23 +4138,16 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/surface/clinic/treatment)
"aoV" = (
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"aoW" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"aoX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5038,25 +4156,19 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Aurora Medical Clinic Recovery Room"
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"aoY" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"aoZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"apa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5065,29 +4177,20 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Aurora Medical Clinic Scanning Unit"
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"apb" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"apc" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"apd" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/treatment)
"ape" = (
/obj/structure/surface/rack,
@@ -5117,59 +4220,38 @@
/area/ice_colony/exterior/surface/valley/west)
"api" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"apj" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southwest,
/area/ice_colony/surface/clinic/treatment)
"apk" = (
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/surface/clinic/treatment)
"apl" = (
/obj/structure/surface/table,
/obj/item/storage/box/botanydisk,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/hydroponics/north)
"apm" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/surface/clinic/treatment)
"apn" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southwest,
/area/ice_colony/surface/clinic/treatment)
"apo" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/surface/clinic/treatment)
"app" = (
/obj/structure/machinery/computer/crew,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southeast,
/area/ice_colony/surface/clinic/treatment)
"apq" = (
/obj/effect/landmark/hunter_secondary,
@@ -5218,10 +4300,7 @@
dir = 8;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/treatment)
"apA" = (
/obj/structure/ice/thin/end{
@@ -5231,22 +4310,13 @@
/area/ice_colony/surface/mining)
"apB" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/dorms)
"apC" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms)
"apD" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/dorms)
"apE" = (
/obj/structure/bed,
@@ -5255,17 +4325,11 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/surface/clinic/treatment)
"apF" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/surface/clinic/treatment)
"apG" = (
/obj/structure/machinery/power/apc{
@@ -5276,44 +4340,29 @@
/obj/item/storage/toolbox/emergency,
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/surface/clinic/treatment)
"apH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner/north,
/area/ice_colony/surface/clinic/treatment)
"apI" = (
/obj/structure/machinery/firealarm{
dir = 4;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/treatment)
"apJ" = (
/turf/closed/wall,
/area/ice_colony/surface/clinic/storage)
"apK" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/surface/clinic/storage)
"apL" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/surface/clinic/storage)
"apM" = (
/obj/structure/machinery/colony_floodlight,
@@ -5326,19 +4375,13 @@
pixel_x = 6;
pixel_y = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/surface/clinic/storage)
"apO" = (
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/substation)
"apP" = (
/turf/closed/wall/r_wall,
@@ -5360,9 +4403,7 @@
"apT" = (
/obj/structure/machinery/space_heater,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"apU" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -5370,18 +4411,14 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"apV" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"apW" = (
/obj/structure/machinery/power/apc{
@@ -5396,60 +4433,38 @@
},
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/dorms)
"apX" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms)
"apY" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/ice_colony/surface/dorms)
"apZ" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aqa" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/ice_colony/surface/dorms)
"aqb" = (
/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator2{
pixel_y = 30
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms)
"aqc" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/dorms)
"aqd" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"aqe" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -5457,16 +4472,12 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"aqf" = (
/obj/structure/machinery/space_heater,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"aqg" = (
/obj/structure/toilet{
@@ -5476,22 +4487,15 @@
dir = 4
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"aqh" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/surface/clinic/treatment)
"aqi" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"aqj" = (
/obj/structure/machinery/colony_floodlight,
@@ -5501,9 +4505,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"aql" = (
/obj/structure/disposalpipe/segment{
@@ -5522,25 +4524,19 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Aurora Medical Clinic Storage"
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/storage)
"aqn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/storage)
"aqo" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/storage)
"aqp" = (
/obj/structure/disposalpipe/segment{
@@ -5552,9 +4548,7 @@
/turf/open/auto_turf/snow/layer0,
/area/ice_colony/exterior/surface/clearing/pass)
"aqq" = (
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/storage)
"aqr" = (
/obj/structure/surface/table,
@@ -5567,10 +4561,7 @@
dir = 8;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/storage)
"aqs" = (
/obj/structure/ice/thin/straight{
@@ -5599,9 +4590,7 @@
dir = 1;
name = "\improper Dormitories Men's Restroom"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_w)
"aqw" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5615,9 +4604,7 @@
/area/ice_colony/exterior/surface/clearing/pass)
"aqx" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aqy" = (
/obj/structure/disposalpipe/segment,
@@ -5625,10 +4612,7 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/dorms)
"aqz" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -5637,9 +4621,7 @@
dir = 1;
name = "\improper Dormitories Women's Restroom"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/dorms/restroom_e)
"aqA" = (
/obj/structure/ice/thin/end{
@@ -5653,47 +4635,33 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"aqD" = (
/obj/effect/decal/cleanable/blood{
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"aqE" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"aqF" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"aqG" = (
/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/treatment)
"aqH" = (
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/powercell,
/obj/effect/spawner/random/bomb_supply,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/substation)
"aqI" = (
/obj/structure/surface/table,
@@ -5702,10 +4670,7 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/storage)
"aqJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5725,34 +4690,24 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/north)
"aqM" = (
/obj/structure/disposalpipe/segment,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/north)
"aqN" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/dorms)
"aqO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aqP" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5761,42 +4716,29 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms)
"aqQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms)
"aqR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/ice_colony/surface/dorms)
"aqS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aqT" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aqU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5806,9 +4748,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aqV" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5818,9 +4758,7 @@
dir = 8;
icon_state = "pipe-j2"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aqW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5830,10 +4768,7 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/ice_colony/surface/dorms)
"aqX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5843,10 +4778,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms)
"aqY" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5858,10 +4790,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms)
"aqZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5871,9 +4800,7 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"ara" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -5887,25 +4814,17 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"arc" = (
/obj/structure/closet/secure_closet/medical3{
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/surface/clinic/storage)
"ard" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/storage)
"are" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5928,10 +4847,7 @@
name = "\improper Colony Dormitories";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/surface/dorms)
"ari" = (
/obj/structure/disposalpipe/segment{
@@ -5951,17 +4867,13 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"arl" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/dorms)
"arm" = (
/obj/structure/disposalpipe/segment{
@@ -5982,19 +4894,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/ice_colony/surface/dorms)
"arp" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"arq" = (
/obj/structure/machinery/door_control{
@@ -6009,18 +4916,14 @@
/area/ice_colony/surface/storage_unit/power)
"arr" = (
/obj/structure/disposalpipe/junction,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/ice_colony/surface/dorms)
"ars" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/dorms)
"art" = (
/obj/structure/machinery/colony_floodlight,
@@ -6031,18 +4934,14 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/dorms)
"arv" = (
/obj/structure/fence,
/turf/open/auto_turf/snow/layer3,
/area/ice_colony/exterior/surface/valley/southeast)
"arw" = (
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/dorms)
"arx" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -6050,10 +4949,7 @@
name = "\improper Colony Dormitories";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/dorms)
"ary" = (
/obj/structure/bed,
@@ -6061,16 +4957,11 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/surface/clinic/treatment)
"arz" = (
/obj/structure/curtain/open/medical,
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/treatment)
"arA" = (
/obj/effect/landmark/hunter_secondary,
@@ -6081,10 +4972,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/storage)
"arC" = (
/turf/closed/ice/intersection,
@@ -6103,23 +4991,15 @@
/turf/open/floor/wood,
/area/ice_colony/surface/dorms)
"arG" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/dorms)
"arH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"arJ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/dorms)
"arK" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -6151,10 +5031,7 @@
/obj/structure/surface/table,
/obj/item/paper/research_notes,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/storage)
"arP" = (
/obj/structure/machinery/light/small{
@@ -6167,10 +5044,7 @@
/area/ice_colony/surface/dorms)
"arR" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/dorms)
"arS" = (
/obj/structure/machinery/light/small{
@@ -6195,29 +5069,19 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southwest,
/area/ice_colony/surface/clinic/treatment)
"arX" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/surface/clinic/treatment)
"arY" = (
/obj/structure/bed/chair/wheelchair,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/surface/clinic/treatment)
"arZ" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner/west,
/area/ice_colony/surface/clinic/treatment)
"asa" = (
/obj/structure/disposalpipe/segment{
@@ -6225,43 +5089,30 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner,
/area/ice_colony/surface/clinic/treatment)
"asb" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southeast,
/area/ice_colony/surface/clinic/treatment)
"asc" = (
/obj/structure/closet/secure_closet/chemical{
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southwest,
/area/ice_colony/surface/clinic/storage)
"asd" = (
/obj/structure/bed/chair/wheelchair,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/surface/clinic/storage)
"ase" = (
/obj/structure/surface/table,
/obj/item/paper/research_notes,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southeast,
/area/ice_colony/surface/clinic/storage)
"asf" = (
/obj/structure/ice/thin/corner,
@@ -6273,10 +5124,7 @@
name = "\improper Hydroponics Dome North Wing";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/north)
"ash" = (
/obj/structure/ladder{
@@ -6295,27 +5143,19 @@
name = "\improper Aurora Medical Clinic Treatment";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/surface/clinic/treatment)
"ask" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/treatment)
"asl" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
dir = 1;
name = "\improper Aurora Medical Clinic Storage"
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/storage)
"asm" = (
/obj/structure/window/framed/colony/reinforced,
@@ -6329,34 +5169,22 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/hydroponics/lobby)
"asp" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/ice_colony/surface/hydroponics/lobby)
"asq" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/ice_colony/surface/hydroponics/lobby)
"asr" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/hydroponics/lobby)
"ass" = (
/obj/structure/window/framed/colony/reinforced,
@@ -6375,17 +5203,13 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"asw" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"asx" = (
/obj/structure/closet/cabinet,
@@ -6407,33 +5231,21 @@
/area/ice_colony/surface/clinic/lobby)
"asB" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/surface/clinic/lobby)
"asC" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/surface/clinic/lobby)
"asD" = (
/obj/structure/machinery/vending/snack,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/surface/clinic/lobby)
"asE" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner/north,
/area/ice_colony/surface/clinic/lobby)
"asF" = (
/obj/structure/disposalpipe/segment{
@@ -6441,10 +5253,7 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner/east,
/area/ice_colony/surface/clinic/lobby)
"asG" = (
/obj/structure/flora/pottedplant,
@@ -6452,10 +5261,7 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/surface/clinic/lobby)
"asH" = (
/obj/structure/window/framed/colony,
@@ -6463,22 +5269,14 @@
/area/ice_colony/surface/clinic/lobby)
"asI" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/surface/clinic/lobby)
"asJ" = (
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/lobby)
"asK" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southeast,
/area/ice_colony/surface/clinic/treatment)
"asL" = (
/obj/structure/tunnel{
@@ -6488,67 +5286,42 @@
/area/ice_colony/exterior/surface/valley/west)
"asM" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/exterior/surface/valley/west)
"asN" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/hydroponics/lobby)
"asO" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/ice_colony/surface/hydroponics/lobby)
"asP" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/lobby)
"asQ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/lobby)
"asR" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/ice_colony/surface/hydroponics/lobby)
"asS" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/exterior/surface/clearing/north)
"asT" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/dorms)
"asU" = (
/obj/structure/disposalpipe/segment,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/dorms)
"asV" = (
/obj/item/lightstick/red/planted,
@@ -6558,45 +5331,30 @@
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
pixel_x = -32
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/surface/clinic/lobby)
"asX" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/lobby)
"asY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/lobby)
"asZ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/lobby)
"ata" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/surface/clinic/lobby)
"atb" = (
/obj/effect/landmark/corpsespawner/doctor,
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/lobby)
"atc" = (
/obj/structure/surface/table,
@@ -6606,10 +5364,7 @@
pixel_x = 24
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/lobby)
"atd" = (
/turf/closed/ice/straight{
@@ -6651,38 +5406,24 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/lobby)
"ati" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/lobby)
"atj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/hydroponics/lobby)
"atk" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/surface/hydroponics/lobby)
"atl" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/lobby)
"atm" = (
/obj/structure/closet/cabinet,
@@ -6733,58 +5474,40 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "whiteredfull"
- },
+/turf/open/floor/whiteredfull,
/area/ice_colony/surface/clinic/lobby)
"atw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner/north,
/area/ice_colony/surface/clinic/lobby)
"atx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/lobby)
"aty" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southeast,
/area/ice_colony/surface/clinic/lobby)
"atz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southwest,
/area/ice_colony/surface/clinic/lobby)
"atA" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/lobby)
"atB" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner/east,
/area/ice_colony/surface/clinic/lobby)
"atC" = (
/obj/item/stack/sheet/metal,
@@ -6792,10 +5515,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/surface/clinic/lobby)
"atD" = (
/obj/structure/bed/chair/office/dark{
@@ -6808,18 +5528,13 @@
/obj/effect/decal/cleanable/blood/drip{
icon_state = "3"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner/north,
/area/ice_colony/surface/clinic/lobby)
"atE" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/lobby)
"atF" = (
/obj/structure/surface/table,
@@ -6833,10 +5548,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/surface/clinic/storage)
"atG" = (
/obj/structure/ice/ice_rock/cornerOverlay,
@@ -6881,17 +5593,11 @@
/area/ice_colony/surface/hydroponics/lobby)
"atO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/lobby)
"atP" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/lobby)
"atQ" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -6909,9 +5615,7 @@
/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator2{
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"atU" = (
/obj/structure/machinery/colony_floodlight,
@@ -6933,94 +5637,68 @@
name = "\improper Aurora Medical Clinic";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "whiteredfull"
- },
+/turf/open/floor/whiteredfull,
/area/ice_colony/surface/clinic/lobby)
"atY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner/west,
/area/ice_colony/surface/clinic/lobby)
"atZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/lobby)
"aua" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/surface/clinic/lobby)
"aub" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/surface/clinic/lobby)
"auc" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/lobby)
"aud" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner,
/area/ice_colony/surface/clinic/lobby)
"aue" = (
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/surface/clinic/lobby)
"auf" = (
/obj/item/shard,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/surface/clinic/lobby)
"aug" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/surface/clinic/lobby)
"auh" = (
/obj/structure/filingcabinet,
/obj/item/paper/research_notes,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southeast,
/area/ice_colony/surface/clinic/lobby)
"aui" = (
/turf/open/auto_turf/snow/layer3,
@@ -7046,10 +5724,7 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/lobby)
"aun" = (
/obj/structure/flora/bush/ausbushes/palebush,
@@ -7059,27 +5734,18 @@
/obj/structure/surface/table,
/obj/item/bodybag/cryobag,
/obj/item/storage/box/syringes,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/surface/clinic/storage)
"aup" = (
/obj/structure/surface/table/woodentable,
/obj/item/paper/research_notes,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/hydroponics/lobby)
"auq" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/ice_colony/surface/hydroponics/lobby)
"aur" = (
/obj/structure/bed/chair{
@@ -7089,10 +5755,7 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/lobby)
"aus" = (
/turf/open/auto_turf/snow/layer1,
@@ -7114,29 +5777,21 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/surface/clinic/lobby)
"auy" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/surface/clinic/lobby)
"auz" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/lobby)
"auA" = (
/obj/effect/landmark/monkey_spawn,
@@ -7153,27 +5808,18 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/hydroponics/lobby)
"auD" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/lobby)
"auE" = (
/obj/structure/bed/chair/comfy/orange{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/ice_colony/surface/hydroponics/lobby)
"auF" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -7181,37 +5827,25 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/hydroponics/lobby)
"auG" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/hydroponics/lobby)
"auH" = (
/obj/structure/bed/chair/comfy/orange{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/ice_colony/surface/hydroponics/lobby)
"auI" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/lobby)
"auJ" = (
/obj/structure/flora/bush/ausbushes/grassybush,
@@ -7222,10 +5856,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/hydroponics/lobby)
"auL" = (
/obj/structure/sign/safety/biolab,
@@ -7246,19 +5877,14 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"auO" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/dorms)
"auP" = (
/obj/effect/spawner/random/toolbox,
@@ -7278,37 +5904,27 @@
"auS" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southwest,
/area/ice_colony/surface/clinic/lobby)
"auT" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/surface/clinic/lobby)
"auU" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/surface/clinic/lobby)
"auV" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southeast,
/area/ice_colony/surface/clinic/lobby)
"auW" = (
/obj/structure/ice/thin/single,
@@ -7326,31 +5942,19 @@
/turf/open/gm/grass/grass1,
/area/ice_colony/surface/hydroponics/lobby)
"auZ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/hydroponics/lobby)
"ava" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/hydroponics/lobby)
"avb" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/hydroponics/lobby)
"avc" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/surface/hydroponics/lobby)
"avd" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -7358,62 +5962,43 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/ice_colony/surface/hydroponics/lobby)
"ave" = (
/obj/structure/disposalpipe/junction{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/ice_colony/surface/hydroponics/lobby)
"avf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/hydroponics/lobby)
"avg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/hydroponics/lobby)
"avh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/surface/hydroponics/lobby)
"avi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/lobby)
"avj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/lobby)
"avk" = (
/obj/effect/decal/cleanable/blood{
@@ -7426,27 +6011,19 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/dorms)
"avm" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms)
"avn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"avo" = (
/obj/structure/disposalpipe/segment{
@@ -7455,10 +6032,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms)
"avp" = (
/obj/structure/disposalpipe/segment{
@@ -7470,18 +6044,13 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"avq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/ice_colony/surface/dorms)
"avr" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -7489,9 +6058,7 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"avs" = (
/obj/effect/decal/cleanable/blood{
@@ -7504,19 +6071,13 @@
/obj/structure/disposalpipe/junction{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/ice_colony/surface/dorms)
"avu" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/dorms)
"avw" = (
/obj/effect/landmark/corpsespawner/engineer,
@@ -7556,39 +6117,29 @@
dir = 1;
name = "\improper Hydroponics Zoo Dome"
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/hydroponics/lobby)
"avC" = (
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/hydroponics/lobby)
"avD" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/hydroponics/lobby)
"avE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/hydroponics/lobby)
"avF" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/hydroponics/lobby)
"avG" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -7598,70 +6149,48 @@
dir = 1;
name = "\improper Hydroponics Dome"
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/hydroponics/lobby)
"avH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/ice_colony/surface/hydroponics/lobby)
"avI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/lobby)
"avJ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/hydroponics/lobby)
"avK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/hydroponics/lobby)
"avL" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/ice_colony/surface/hydroponics/lobby)
"avM" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/ice_colony/surface/hydroponics/lobby)
"avN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/hydroponics/lobby)
"avO" = (
/obj/item/lightstick/planted,
@@ -7671,10 +6200,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/hydroponics/lobby)
"avQ" = (
/obj/item/shard,
@@ -7684,10 +6210,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/lobby)
"avS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -7697,9 +6220,7 @@
dir = 1;
name = "\improper Hydroponics Dome"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/lobby)
"avT" = (
/obj/item/stack/rods,
@@ -7721,27 +6242,19 @@
dir = 1;
name = "\improper Colony Dormitories"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/surface/dorms)
"avW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/dorms)
"avX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/ice_colony/surface/dorms)
"avY" = (
/obj/structure/disposalpipe/segment{
@@ -7749,9 +6262,7 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"avZ" = (
/obj/structure/disposalpipe/segment{
@@ -7760,9 +6271,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"awa" = (
/obj/structure/disposalpipe/segment{
@@ -7772,9 +6281,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/ice_colony/surface/dorms)
"awb" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -7784,10 +6291,7 @@
dir = 1;
name = "\improper Colony Dormitories"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/dorms)
"awc" = (
/obj/structure/machinery/colony_floodlight,
@@ -7833,76 +6337,49 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/surface/hydroponics/lobby)
"awj" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/ice_colony/surface/hydroponics/lobby)
"awk" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/lobby)
"awl" = (
/obj/structure/bed/chair/comfy/orange,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/ice_colony/surface/hydroponics/lobby)
"awm" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/lobby)
"awn" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/lobby)
"awo" = (
/obj/structure/bed/chair/comfy/orange,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/ice_colony/surface/hydroponics/lobby)
"awp" = (
/obj/structure/flora/bush/ausbushes/pointybush,
/turf/open/floor/grass,
/area/ice_colony/surface/hydroponics/lobby)
"awq" = (
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/ice_colony/surface/hydroponics/lobby)
"awr" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/hydroponics/lobby)
"aws" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/dorms)
"awu" = (
/obj/item/shard,
@@ -7958,10 +6435,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/lobby)
"awD" = (
/obj/structure/flora/bush/ausbushes/var3/sunnybush,
@@ -7998,9 +6472,7 @@
"awH" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/hydroponics/lobby)
"awJ" = (
/obj/item/lightstick/planted,
@@ -8043,17 +6515,11 @@
/area/ice_colony/surface/disposals)
"awQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/hydroponics/lobby)
"awR" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/hydroponics/lobby)
"awT" = (
/obj/structure/closet/cabinet,
@@ -8137,25 +6603,17 @@
/area/ice_colony/surface/disposals)
"axh" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/exterior/surface/valley/west)
"axi" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/hydroponics/lobby)
"axj" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/exterior/surface/clearing/north)
"axk" = (
/turf/closed/wall/r_wall,
@@ -8167,10 +6625,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/dorms)
"axn" = (
/turf/closed/wall,
@@ -8220,43 +6675,31 @@
/area/ice_colony/exterior/surface/clearing/south)
"axv" = (
/obj/item/trash/candy,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/ice_colony/surface/disposals)
"axw" = (
/obj/item/ammo_magazine/shotgun/slugs{
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/ice_colony/surface/disposals)
"axx" = (
/obj/item/trash/raisins,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/ice_colony/surface/disposals)
"axy" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/ice_colony/surface/disposals)
"axz" = (
/obj/item/evidencebag,
/obj/item/trash/pistachios,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/ice_colony/surface/disposals)
"axA" = (
/obj/item/trash/liquidfood,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/ice_colony/surface/disposals)
"axB" = (
/obj/structure/ice/thin/junction,
@@ -8265,55 +6708,35 @@
"axC" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/surface/hydroponics/lobby)
"axD" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/ice_colony/surface/hydroponics/lobby)
"axE" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/ice_colony/surface/hydroponics/lobby)
"axF" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/hydroponics/lobby)
"axG" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/surface/dorms/lavatory)
"axH" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/dorms/lavatory)
"axI" = (
/obj/structure/machinery/washing_machine,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/dorms/lavatory)
"axJ" = (
/obj/structure/machinery/power/apc{
@@ -8322,23 +6745,14 @@
start_charge = 0
},
/obj/structure/closet/crate/trashcart,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/dorms/lavatory)
"axK" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/dorms/lavatory)
"axL" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/dorms/lavatory)
"axM" = (
/obj/structure/ladder{
@@ -8347,23 +6761,14 @@
id = "dorms_ladder";
pixel_y = 16
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/dorms/lavatory)
"axN" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/dorms)
"axO" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/dorms/canteen)
"axP" = (
/obj/structure/machinery/power/apc{
@@ -8371,25 +6776,16 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms/canteen)
"axQ" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms/canteen)
"axR" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms/canteen)
"axS" = (
/obj/structure/surface/table,
@@ -8398,36 +6794,24 @@
},
/obj/item/reagent_container/food/snacks/hotchili,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms/canteen)
"axT" = (
/obj/structure/surface/table,
/obj/structure/machinery/microwave,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms/canteen)
"axU" = (
/obj/structure/surface/table,
/obj/item/storage/box/donkpockets,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/dorms/canteen)
"axV" = (
/obj/structure/surface/table,
/obj/item/storage/box/pizza,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/dorms/canteen)
"axW" = (
/obj/vehicle/train/cargo/trolley,
@@ -8519,26 +6903,17 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/surface/disposals)
"ayn" = (
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/disposals)
"ayo" = (
/obj/structure/machinery/door/window/northright,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/disposals)
"ayp" = (
/turf/closed/wall/r_wall,
@@ -8548,44 +6923,28 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Hydroponics Dome South Wing"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/south)
"ayr" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/south)
"ays" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/dorms/lavatory)
"ayt" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms/lavatory)
"ayu" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms/lavatory)
"ayv" = (
/obj/item/lightstick/planted,
/turf/open/auto_turf/snow/layer0,
/area/ice_colony/exterior/surface/clearing/south)
"ayw" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/dorms/lavatory)
"ayx" = (
/obj/structure/machinery/vending/coffee,
@@ -8593,35 +6952,25 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/dorms/canteen)
"ayy" = (
/obj/item/lightstick/planted,
/turf/open/auto_turf/snow/layer3,
/area/ice_colony/exterior/surface/valley/southwest)
"ayz" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms/canteen)
"ayA" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms/canteen)
"ayB" = (
/obj/structure/machinery/firealarm{
dir = 4;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/dorms/canteen)
"ayC" = (
/turf/open/auto_turf/snow/layer1,
@@ -8684,10 +7033,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/surface/clinic/treatment)
"ayM" = (
/obj/structure/closet/secure_closet/medical3{
@@ -8696,10 +7042,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/surface/clinic/storage)
"ayN" = (
/turf/open/auto_turf/snow/layer0,
@@ -8720,9 +7063,7 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Colony Disposals"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/disposals)
"ayS" = (
/obj/structure/disposalpipe/segment,
@@ -8743,18 +7084,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/disposals)
"ayV" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/disposals)
"ayW" = (
/obj/structure/window/framed/colony/reinforced,
@@ -8772,51 +7108,34 @@
"ayY" = (
/obj/structure/surface/table,
/obj/structure/bedsheetbin,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/dorms/lavatory)
"ayZ" = (
/obj/structure/surface/table,
/obj/structure/bedsheetbin,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/dorms/lavatory)
"aza" = (
/obj/structure/surface/table,
/obj/item/reagent_container/spray/cleaner,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/dorms/lavatory)
"azb" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms/lavatory)
"azc" = (
/obj/structure/closet/wardrobe/mixed,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/dorms/lavatory)
"azd" = (
/obj/structure/closet/wardrobe/mixed,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/dorms/lavatory)
"aze" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/surface/dorms/canteen)
"azf" = (
/obj/structure/disposalpipe/segment{
@@ -8828,45 +7147,34 @@
/turf/open/auto_turf/snow/layer1,
/area/ice_colony/exterior/surface/valley/south)
"azg" = (
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/dorms/canteen)
"azh" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms/canteen)
"azi" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms/canteen)
"azj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/surface/dorms/canteen)
"azk" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/dorms/canteen)
"azl" = (
/obj/structure/disposalpipe/segment{
@@ -8901,30 +7209,20 @@
/turf/open/auto_turf/snow/layer0,
/area/ice_colony/exterior/surface/valley/south)
"azr" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/disposals)
"azs" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/disposals)
"azt" = (
/turf/open/auto_turf/snow/layer1,
/area/ice_colony/exterior/surface/valley/south/excavation)
"azu" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/disposals)
"azv" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/disposals)
"azw" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
@@ -8938,9 +7236,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Colony Dormitories Lavatory"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms/lavatory)
"azz" = (
/turf/open/auto_turf/snow/layer0,
@@ -8954,15 +7250,11 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Colony Dormitories Canteen"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms/canteen)
"azC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms/canteen)
"azD" = (
/turf/closed/wall/r_wall,
@@ -8992,22 +7284,14 @@
/obj/item/device/radio,
/obj/item/storage/toolbox/emergency,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/disposals)
"azJ" = (
-/turf/open/floor{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2,
/area/ice_colony/surface/disposals)
"azK" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/disposals)
"azL" = (
/obj/structure/machinery/light{
@@ -9019,22 +7303,13 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Colony Dormitories"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/surface/dorms)
"azN" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/dorms)
"azO" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/north,
/area/ice_colony/surface/dorms)
"azP" = (
/obj/effect/landmark/hunter_secondary,
@@ -9042,9 +7317,7 @@
/area/ice_colony/exterior/surface/valley/south/excavation)
"azQ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"azR" = (
/turf/closed/wall/r_wall,
@@ -9053,32 +7326,20 @@
/obj/structure/surface/table,
/obj/item/storage/belt/utility,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/surface/garage/one)
"azT" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/one)
"azU" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/one)
"azV" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/one)
"azW" = (
/obj/structure/machinery/power/apc{
@@ -9086,26 +7347,17 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/one)
"azX" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/one)
"azY" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/one)
"azZ" = (
/obj/structure/machinery/light{
@@ -9114,18 +7366,12 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/one)
"aAa" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/garage/one)
"aAb" = (
/turf/closed/wall,
@@ -9133,10 +7379,7 @@
"aAc" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/two)
"aAd" = (
/obj/structure/machinery/light{
@@ -9144,23 +7387,14 @@
},
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/two)
"aAe" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/two)
"aAf" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/two)
"aAg" = (
/obj/structure/machinery/power/apc{
@@ -9168,34 +7402,22 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/two)
"aAh" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/two)
"aAi" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/two)
"aAj" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/garage/two)
"aAk" = (
/obj/structure/surface/table,
@@ -9207,10 +7429,7 @@
/obj/item/storage/box/lightstick/red,
/obj/effect/landmark/good_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/disposals)
"aAm" = (
/obj/structure/surface/table,
@@ -9222,92 +7441,65 @@
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/disposals)
"aAo" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/disposals)
"aAp" = (
/obj/structure/surface/rack,
/obj/item/tool/shovel/snow,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/disposals)
"aAq" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
/obj/item/device/flashlight/flare,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/disposals)
"aAr" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Hydroponics South Wing Dome"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/south)
"aAs" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/south)
"aAt" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/south)
"aAu" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/south)
"aAv" = (
/obj/structure/disposalpipe/segment,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/south)
"aAw" = (
/obj/structure/window/framed/colony,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aAx" = (
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/dorms)
"aAy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aAz" = (
/obj/structure/surface/table,
@@ -9320,9 +7512,7 @@
/obj/structure/shuttle/diagonal{
icon_state = "swall_f9"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aAB" = (
/obj/structure/surface/table,
@@ -9331,9 +7521,7 @@
/area/ice_colony/exterior/surface/valley/south/excavation)
"aAC" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aAD" = (
/obj/structure/machinery/floodlight{
@@ -9356,9 +7544,7 @@
/obj/structure/shuttle/diagonal{
icon_state = "swall_f5"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aAH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -9368,18 +7554,14 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aAI" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
/obj/structure/disposalpipe/junction{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aAJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -9388,9 +7570,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aAK" = (
/obj/structure/shuttle/diagonal{
@@ -9399,9 +7579,7 @@
/obj/structure/shuttle/diagonal{
icon_state = "swall_f9"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aAL" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -9411,9 +7589,7 @@
dir = 4
},
/obj/structure/window/framed/colony,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"aAN" = (
/obj/effect/landmark/yautja_teleport,
@@ -9427,30 +7603,20 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/surface/garage/one)
"aAQ" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/north,
/area/ice_colony/surface/garage/one)
"aAR" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aAS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aAT" = (
/obj/structure/surface/rack,
@@ -9458,30 +7624,20 @@
/area/ice_colony/exterior/surface/valley/south/excavation)
"aAU" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/garage/one)
"aAV" = (
/obj/structure/closet/secure_closet/medical1{
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/surface/clinic/storage)
"aAW" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/two)
"aAX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/two)
"aAY" = (
/obj/structure/surface/rack,
@@ -9490,16 +7646,10 @@
/area/ice_colony/exterior/surface/valley/south/excavation)
"aAZ" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/east,
/area/ice_colony/surface/garage/two)
"aBa" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/garage/two)
"aBb" = (
/obj/structure/ice/thin/straight{
@@ -9524,14 +7674,10 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "\improper Colony Administration"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/checkpoint)
"aBg" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/checkpoint)
"aBh" = (
/obj/structure/window/framed/colony/reinforced,
@@ -9542,10 +7688,7 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/garage/repair)
"aBj" = (
/obj/structure/disposalpipe/segment{
@@ -9559,10 +7702,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/garage/repair)
"aBk" = (
/obj/structure/machinery/light{
@@ -9571,40 +7711,27 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/garage/repair)
"aBl" = (
/obj/structure/surface/table,
/obj/item/storage/box/lightstick/red,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/garage/repair)
"aBm" = (
/obj/structure/surface/table,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/garage/one)
"aBn" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aBo" = (
/obj/vehicle/train/cargo/trolley,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aBp" = (
/obj/item/tool/pickaxe,
@@ -9613,78 +7740,51 @@
"aBq" = (
/obj/vehicle/train/cargo/trolley,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aBr" = (
/obj/vehicle/train/cargo/engine,
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aBs" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/garage/two)
"aBt" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/two)
"aBu" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/garage/two)
"aBv" = (
/obj/structure/filingcabinet,
/obj/item/paper/research_notes,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/ice_colony/surface/command/control/office)
"aBw" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/command/control/office)
"aBx" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/command/control/office)
"aBy" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/ice_colony/surface/command/control/office)
"aBz" = (
/obj/structure/machinery/computer/cameras,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/surface/command/checkpoint)
"aBA" = (
/obj/structure/closet/secure_closet/security,
@@ -9693,45 +7793,28 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/surface/command/checkpoint)
"aBB" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/surface/command/checkpoint)
"aBC" = (
/obj/item/shard,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/ice_colony/surface/command/checkpoint)
"aBD" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/checkpoint)
"aBE" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/command/checkpoint)
"aBF" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/ice_colony/surface/command/checkpoint)
"aBG" = (
/obj/structure/surface/rack,
@@ -9755,25 +7838,17 @@
/area/ice_colony/exterior/surface/valley/south/excavation)
"aBK" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/garage/repair)
"aBL" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/ice_colony/surface/garage/repair)
"aBM" = (
/obj/item/lightstick/planted,
/turf/open/auto_turf/snow/layer1,
/area/ice_colony/exterior/surface/valley/south/excavation)
"aBN" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/repair)
"aBO" = (
/obj/structure/surface/rack,
@@ -9782,29 +7857,20 @@
/area/ice_colony/exterior/surface/valley/south/excavation)
"aBP" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/garage/one)
"aBQ" = (
/obj/effect/decal/warning_stripes{
icon_state = "N-corner"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/one)
"aBR" = (
/obj/effect/decal/warning_stripes{
icon_state = "N-corner"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/one)
"aBS" = (
/obj/structure/surface/rack,
@@ -9815,36 +7881,24 @@
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/one)
"aBU" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/garage/two)
"aBV" = (
/obj/effect/decal/warning_stripes{
icon_state = "N-corner"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/two)
"aBW" = (
/obj/effect/decal/warning_stripes{
icon_state = "N-corner"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/two)
"aBX" = (
/obj/structure/surface/rack,
@@ -9856,22 +7910,14 @@
icon_state = "N-corner"
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/two)
"aBZ" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/surface/command/control/office)
"aCa" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aCb" = (
/obj/structure/window/reinforced/tinted{
@@ -9883,9 +7929,7 @@
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
/obj/item/tool/stamp,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aCc" = (
/obj/structure/window/reinforced/tinted{
@@ -9897,29 +7941,20 @@
/obj/structure/surface/table/reinforced,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aCd" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aCe" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aCf" = (
/obj/structure/surface/table,
/obj/structure/machinery/faxmachine,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/surface/command/control/office)
"aCg" = (
/obj/structure/machinery/alarm{
@@ -9930,10 +7965,7 @@
layer = 3
},
/obj/effect/landmark/corpsespawner/russian,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/command/checkpoint)
"aCh" = (
/obj/structure/surface/table,
@@ -9944,19 +7976,13 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Colony Security Checkpoint"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/command/checkpoint)
"aCm" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/surface/command/checkpoint)
"aCo" = (
/obj/structure/window/framed/colony/reinforced,
@@ -9964,40 +7990,25 @@
/area/ice_colony/surface/garage/repair)
"aCp" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/garage/repair)
"aCq" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/garage/one)
"aCr" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aCs" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/garage/two)
"aCt" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/two)
"aCu" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/two)
"aCv" = (
/obj/structure/ice/ice_rock/cornerOverlay,
@@ -10018,44 +8029,33 @@
dir = 8
},
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/surface/command/control/office)
"aCy" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aCz" = (
/obj/structure/window/reinforced/tinted{
dir = 4
},
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aCA" = (
/obj/structure/window/reinforced/tinted{
dir = 8
},
/obj/structure/machinery/computer/communications,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aCB" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aCC" = (
/obj/effect/landmark/corpsespawner/bridgeofficer,
@@ -10063,27 +8063,21 @@
layer = 3
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aCD" = (
/obj/structure/window/reinforced/tinted{
dir = 4
},
/obj/structure/machinery/computer/cameras,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aCE" = (
/obj/structure/window/reinforced/tinted{
dir = 8
},
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aCF" = (
/obj/structure/surface/table,
@@ -10093,10 +8087,7 @@
pixel_x = 24
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/surface/clinic/lobby)
"aCG" = (
/obj/structure/machinery/firealarm{
@@ -10104,79 +8095,55 @@
pixel_x = -24
},
/obj/item/weapon/gun/energy/taser,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/command/checkpoint)
"aCH" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/surface/command/checkpoint)
"aCI" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/surface/command/checkpoint)
"aCK" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/garage/repair)
"aCL" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/repair)
"aCM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/repair)
"aCN" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/repair)
"aCP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aCQ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aCR" = (
/obj/vehicle/train/cargo/trolley,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aCS" = (
/obj/vehicle/train/cargo/trolley,
@@ -10184,15 +8151,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aCU" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/two)
"aCW" = (
/obj/structure/ice/thin/single,
@@ -10205,10 +8168,7 @@
pixel_x = -24
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/surface/command/control/office)
"aDa" = (
/obj/structure/window/reinforced/tinted{
@@ -10218,16 +8178,12 @@
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
/obj/item/tool/stamp,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aDb" = (
/obj/item/weapon/gun/revolver/cmb,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aDc" = (
/obj/structure/window/reinforced/tinted{
@@ -10238,9 +8194,7 @@
/obj/item/clipboard,
/obj/item/tool/stamp,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aDd" = (
/obj/structure/machinery/power/apc{
@@ -10248,28 +8202,20 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/surface/command/control/office)
"aDe" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/command/checkpoint)
"aDf" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/checkpoint)
"aDg" = (
/obj/structure/bed/chair/office/light{
@@ -10278,10 +8224,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/surface/command/checkpoint)
"aDh" = (
/obj/item/clipboard,
@@ -10295,33 +8238,24 @@
/obj/item/stack/sheet/metal,
/obj/item/shard,
/obj/item/shard,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/command/checkpoint)
"aDi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/checkpoint)
"aDj" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/checkpoint)
"aDk" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/checkpoint)
"aDl" = (
/obj/structure/bed/chair{
@@ -10330,44 +8264,30 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/surface/command/checkpoint)
"aDm" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/garage/repair)
"aDn" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/repair)
"aDo" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/repair)
"aDp" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/repair)
"aDq" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper Colony Garage"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/repair)
"aDr" = (
/obj/effect/decal/warning_stripes{
@@ -10377,20 +8297,14 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/one)
"aDs" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/garage/one)
"aDt" = (
/obj/structure/ice/thin/corner,
@@ -10410,10 +8324,7 @@
dir = 2;
icon_state = "pipe-u"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/surface/hydroponics/south)
"aDx" = (
/obj/structure/closet/crate/hydroponics,
@@ -10422,44 +8333,30 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/hydroponics/south)
"aDy" = (
/obj/structure/surface/table,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/ice_colony/surface/command/control/office)
"aDz" = (
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/command/control/office)
"aDA" = (
/obj/item/shard,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/command/control/office)
"aDB" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/command/control/office)
"aDC" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/command/control/office)
"aDD" = (
/obj/structure/machinery/firealarm{
@@ -10470,28 +8367,17 @@
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/ice_colony/surface/command/control/office)
"aDE" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/surface/command/checkpoint)
"aDF" = (
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/surface/command/checkpoint)
"aDG" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/surface/command/checkpoint)
"aDH" = (
/obj/structure/surface/table/reinforced,
@@ -10504,31 +8390,20 @@
/obj/item/paper_bin,
/obj/item/tool/stamp,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/command/checkpoint)
"aDI" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/ice_colony/surface/command/checkpoint)
"aDJ" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/command/checkpoint)
"aDK" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/ice_colony/surface/command/checkpoint)
"aDL" = (
/obj/item/shard,
@@ -10537,17 +8412,11 @@
/turf/open/floor/plating,
/area/ice_colony/surface/garage/repair)
"aDM" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/garage/repair)
"aDN" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/garage/repair)
"aDO" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -10558,9 +8427,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aDP" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10569,9 +8436,7 @@
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aDQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10581,9 +8446,7 @@
dir = 8
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aDR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10596,9 +8459,7 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aDS" = (
/obj/structure/disposalpipe/segment{
@@ -10611,9 +8472,7 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aDT" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10624,9 +8483,7 @@
icon_state = "pipe-j2"
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aDU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10636,9 +8493,7 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aDV" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10648,9 +8503,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aDW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10662,9 +8515,7 @@
/obj/structure/machinery/door/airlock/almayer/secure/colony{
name = "Colony Garage"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aDX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10673,9 +8524,7 @@
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/two)
"aDY" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10684,34 +8533,26 @@
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/two)
"aEa" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/two)
"aEb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/two)
"aEc" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/two)
"aEd" = (
/turf/closed/ice/straight,
@@ -10719,17 +8560,11 @@
"aEe" = (
/obj/structure/disposalpipe/segment,
/obj/item/tool/shovel/snow,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/south)
"aEg" = (
/obj/structure/machinery/vending/hydronutrients,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/hydroponics/south)
"aEh" = (
/obj/structure/window/framed/colony/reinforced,
@@ -10762,18 +8597,14 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "\improper Colony Offices"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aEl" = (
/obj/structure/machinery/door/poddoor/almayer{
id = "colony_admin_top";
name = "\improper Colony Administration Blast Door"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aEm" = (
/obj/structure/window/framed/colony/reinforced,
@@ -10805,49 +8636,32 @@
flipped = 1;
icon_state = "tableflip0"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/garage/repair)
"aEr" = (
/obj/effect/spawner/random/powercell,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/garage/repair)
"aEs" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/garage/repair)
"aEt" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/garage/repair)
"aEu" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/garage/repair)
"aEv" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/garage/one)
"aEw" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aEx" = (
/obj/structure/disposalpipe/segment{
@@ -10857,24 +8671,17 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aEy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aEz" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/garage/two)
"aEA" = (
/turf/closed/ice/end{
@@ -10896,60 +8703,37 @@
"aEE" = (
/obj/structure/disposalpipe/segment,
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/south)
"aEF" = (
/obj/structure/closet/wardrobe/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/south)
"aEG" = (
/turf/closed/wall/r_wall,
/area/ice_colony/surface/command/control)
"aEH" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/ice_colony/surface/command/control)
"aEI" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/command/control)
"aEJ" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aEK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/command/control)
"aEL" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/command/control)
"aEM" = (
/obj/item/stack/rods,
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/ice_colony/surface/command/control)
"aEN" = (
/obj/item/shard,
@@ -10961,19 +8745,13 @@
/area/ice_colony/surface/command/control)
"aEO" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/command/control)
"aEP" = (
/obj/structure/noticeboard{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/command/control)
"aEQ" = (
/obj/structure/machinery/light{
@@ -10983,20 +8761,14 @@
flipped = 1;
icon_state = "tableflip0"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/command/control)
"aER" = (
/obj/structure/surface/table{
flipped = 1;
icon_state = "tableflip0"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/command/control)
"aES" = (
/obj/structure/disposalpipe/segment{
@@ -11004,37 +8776,27 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aET" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aEU" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/command/control)
"aEV" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/ice_colony/surface/command/control)
"aEW" = (
/obj/item/shard,
@@ -11047,30 +8809,21 @@
dir = 1;
name = "\improper Colony Garage Repair Station"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/repair)
"aEY" = (
/obj/structure/surface/table,
/obj/item/clothing/mask/rebreather,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/garage/one)
"aEZ" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/garage/one)
"aFa" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2,
/area/ice_colony/surface/garage/one)
"aFb" = (
/obj/structure/machinery/light,
@@ -11078,9 +8831,7 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/garage/one)
"aFc" = (
/obj/structure/ladder{
@@ -11088,36 +8839,23 @@
icon_state = "ladderdown";
id = "garage_ladder"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/garage/one)
"aFd" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/garage/two)
"aFe" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/garage/two)
"aFf" = (
-/turf/open/floor{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2,
/area/ice_colony/surface/garage/two)
"aFg" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/garage/two)
"aFi" = (
/obj/structure/disposalpipe/segment{
@@ -11127,9 +8865,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/south)
"aFj" = (
/obj/structure/disposalpipe/segment{
@@ -11141,9 +8877,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/south)
"aFk" = (
/obj/structure/disposalpipe/segment{
@@ -11153,17 +8887,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/south)
"aFl" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/south)
"aFm" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
@@ -11174,32 +8904,22 @@
dir = 8;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/south)
"aFn" = (
/obj/structure/machinery/alarm{
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/surface/command/control)
"aFo" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFp" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFr" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -11207,33 +8927,22 @@
id = "colony_admin_top";
name = "\improper Colony Administration Blast Door"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFs" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFt" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFv" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/surface/command/control)
"aFy" = (
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/garage/one)
"aFz" = (
/obj/structure/machinery/door_control{
@@ -11241,20 +8950,13 @@
name = "garage shutter control";
pixel_y = -30
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/garage/one)
"aFA" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/garage/one)
"aFB" = (
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/garage/two)
"aFC" = (
/obj/structure/machinery/door_control{
@@ -11262,31 +8964,20 @@
name = "garage shutter control";
pixel_y = -30
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/garage/two)
"aFE" = (
/turf/closed/wall/r_wall,
/area/ice_colony/surface/storage_unit/power)
"aFH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/south)
"aFI" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/south)
"aFJ" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/surface/hydroponics/south)
"aFK" = (
/obj/effect/decal/cleanable/blood/gibs,
@@ -11298,32 +8989,23 @@
dir = 8;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/surface/command/control)
"aFM" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFO" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFQ" = (
/obj/structure/disposalpipe/segment{
@@ -11333,9 +9015,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFR" = (
/obj/structure/disposalpipe/junction{
@@ -11344,9 +9024,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFS" = (
/obj/structure/disposalpipe/segment{
@@ -11364,9 +9042,7 @@
dir = 1;
name = "\improper Colony Control Center"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFT" = (
/obj/structure/disposalpipe/segment{
@@ -11375,27 +9051,21 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFU" = (
/obj/structure/disposalpipe/junction{
dir = 4
},
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFW" = (
/obj/structure/disposalpipe/junction{
@@ -11405,19 +9075,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aFX" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/surface/command/control)
"aFY" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -11426,38 +9091,28 @@
dir = 2;
name = "Colony Garage"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/one)
"aFZ" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "garage_ice_1";
name = "\improper Garage Shutters"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/one)
"aGb" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
dir = 2;
name = "Colony Garage"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/garage/two)
"aGc" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "garage_ice_2";
name = "\improper Garage Shutters"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/garage/two)
"aGd" = (
/obj/structure/closet/crate,
@@ -11470,18 +9125,12 @@
/obj/item/stack/sheet/mineral/phoron{
amount = 15
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"aGe" = (
/obj/structure/largecrate/random,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"aGf" = (
/turf/closed/ice/end{
@@ -11490,10 +9139,7 @@
/area/ice_colony/exterior/surface/valley/southeast)
"aGg" = (
/obj/structure/machinery/vending/hydroseeds,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/hydroponics/south)
"aGh" = (
/turf/closed/ice_rock/singleT{
@@ -11502,21 +9148,14 @@
/area/ice_colony/exterior/surface/cliff)
"aGi" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/ice_colony/surface/command/control)
"aGj" = (
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/command/control)
"aGk" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/command/control)
"aGl" = (
/obj/structure/disposalpipe/segment{
@@ -11527,18 +9166,14 @@
icon_state = "gib6"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aGm" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/command/control)
"aGn" = (
/obj/structure/disposalpipe/segment{
@@ -11547,17 +9182,13 @@
/obj/effect/decal/cleanable/blood{
icon_state = "xgibdown1"
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/command/control)
"aGo" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/command/control)
"aGp" = (
/obj/structure/disposalpipe/segment{
@@ -11567,9 +9198,7 @@
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/command/control)
"aGq" = (
/obj/structure/disposalpipe/segment{
@@ -11577,10 +9206,7 @@
icon_state = "pipe-c"
},
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/ice_colony/surface/command/control)
"aGr" = (
/obj/structure/window/framed/colony/reinforced,
@@ -11594,16 +9220,11 @@
"aGs" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control)
"aGu" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/ice_colony/surface/command/control)
"aGC" = (
/obj/structure/ice/thin/end{
@@ -11630,33 +9251,21 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"aGH" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"aGI" = (
/obj/structure/closet/crate,
/obj/item/tool/shovel/snow,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"aGJ" = (
/obj/structure/surface/table,
/obj/item/storage/bag/plants,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/surface/hydroponics/south)
"aGK" = (
/obj/structure/ladder{
@@ -11665,10 +9274,7 @@
id = "hydroponics_ladder";
pixel_y = 16
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/hydroponics/south)
"aGL" = (
/turf/closed/wall/r_wall,
@@ -11755,10 +9361,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"aHd" = (
/obj/structure/machinery/door_control{
@@ -11769,10 +9372,7 @@
req_access_txt = "100";
specialfunctions = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"aHf" = (
/turf/closed/ice/end{
@@ -11906,20 +9506,14 @@
/area/ice_colony/exterior/surface/clearing/pass)
"aHy" = (
/obj/structure/machinery/floodlight,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"aHz" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/surface/clinic/lobby)
"aHD" = (
/obj/structure/closet/secure_closet/guncabinet,
@@ -11988,17 +9582,11 @@
/area/ice_colony/surface/command/control/pv2)
"aHP" = (
/obj/item/storage/toolbox/emergency,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"aHQ" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"aHS" = (
/obj/structure/ice/thin/straight,
@@ -12020,9 +9608,7 @@
"aHV" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/ice_colony/surface/hydroponics/lobby)
"aHW" = (
/obj/structure/surface/table/woodentable,
@@ -12038,10 +9624,7 @@
"aHY" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/surface/hydroponics/lobby)
"aHZ" = (
/obj/structure/surface/table/woodentable,
@@ -12082,10 +9665,7 @@
"aIg" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/ice_colony/surface/hydroponics/lobby)
"aIh" = (
/obj/structure/surface/table/woodentable,
@@ -12108,17 +9688,11 @@
/area/ice_colony/exterior/surface/clearing/pass)
"aIm" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"aIn" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"aIo" = (
/obj/structure/ice/thin/corner,
@@ -12170,10 +9744,7 @@
"aIw" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/ice_colony/surface/hydroponics/lobby)
"aIx" = (
/obj/structure/machinery/vending/cigarette/colony,
@@ -12290,16 +9861,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/south)
"aIT" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/surface/hydroponics/south)
"aIU" = (
/obj/structure/ice/ice_rock/cornerOverlay{
@@ -12371,16 +9937,10 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/telecomms)
"aJi" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/telecomms)
"aJj" = (
/obj/structure/machinery/door_control{
@@ -12391,10 +9951,7 @@
req_access_txt = "100";
specialfunctions = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/telecomms)
"aJk" = (
/obj/effect/landmark/hunter_secondary,
@@ -12410,17 +9967,11 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/telecomms)
"aJp" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/telecomms)
"aJq" = (
/turf/closed/shuttle/elevator{
@@ -12474,18 +10025,12 @@
},
/area/shuttle/elevator1/ground)
"aJE" = (
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/ice_colony/surface/storage_unit/telecomms)
"aJF" = (
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/telecomms)
"aJG" = (
/obj/structure/tunnel{
@@ -12573,14 +10118,10 @@
/area/ice_colony/surface/hangar/checkpoint)
"aKi" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aKj" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aKk" = (
/obj/effect/landmark/hunter_primary,
@@ -12592,10 +10133,7 @@
/area/ice_colony/exterior/surface/valley/southwest)
"aKn" = (
/obj/structure/machinery/floodlight,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aKo" = (
/obj/structure/surface/rack,
@@ -12603,10 +10141,7 @@
/obj/item/ammo_rcd,
/obj/item/ammo_rcd,
/obj/item/ammo_rcd,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aKp" = (
/obj/structure/machinery/light/small{
@@ -12617,25 +10152,16 @@
icon_state = "ladderdown";
id = "research_storage_ladder"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aKq" = (
/obj/structure/surface/rack,
/obj/item/tool/crowbar/red,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aKr" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aKs" = (
/obj/structure/ice/thin/single,
@@ -12691,10 +10217,7 @@
/area/ice_colony/exterior/surface/clearing/south)
"aKK" = (
/obj/structure/machinery/computer/cameras,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/surface/hangar/checkpoint)
"aKL" = (
/obj/structure/closet/secure_closet/security,
@@ -12703,50 +10226,32 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/surface/hangar/checkpoint)
"aKN" = (
/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aKO" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aKP" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aKQ" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aKR" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aKS" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aKT" = (
/obj/structure/ice/thin/corner{
@@ -12851,45 +10356,33 @@
/area/ice_colony/exterior/surface/clearing/south)
"aLl" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/hangar/checkpoint)
"aLo" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Colony Security Checkpoint"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/hangar/checkpoint)
"aLq" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aLr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aLs" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aLt" = (
/turf/closed/ice/corner{
@@ -12898,10 +10391,7 @@
/area/ice_colony/exterior/surface/valley/southeast)
"aLv" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aLw" = (
/obj/structure/ice/thin/corner{
@@ -12921,30 +10411,21 @@
/turf/open/floor/wood,
/area/ice_colony/surface/bar/canteen)
"aLD" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/surface/hangar/checkpoint)
"aLE" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aLF" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aLG" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aLH" = (
/turf/closed/ice/straight{
@@ -12977,20 +10458,14 @@
dir = 8
},
/obj/item/tool/shovel/snow,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aLP" = (
/obj/structure/machinery/power/port_gen/pacman,
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aLQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -13117,18 +10592,13 @@
dir = 8
},
/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/hangar/checkpoint)
"aMk" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aMl" = (
/obj/structure/bed/chair/office/light{
@@ -13137,10 +10607,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/surface/hangar/checkpoint)
"aMm" = (
/obj/structure/surface/table/reinforced,
@@ -13155,61 +10622,45 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/hangar/checkpoint)
"aMn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/hangar/checkpoint)
"aMo" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aMp" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aMq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aMr" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aMs" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aMt" = (
/obj/structure/fence,
@@ -13224,27 +10675,19 @@
"aMv" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/research/field_gear)
"aMw" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/research/field_gear)
"aMx" = (
/obj/structure/surface/table,
/obj/item/device/lightreplacer,
/obj/item/clothing/mask/rebreather,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/disposals)
"aMy" = (
/turf/closed/shuttle/elevator{
@@ -13325,10 +10768,7 @@
/turf/open/floor/plating,
/area/ice_colony/surface/bar/bar)
"aMT" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/hangar/checkpoint)
"aMU" = (
/obj/structure/surface/table/reinforced,
@@ -13340,28 +10780,18 @@
},
/obj/item/paper_bin,
/obj/item/tool/stamp,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/hangar/checkpoint)
"aMV" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/hangar/checkpoint)
"aMW" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aMX" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aMY" = (
/obj/structure/ice/ice_rock/cornerOverlay{
@@ -13379,27 +10809,16 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/research/field_gear)
"aNa" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/research/field_gear)
"aNb" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/north,
/area/ice_colony/surface/research/field_gear)
"aNc" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/field_gear)
"aNd" = (
/turf/closed/shuttle/elevator,
@@ -13442,10 +10861,7 @@
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aNp" = (
/obj/structure/machinery/door_control{
@@ -13456,19 +10872,13 @@
req_access_txt = "103";
specialfunctions = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aNq" = (
/obj/item/stack/sheet/mineral/phoron{
amount = 15
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"aNr" = (
/obj/structure/ice/thin/corner{
@@ -13482,18 +10892,14 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aNt" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/crap_item,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/item/tool/kitchen/utensil/knife,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aNu" = (
/obj/structure/surface/table/reinforced,
@@ -13501,17 +10907,13 @@
dir = 1
},
/obj/item/reagent_container/food/snacks/cheeseburger,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aNv" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/fortunecookie/prefilled,
/obj/item/tool/kitchen/utensil/fork,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aNw" = (
/obj/structure/surface/table/reinforced,
@@ -13522,16 +10924,12 @@
pixel_x = -1;
pixel_y = 2
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aNx" = (
/obj/effect/landmark/crap_item,
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aNy" = (
/obj/structure/surface/table/reinforced,
@@ -13539,17 +10937,13 @@
dir = 1
},
/obj/item/reagent_container/food/snacks/hotchili,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aNz" = (
/obj/structure/machinery/door/window/northright{
name = "Canteen"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aNA" = (
/obj/structure/surface/table/woodentable,
@@ -13575,57 +10969,37 @@
/area/ice_colony/surface/bar/bar)
"aNK" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/surface/hangar/checkpoint)
"aNL" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/garage/two)
"aNM" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/command/control/office)
"aNN" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aNO" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/checkpoint)
"aNP" = (
/obj/structure/closet/radiation,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/research/field_gear)
"aNQ" = (
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/ice_colony/surface/research/field_gear)
"aNR" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/field_gear)
"aNT" = (
/obj/structure/surface/rack,
@@ -13643,20 +11017,14 @@
/obj/structure/extinguisher_cabinet{
pixel_x = -32
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aNX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aNZ" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aOa" = (
/obj/structure/machinery/smartfridge,
@@ -13692,17 +11060,11 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Security Checkpoint"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/surface/hangar/checkpoint)
"aOi" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/hangar/checkpoint)
"aOj" = (
/turf/closed/wall/r_wall,
@@ -13712,17 +11074,11 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/research/field_gear)
"aOl" = (
/obj/structure/closet/radiation,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/research/field_gear)
"aOm" = (
/turf/closed/wall,
@@ -13748,40 +11104,29 @@
/area/ice_colony/exterior/surface/cliff)
"aOv" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/garage/repair)
"aOw" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aOy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aOz" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aOA" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aOB" = (
/obj/effect/decal/cleanable/blood{
@@ -13816,27 +11161,19 @@
/turf/open/floor/plating,
/area/ice_colony/surface/hangar/alpha)
"aOH" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/surface/hangar/alpha)
"aOI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/north,
/area/ice_colony/surface/hangar/alpha)
"aOJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2,
/area/ice_colony/surface/hangar/alpha)
"aOK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -13845,9 +11182,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/hangar/alpha)
"aOL" = (
/obj/effect/spawner/random/toolbox,
@@ -13857,9 +11192,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/hangar/alpha)
"aOM" = (
/obj/structure/machinery/light{
@@ -13871,9 +11204,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/hangar/alpha)
"aON" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -13883,9 +11214,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/hangar/alpha)
"aOO" = (
/obj/structure/machinery/disposal,
@@ -13896,10 +11225,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/west,
/area/ice_colony/surface/hangar/alpha)
"aOP" = (
/obj/structure/shuttle/diagonal{
@@ -13908,9 +11234,7 @@
/obj/structure/shuttle/diagonal{
icon_state = "swall_f5"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aOQ" = (
/obj/structure/machinery/power/apc{
@@ -13922,22 +11246,15 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/hangar/alpha)
"aOR" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/hallway)
"aOS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/hallway)
"aOT" = (
/obj/structure/machinery/power/apc{
@@ -13949,10 +11266,7 @@
dir = 8;
pixel_x = -24
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/surface/hangar/beta)
"aOV" = (
/obj/structure/machinery/disposal,
@@ -13960,9 +11274,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2,
/area/ice_colony/surface/hangar/beta)
"aOW" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -13972,9 +11284,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/hangar/beta)
"aOX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -13989,9 +11299,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/hangar/beta)
"aOY" = (
/obj/effect/decal/warning_stripes{
@@ -14006,9 +11314,7 @@
id = "hangar_ladder1";
pixel_y = 16
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/hangar/beta)
"aOZ" = (
/obj/effect/decal/warning_stripes{
@@ -14017,9 +11323,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/hangar/beta)
"aPa" = (
/obj/structure/machinery/space_heater,
@@ -14029,45 +11333,27 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/west,
/area/ice_colony/surface/hangar/beta)
"aPb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/east,
/area/ice_colony/surface/hangar/beta)
"aPc" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/hangar/beta)
"aPd" = (
/obj/structure/closet/radiation,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/research/field_gear)
"aPe" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/surface/research)
"aPf" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/research)
"aPg" = (
/turf/closed/shuttle/elevator{
@@ -14094,15 +11380,10 @@
},
/area/shuttle/elevator3/ground)
"aPl" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aPm" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/research)
"aPn" = (
/obj/structure/machinery/door_control{
@@ -14113,10 +11394,7 @@
req_access_txt = "103";
specialfunctions = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/research)
"aPr" = (
/obj/structure/machinery/firealarm{
@@ -14125,9 +11403,7 @@
},
/obj/structure/machinery/vending/dinnerware,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aPs" = (
/obj/structure/machinery/processor,
@@ -14135,9 +11411,7 @@
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aPt" = (
/obj/structure/sink{
@@ -14150,24 +11424,18 @@
pixel_x = 6;
pixel_y = -2
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aPu" = (
/obj/structure/surface/table,
/obj/structure/machinery/microwave,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aPv" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/flour,
/obj/item/tool/kitchen/rollingpin,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aPw" = (
/obj/structure/surface/table,
@@ -14185,9 +11453,7 @@
pixel_y = 3
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aPx" = (
/obj/structure/machinery/cm_vending/sorted/boozeomat,
@@ -14228,47 +11494,33 @@
/turf/open/floor/plating,
/area/ice_colony/surface/hangar/alpha)
"aPD" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"aPE" = (
/obj/item/shard,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aPF" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/alpha)
"aPG" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aPH" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aPI" = (
/obj/structure/shuttle/diagonal{
icon_state = "swall_f6"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aPJ" = (
/obj/structure/window/shuttle,
@@ -14278,62 +11530,43 @@
/obj/structure/shuttle/diagonal{
icon_state = "swall_f10"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aPL" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aPM" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"aPP" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/beta)
"aPR" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"aPS" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aPT" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aPU" = (
/obj/structure/shuttle/diagonal{
icon_state = "swall_f6"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aPV" = (
/obj/structure/window/shuttle,
@@ -14343,40 +11576,28 @@
/obj/structure/shuttle/diagonal{
icon_state = "swall_f10"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aPX" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aPY" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/beta)
"aPZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aQa" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"aQb" = (
/obj/structure/machinery/power/apc{
@@ -14388,18 +11609,13 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/research/field_gear)
"aQc" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/field_gear)
"aQd" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -14409,49 +11625,30 @@
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/field_gear)
"aQe" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aQf" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/research)
"aQg" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/access/research,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/ice_colony/surface/research)
"aQh" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/ice_colony/surface/research)
"aQi" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/ice_colony/surface/research)
"aQj" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/research)
"aQk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -14461,9 +11658,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aQl" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -14472,9 +11667,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aQt" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -14482,9 +11675,7 @@
dir = 1;
name = "\improper Anti-Freeze Canteen Freezer"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aQu" = (
/obj/effect/decal/cleanable/blood{
@@ -14495,9 +11686,7 @@
dir = 1;
name = "\improper Anti-Freeze Bar Freezer"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/bar)
"aQw" = (
/obj/structure/bed/stool,
@@ -14511,19 +11700,14 @@
/area/ice_colony/surface/bar/bar)
"aQz" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aQA" = (
/obj/effect/spawner/random/tool,
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/alpha)
"aQE" = (
/obj/structure/disposalpipe/segment{
@@ -14536,10 +11720,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"aQG" = (
/obj/structure/disposalpipe/segment{
@@ -14548,9 +11729,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aQH" = (
/obj/structure/disposalpipe/segment{
@@ -14562,40 +11741,29 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Aerodrome Hangar Alpha"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aQI" = (
/obj/structure/disposalpipe/junction,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/hallway)
"aQJ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/hallway)
"aQN" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aQO" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"aQP" = (
/obj/structure/ice/thin,
@@ -14606,31 +11774,20 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/research/field_gear)
"aQR" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/field_gear)
"aQT" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/research)
"aQV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/research)
"aQW" = (
/obj/structure/machinery/light{
@@ -14642,10 +11799,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/surface/research)
"aQX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -14654,37 +11808,25 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/ice_colony/surface/research)
"aQY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/ice_colony/surface/research)
"aQZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/ice_colony/surface/research)
"aRa" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/ice_colony/surface/research)
"aRb" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -14697,10 +11839,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/ice_colony/surface/research)
"aRc" = (
/obj/structure/machinery/light{
@@ -14712,102 +11851,71 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/surface/research)
"aRd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/surface/research)
"aRe" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/north,
/area/ice_colony/surface/research)
"aRf" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aRm" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aRn" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/food/snacks/bigbiteburger,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aRo" = (
/obj/item/tool/kitchen/knife/butcher,
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aRp" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aRq" = (
/obj/structure/kitchenspike,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aRr" = (
/obj/structure/machinery/gibber,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aRs" = (
/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/bar)
"aRt" = (
/obj/item/storage/toolbox/emergency,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/bar)
"aRu" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/bar)
"aRv" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/bar)
"aRw" = (
/obj/structure/machinery/space_heater,
@@ -14827,17 +11935,11 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/alpha)
"aRD" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/beta)
"aRE" = (
/turf/closed/shuttle{
@@ -14847,38 +11949,27 @@
"aRI" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"aRJ" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/research)
"aRK" = (
/obj/structure/disposalpipe/junction{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aRL" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/research)
"aRM" = (
/obj/effect/decal/warning_stripes{
@@ -14887,10 +11978,7 @@
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/surface/research)
"aRN" = (
/obj/structure/disposalpipe/segment{
@@ -14899,38 +11987,26 @@
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/ice_colony/surface/research)
"aRO" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/ice_colony/surface/research)
"aRP" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/ice_colony/surface/research)
"aRQ" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/ice_colony/surface/research)
"aRR" = (
/obj/structure/disposalpipe/segment{
@@ -14939,10 +12015,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/ice_colony/surface/research)
"aRS" = (
/obj/structure/disposalpipe/segment{
@@ -14951,27 +12024,19 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/surface/research)
"aRT" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/research)
"aRU" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aRV" = (
/obj/structure/pipes/vents/pump{
@@ -14981,27 +12046,20 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aRW" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/research)
"aRY" = (
/obj/structure/machinery/light/small{
dir = 8
},
/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aRZ" = (
/obj/item/reagent_container/food/snacks/meat{
@@ -15019,53 +12077,38 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aSa" = (
/obj/structure/reagent_dispensers/beerkeg,
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/bar)
"aSb" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/bar)
"aSc" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/bar)
"aSd" = (
/obj/structure/largecrate/random,
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/bar)
"aSe" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"aSf" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aSg" = (
/turf/closed/shuttle{
@@ -15088,22 +12131,15 @@
},
/area/ice_colony/surface/hangar/alpha)
"aSm" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/alpha)
"aSn" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aSo" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aSp" = (
/turf/closed/shuttle{
@@ -15128,10 +12164,7 @@
"aSu" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"aSv" = (
/obj/structure/ice/thin/junction{
@@ -15147,19 +12180,13 @@
/obj/item/clothing/gloves/black,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/research/temporary)
"aSy" = (
/obj/structure/surface/table,
/obj/item/clothing/gloves/black,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/research/temporary)
"aSz" = (
/obj/structure/surface/table,
@@ -15169,10 +12196,7 @@
dir = 1
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/research/temporary)
"aSA" = (
/obj/structure/machinery/light{
@@ -15180,10 +12204,7 @@
},
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/surface/command/control/office)
"aSB" = (
/turf/closed/wall,
@@ -15194,27 +12215,20 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aSD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aSE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/research)
"aSF" = (
/obj/effect/decal/warning_stripes{
@@ -15223,35 +12237,23 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/surface/research)
"aSG" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/ice_colony/surface/research)
"aSH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/ice_colony/surface/research)
"aSI" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/ice_colony/surface/research)
"aSJ" = (
/obj/effect/decal/warning_stripes{
@@ -15260,27 +12262,19 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/surface/research)
"aSK" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/research)
"aSL" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/research)
"aSM" = (
/obj/effect/decal/warning_stripes{
@@ -15291,34 +12285,25 @@
name = "Research Garage Lock";
pixel_x = 24
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/research)
"aSO" = (
/obj/structure/machinery/alarm{
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aSP" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aSQ" = (
/obj/structure/plasticflaps,
/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aSR" = (
/obj/effect/decal/cleanable/blood/gibs/body,
@@ -15326,155 +12311,102 @@
dir = 1
},
/obj/effect/landmark/corpsespawner/miner,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/bar)
"aSS" = (
/obj/structure/janitorialcart,
/obj/item/tool/mop,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/bar)
"aST" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"aTb" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"aTc" = (
/obj/structure/machinery/alarm{
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/research/temporary)
"aTd" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/temporary)
"aTe" = (
/obj/structure/machinery/firealarm{
dir = 4;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/research/temporary)
"aTf" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aTg" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/surface/research)
"aTh" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/ice_colony/surface/research)
"aTi" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/ice_colony/surface/research)
"aTj" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/ice_colony/surface/research)
"aTk" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/ice_colony/surface/research)
"aTl" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/southwest,
/area/ice_colony/surface/research)
"aTm" = (
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/surface/research)
"aTn" = (
/obj/effect/decal/warning_stripes{
icon_state = "N-corner"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/southeast,
/area/ice_colony/surface/research)
"aTo" = (
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/exterior/surface/valley/southwest)
"aTp" = (
-/turf/open/floor/plating/icefloor{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northeast,
/area/ice_colony/exterior/surface/valley/southwest)
"aTr" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/reagentgrinder,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aTs" = (
/obj/structure/machinery/chem_master/condimaster,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aTt" = (
/obj/structure/ladder{
@@ -15483,27 +12415,19 @@
id = "canteen_ladder"
},
/obj/structure/machinery/light/small,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aTu" = (
/obj/structure/closet/bodybag,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aTv" = (
/obj/structure/closet/crate/freezer/rations,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"aTw" = (
/obj/structure/kitchenspike,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/bar)
"aTx" = (
/obj/structure/surface/table,
@@ -15512,10 +12436,7 @@
dir = 8
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"aTH" = (
/obj/structure/machinery/power/apc{
@@ -15523,18 +12444,13 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/research/temporary)
"aTI" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/temporary)
"aTJ" = (
/obj/structure/disposalpipe/segment{
@@ -15544,9 +12460,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/temporary)
"aTK" = (
/obj/structure/disposalpipe/segment{
@@ -15555,9 +12469,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/temporary)
"aTL" = (
/obj/structure/disposalpipe/segment{
@@ -15569,10 +12481,7 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Omicron Temporary Sample Storage"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/research/temporary)
"aTM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -15581,45 +12490,31 @@
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aTN" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
/obj/structure/disposalpipe/junction,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aTO" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aTQ" = (
/obj/vehicle/train/cargo/engine,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aTR" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/surface/research)
"aTS" = (
/turf/open/floor/plating/icefloor,
/area/ice_colony/exterior/surface/valley/southwest)
"aTT" = (
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/exterior/surface/valley/southwest)
"aTY" = (
/turf/open/ice,
@@ -15627,28 +12522,17 @@
"aTZ" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/research/temporary)
"aUa" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/temporary)
"aUb" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/research/temporary)
"aUc" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/research)
"aUd" = (
/obj/structure/pipes/vents/pump{
@@ -15658,18 +12542,13 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/research)
"aUe" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/research)
"aUf" = (
/obj/effect/decal/warning_stripes{
@@ -15679,16 +12558,11 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/surface/research)
"aUg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"aUh" = (
/turf/closed/shuttle{
@@ -15703,18 +12577,13 @@
/obj/structure/surface/table/reinforced,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/command/control/office)
"aUm" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/beta)
"aUn" = (
/turf/closed/shuttle{
@@ -15745,10 +12614,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/ice_colony/surface/research)
"aUu" = (
/obj/effect/decal/warning_stripes{
@@ -15757,10 +12623,7 @@
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/surface/research)
"aUv" = (
/obj/effect/decal/warning_stripes{
@@ -15771,29 +12634,20 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/surface/research)
"aUw" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/surface/research)
"aUx" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/surface/research)
"aUy" = (
/obj/effect/decal/warning_stripes{
@@ -15803,21 +12657,13 @@
id = "researchoutside";
name = "Omicron Research Dome"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northeast,
/area/ice_colony/surface/research)
"aUz" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/exterior/surface/valley/southwest)
"aUA" = (
-/turf/open/floor/plating/icefloor{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southeast,
/area/ice_colony/exterior/surface/valley/southwest)
"aUH" = (
/obj/structure/disposalpipe/segment{
@@ -15827,9 +12673,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/hallway)
"aUI" = (
/obj/structure/disposalpipe/segment{
@@ -15841,9 +12685,7 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Aerodrome Hangar Beta"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aUL" = (
/obj/structure/disposalpipe/segment{
@@ -15853,10 +12695,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"aUN" = (
/obj/structure/ice/thin/end{
@@ -15875,44 +12714,26 @@
/area/ice_colony/exterior/surface/landing_pad_external)
"aUQ" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/research/temporary)
"aUR" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/ice_colony/surface/research/temporary)
"aUS" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/ice_colony/surface/research/temporary)
"aUT" = (
/obj/structure/closet/emcloset,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/research/temporary)
"aUU" = (
/obj/structure/closet/firecloset,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/research/temporary)
"aUV" = (
/obj/structure/closet/firecloset,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/research/temporary)
"aUW" = (
/turf/closed/wall,
@@ -15928,9 +12749,7 @@
dir = 1;
name = "\improper Omicron Technical Storage"
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/tech_storage)
"aUZ" = (
/turf/closed/wall/r_wall,
@@ -15940,26 +12759,19 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/hallway)
"aVc" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/junction,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/hallway)
"aVd" = (
/obj/structure/machinery/alarm{
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/beta)
"aVe" = (
/obj/structure/ice/ice_rock/cornerOverlay{
@@ -15983,116 +12795,76 @@
icon_state = "pipe-c"
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/temporary)
"aVi" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/temporary)
"aVj" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/ice_colony/surface/research/temporary)
"aVk" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/temporary)
"aVl" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/research/temporary)
"aVm" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/bomb_supply,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/research/tech_storage)
"aVn" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/research/tech_storage)
"aVp" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/research/tech_storage)
"aVq" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/tech_storage)
"aVr" = (
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/research/tech_storage)
"aVs" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/research/tech_storage)
"aVt" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- icon_state = "platebot"
- },
+/turf/open/floor/platebot,
/area/ice_colony/surface/research/tech_storage)
"aVv" = (
/obj/structure/fence,
-/turf/open/floor/plating/icefloor{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northwest,
/area/ice_colony/exterior/surface/container_yard)
"aVw" = (
/obj/structure/fence,
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/exterior/surface/container_yard)
"aVx" = (
/obj/structure/fence,
-/turf/open/floor/plating/icefloor{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northeast,
/area/ice_colony/exterior/surface/container_yard)
"aVy" = (
/turf/closed/shuttle{
@@ -16103,36 +12875,26 @@
/obj/structure/surface/table,
/obj/item/storage/belt/utility,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/alpha)
"aVA" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/hallway)
"aVB" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/hallway)
"aVC" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/beta)
"aVD" = (
/turf/closed/shuttle{
@@ -16144,10 +12906,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/beta)
"aVF" = (
/obj/structure/machinery/landinglight/ds1{
@@ -16156,46 +12915,31 @@
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northwest,
/area/ice_colony/exterior/surface/landing_pad)
"aVG" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/exterior/surface/landing_pad)
"aVH" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/exterior/surface/landing_pad)
"aVI" = (
/obj/structure/machinery/landinglight/ds1{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/exterior/surface/landing_pad)
"aVJ" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/exterior/surface/landing_pad)
"aVK" = (
/obj/structure/machinery/landinglight/ds1{
@@ -16204,69 +12948,43 @@
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northeast,
/area/ice_colony/exterior/surface/landing_pad)
"aVL" = (
/obj/structure/surface/rack,
/obj/item/clothing/mask/gas,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/research/temporary)
"aVM" = (
/obj/structure/machinery/light,
/obj/structure/surface/rack,
/obj/item/clothing/mask/gas,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/ice_colony/surface/research/temporary)
"aVN" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/research/temporary)
"aVO" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/research/tech_storage)
"aVP" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/tech_storage)
"aVQ" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/research/tech_storage)
"aVR" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/research/tech_storage)
"aVT" = (
/obj/structure/fence,
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/exterior/surface/container_yard)
"aVU" = (
/obj/structure/machinery/colony_floodlight,
@@ -16281,95 +12999,67 @@
/area/ice_colony/exterior/surface/container_yard)
"aVX" = (
/obj/structure/fence,
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/exterior/surface/container_yard)
"aVZ" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"aWa" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aWb" = (
/obj/structure/shuttle/diagonal{
icon_state = "swall_f5"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aWe" = (
/obj/structure/shuttle/diagonal{
icon_state = "swall_f9"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aWf" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/alpha)
"aWg" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/hallway)
"aWh" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/hallway)
"aWi" = (
/obj/structure/surface/table,
/obj/item/storage/belt/utility,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/beta)
"aWj" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aWk" = (
/obj/structure/shuttle/diagonal{
icon_state = "swall_f5"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aWn" = (
/obj/structure/shuttle/diagonal{
icon_state = "swall_f9"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aWo" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
@@ -16378,10 +13068,7 @@
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northwest,
/area/ice_colony/exterior/surface/landing_pad)
"aWp" = (
/turf/open/floor/plating,
@@ -16393,10 +13080,7 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northeast,
/area/ice_colony/exterior/surface/landing_pad)
"aWs" = (
/obj/structure/surface/table,
@@ -16411,18 +13095,13 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/research/tech_storage)
"aWt" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/tech_storage)
"aWu" = (
/obj/structure/disposalpipe/segment{
@@ -16432,18 +13111,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/tech_storage)
"aWv" = (
/obj/effect/landmark/survivor_spawner,
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research/tech_storage)
"aWw" = (
/obj/structure/closet/wardrobe/green,
@@ -16451,10 +13126,7 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/surface/hydroponics/south)
"aWB" = (
/obj/structure/cargo_container/watatsumi/leftmid,
@@ -16486,10 +13158,7 @@
/area/ice_colony/exterior/surface/container_yard)
"aWI" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"aWJ" = (
/turf/closed/shuttle{
@@ -16500,29 +13169,20 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/alpha)
"aWL" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/beta)
"aWM" = (
/obj/structure/machinery/space_heater,
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"aWN" = (
/turf/closed/shuttle{
@@ -16531,19 +13191,13 @@
/area/ice_colony/surface/hangar/beta)
"aWO" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"aWP" = (
/obj/structure/machinery/landinglight/ds1{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/exterior/surface/landing_pad)
"aWQ" = (
/obj/structure/machinery/camera/autoname/lz_camera,
@@ -16553,83 +13207,57 @@
/obj/structure/machinery/landinglight/ds1{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/exterior/surface/landing_pad)
"aWS" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/research/tech_storage)
"aWT" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/tech_storage)
"aWU" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/tech_storage)
"aWV" = (
/obj/structure/surface/rack,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/tech_storage)
"aWW" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/tech_storage)
"aWX" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/tech_storage)
"aWY" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/tech_storage)
"aWZ" = (
/obj/structure/surface/rack,
/obj/item/storage/box/lightstick/red,
/obj/item/storage/box/lightstick/red,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/tech_storage)
"aXa" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/west,
/area/ice_colony/surface/research/tech_storage)
"aXb" = (
/obj/structure/surface/table,
/obj/item/circuitboard/apc,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/research/tech_storage)
"aXc" = (
/obj/structure/cargo_container/arious/leftmid,
@@ -16659,32 +13287,21 @@
/obj/structure/barricade/metal{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/exterior/surface/container_yard)
"aXj" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/hangar/alpha)
"aXk" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/west,
/area/ice_colony/surface/hangar/alpha)
"aXl" = (
/obj/structure/shuttle/diagonal{
dir = 9;
icon_state = "wall"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aXm" = (
/turf/closed/shuttle{
@@ -16696,34 +13313,24 @@
dir = 5;
icon_state = "wall"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aXo" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/alpha)
"aXr" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/hangar/beta)
"aXt" = (
/obj/structure/shuttle/diagonal{
dir = 9;
icon_state = "wall"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aXu" = (
/turf/closed/shuttle{
@@ -16735,21 +13342,14 @@
dir = 5;
icon_state = "wall"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aXw" = (
-/turf/open/floor{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2,
/area/ice_colony/surface/hangar/beta)
"aXx" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/hangar/beta)
"aXy" = (
/obj/structure/ice/thin/end{
@@ -16761,32 +13361,21 @@
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/exterior/surface/landing_pad)
"aXA" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/exterior/surface/landing_pad)
"aXB" = (
-/turf/open/floor{
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2,
/area/ice_colony/surface/research/tech_storage)
"aXC" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/research/tech_storage)
"aXH" = (
/obj/structure/cargo_container/grant/left,
@@ -16808,46 +13397,33 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/hangar/alpha)
"aXM" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/hangar/alpha)
"aXN" = (
/obj/structure/shuttle/diagonal{
dir = 6;
icon_state = "wall"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aXO" = (
/obj/structure/shuttle/diagonal{
dir = 10;
icon_state = "wall"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"aXP" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/hangar/alpha)
"aXQ" = (
/obj/structure/machinery/light{
@@ -16858,72 +13434,50 @@
name = "hangar shutter control";
pixel_y = -30
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/hangar/alpha)
"aXR" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Aerodrome Hangar"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/hangar/hallway)
"aXS" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/hangar/hallway)
"aXT" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/hangar/beta)
"aXU" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/hangar/beta)
"aXV" = (
/obj/structure/shuttle/diagonal{
dir = 6;
icon_state = "wall"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aXW" = (
/obj/structure/shuttle/diagonal{
dir = 10;
icon_state = "wall"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"aXX" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/hangar/beta)
"aXY" = (
/obj/structure/machinery/light{
@@ -16934,10 +13488,7 @@
name = "hangar shutter control";
pixel_y = -30
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/hangar/beta)
"aXZ" = (
/obj/structure/ice/thin/corner,
@@ -16958,35 +13509,22 @@
/area/ice_colony/exterior/surface/landing_pad_external)
"aYd" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/research/tech_storage)
"aYe" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/tech_storage)
"aYf" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/research/tech_storage)
"aYg" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/research/tech_storage)
"aYi" = (
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/exterior/surface/container_yard)
"aYj" = (
/obj/effect/decal/warning_stripes{
@@ -16999,10 +13537,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/hangar/alpha)
"aYk" = (
/obj/effect/decal/warning_stripes{
@@ -17012,10 +13547,7 @@
id = "hangar_ice_1";
name = "\improper Hangar Shutters"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/hangar/alpha)
"aYl" = (
/obj/effect/decal/warning_stripes{
@@ -17028,10 +13560,7 @@
id = "hangar_ice_1";
name = "\improper Hangar Shutters"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/hangar/alpha)
"aYo" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -17049,10 +13578,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/hangar/beta)
"aYq" = (
/obj/effect/decal/warning_stripes{
@@ -17062,10 +13588,7 @@
id = "hangar_ice_2";
name = "\improper Hangar Shutters"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/hangar/beta)
"aYr" = (
/obj/effect/decal/warning_stripes{
@@ -17078,10 +13601,7 @@
id = "hangar_ice_2";
name = "\improper Hangar Shutters"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/hangar/beta)
"aYs" = (
/obj/structure/ice/thin/end,
@@ -17091,10 +13611,7 @@
/obj/structure/machinery/landinglight/ds1{
dir = 8
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/ice_colony/exterior/surface/landing_pad)
"aYx" = (
/obj/vehicle/train/cargo/trolley,
@@ -17109,16 +13626,10 @@
dir = 8
},
/obj/structure/machinery/colony_floodlight,
-/turf/open/floor/plating/icefloor{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northwest,
/area/ice_colony/exterior/surface/landing_pad)
"aYB" = (
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/exterior/surface/landing_pad)
"aYC" = (
/turf/open/floor/plating/icefloor,
@@ -17128,39 +13639,25 @@
/turf/open/floor/plating/icefloor,
/area/ice_colony/exterior/surface/landing_pad)
"aYE" = (
-/turf/open/floor/plating/icefloor{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southwest,
/area/ice_colony/exterior/surface/landing_pad)
"aYG" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/exterior/surface/landing_pad)
"aYH" = (
-/turf/open/floor/plating/icefloor{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southeast,
/area/ice_colony/exterior/surface/landing_pad)
"aYI" = (
/obj/structure/machinery/floodlight/landing,
-/turf/open/floor/plating/icefloor{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northeast,
/area/ice_colony/exterior/surface/landing_pad)
"aYJ" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/ice_colony/exterior/surface/landing_pad)
"aYK" = (
/turf/closed/ice/straight{
@@ -17176,16 +13673,10 @@
/obj/structure/barricade/metal{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/exterior/surface/landing_pad)
"aYO" = (
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/exterior/surface/landing_pad)
"aYP" = (
/obj/structure/lz_sign/ice_sign,
@@ -17198,10 +13689,7 @@
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
},
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/ice_colony/exterior/surface/landing_pad)
"aYR" = (
/obj/structure/machinery/floodlight/landing,
@@ -17211,10 +13699,7 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northeast,
/area/ice_colony/exterior/surface/landing_pad)
"aYS" = (
/turf/closed/ice/straight,
@@ -17226,10 +13711,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/exterior/surface/landing_pad)
"aZb" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -17264,25 +13746,16 @@
/obj/structure/barricade/metal{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/exterior/surface/landing_pad)
"aZg" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/computer/shuttle_control/dropship1,
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/landing/console)
"aZh" = (
/obj/structure/machinery/floodlight/landing,
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/exterior/surface/landing_pad)
"aZi" = (
/obj/structure/machinery/landinglight/ds1{
@@ -17295,10 +13768,7 @@
/turf/open/ice,
/area/ice_colony/exterior/surface/landing_pad_external)
"aZm" = (
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/exterior/surface/landing_pad)
"aZn" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -17336,30 +13806,19 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/exterior/surface/landing_pad)
"aZx" = (
/obj/structure/fence,
-/turf/open/floor/plating/icefloor{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southwest,
/area/ice_colony/exterior/surface/container_yard)
"aZy" = (
/obj/structure/fence,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/exterior/surface/container_yard)
"aZz" = (
/obj/structure/fence,
-/turf/open/floor/plating/icefloor{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southeast,
/area/ice_colony/exterior/surface/container_yard)
"aZA" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
@@ -17371,20 +13830,14 @@
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/exterior/surface/landing_pad)
"aZC" = (
/obj/structure/barricade/metal{
dir = 8
},
/obj/structure/machinery/colony_floodlight,
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/exterior/surface/landing_pad)
"aZE" = (
/obj/structure/ice/thin/corner{
@@ -17420,20 +13873,14 @@
/area/ice_colony/exterior/surface/landing_pad)
"aZQ" = (
/obj/structure/barricade/metal,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/exterior/surface/landing_pad)
"aZR" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/exterior/surface/landing_pad)
"aZS" = (
/obj/structure/machinery/floodlight/landing,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/exterior/surface/landing_pad)
"aZT" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -17496,10 +13943,7 @@
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
},
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/ice_colony/exterior/surface/landing_pad)
"baf" = (
/obj/structure/machinery/floodlight/landing,
@@ -17507,10 +13951,7 @@
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southeast,
/area/ice_colony/exterior/surface/landing_pad)
"bag" = (
/obj/structure/ice/thin/corner{
@@ -17538,28 +13979,16 @@
/area/ice_colony/exterior/surface/landing_pad_external)
"ban" = (
/obj/structure/machinery/floodlight/landing,
-/turf/open/floor/plating/icefloor{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southeast,
/area/ice_colony/exterior/surface/landing_pad)
"bao" = (
-/turf/open/floor/plating/icefloor{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northwest,
/area/ice_colony/underground/hangar)
"bap" = (
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/underground/hangar)
"baq" = (
-/turf/open/floor/plating/icefloor{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northeast,
/area/ice_colony/underground/hangar)
"bar" = (
/obj/structure/ice/thin/end,
@@ -17587,10 +14016,7 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 8
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/ice_colony/exterior/surface/landing_pad)
"bax" = (
/obj/structure/ice/thin/junction{
@@ -17602,10 +14028,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/underground/hangar)
"baz" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
@@ -17617,17 +14040,11 @@
/area/ice_colony/underground/hangar)
"baB" = (
/obj/structure/machinery/landinglight/ds2,
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/underground/hangar)
"baC" = (
/obj/structure/machinery/landinglight/ds2/delaythree,
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/underground/hangar)
"baD" = (
/obj/structure/machinery/landinglight/ds2,
@@ -17635,43 +14052,28 @@
/area/ice_colony/underground/hangar)
"baE" = (
/obj/structure/machinery/landinglight/ds2/delaythree,
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/underground/hangar)
"baF" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/underground/hangar)
"baH" = (
/obj/structure/machinery/landinglight/ds1,
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southwest,
/area/ice_colony/exterior/surface/landing_pad)
"baI" = (
/obj/structure/machinery/landinglight/ds1,
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southeast,
/area/ice_colony/exterior/surface/landing_pad)
"baJ" = (
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/underground/hangar)
"baK" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
@@ -17686,10 +14088,7 @@
/turf/open/floor/plating/icefloor,
/area/ice_colony/underground/hangar)
"baN" = (
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/underground/hangar)
"baO" = (
/obj/structure/machinery/landinglight/ds2{
@@ -17721,10 +14120,7 @@
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/exterior/surface/landing_pad)
"baZ" = (
/obj/structure/ice/thin/corner{
@@ -17739,9 +14135,7 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/underground/hangar)
"bbc" = (
/obj/structure/machinery/camera/autoname/lz_camera,
@@ -17751,9 +14145,7 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/underground/hangar)
"bbg" = (
/obj/structure/ice/thin/straight,
@@ -17780,15 +14172,11 @@
/area/ice_colony/exterior/surface/cliff)
"bbl" = (
/obj/structure/machinery/landinglight/ds1/delayone,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/exterior/surface/landing_pad)
"bbm" = (
/obj/structure/machinery/landinglight/ds1/delaythree,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/exterior/surface/landing_pad)
"bbn" = (
/turf/open/gm/empty,
@@ -17797,19 +14185,13 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/underground/hangar)
"bbq" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/underground/hangar)
"bbt" = (
/obj/structure/ice/thin/junction{
@@ -17825,57 +14207,39 @@
dir = 1;
name = "\improper Colony Storeroom"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/tcomms)
"bby" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 8
},
/obj/structure/machinery/landinglight/ds1/delaythree,
-/turf/open/floor/plating/icefloor{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southwest,
/area/ice_colony/exterior/surface/landing_pad)
"bbz" = (
/obj/structure/machinery/landinglight/ds1,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/exterior/surface/landing_pad)
"bbA" = (
/obj/structure/machinery/landinglight/ds1/delaytwo,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/exterior/surface/landing_pad)
"bbB" = (
/obj/structure/machinery/landinglight/ds1/delayone,
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southeast,
/area/ice_colony/exterior/surface/landing_pad)
"bbE" = (
/turf/closed/wall/r_wall,
/area/ice_colony/surface/tcomms)
"bbF" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/surface/tcomms)
"bbG" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/tcomms)
"bbI" = (
/obj/structure/ice/thin/single,
@@ -17899,9 +14263,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/ice_colony/surface/tcomms)
"bbW" = (
/obj/structure/ice/thin/corner{
@@ -17951,17 +14313,11 @@
/area/ice_colony/underground/hangar)
"bcg" = (
/obj/structure/inflatable,
-/turf/open/floor/plating/icefloor{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northwest,
/area/ice_colony/surface/excavation/storage)
"bch" = (
/obj/structure/inflatable,
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/surface/excavation/storage)
"bci" = (
/turf/closed/wall,
@@ -17970,22 +14326,15 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
name = "\improper Colony Xenoarcheology Outpost"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bck" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bcl" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/surface/tcomms)
"bco" = (
/obj/structure/ice/thin/end,
@@ -18049,68 +14398,42 @@
"bcF" = (
/obj/structure/surface/table,
/obj/item/tool/pickaxe/plasmacutter,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/ice_colony/surface/excavation)
"bcG" = (
/obj/structure/surface/table,
/obj/item/storage/toolbox/emergency,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/excavation)
"bcH" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/machinery/disposal,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/excavation)
"bcI" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/excavation)
"bcJ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/excavation)
"bcK" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/surface/excavation)
"bcL" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bcM" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/surface/excavation)
"bcN" = (
/obj/structure/surface/rack,
-/obj/item/clothing/mask/gas,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/obj/item/clothing/mask/gas,
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/surface/excavation)
"bcO" = (
/obj/structure/surface/rack,
@@ -18118,86 +14441,57 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/surface/excavation)
"bcP" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/surface/excavation)
"bcQ" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northeast,
/area/ice_colony/surface/excavation)
"bcR" = (
/obj/structure/surface/rack,
/obj/item/tool/shovel/snow,
/obj/item/tool/shovel/snow,
/obj/item/tool/shovel/snow,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/surface/excavation)
"bcS" = (
/obj/structure/surface/rack,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/excavation)
"bcT" = (
/obj/structure/closet/radiation,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/excavation)
"bcU" = (
/obj/structure/closet/radiation,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/excavation)
"bcV" = (
/obj/structure/surface/rack,
/obj/item/device/analyzer,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/excavation)
"bcW" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/excavation)
"bcY" = (
/obj/structure/ice/thin/corner,
/turf/open/ice,
/area/ice_colony/exterior/surface/valley/south/excavation)
"bcZ" = (
-/turf/open/floor/icefloor{
- icon_state = "rockvault"
- },
+/turf/open/floor/icefloor/rockvault,
/area/ice_colony/exterior/surface/valley/south/excavation)
"bda" = (
/turf/closed/wall,
@@ -18210,22 +14504,13 @@
/area/ice_colony/underground/requesition/storage)
"bdd" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/access/freight,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/underground/requesition)
"bde" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition)
"bdf" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/underground/requesition)
"bdg" = (
/turf/closed/wall/r_wall,
@@ -18239,10 +14524,7 @@
/area/ice_colony/underground/hangar)
"bdi" = (
/obj/structure/inflatable,
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/surface/excavation/storage)
"bdj" = (
/obj/structure/surface/table,
@@ -18254,44 +14536,29 @@
/area/ice_colony/surface/excavation/storage)
"bdl" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/surface/excavation)
"bdm" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bdn" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bdo" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/surface/excavation)
"bdp" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/excavation)
"bdq" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bdr" = (
/obj/structure/ladder{
@@ -18300,10 +14567,7 @@
id = "dig_site_prep_ladder1";
pixel_y = 16
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/excavation)
"bdB" = (
/obj/structure/ice/thin/end,
@@ -18316,9 +14580,7 @@
id = "ship_ladder1";
pixel_y = 16
},
-/turf/open/floor/icefloor{
- icon_state = "rockvault"
- },
+/turf/open/floor/icefloor/rockvault,
/area/ice_colony/exterior/surface/valley/south/excavation)
"bdE" = (
/obj/structure/ladder{
@@ -18327,27 +14589,21 @@
id = "ship_ladder";
pixel_y = 16
},
-/turf/open/floor/icefloor{
- icon_state = "rockvault"
- },
+/turf/open/floor/icefloor/rockvault,
/area/ice_colony/exterior/surface/valley/south/excavation)
"bdF" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/underground/requesition/storage)
"bdG" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/underground/requesition/storage)
"bdH" = (
/obj/structure/machinery/power/apc{
@@ -18355,67 +14611,43 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/underground/requesition/storage)
"bdI" = (
/obj/structure/closet/crate/freezer/rations,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/underground/requesition/storage)
"bdJ" = (
/obj/structure/surface/table/reinforced,
/obj/item/wrapping_paper,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/underground/requesition)
"bdK" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/north,
/area/ice_colony/underground/requesition)
"bdL" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bdM" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/east,
/area/ice_colony/underground/requesition)
"bdN" = (
/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator4{
pixel_y = 30
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition)
"bdO" = (
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition)
"bdP" = (
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition)
"bdQ" = (
/obj/structure/machinery/power/apc{
@@ -18423,35 +14655,25 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition)
"bdR" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/underground/requesition)
"bdS" = (
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/underground/hangar)
"bdT" = (
/obj/structure/machinery/landinglight/ds2{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/underground/hangar)
"bdX" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -18468,18 +14690,13 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/surface/excavation)
"bdZ" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bea" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18489,9 +14706,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"beb" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18500,9 +14715,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bec" = (
/obj/structure/surface/table,
@@ -18513,9 +14726,7 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bed" = (
/obj/structure/surface/table,
@@ -18528,9 +14739,7 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bee" = (
/obj/structure/surface/table,
@@ -18542,9 +14751,7 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bef" = (
/obj/structure/disposalpipe/segment{
@@ -18553,9 +14760,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"beg" = (
/obj/structure/disposalpipe/segment{
@@ -18563,26 +14768,20 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"beh" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bei" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bej" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18591,44 +14790,32 @@
/obj/structure/machinery/door/window{
name = "Anomaly Gear"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/surface/excavation)
"bek" = (
/obj/structure/window/reinforced,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/excavation)
"bel" = (
/obj/structure/window/reinforced,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/excavation)
"bem" = (
/obj/structure/window/reinforced,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/excavation)
"ben" = (
/obj/structure/window/reinforced,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/excavation)
"beo" = (
/obj/structure/window/reinforced,
@@ -18638,49 +14825,32 @@
id = "dig_site_prep_ladder";
pixel_y = 16
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/excavation)
"beq" = (
/obj/structure/machinery/floodlight{
name = "Floodlight"
},
-/turf/open/floor/icefloor{
- icon_state = "rockvault"
- },
+/turf/open/floor/icefloor/rockvault,
/area/ice_colony/exterior/surface/valley/south/excavation)
"ber" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/underground/requesition/storage)
"bet" = (
/obj/structure/closet/crate/freezer,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/underground/requesition/storage)
"beu" = (
/obj/structure/surface/table/reinforced,
/obj/item/tool/weldpack,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition)
"bev" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"beA" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/requesition)
"beB" = (
/turf/closed/wall/r_wall,
@@ -18689,33 +14859,21 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/underground/hangar)
"beD" = (
/obj/structure/machinery/camera/autoname/lz_camera,
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/underground/hangar)
"beE" = (
/obj/structure/machinery/camera/autoname/lz_camera,
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/underground/hangar)
"beF" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/underground/hangar)
"beG" = (
/obj/structure/ice/thin/junction{
@@ -18725,10 +14883,7 @@
/area/ice_colony/exterior/surface/valley/south)
"beH" = (
/obj/structure/inflatable/door,
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/surface/excavation/storage)
"beI" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -18737,70 +14892,48 @@
"beJ" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/surface/excavation)
"beK" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"beM" = (
/obj/structure/surface/table,
/obj/item/storage/firstaid,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"beO" = (
/obj/structure/machinery/door/window/eastright{
name = "Technical Storage"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/surface/excavation)
"beP" = (
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/surface/excavation)
"beQ" = (
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/excavation)
"beR" = (
/obj/structure/window/reinforced{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/excavation)
"beS" = (
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/excavation)
"beU" = (
/turf/closed/ice/straight,
@@ -18810,81 +14943,55 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/underground/requesition/storage)
"beW" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition)
"beX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"beZ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition)
"bfa" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/hangar)
"bfb" = (
/obj/structure/closet/toolcloset,
/turf/open/floor/plating/icefloor,
/area/ice_colony/surface/excavation/storage)
"bfc" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/surface/excavation)
"bfd" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bff" = (
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/surface/excavation)
"bfg" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"bfh" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/excavation)
"bfi" = (
/turf/closed/ice/corner{
@@ -18893,47 +15000,28 @@
/area/ice_colony/exterior/surface/valley/south/excavation)
"bfj" = (
/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/underground/requesition/storage)
"bfk" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition)
"bfm" = (
/obj/structure/closet/crate,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/underground/requesition)
"bfn" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/underground/requesition)
"bfo" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/underground/requesition)
"bfp" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hangar)
"bfq" = (
/obj/structure/inflatable,
-/turf/open/floor/plating/icefloor{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southwest,
/area/ice_colony/surface/excavation/storage)
"bfr" = (
/obj/structure/inflatable,
@@ -18953,161 +15041,113 @@
/area/ice_colony/surface/excavation/storage)
"bfu" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/ice_colony/surface/excavation)
"bfv" = (
/obj/structure/surface/table,
/obj/structure/machinery/microwave,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/excavation)
"bfw" = (
/obj/structure/surface/table,
/obj/item/storage/box/donkpockets,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/excavation)
"bfx" = (
/obj/structure/surface/table,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/excavation)
"bfy" = (
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/excavation)
"bfz" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/excavation)
"bfA" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/surface/excavation)
"bfB" = (
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/surface/excavation)
"bfC" = (
/obj/structure/surface/table,
/obj/item/clothing/gloves/yellow,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/surface/excavation)
"bfD" = (
/obj/structure/surface/table,
/obj/item/device/reagent_scanner,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/surface/excavation)
"bfE" = (
/obj/structure/closet/crate,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/surface/excavation)
"bfF" = (
/obj/structure/closet/crate,
/obj/item/tool/pickaxe/plasmacutter,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/surface/excavation)
"bfG" = (
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/southeast,
/area/ice_colony/surface/excavation)
"bfH" = (
/obj/structure/surface/rack,
/obj/item/tool/shovel/snow,
/obj/item/tool/shovel/snow,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/excavation)
"bfI" = (
/obj/structure/surface/rack,
/obj/item/device/multitool,
/obj/item/storage/belt/utility/full,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/excavation)
"bfJ" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/excavation)
"bfK" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/excavation)
"bfL" = (
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/excavation)
"bfM" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
/obj/item/device/t_scanner,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/surface/excavation)
"bfN" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
/obj/item/tool/hand_labeler,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/excavation)
"bfO" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/underground/requesition/storage)
"bfP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/underground/requesition/storage)
"bfR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -19116,41 +15156,29 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Underground Requesitions Freezer"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/underground/requesition/storage)
"bfT" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bfV" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bfW" = (
/obj/vehicle/train/cargo/engine,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bfX" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bfY" = (
/obj/structure/inflatable,
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/surface/excavation/storage)
"bga" = (
/obj/structure/ice/thin/end{
@@ -19166,38 +15194,25 @@
/area/ice_colony/exterior/surface/valley/south/excavation)
"bgc" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/icefloor{
- icon_state = "rockvault"
- },
+/turf/open/floor/icefloor/rockvault,
/area/ice_colony/exterior/surface/valley/south/excavation)
"bge" = (
/obj/structure/bigDelivery,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/underground/requesition/storage)
"bgf" = (
/obj/structure/closet/radiation,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition)
"bgh" = (
-/turf/open/floor{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2,
/area/ice_colony/underground/requesition)
"bgi" = (
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/requesition)
"bgj" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/requesition)
"bgk" = (
/obj/structure/machinery/door_control{
@@ -19205,9 +15220,7 @@
name = "Underground Hangar Lock";
pixel_y = -24
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/hangar)
"bgl" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{
@@ -19230,10 +15243,7 @@
/area/ice_colony/exterior/surface/valley/south/excavation)
"bgs" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition)
"bgt" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -19254,17 +15264,11 @@
dir = 8;
health = 250
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/underground/requesition)
"bgy" = (
/obj/structure/machinery/bot/mulebot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition)
"bgz" = (
/obj/structure/machinery/bot/mulebot,
@@ -19272,19 +15276,14 @@
dir = 4;
health = 80
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition)
"bgA" = (
/obj/structure/machinery/conveyor_switch,
/obj/effect/decal/warning_stripes{
icon_state = "E-corner"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bgB" = (
/obj/structure/machinery/conveyor,
@@ -19294,16 +15293,11 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bgD" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/requesition)
"bgG" = (
/obj/structure/machinery/power/apc{
@@ -19329,17 +15323,13 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/underground/hangar)
"bgK" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/underground/hangar)
"bgL" = (
/obj/structure/ice/thin/corner,
@@ -19349,9 +15339,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "E-corner"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bgN" = (
/obj/structure/machinery/conveyor,
@@ -19363,10 +15351,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/requesition)
"bgQ" = (
/obj/structure/barricade/wooden{
@@ -19378,19 +15363,13 @@
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/underground/hangar)
"bgT" = (
/obj/structure/machinery/landinglight/ds2{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/underground/hangar)
"bgU" = (
/obj/structure/ice/thin/corner{
@@ -19400,60 +15379,43 @@
/area/ice_colony/exterior/surface/valley/south)
"bgW" = (
/obj/structure/closet/secure_closet/req_officer,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition)
"bgX" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bgY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/closet/crate,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/underground/requesition)
"bgZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bha" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/underground/requesition)
"bhb" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bhc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2,
/area/ice_colony/underground/requesition)
"bhd" = (
/obj/effect/decal/warning_stripes{
@@ -19462,9 +15424,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/requesition)
"bhe" = (
/obj/structure/machinery/conveyor,
@@ -19480,24 +15440,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/requesition)
"bhg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bhh" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/underground/requesition)
"bhj" = (
/turf/closed/wall/r_wall,
@@ -19513,10 +15466,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/requesition)
"bhn" = (
/turf/closed/wall/r_wall,
@@ -19532,30 +15482,20 @@
dir = 1;
name = "\improper Underground Requesitions Office"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bht" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/ice_colony/underground/hangar)
"bhu" = (
-/turf/open/floor/plating/icefloor{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southeast,
/area/ice_colony/underground/hangar)
"bhw" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/closet/secure_closet/req_officer,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition)
"bhy" = (
/obj/structure/window/framed/colony/reinforced,
@@ -19574,10 +15514,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition/lobby)
"bhB" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -19585,9 +15522,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bhC" = (
/obj/structure/machinery/disposal,
@@ -19597,10 +15532,7 @@
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/underground/requesition/lobby)
"bhD" = (
/obj/structure/largecrate/random,
@@ -19612,10 +15544,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/underground/hangar)
"bhF" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
@@ -19633,19 +15562,13 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/underground/hangar)
"bhI" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/underground/hangar)
"bhJ" = (
/obj/structure/machinery/landinglight/ds2/delayone{
@@ -19657,62 +15580,41 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/underground/hangar)
"bhL" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/underground/hangar)
"bhS" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bhT" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bhV" = (
-/turf/open/floor/plating/icefloor{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southwest,
/area/ice_colony/underground/hangar)
"bhY" = (
/obj/structure/machinery/constructable_frame,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition)
"bhZ" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/underground/requesition)
"bia" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bic" = (
/obj/structure/surface/rack,
@@ -19737,18 +15639,13 @@
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/underground/requesition)
"bik" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"bim" = (
/obj/structure/machinery/door_control{
@@ -19759,41 +15656,30 @@
req_access_txt = "100";
specialfunctions = 4
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/requesition)
"biq" = (
/obj/structure/machinery/conveyor_switch,
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/requesition/lobby)
"bir" = (
/obj/structure/bed/chair/office/dark,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bis" = (
/obj/structure/machinery/autolathe,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/underground/requesition/lobby)
"biu" = (
/obj/structure/machinery/computer3/powermonitor,
/turf/open/floor/plating/icefloor,
/area/ice_colony/underground/hangar)
"biv" = (
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/ice_colony/underground/hangar)
"bix" = (
/obj/structure/closet/secure_closet/engineering_welding,
@@ -19807,9 +15693,7 @@
id = "req_sec_storage";
name = "\improper Requesitions Storage Shutters"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/sec_storage)
"biB" = (
/obj/structure/window/framed/colony/reinforced,
@@ -19820,9 +15704,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Underground Requesitions Bay"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition)
"biD" = (
/obj/structure/machinery/requests_console{
@@ -19852,9 +15734,7 @@
pixel_x = 32
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"biF" = (
/obj/structure/machinery/light/small{
@@ -19901,24 +15781,16 @@
/turf/open/floor/wood,
/area/ice_colony/underground/command/pv1)
"biQ" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/underground/requesition/sec_storage)
"biR" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition/sec_storage)
"biS" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/sec_storage)
"biU" = (
/obj/structure/machinery/door_control{
@@ -19929,10 +15801,7 @@
req_access_txt = "100";
specialfunctions = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition/sec_storage)
"biV" = (
/obj/structure/machinery/alarm{
@@ -19942,53 +15811,36 @@
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/underground/requesition/sec_storage)
"biW" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/underground/requesition/lobby)
"biX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"biZ" = (
/obj/effect/decal/warning_stripes{
icon_state = "E-corner"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition/lobby)
"bja" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/requesition/lobby)
"bjb" = (
/obj/structure/machinery/alarm{
dir = 8;
pixel_x = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/underground/requesition/lobby)
"bjd" = (
/obj/structure/machinery/power/terminal{
@@ -20014,37 +15866,23 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition/sec_storage)
"bjl" = (
/obj/structure/closet/crate/secure,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/underground/requesition/sec_storage)
"bjm" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/sec_storage)
"bjn" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/underground/requesition/sec_storage)
"bjp" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/requesition/sec_storage)
"bjq" = (
/obj/structure/bed/chair{
@@ -20054,32 +15892,22 @@
dir = 8;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition/lobby)
"bjs" = (
/obj/effect/decal/warning_stripes{
icon_state = "E-corner"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bjt" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bjw" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/requesition/lobby)
"bjx" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -20091,23 +15919,14 @@
/turf/closed/wall/r_wall/unmeltable,
/area/ice_colony/underground/maintenance/north)
"bjB" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition/sec_storage)
"bjC" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/underground/requesition/sec_storage)
"bjD" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/requesition/sec_storage)
"bjE" = (
/obj/structure/bed/chair{
@@ -20116,31 +15935,21 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition/lobby)
"bjF" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bjG" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bjH" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/requesition/lobby)
"bjK" = (
/obj/structure/machinery/light/small{
@@ -20153,26 +15962,19 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/requesition/lobby)
"bjN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bjP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bjQ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -20182,34 +15984,25 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bjR" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bjS" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bjT" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/requesition/lobby)
"bjU" = (
/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{
@@ -20232,48 +16025,35 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/requesition/lobby)
"bjZ" = (
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/requesition/lobby)
"bka" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bkb" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/requesition/lobby)
"bkc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/requesition/lobby)
"bkd" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/underground/requesition/lobby)
"bke" = (
/obj/structure/machinery/light/small{
@@ -20296,16 +16076,10 @@
name = "Underground Hangar Lock";
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/hangar)
"bki" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/hangar)
"bkj" = (
/obj/structure/flora/pottedplant,
@@ -20323,9 +16097,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Underground Requesitions Lobby"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/requesition/lobby)
"bko" = (
/obj/structure/machinery/light/small,
@@ -20338,24 +16110,16 @@
/turf/open/floor/plating,
/area/ice_colony/underground/hallway/north_west)
"bkq" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/hallway/north_west)
"bkr" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bks" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/hallway/north_west)
"bkt" = (
/turf/closed/wall/r_wall,
@@ -20368,51 +16132,33 @@
/turf/open/floor/plating,
/area/ice_colony/underground/maintenance/north)
"bkv" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/underground/requesition/sec_storage)
"bkw" = (
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/requesition/sec_storage)
"bkx" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/requesition/sec_storage)
"bky" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/underground/requesition/sec_storage)
"bkz" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/underground/hallway/north_west)
"bkA" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bkB" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/underground/hallway/north_west)
"bkC" = (
/turf/closed/wall/r_wall,
@@ -20435,10 +16181,7 @@
/turf/open/floor/plating,
/area/ice_colony/underground/crew/morgue)
"bkG" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/hallway/north_west)
"bkH" = (
/obj/structure/barricade/wooden{
@@ -20460,22 +16203,13 @@
/turf/open/floor/plating,
/area/ice_colony/underground/requesition/sec_storage)
"bkM" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/north,
/area/ice_colony/underground/hallway/north_west)
"bkN" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/ice_colony/underground/hallway/north_west)
"bkO" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/underground/hallway/north_west)
"bkP" = (
/obj/structure/window/framed/colony/reinforced,
@@ -20483,71 +16217,51 @@
/area/ice_colony/underground/crew/chapel)
"bkQ" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/chapel)
"bkR" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/chapel)
"bkS" = (
/obj/structure/morgue,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bkT" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bkU" = (
/obj/structure/bed/roller,
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bkV" = (
/obj/structure/machinery/light/small{
dir = 1
},
/obj/structure/machinery/recharge_station,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bkW" = (
/turf/closed/wall/r_wall/unmeltable,
/area/ice_colony/underground/hallway/north_west)
"bkX" = (
/obj/structure/bookcase,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bkY" = (
/obj/structure/bookcase/manuals/medical,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bkZ" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bla" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"blc" = (
/turf/open/floor/plating,
@@ -20570,31 +16284,19 @@
/turf/open/floor/plating,
/area/ice_colony/underground/maintenance/research)
"blg" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/hallway/north_west)
"bll" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/ice_colony/underground/crew/chapel)
"blm" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/ice_colony/underground/crew/chapel)
"bln" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/ice_colony/underground/crew/chapel)
"blo" = (
/turf/open/gm/empty,
@@ -20603,15 +16305,11 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"blq" = (
/obj/structure/bed/chair/wood/normal,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"blr" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -20632,53 +16330,38 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper Underground Maintenance"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"blu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"blv" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"blx" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/chapel)
"bly" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/ice_colony/underground/crew/chapel)
"blz" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/ice_colony/underground/crew/chapel)
"blA" = (
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/ice_colony/underground/crew/chapel)
"blB" = (
/obj/structure/surface/table/woodentable,
@@ -20693,63 +16376,47 @@
/area/ice_colony/underground/crew/chapel)
"blD" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"blE" = (
/obj/structure/machinery/alarm{
dir = 8;
pixel_x = 24
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"blF" = (
/obj/structure/bookcase/manuals/research_and_development,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"blG" = (
/obj/structure/bed/chair/wood/normal{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"blH" = (
/obj/structure/surface/table/woodentable,
/obj/item/book/manual/engineering_hacking,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"blI" = (
/obj/structure/surface/table/woodentable,
/obj/item/device/flashlight/lamp,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"blJ" = (
/obj/structure/bed/chair/wood/normal{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"blK" = (
/obj/structure/machinery/alarm{
dir = 8;
pixel_x = 24
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"blL" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -20760,26 +16427,19 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"blO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/chapel)
"blP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/ice_colony/underground/crew/chapel)
"blQ" = (
/obj/structure/bed/chair{
@@ -20788,28 +16448,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/ice_colony/underground/crew/chapel)
"blR" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/ice_colony/underground/crew/chapel)
"blS" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/ice_colony/underground/crew/chapel)
"blT" = (
/obj/structure/surface/table/woodentable,
@@ -20830,48 +16481,36 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"blW" = (
/obj/item/bodybag,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"blX" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"blY" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"blZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bma" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bmb" = (
/obj/structure/bed/chair/wood/normal{
@@ -20880,9 +16519,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bmc" = (
/obj/structure/surface/table/woodentable,
@@ -20890,18 +16527,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bmd" = (
/obj/structure/surface/table/woodentable,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bme" = (
/obj/structure/bed/chair/wood/normal{
@@ -20910,17 +16543,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bmf" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bmg" = (
/turf/closed/wall/r_wall,
@@ -20959,40 +16588,28 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/hallway/north_west)
"bmo" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bmp" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bmr" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper Underground Chapel"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/chapel)
"bmv" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/ice_colony/underground/crew/chapel)
"bmx" = (
/obj/structure/surface/table/woodentable,
@@ -21009,9 +16626,7 @@
/area/ice_colony/underground/crew/chapel)
"bmz" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bmD" = (
/obj/structure/machinery/power/apc{
@@ -21019,30 +16634,21 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bmE" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/hallway/north_west)
"bmF" = (
/obj/structure/bookcase/manuals/engineering,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bmG" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bmK" = (
/obj/structure/machinery/power/apc{
@@ -21050,9 +16656,7 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bmL" = (
/obj/structure/machinery/firealarm{
@@ -21063,10 +16667,7 @@
icon_state = "ladderup";
id = "engineering_ladder"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/underground/engineering/locker)
"bmM" = (
/obj/structure/machinery/alarm{
@@ -21077,34 +16678,22 @@
icon_state = "ladderup";
id = "engineering_ladder1"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering/locker)
"bmN" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering/locker)
"bmO" = (
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering/locker)
"bmP" = (
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/underground/engineering/locker)
"bmQ" = (
/turf/closed/ice/straight{
@@ -21130,16 +16719,11 @@
dir = 8;
pixel_x = -24
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/chapel)
"bmX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/ice_colony/underground/crew/chapel)
"bmY" = (
/turf/open/floor/carpet,
@@ -21150,60 +16734,40 @@
pixel_x = -24
},
/obj/structure/curtain/black,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bna" = (
/obj/structure/curtain/black,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bnb" = (
/obj/structure/curtain/black,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bnd" = (
/obj/structure/curtain/open/black,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bnf" = (
/obj/structure/surface/table/woodentable,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bng" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/electrical,
/obj/item/storage/toolbox/electrical,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/underground/engineering/locker)
"bnh" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering/locker)
"bni" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering/locker)
"bnj" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/underground/engineering/locker)
"bnk" = (
/turf/closed/wall/r_wall,
@@ -21229,10 +16793,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/ice_colony/underground/crew/chapel)
"bnq" = (
/obj/structure/bed/chair{
@@ -21241,26 +16802,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/ice_colony/underground/crew/chapel)
"bnr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/ice_colony/underground/crew/chapel)
"bns" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/ice_colony/underground/crew/chapel)
"bnt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21269,52 +16823,36 @@
/obj/structure/machinery/door/airlock/almayer/secure/colony{
name = "Underground Morgue"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bnu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bnv" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bnw" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bnx" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bny" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/underground/hallway/north_west)
"bnz" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/north_west)
"bnA" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -21327,25 +16865,18 @@
/obj/structure/bed/chair/wood/normal{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bnC" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/mechanical,
/obj/item/storage/toolbox/mechanical,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/underground/engineering/locker)
"bnD" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering/locker)
"bnF" = (
/obj/structure/machinery/power/apc{
@@ -21353,85 +16884,55 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/underground/engineering/locker)
"bnG" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/underground/engineering)
"bnH" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering)
"bnI" = (
/obj/structure/machinery/computer3/powermonitor,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering)
"bnJ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering)
"bnK" = (
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering)
"bnL" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering)
"bnM" = (
/obj/structure/machinery/alarm{
pixel_y = 24
},
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering)
"bnN" = (
/obj/structure/surface/table/woodentable{
icon_state = "reinf_table"
},
/obj/item/frame/light_fixture,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering)
"bnO" = (
/obj/structure/surface/table/woodentable{
icon_state = "reinf_table"
},
/obj/item/storage/box/lightstick,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering)
"bnP" = (
/obj/structure/surface/table/woodentable{
@@ -21440,10 +16941,7 @@
/obj/item/inflatable,
/obj/item/inflatable/door,
/obj/item/storage/box/engineer,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering)
"bnQ" = (
/obj/structure/surface/table/woodentable{
@@ -21452,24 +16950,15 @@
/obj/item/stack/cable_coil/blue,
/obj/item/stack/rods,
/obj/item/storage/donut_box,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering)
"bnR" = (
/obj/structure/machinery/constructable_frame,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering)
"bnS" = (
/obj/structure/janitorialcart,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/underground/engineering)
"bnT" = (
/turf/closed/ice/straight,
@@ -21491,23 +16980,16 @@
/area/ice_colony/underground/maintenance/research)
"bnX" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/hallway/north_west)
"bnY" = (
/obj/structure/closet/wardrobe/chaplain_black,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/chapel)
"bnZ" = (
/obj/structure/surface/table,
/obj/item/storage/box/bodybags,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"boa" = (
/obj/structure/surface/table/woodentable,
@@ -21521,9 +17003,7 @@
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/bottle/holywater,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"boc" = (
/obj/structure/surface/table/woodentable,
@@ -21537,15 +17017,11 @@
"boe" = (
/obj/structure/closet/coffin,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bof" = (
/obj/structure/closet/coffin,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bog" = (
/obj/structure/closet/coffin,
@@ -21553,32 +17029,22 @@
dir = 4;
health = 80
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"boh" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"boi" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/north_west)
"boj" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/north_west)
"bok" = (
/obj/structure/machinery/disposal,
@@ -21586,67 +17052,45 @@
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/north_west)
"bol" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/ice_colony/underground/hallway/north_west)
"bom" = (
/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator2{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/north_west)
"bon" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/north_west)
"boo" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/north_west)
"bop" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/underground/hallway/north_west)
"boq" = (
/obj/structure/machinery/firealarm{
dir = 1;
pixel_y = -24
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bor" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"bos" = (
/obj/structure/barricade/wooden{
@@ -21658,41 +17102,27 @@
"bot" = (
/obj/structure/closet/radiation,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/underground/engineering/locker)
"bou" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/engineering/locker)
"bow" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Underground Engineering Locker Room"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering/locker)
"box" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"boz" = (
/obj/structure/pipes/vents/pump/on,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"boA" = (
/obj/structure/machinery/floodlight,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/underground/engineering)
"boB" = (
/obj/structure/ice/thin/end,
@@ -21712,22 +17142,15 @@
dir = 2;
name = "Underground Morgue"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"boF" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"boG" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/hallway/north_west)
"boH" = (
/obj/structure/window/framed/colony/reinforced,
@@ -21739,9 +17162,7 @@
dir = 1;
name = "\improper Underground Library"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/ice_colony/underground/crew/library)
"boJ" = (
/turf/closed/wall/r_wall,
@@ -21763,28 +17184,19 @@
dir = 1;
name = "\improper Underground Engineering Locker Room"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering/locker)
"boO" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/underground/engineering)
"boP" = (
/obj/effect/landmark/hunter_primary,
/obj/effect/landmark/queen_spawn,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"boQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"boR" = (
/obj/effect/landmark/monkey_spawn,
@@ -21807,28 +17219,19 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/north_west)
"boW" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/north_west)
"boX" = (
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/north_west)
"bpa" = (
/obj/structure/window/framed/colony/reinforced,
@@ -21836,16 +17239,10 @@
/area/ice_colony/underground/hallway/north_west)
"bpb" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/underground/hallway/south_east)
"bpc" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bpe" = (
/obj/structure/closet/hydrant{
@@ -21854,82 +17251,54 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bpf" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bpg" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/underground/hallway/south_east)
"bpi" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/underground/engineering)
"bpk" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/underground/engineering)
"bpl" = (
/obj/structure/window/framed/colony/reinforced,
/turf/open/floor/plating,
/area/ice_colony/underground/engineering)
"bpm" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/underground/engineering)
"bpn" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bpo" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/engineering)
"bpp" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/underground/engineering)
"bpq" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bpr" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -21937,61 +17306,42 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bpt" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bpu" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bpv" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bpw" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bpx" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bpy" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bpA" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bpB" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/hallway/north_west)
"bpC" = (
/obj/structure/disposalpipe/segment{
@@ -22001,9 +17351,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bpD" = (
/obj/structure/disposalpipe/segment{
@@ -22012,9 +17360,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bpG" = (
/obj/structure/disposalpipe/segment{
@@ -22023,9 +17369,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bpH" = (
/obj/structure/disposalpipe/junction{
@@ -22035,18 +17379,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bpI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bpL" = (
/obj/structure/disposalpipe/segment{
@@ -22059,9 +17399,7 @@
dir = 1;
name = "\improper Underground Main Hallway"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bpM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22070,9 +17408,7 @@
/obj/structure/disposalpipe/junction{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bpT" = (
/obj/structure/disposalpipe/junction{
@@ -22082,9 +17418,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bpV" = (
/obj/structure/disposalpipe/segment{
@@ -22097,27 +17431,21 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bpX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bpY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bpZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22130,9 +17458,7 @@
dir = 1;
name = "\improper Underground Power Substation"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bqb" = (
/obj/structure/disposalpipe/segment{
@@ -22141,9 +17467,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bqd" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22155,9 +17479,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bqe" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22167,9 +17489,7 @@
dir = 4
},
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bqf" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22181,9 +17501,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bqg" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -22192,9 +17510,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bqh" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22203,9 +17519,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bqi" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -22215,16 +17529,11 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bqj" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/underground/engineering)
"bqk" = (
/turf/closed/ice/junction{
@@ -22233,153 +17542,97 @@
/area/ice_colony/exterior/underground/caves)
"bql" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/underground/hallway/north_west)
"bqm" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/west,
/area/ice_colony/underground/hallway/north_west)
"bqn" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bqo" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/junction,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bqp" = (
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/ice_colony/underground/hallway/north_west)
"bqq" = (
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/north_west)
"bqr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bqt" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/north_west)
"bqu" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/ice_colony/underground/hallway/north_west)
"bqw" = (
/obj/structure/machinery/light,
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/underground/hallway/south_east)
"bqx" = (
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/south_east)
"bqz" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/south_east)
"bqA" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/south_east)
"bqB" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/ice_colony/underground/hallway/south_east)
"bqC" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bqD" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/hallway/south_east)
"bqE" = (
/obj/structure/machinery/light,
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/underground/engineering)
"bqF" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/engineering)
"bqG" = (
/obj/structure/machinery/light,
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/underground/engineering)
"bqI" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/underground/engineering)
"bqJ" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bqK" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/engineering)
"bqL" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/underground/engineering)
"bqM" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -22387,27 +17640,20 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bqN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bqO" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
/obj/structure/machinery/disposal,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/underground/engineering)
"bqP" = (
/turf/closed/wall/r_wall,
@@ -22441,15 +17687,11 @@
name = "\improper Underground Medical Laboratory";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bqW" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bqX" = (
/turf/closed/wall/r_wall,
@@ -22463,48 +17705,35 @@
/area/ice_colony/underground/medical/treatment)
"bra" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/underground/hallway/north_west)
"brb" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/north_west)
"brc" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/north_west)
"brd" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/north_west)
"bre" = (
/obj/structure/machinery/light,
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/north_west)
"brf" = (
/obj/structure/machinery/light,
/obj/structure/noticeboard{
pixel_y = -32
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/north_west)
"brh" = (
/turf/closed/wall/r_wall,
@@ -22514,9 +17743,7 @@
/turf/open/floor/plating,
/area/ice_colony/underground/crew/bball)
"brk" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/bball)
"brl" = (
/obj/structure/window/framed/colony/reinforced,
@@ -22527,15 +17754,10 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Underground Sports Center"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/bball)
"brn" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/hallway/south_east)
"bro" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -22551,26 +17773,19 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/underground/engineering)
"brq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"brr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"brs" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22602,68 +17817,46 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/underground/medical/lobby)
"brx" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/medical/lobby)
"bry" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"brz" = (
/obj/structure/disposalpipe/junction{
dir = 1;
icon_state = "pipe-j2"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"brA" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/medical/lobby)
"brB" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/medical/lobby)
"brC" = (
/obj/structure/bed/chair,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/medical/lobby)
"brD" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/underground/medical/lobby)
"brE" = (
/obj/structure/machinery/light{
@@ -22671,49 +17864,31 @@
},
/obj/structure/surface/table,
/obj/structure/machinery/microwave,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/underground/medical/hallway)
"brF" = (
/obj/structure/surface/table,
/obj/item/storage/box/donkpockets,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/hallway)
"brG" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/underground/medical/hallway)
"brH" = (
/obj/structure/machinery/cryo_cell,
/obj/structure/pipes/standard/cap,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/underground/medical/treatment)
"brI" = (
/obj/structure/machinery/cryo_cell,
/obj/structure/pipes/standard/cap,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/treatment)
"brJ" = (
/obj/structure/machinery/cryo_cell,
/obj/structure/pipes/standard/cap,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/underground/medical/treatment)
"brK" = (
/turf/closed/wall/r_wall,
@@ -22750,18 +17925,14 @@
/obj/item/tool/pen/blue{
pixel_x = -6
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/reception/checkpoint_north)
"brP" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
dir = 1;
name = "\improper Underground Security Checkpoint"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception/checkpoint_north)
"brQ" = (
/obj/structure/machinery/light{
@@ -22770,66 +17941,44 @@
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/underground/crew/bball)
"brR" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/crew/bball)
"brT" = (
/obj/structure/bed/chair,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/crew/bball)
"brU" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/underground/crew/bball)
"brV" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/hallway/south_east)
"brW" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"brX" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"brY" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/hallway/south_east)
"brZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -22848,15 +17997,10 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bsc" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/underground/engineering)
"bsd" = (
/obj/structure/machinery/light/small{
@@ -22877,124 +18021,79 @@
/turf/open/ice,
/area/ice_colony/exterior/underground/caves)
"bsh" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/medical/lobby)
"bsi" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bsj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bsk" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bsl" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/hallway)
"bsm" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/hallway)
"bsn" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/hallway)
"bso" = (
/obj/structure/pipes/standard/simple/visible{
dir = 5
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/treatment)
"bsp" = (
/obj/structure/pipes/standard/manifold/visible{
layer = 2.3
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bsq" = (
/obj/structure/pipes/standard/manifold/visible{
layer = 2.3
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner/east,
/area/ice_colony/underground/medical/treatment)
"bsr" = (
/obj/structure/pipes/standard/manifold/visible{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/treatment)
"bss" = (
/obj/structure/pipes/portables_connector{
dir = 8
},
/obj/structure/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/underground/medical/treatment)
"bst" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/underground/medical/or)
"bsu" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/or)
"bsv" = (
/obj/structure/sink{
pixel_y = 15
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/or)
"bsw" = (
/obj/structure/closet/secure_closet/medical2,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/or)
"bsx" = (
/obj/structure/machinery/bioprinter,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/underground/medical/or)
"bsy" = (
/obj/structure/machinery/light/small{
@@ -23009,26 +18108,17 @@
"bsA" = (
/obj/structure/machinery/computer/cameras,
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/reception/checkpoint_north)
-"bsB" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+"bsB" = (
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/reception/checkpoint_north)
"bsC" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/reception/checkpoint_north)
"bsE" = (
/obj/structure/machinery/power/apc{
@@ -23036,24 +18126,16 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/crew/bball)
"bsH" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/bball)
"bsI" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/crew/bball)
"bsJ" = (
/obj/structure/barricade/wooden{
@@ -23063,84 +18145,58 @@
/area/ice_colony/underground/maintenance/engineering)
"bsK" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/underground/engineering)
"bsL" = (
/obj/structure/filingcabinet,
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/engineering)
"bsM" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/engineering)
"bsN" = (
/obj/structure/closet/secure_closet/engineering_welding,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/engineering)
"bsO" = (
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/engineering)
"bsP" = (
/obj/structure/closet/secure_closet/miner,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/engineering)
"bsQ" = (
/obj/structure/surface/table/woodentable{
icon_state = "reinf_table"
},
/obj/item/storage/box/lights,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/engineering)
"bsR" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bsS" = (
/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/engineering)
"bsT" = (
/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/underground/engineering)
"bsU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bsV" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bsW" = (
/obj/structure/disposalpipe/segment{
@@ -23150,9 +18206,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bsX" = (
/obj/structure/disposalpipe/segment{
@@ -23161,18 +18215,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bsY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bsZ" = (
/obj/structure/disposalpipe/segment{
@@ -23185,9 +18235,7 @@
dir = 1;
name = "\improper Underground Medical Laboratory"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bta" = (
/obj/structure/disposalpipe/segment{
@@ -23196,9 +18244,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/hallway)
"btb" = (
/obj/structure/disposalpipe/segment{
@@ -23208,60 +18254,41 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/hallway)
"btc" = (
/obj/structure/surface/table,
/obj/item/tool/wrench,
/obj/item/paper/research_notes,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/treatment)
"btd" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bte" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"btf" = (
/obj/structure/pipes/standard/simple/visible{
dir = 5
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"btg" = (
/obj/structure/pipes/unary/freezer{
dir = 8;
icon_state = "freezer_1"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/treatment)
"bth" = (
/obj/structure/surface/table,
/obj/item/stack/nanopaste,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/or)
"bti" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/or)
"btl" = (
/obj/structure/machinery/power/apc{
@@ -23269,10 +18296,7 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/or)
"btm" = (
/turf/open/floor/plating,
@@ -23281,26 +18305,17 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper Underground Maintenance"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception/checkpoint_north)
"bto" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/reception/checkpoint_north)
"btp" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception/checkpoint_north)
"btq" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception/checkpoint_north)
"btr" = (
/obj/structure/machinery/power/apc{
@@ -23308,20 +18323,14 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/reception/checkpoint_north)
"bts" = (
/obj/structure/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/crew/bball)
"btt" = (
/obj/effect/decal/warning_stripes{
@@ -23410,45 +18419,29 @@
dir = 1;
name = "\improper Underground Medical Laboratory"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"btE" = (
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/ice_colony/underground/medical/lobby)
"btF" = (
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/medical/lobby)
"btG" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/medical/lobby)
"btH" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/underground/medical/lobby)
"btI" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/hallway)
"btJ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/hallway)
"btK" = (
/obj/structure/machinery/light{
@@ -23458,77 +18451,52 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/treatment)
"btL" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"btM" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"btN" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/treatment)
"btO" = (
/obj/structure/surface/table,
/obj/item/storage/surgical_tray,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/or)
"btP" = (
/obj/structure/machinery/optable,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/or)
"btQ" = (
/obj/structure/machinery/computer/operating,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/or)
"btR" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/or)
"btS" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/reception/checkpoint_north)
"btT" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/reception/checkpoint_north)
"btU" = (
/obj/structure/machinery/firealarm{
@@ -23538,9 +18506,7 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/reception/checkpoint_north)
"btV" = (
/obj/structure/filingcabinet/security,
@@ -23548,22 +18514,14 @@
dir = 1;
pixel_y = -24
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/reception/checkpoint_north)
"btW" = (
/obj/structure/filingcabinet/security,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/reception/checkpoint_north)
"btX" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/crew/bball)
"btY" = (
/obj/effect/decal/warning_stripes{
@@ -23626,9 +18584,7 @@
/turf/closed/wall/r_wall,
/area/ice_colony/exterior/underground/caves)
"bui" = (
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/ice_colony/underground/engineering/substation)
"buj" = (
/turf/open/floor/plating,
@@ -23668,16 +18624,10 @@
/area/ice_colony/exterior/underground/caves/open)
"buq" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/medical/lobby)
"bur" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/medical/lobby)
"bus" = (
/obj/structure/surface/table/reinforced,
@@ -23688,20 +18638,14 @@
dir = 8;
health = 80
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/underground/medical/lobby)
"buu" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/northright,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/lobby)
"buv" = (
/obj/structure/surface/table/reinforced,
@@ -23709,10 +18653,7 @@
dir = 1
},
/obj/item/tool/stamp,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/lobby)
"bux" = (
/obj/structure/disposalpipe/segment{
@@ -23722,9 +18663,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/hallway)
"buz" = (
/obj/structure/disposalpipe/segment{
@@ -23736,9 +18675,7 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Underground Medical Laboratory Treatment"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"buA" = (
/obj/structure/disposalpipe/junction{
@@ -23748,9 +18685,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"buB" = (
/obj/structure/disposalpipe/segment{
@@ -23760,65 +18695,47 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"buD" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"buE" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"buF" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/beakers,
/obj/item/reagent_container/glass/beaker/bluespace,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/treatment)
"buG" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/surface/hangar/checkpoint)
"buH" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/or)
"buI" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/or)
"buJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/or)
"buK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -23911,9 +18828,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/bball)
"buV" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -23922,17 +18837,13 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Underground Sports Center"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/bball)
"buW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"buX" = (
/obj/structure/mineral_door/resin,
@@ -23948,16 +18859,11 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/medical/lobby)
"bve" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bvf" = (
/obj/structure/surface/table/reinforced,
@@ -23966,62 +18872,42 @@
health = 80
},
/obj/item/tool/stamp,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/lobby)
"bvg" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/lobby)
"bvh" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/lobby)
"bvi" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/lobby)
"bvj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/hallway)
"bvk" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/hallway)
"bvl" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/treatment)
"bvm" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bvo" = (
/obj/structure/disposalpipe/segment{
@@ -24029,27 +18915,17 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bvp" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/treatment)
"bvq" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southwest,
/area/ice_colony/underground/medical/or)
"bvr" = (
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/or)
"bvs" = (
/obj/structure/disposalpipe/segment{
@@ -24057,9 +18933,7 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/or)
"bvt" = (
/obj/structure/machinery/holosign_switch{
@@ -24069,27 +18943,20 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/or)
"bvu" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southeast,
/area/ice_colony/underground/medical/or)
"bvv" = (
/turf/closed/wall/r_wall,
/area/ice_colony/underground/maintenance/central/construction)
"bvw" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/maintenance/central/construction)
"bvx" = (
/obj/item/frame/apc,
@@ -24179,64 +19046,43 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/medical/lobby)
"bvM" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/medical/lobby)
"bvN" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/door/window/brigdoor/westleft,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/lobby)
"bvO" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/lobby)
"bvP" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/lobby)
"bvQ" = (
/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/treatment)
"bvR" = (
/obj/structure/machinery/sleep_console,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bvT" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bvU" = (
/obj/structure/surface/table/reinforced,
@@ -24245,10 +19091,7 @@
/obj/item/stack/sheet/mineral/phoron,
/obj/item/stack/sheet/mineral/phoron,
/obj/item/stack/sheet/mineral/phoron,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/treatment)
"bvV" = (
/obj/structure/machinery/holosign/surgery{
@@ -24260,9 +19103,7 @@
dir = 1;
name = "Underground Medical Laboratory Operating Theatre"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/or)
"bvW" = (
/obj/effect/decal/warning_stripes{
@@ -24365,10 +19206,7 @@
/obj/structure/closet/hydrant{
pixel_x = -32
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/hallway/north_west)
"bwk" = (
/obj/structure/surface/table,
@@ -24382,17 +19220,13 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/lobby)
"bwm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/lobby)
"bwn" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -24401,34 +19235,25 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Underground Medical Laboratory Lobby"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/lobby)
"bwo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/hallway)
"bwp" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/hallway)
"bwq" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/treatment)
"bwr" = (
/obj/structure/disposalpipe/segment{
@@ -24436,27 +19261,19 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bws" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner/east,
/area/ice_colony/underground/medical/treatment)
"bwt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/treatment)
"bwu" = (
/obj/structure/disposalpipe/segment{
@@ -24464,24 +19281,16 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bwv" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/treatment)
"bww" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/underground/medical/treatment)
"bwx" = (
/turf/closed/ice/junction{
@@ -24496,9 +19305,7 @@
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/ice_colony/underground/engineering/substation)
"bwE" = (
/obj/structure/ice/thin/end,
@@ -24543,31 +19350,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bwQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "cafeteria"
- },
+/turf/open/floor/cafeteria,
/area/ice_colony/underground/medical/treatment)
"bwR" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bwS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bwT" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -24589,35 +19388,26 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/bball)
"bwW" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/crew/bball)
"bwX" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/crew/bball)
"bwY" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/underground/crew/bball)
"bxa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -24645,28 +19435,21 @@
dir = 1;
pixel_y = -24
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/underground/medical/lobby)
"bxh" = (
/obj/structure/machinery/alarm{
dir = 1;
pixel_y = -24
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/medical/lobby)
"bxj" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/medical/lobby)
"bxk" = (
/obj/structure/surface/table/reinforced,
@@ -24675,81 +19458,53 @@
health = 80
},
/obj/item/tool/stamp,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southwest,
/area/ice_colony/underground/medical/lobby)
"bxl" = (
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/lobby)
"bxm" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/lobby)
"bxn" = (
/obj/structure/filingcabinet,
/obj/item/paper/research_notes,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/lobby)
"bxo" = (
/obj/structure/filingcabinet,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southeast,
/area/ice_colony/underground/medical/lobby)
"bxp" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/hallway)
"bxq" = (
/obj/item/roller{
icon_state = "down"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/hallway)
"bxr" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/treatment)
"bxs" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bxt" = (
/obj/structure/curtain/open/medical,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/treatment)
"bxu" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/treatment)
"bxv" = (
/obj/structure/barricade/wooden,
@@ -24771,9 +19526,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bxC" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -24836,52 +19589,36 @@
dir = 1;
name = "\improper Underground Medical Laboratory"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/medical/lobby)
"bxM" = (
/obj/structure/machinery/medical_pod/bodyscanner,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southwest,
/area/ice_colony/underground/medical/treatment)
"bxN" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/treatment)
"bxO" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/treatment)
"bxP" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/treatment)
"bxQ" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
/obj/structure/machinery/light/small,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/treatment)
"bxR" = (
/obj/structure/curtain/medical,
-/turf/open/floor{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southeast,
/area/ice_colony/underground/medical/treatment)
"bxS" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -24925,10 +19662,7 @@
/area/ice_colony/underground/maintenance/engineering)
"byd" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/underground/medical/hallway)
"bye" = (
/obj/structure/machinery/light{
@@ -24937,34 +19671,23 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/hallway)
"byf" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/hallway)
"byg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/hallway)
"byi" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/hallway)
"byk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -24973,10 +19696,7 @@
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/hallway)
"byl" = (
/obj/structure/machinery/light{
@@ -24985,27 +19705,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/hallway)
"bym" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteredcorner"
- },
+/turf/open/floor/whiteredcorner/north,
/area/ice_colony/underground/medical/hallway)
"byn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/hallway)
"byo" = (
/obj/structure/machinery/light/small{
@@ -25040,33 +19752,23 @@
/area/ice_colony/underground/maintenance/research)
"byw" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southwest,
/area/ice_colony/underground/medical/hallway)
"byx" = (
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/hallway)
"byy" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/hallway)
"byA" = (
/obj/item/roller{
icon_state = "down"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southeast,
/area/ice_colony/underground/medical/hallway)
"byB" = (
/turf/closed/wall/r_wall,
@@ -25096,10 +19798,7 @@
/turf/closed/wall/r_wall,
/area/ice_colony/underground/crew/canteen)
"byJ" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/hallway/south_east)
"byK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -25130,9 +19829,7 @@
dir = 1;
name = "\improper Underground Medical Laboratory Storage"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/storage)
"byR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -25166,43 +19863,28 @@
/area/ice_colony/underground/maintenance/central)
"byW" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/underground/crew/canteen)
"byX" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/crew/canteen)
"byY" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/crew/canteen)
"byZ" = (
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/crew/canteen)
"bza" = (
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/underground/crew/canteen)
"bzb" = (
/obj/structure/window/framed/colony/reinforced,
@@ -25212,10 +19894,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/hallway/south_east)
"bzd" = (
/obj/structure/barricade/wooden{
@@ -25225,31 +19904,19 @@
/area/ice_colony/underground/maintenance/engineering)
"bze" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- dir = 9;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northwest,
/area/ice_colony/underground/medical/storage)
"bzf" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/storage)
"bzg" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/storage)
"bzh" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/surface/hangar/checkpoint)
"bzi" = (
/obj/structure/surface/table,
@@ -25258,25 +19925,17 @@
pixel_x = 6;
pixel_y = 10
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/storage)
"bzj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/storage)
"bzk" = (
/obj/structure/surface/table,
/obj/item/bodybag/cryobag,
/obj/item/storage/box/syringes,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/storage)
"bzl" = (
/obj/structure/surface/table,
@@ -25285,32 +19944,20 @@
pixel_x = 5;
pixel_y = 3
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/storage)
"bzm" = (
/obj/item/device/defibrillator,
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/storage)
"bzn" = (
/obj/structure/bed/chair/wheelchair,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/storage)
"bzo" = (
/obj/structure/bed/chair/wheelchair,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/underground/medical/storage)
"bzp" = (
/turf/closed/wall/r_wall,
@@ -25325,27 +19972,17 @@
/area/ice_colony/underground/command/center)
"bzr" = (
/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/crew/canteen)
"bzs" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bzt" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bzu" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/crew/canteen)
"bzv" = (
/obj/effect/alien/weeds/node,
@@ -25356,145 +19993,97 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/storage)
"bzx" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/storage)
"bzy" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/storage)
"bzz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/storage)
"bzA" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/storage)
"bzB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/medical/storage)
"bzC" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/east,
/area/ice_colony/underground/medical/storage)
"bzD" = (
/obj/structure/filingcabinet,
/obj/item/paper/research_notes,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/ice_colony/underground/command/center)
"bzE" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/center)
"bzF" = (
/obj/structure/reagent_dispensers/water_cooler,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/center)
"bzG" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/center)
"bzH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bzI" = (
/obj/structure/machinery/photocopier,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/center)
"bzJ" = (
/obj/structure/surface/table,
/obj/structure/machinery/faxmachine,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/center)
"bzK" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/ice_colony/underground/command/center)
"bzL" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/crew/canteen)
"bzM" = (
/obj/structure/surface/table,
/obj/item/trash/plate,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bzN" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/dry_ramen,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bzO" = (
/obj/structure/surface/table,
/obj/item/tool/kitchen/utensil/knife,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bzP" = (
/turf/closed/wall/r_wall,
@@ -25543,26 +20132,19 @@
/obj/structure/closet/secure_closet/medical3{
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southwest,
/area/ice_colony/underground/medical/storage)
"bzY" = (
/obj/structure/closet/secure_closet/medical3{
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/storage)
"bzZ" = (
/obj/structure/closet/secure_closet/medical1{
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/storage)
"bAa" = (
/obj/structure/machinery/power/apc{
@@ -25570,71 +20152,48 @@
start_charge = 0
},
/obj/structure/surface/rack,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/storage)
"bAb" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/storage)
"bAc" = (
/obj/item/roller{
icon_state = "down"
},
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/storage)
"bAd" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "whitered"
- },
+/turf/open/floor/whitered,
/area/ice_colony/underground/medical/storage)
"bAe" = (
/obj/item/roller{
icon_state = "down"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/southeast,
/area/ice_colony/underground/medical/storage)
"bAf" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/underground/command/center)
"bAg" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bAh" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bAi" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bAj" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/underground/command/center)
"bAk" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -25645,39 +20204,28 @@
/area/ice_colony/underground/maintenance/central)
"bAl" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/crew/canteen)
"bAm" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bAn" = (
/obj/structure/surface/table,
/obj/item/tool/kitchen/utensil/fork,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bAo" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/boiledspagetti,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bAp" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper Underground Staff Canteen"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bAq" = (
/turf/open/floor/wood,
@@ -25753,10 +20301,7 @@
/turf/open/floor/plating,
/area/ice_colony/underground/maintenance/research)
"bAD" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/hallway/north_west)
"bAE" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -25800,9 +20345,7 @@
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
/obj/item/tool/stamp,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bAJ" = (
/obj/structure/window/reinforced/tinted{
@@ -25814,9 +20357,7 @@
/obj/structure/surface/table/reinforced,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bAK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -25829,17 +20370,13 @@
/area/ice_colony/underground/crew/canteen)
"bAL" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bAM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bAN" = (
/obj/structure/bed/chair{
@@ -25848,18 +20385,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bAO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/crew/canteen)
"bAP" = (
/obj/structure/window/framed/colony/reinforced,
@@ -25872,10 +20404,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/hallway/south_east)
"bAR" = (
/obj/structure/machinery/light{
@@ -25918,10 +20447,7 @@
/area/ice_colony/underground/security/marshal)
"bAX" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/research/field_gear)
"bAZ" = (
/obj/structure/closet/secure_closet/personal,
@@ -25932,22 +20458,13 @@
/area/ice_colony/underground/research)
"bBb" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/access/research,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northwest,
/area/ice_colony/underground/research)
"bBc" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/underground/research)
"bBd" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northeast,
/area/ice_colony/underground/research)
"bBe" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -25976,9 +20493,7 @@
dir = 8
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bBj" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -26009,62 +20524,47 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/underground/command/center)
"bBn" = (
/obj/structure/window/reinforced/tinted{
dir = 4
},
/obj/structure/machinery/computer/atmos_alert,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bBo" = (
/obj/structure/window/reinforced/tinted{
dir = 8
},
/obj/structure/machinery/computer/communications,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bBp" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bBq" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bBr" = (
/obj/structure/window/reinforced/tinted{
dir = 4
},
/obj/structure/machinery/computer/cameras,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bBs" = (
/obj/structure/window/reinforced/tinted{
dir = 8
},
/obj/structure/machinery/computer/station_alert,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bBt" = (
/obj/structure/bed/chair/office/light{
@@ -26073,10 +20573,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/underground/command/center)
"bBu" = (
/obj/structure/surface/table/reinforced,
@@ -26084,10 +20581,7 @@
dir = 8;
pixel_x = -11
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/crew/canteen)
"bBv" = (
/obj/structure/pipes/vents/pump,
@@ -26131,31 +20625,20 @@
/turf/open/floor/plating,
/area/ice_colony/underground/maintenance/research)
"bBD" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/research)
"bBE" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bBF" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/east,
/area/ice_colony/underground/research)
"bBG" = (
/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator3{
dir = 1;
pixel_y = 30
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/underground/research)
"bBH" = (
/obj/structure/machinery/power/apc{
@@ -26163,10 +20646,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/underground/research)
"bBK" = (
/obj/structure/machinery/power/apc{
@@ -26174,10 +20654,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northwest,
/area/ice_colony/underground/research/storage)
"bBL" = (
/obj/structure/surface/table,
@@ -26185,30 +20662,19 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/underground/research/storage)
"bBM" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/storage)
"bBN" = (
/obj/structure/surface/rack,
/obj/item/clothing/mask/gas,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northeast,
/area/ice_colony/underground/research/storage)
"bBO" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/underground/hallway/north_west)
"bBP" = (
/obj/structure/machinery/light/small{
@@ -26232,15 +20698,11 @@
/obj/structure/surface/table/reinforced,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bBS" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/surface/hangar/checkpoint)
"bBT" = (
/obj/structure/window/reinforced/tinted{
@@ -26251,37 +20713,26 @@
/obj/item/clipboard,
/obj/item/tool/stamp,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bBU" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/crew/canteen)
"bBV" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/chips,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bBW" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/cheeseburger,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bBX" = (
/obj/structure/surface/table,
/obj/item/tool/kitchen/utensil/spoon,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bBY" = (
/obj/structure/closet/secure_closet/detective,
@@ -26343,45 +20794,31 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony{
name = "\improper Underground Maintenance"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bCk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bCl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bCm" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bCq" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/underground/research)
"bCt" = (
/obj/structure/surface/rack,
/obj/item/clothing/mask/gas,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/underground/research/storage)
"bCu" = (
/turf/closed/wall/r_wall,
@@ -26406,25 +20843,17 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/underground/command/center)
"bCA" = (
/obj/structure/surface/table/reinforced,
/obj/structure/machinery/microwave,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/crew/canteen)
"bCB" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/hotchili,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bCG" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -26458,66 +20887,42 @@
"bCL" = (
/obj/structure/surface/table/reinforced,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bCM" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bCO" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/storage)
"bCQ" = (
/obj/structure/dispenser,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/ice_colony/underground/storage/highsec)
"bCR" = (
/obj/structure/dispenser,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/storage/highsec)
"bCS" = (
/obj/structure/safe,
/obj/item/weapon/sword/katana/replica,
/obj/item/reagent_container/food/drinks/bottle/absinthe,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/storage/highsec)
"bCT" = (
/obj/structure/closet/fireaxecabinet{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/storage/highsec)
"bCU" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/storage/highsec)
"bCV" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/storage/highsec)
"bCW" = (
/obj/structure/machinery/power/apc{
@@ -26525,37 +20930,22 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/storage/highsec)
"bCX" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/storage/highsec)
"bCY" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/storage/highsec)
"bCZ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/storage/highsec)
"bDa" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/ice_colony/underground/storage/highsec)
"bDb" = (
/obj/structure/machinery/alarm{
@@ -26564,48 +20954,35 @@
},
/obj/structure/surface/table,
/obj/item/device/taperecorder,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/ice_colony/underground/command/center)
"bDc" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
/obj/item/paper/research_notes,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/center)
"bDd" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/center)
"bDe" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/center)
"bDf" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/center)
"bDg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/center)
"bDh" = (
/obj/structure/machinery/firealarm{
@@ -26616,10 +20993,7 @@
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/ice_colony/underground/command/center)
"bDi" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26640,94 +21014,60 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/canteen)
"bDm" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Underground Security"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/security/hallway)
"bDn" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/hallway)
"bDo" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/hallway)
"bDp" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/hallway)
"bDq" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/hallway)
"bDr" = (
/obj/structure/machinery/firealarm{
pixel_y = 24
},
/obj/structure/bed/chair,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/hallway)
"bDs" = (
/obj/structure/bed/chair,
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/hallway)
"bDt" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/hallway)
"bDu" = (
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/hallway)
"bDv" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/hallway)
"bDw" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/underground/security/hallway)
"bDx" = (
/turf/closed/wall/r_wall,
@@ -26747,49 +21087,34 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bDB" = (
/obj/structure/surface/table/reinforced,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bDC" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/hallway/north_west)
"bDD" = (
/obj/structure/machinery/alarm{
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/underground/storage/highsec)
"bDE" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage/highsec)
"bDG" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/underground/storage/highsec)
"bDH" = (
/obj/structure/window/framed/colony/reinforced,
@@ -26800,9 +21125,7 @@
dir = 1;
name = "\improper Underground Command Center"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bDJ" = (
/obj/structure/window/framed/colony/reinforced,
@@ -26830,45 +21153,31 @@
/area/ice_colony/underground/maintenance/central)
"bDO" = (
/obj/structure/machinery/smartfridge,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/underground/crew/canteen)
"bDP" = (
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/crew/canteen)
"bDQ" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/crew/canteen)
"bDR" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/crew/canteen)
"bDS" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/underground/crew/canteen)
"bDT" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bDU" = (
/obj/structure/disposalpipe/segment{
@@ -26878,18 +21187,13 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bDV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/hallway/south_east)
"bDW" = (
/obj/structure/window/framed/colony/reinforced,
@@ -26902,32 +21206,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/hallway)
"bDY" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/hallway)
"bEb" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/hallway)
"bEc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/hallway)
"bEd" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26966,25 +21261,16 @@
/turf/open/floor/plating,
/area/ice_colony/underground/maintenance/east)
"bEi" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northwest,
/area/ice_colony/underground/research/sample)
"bEj" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/underground/research/sample)
"bEk" = (
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/underground/research/sample)
"bEl" = (
/obj/structure/machinery/power/apc{
@@ -26992,10 +21278,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northeast,
/area/ice_colony/underground/research/sample)
"bEm" = (
/obj/structure/bed/chair/office/light{
@@ -27004,9 +21287,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bEo" = (
/obj/structure/bed/chair/office/light{
@@ -27015,18 +21296,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bEp" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bEq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -27035,25 +21312,19 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Theta-V Research Laboratory Storage"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/storage)
"bEs" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/storage)
"bEt" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/storage)
"bEv" = (
/obj/structure/machinery/light{
@@ -27061,32 +21332,23 @@
},
/obj/structure/surface/table/reinforced,
/obj/item/spacecash/c1000,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/underground/storage/highsec)
"bEw" = (
/obj/structure/showcase,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage/highsec)
"bEx" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage/highsec)
"bEy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage/highsec)
"bEz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -27096,47 +21358,30 @@
desc = "A stand with a plastic display of some kind of weird machine.";
icon_state = "coinpress0"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage/highsec)
"bEA" = (
/obj/structure/closet/secure_closet/engineering_electrical,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/underground/storage/highsec)
"bEB" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/ice_colony/underground/command/center)
"bEC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/center)
"bED" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/center)
"bEE" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/ice_colony/underground/command/center)
"bEF" = (
/turf/closed/wall/r_wall,
@@ -27166,9 +21411,7 @@
/area/ice_colony/underground/crew/dorm_r)
"bEL" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bEM" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -27176,18 +21419,13 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bEN" = (
/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
+ dir = 8
},
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/hallway/south_east)
"bEO" = (
/obj/structure/disposalpipe/segment{
@@ -27196,36 +21434,26 @@
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Underground Security"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/security/hallway)
"bEP" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security/hallway)
"bEQ" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security/hallway)
"bER" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/ice_colony/underground/security/hallway)
"bES" = (
/obj/structure/disposalpipe/junction{
@@ -27233,36 +21461,26 @@
icon_state = "pipe-j2"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2,
/area/ice_colony/underground/security/hallway)
"bET" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/security/hallway)
"bEU" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/research/sample)
"bEV" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/sample)
"bEW" = (
/obj/structure/machinery/door/window/brigdoor/eastleft{
@@ -27271,17 +21489,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/sample)
"bEX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/sample)
"bEY" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -27290,93 +21504,64 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Theta-V Research Laboratory Sample Isolation"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/sample)
"bEZ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bFa" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/research/storage)
"bFb" = (
/obj/structure/surface/table/reinforced,
/obj/item/circuitboard/computer/atmos_alert,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/underground/storage/highsec)
"bFc" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage/highsec)
"bFd" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/underground/storage/highsec)
"bFe" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/underground/command/center)
"bFf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bFg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bFh" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bFi" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bFj" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/underground/command/center)
"bFk" = (
/obj/structure/machinery/firealarm{
@@ -27475,9 +21660,7 @@
"bFB" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/junction,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bFD" = (
/turf/closed/wall/r_wall,
@@ -27489,107 +21672,70 @@
"bFG" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/hallway)
"bFH" = (
/turf/open/ice,
/area/ice_colony/underground/maintenance/east)
"bFI" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/southwest,
/area/ice_colony/underground/research/sample)
"bFJ" = (
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research/sample)
"bFK" = (
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research/sample)
"bFL" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/southeast,
/area/ice_colony/underground/research/sample)
"bFM" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/research)
"bFO" = (
/obj/structure/machinery/autolathe,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/underground/research)
"bFQ" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/storage)
"bFR" = (
/obj/structure/closet/radiation,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/underground/research/storage)
"bFS" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/surface/hangar/checkpoint)
"bFT" = (
/obj/structure/surface/table/reinforced,
/obj/item/circuitboard/machine/smes,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/storage/highsec)
"bFU" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/trackimp,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/storage/highsec)
"bFV" = (
/obj/structure/surface/table/reinforced,
/obj/item/circuitboard/computer/crew,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/storage/highsec)
"bFW" = (
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/storage/highsec)
"bFX" = (
/obj/structure/surface/table/reinforced,
/obj/item/circuitboard/computer/powermonitor,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/storage/highsec)
"bFY" = (
/obj/structure/machinery/alarm{
@@ -27597,49 +21743,32 @@
pixel_x = -24
},
/obj/structure/closet/secure_closet/freezer/kitchen,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/ice_colony/surface/bar/canteen)
"bFZ" = (
/obj/structure/surface/table/reinforced,
/obj/item/toy/plush/farwa,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/storage/highsec)
"bGa" = (
/obj/structure/surface/table/reinforced,
/obj/item/reagent_container/hypospray/tricordrazine,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/ice_colony/underground/storage/highsec)
"bGb" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/ice_colony/underground/command/center)
"bGc" = (
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/center)
"bGe" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/center)
"bGf" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/ice_colony/underground/command/center)
"bGg" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -27663,10 +21792,7 @@
/area/ice_colony/underground/command/pv2)
"bGk" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/research/field_gear)
"bGm" = (
/obj/structure/bed,
@@ -27680,10 +21806,7 @@
/area/ice_colony/underground/crew/dorm_r)
"bGq" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/security/interrogation)
"bGr" = (
/obj/structure/machinery/power/apc{
@@ -27691,64 +21814,41 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/interrogation)
"bGs" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/evidence,
/obj/item/tool/hand_labeler,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/underground/security/interrogation)
"bGt" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/security/interrogation)
"bGu" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/interrogation)
"bGv" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/underground/security/interrogation)
"bGw" = (
/turf/closed/ice_rock/corners,
/area/ice_colony/exterior/underground/caves)
"bGx" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2/east,
/area/ice_colony/surface/research)
"bGy" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bGz" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/r_n_d/protolathe,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/underground/research)
"bGB" = (
/turf/closed/wall/r_wall,
@@ -27758,9 +21858,7 @@
dir = 1;
name = "\improper Underground Security Checkpoint"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bGD" = (
/obj/structure/window/framed/colony/reinforced,
@@ -27771,14 +21869,10 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "\improper Colony Administration"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bGF" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bGG" = (
/obj/structure/window/framed/colony/reinforced,
@@ -27832,46 +21926,29 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security/interrogation)
"bGR" = (
/obj/structure/surface/table/reinforced,
/obj/item/evidencebag,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/interrogation)
"bGS" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security/interrogation)
"bGT" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/interrogation)
"bGU" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/research/temporary)
"bGV" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/interrogation)
"bGW" = (
/obj/structure/disposalpipe/segment,
@@ -27879,10 +21956,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/hallway)
"bGX" = (
/turf/closed/wall/r_wall,
@@ -27894,10 +21968,7 @@
/obj/item/stack/sheet/mineral/phoron,
/obj/item/stack/sheet/mineral/phoron,
/obj/item/stack/sheet/mineral/phoron,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northwest,
/area/ice_colony/underground/research/work)
"bGZ" = (
/obj/structure/machinery/power/apc{
@@ -27907,65 +21978,41 @@
},
/obj/structure/filingcabinet,
/obj/item/paper/research_notes,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/underground/research/work)
"bHa" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/underground/research/work)
"bHb" = (
/obj/structure/machinery/chem_dispenser,
/obj/item/reagent_container/glass/beaker/bluespace,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northeast,
/area/ice_colony/underground/research/work)
"bHc" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bHd" = (
/obj/structure/machinery/r_n_d/destructive_analyzer,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/underground/research)
"bHe" = (
/obj/structure/machinery/r_n_d/server,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/southwest,
/area/ice_colony/underground/research/storage)
"bHf" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research/storage)
"bHg" = (
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research/storage)
"bHh" = (
/obj/structure/closet/radiation,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/southeast,
/area/ice_colony/underground/research/storage)
"bHi" = (
/turf/closed/wall/r_wall,
@@ -27983,19 +22030,13 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/underground/storage)
"bHk" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/storage)
"bHl" = (
/obj/structure/surface/table,
@@ -28003,23 +22044,15 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/storage)
"bHm" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/storage)
"bHn" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage)
"bHo" = (
/obj/structure/machinery/power/apc{
@@ -28027,27 +22060,18 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/storage)
"bHp" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/storage)
"bHq" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/storage)
"bHr" = (
/obj/structure/ladder{
@@ -28055,25 +22079,16 @@
icon_state = "ladderup";
id = "garage_ladder"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/storage)
"bHs" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/underground/storage)
"bHt" = (
/obj/structure/machinery/computer/cameras,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/command/checkpoint)
"bHu" = (
/obj/structure/machinery/power/apc{
@@ -28082,55 +22097,35 @@
start_charge = 0
},
/obj/structure/closet/secure_closet/security,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/underground/command/checkpoint)
"bHv" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/ice_colony/underground/command/checkpoint)
"bHw" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/checkpoint)
"bHx" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bHy" = (
/obj/structure/bed/chair,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/checkpoint)
"bHz" = (
/obj/structure/bed/chair,
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/checkpoint)
"bHA" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/ice_colony/underground/command/checkpoint)
"bHB" = (
/obj/structure/closet/secure_closet/personal,
@@ -28188,90 +22183,61 @@
/area/ice_colony/underground/crew/dorm_r)
"bHM" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security/interrogation)
"bHP" = (
/obj/structure/machinery/door/airlock/almayer/security/colony{
name = "\improper Underground Security Evidence Storage"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/interrogation)
"bHQ" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/interrogation)
"bHR" = (
/obj/structure/surface/table,
/obj/item/device/flashlight/lamp,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/interrogation)
"bHS" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/interrogation)
"bHT" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Underground Security Interrogation"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/interrogation)
"bHU" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/hallway)
"bHV" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/research/work)
"bHX" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/work)
"bHY" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/underground/research/work)
"bHZ" = (
/obj/structure/machinery/r_n_d/circuit_imprinter,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/underground/research)
"bIa" = (
/obj/structure/mineral_door/resin,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/northwest,
/area/ice_colony/underground/research)
"bIb" = (
/obj/item/stack/sheet/wood,
@@ -28293,42 +22259,30 @@
"bIf" = (
/obj/structure/surface/table,
/obj/item/storage/box/lightstick,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/underground/storage)
"bIg" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage)
"bIi" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage)
"bIj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage)
"bIk" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/underground/storage)
"bIl" = (
/obj/structure/machinery/alarm{
@@ -28338,28 +22292,17 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/command/checkpoint)
"bIm" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/command/checkpoint)
"bIn" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/west,
/area/ice_colony/underground/command/checkpoint)
"bIo" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bIp" = (
/obj/structure/bed/chair{
@@ -28368,10 +22311,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/underground/command/checkpoint)
"bIq" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -28402,16 +22342,10 @@
"bIu" = (
/obj/structure/surface/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/interrogation)
"bIv" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security/interrogation)
"bIx" = (
/obj/structure/tunnel{
@@ -28424,10 +22358,7 @@
dir = 8;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/alpha)
"bIC" = (
/obj/structure/window/framed/colony/reinforced,
@@ -28435,62 +22366,42 @@
/area/ice_colony/underground/research)
"bID" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/underground/research)
"bIE" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/north,
/area/ice_colony/underground/research)
"bIF" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/north,
/area/ice_colony/underground/hallway/north_west)
"bIG" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/underground/storage)
"bIH" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage)
"bII" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage)
"bIJ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage)
"bIK" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage)
"bIL" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -28503,10 +22414,7 @@
dir = 8;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/command/checkpoint)
"bIN" = (
/obj/structure/surface/table/reinforced,
@@ -28524,156 +22432,103 @@
/area/ice_colony/underground/command/checkpoint)
"bIO" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bIP" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/underground/command/checkpoint)
"bIQ" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northwest,
/area/ice_colony/underground/command/checkpoint)
"bIR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/checkpoint)
"bIS" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/junction,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bIT" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/checkpoint)
"bIU" = (
/obj/structure/noticeboard{
pixel_y = 32
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/checkpoint)
"bIV" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/command/checkpoint)
"bIW" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bIX" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/northeast,
/area/ice_colony/underground/command/checkpoint)
"bIY" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/security/interrogation)
"bIZ" = (
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security/interrogation)
"bJa" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/security/interrogation)
"bJb" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/security/interrogation)
"bJc" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("interrogation")
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security/interrogation)
"bJd" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/security/interrogation)
"bJe" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Underground Security Checkpoint"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security/hallway)
"bJf" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tech_supply,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/research/tech_storage)
"bJg" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/work)
"bJh" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/work)
"bJi" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -28683,38 +22538,26 @@
dir = 1;
name = "\improper Theta-V Research Laboratory"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research/work)
"bJk" = (
/obj/effect/landmark/corpsespawner/russian,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bJo" = (
/obj/structure/closet/firecloset,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/underground/storage)
"bJp" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/command/checkpoint)
"bJq" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bJr" = (
/obj/structure/bed/chair/office/light{
@@ -28723,10 +22566,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/command/checkpoint)
"bJs" = (
/obj/structure/surface/table/reinforced,
@@ -28740,24 +22580,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/command/checkpoint)
"bJt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bJu" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bJv" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -28765,9 +22598,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bJw" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -28777,9 +22608,7 @@
dir = 8;
icon_state = "pipe-j2"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bJx" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -28789,9 +22618,7 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bJy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -28801,9 +22628,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bJz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -28812,9 +22637,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bJA" = (
/obj/structure/disposalpipe/segment{
@@ -28823,9 +22646,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bJB" = (
/obj/structure/disposalpipe/junction{
@@ -28835,9 +22656,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bJC" = (
/obj/structure/disposalpipe/segment{
@@ -28845,25 +22664,18 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bJE" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bJF" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/east,
/area/ice_colony/underground/command/checkpoint)
"bJG" = (
/obj/structure/window/framed/colony/reinforced/tinted,
@@ -28881,10 +22693,7 @@
name = "Checkpoint Lockdown";
pixel_y = 36
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/security/hallway)
"bJI" = (
/obj/structure/surface/table/reinforced,
@@ -28893,10 +22702,7 @@
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/hallway)
"bJJ" = (
/obj/structure/surface/table/reinforced,
@@ -28913,10 +22719,7 @@
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/underground/security/hallway)
"bJK" = (
/obj/structure/mineral_door/resin,
@@ -28925,37 +22728,25 @@
"bJL" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/syringes,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/research/work)
"bJM" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/underground/research/work)
"bJN" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bJO" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 1;
name = "\improper Theta-V Research Laboratory"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bJP" = (
/obj/item/weapon/baton,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bJQ" = (
/obj/structure/surface/table,
@@ -28965,123 +22756,85 @@
dir = 8;
pixel_x = -24
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/underground/storage)
"bJT" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/storage)
"bJU" = (
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/storage)
"bJV" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
req_access_txt = "102"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/underground/storage)
"bJW" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/command/checkpoint)
"bJX" = (
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/command/checkpoint)
"bJY" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/command/checkpoint)
"bJZ" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/ice_colony/underground/command/checkpoint)
"bKa" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/checkpoint)
"bKc" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bKd" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/checkpoint)
"bKe" = (
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/checkpoint)
"bKf" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
dir = 1;
name = "\improper Colony Offices"
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/checkpoint)
"bKg" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/checkpoint)
"bKh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/command/checkpoint)
"bKi" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/ice_colony/underground/command/checkpoint)
"bKj" = (
/obj/structure/bed,
@@ -29148,10 +22901,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/security/backroom)
"bKv" = (
/obj/structure/machinery/computer/cameras/telescreen{
@@ -29162,10 +22912,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/backroom)
"bKw" = (
/obj/structure/bed/chair{
@@ -29176,17 +22923,11 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/underground/security/backroom)
"bKx" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/security/hallway)
"bKy" = (
/obj/structure/machinery/flasher{
@@ -29195,17 +22936,12 @@
pixel_x = -32;
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/north,
/area/ice_colony/underground/security/hallway)
"bKz" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/hallway)
"bKA" = (
/obj/structure/surface/table/reinforced,
@@ -29227,17 +22963,13 @@
name = "Checkpoint Lockdown";
pixel_y = 7
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/hallway)
"bKB" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/hallway)
"bKD" = (
/obj/structure/machinery/power/apc{
@@ -29245,39 +22977,25 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/hallway)
"bKE" = (
/obj/structure/surface/table/reinforced,
/obj/item/storage/box/beakers,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/southwest,
/area/ice_colony/underground/research/work)
"bKF" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/surface/research/tech_storage)
"bKG" = (
/obj/structure/machinery/r_n_d/protolathe,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/southeast,
/area/ice_colony/underground/research/work)
"bKH" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"bKI" = (
/obj/structure/window/framed/colony/reinforced,
@@ -29291,53 +23009,40 @@
dir = 4
},
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research)
"bKK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research)
"bKL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research)
"bKM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurplecorners2"
- },
+/turf/open/floor/darkpurplecorners2/west,
/area/ice_colony/underground/hallway/north_west)
"bKN" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
/obj/structure/disposalpipe/junction,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bKO" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 1;
name = "\improper Underground Technical Storage"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage)
"bKP" = (
/obj/structure/window/framed/colony/reinforced,
@@ -29350,9 +23055,7 @@
dir = 1;
name = "\improper Underground Technical Storage"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage)
"bKR" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -29360,9 +23063,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "\improper Colony Administration"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/checkpoint)
"bKS" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -29405,22 +23106,14 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security/backroom)
"bKZ" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/backroom)
"bLa" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/backroom)
"bLb" = (
/obj/structure/closet/firecloset/full,
@@ -29431,77 +23124,52 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security/hallway)
"bLc" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/ice_colony/underground/security/hallway)
"bLd" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/hallway)
"bLe" = (
/obj/structure/window/framed/colony/reinforced,
/turf/open/floor/plating,
/area/ice_colony/underground/security/hallway)
"bLf" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security/hallway)
"bLg" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/hallway)
"bLh" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/filingcabinet/security,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/hallway)
"bLi" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/southwest,
/area/ice_colony/underground/research)
"bLj" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research)
"bLk" = (
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research)
"bLl" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research)
"bLm" = (
/obj/structure/machinery/shower{
@@ -29510,17 +23178,13 @@
/obj/structure/window/reinforced/tinted{
dir = 8
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research)
"bLn" = (
/obj/structure/machinery/shower{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research)
"bLo" = (
/obj/structure/machinery/shower{
@@ -29529,15 +23193,10 @@
/obj/structure/window/reinforced/tinted{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research)
"bLp" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/southeast,
/area/ice_colony/underground/research)
"bLq" = (
/obj/structure/barricade/wooden,
@@ -29545,92 +23204,59 @@
/turf/open/ice,
/area/ice_colony/underground/research)
"bLr" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellowcorners2"
- },
+/turf/open/floor/darkyellowcorners2/east,
/area/ice_colony/underground/hallway/north_west)
"bLt" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/hallway/south_east)
"bLu" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/hallway/south_east)
"bLw" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/hallway/south_east)
"bLy" = (
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/hallway/south_east)
"bLB" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/hallway/south_east)
"bLC" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/hallway/south_east)
"bLE" = (
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/north,
/area/ice_colony/underground/hallway/south_east)
"bLH" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bLJ" = (
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bLK" = (
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bLL" = (
/obj/structure/machinery/power/apc{
@@ -29638,10 +23264,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bLO" = (
/turf/closed/wall/r_wall,
@@ -29656,37 +23279,23 @@
"bLR" = (
/obj/structure/surface/table,
/obj/item/device/radio,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/security/backroom)
"bLS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/backroom)
"bLT" = (
/obj/structure/surface/table,
/obj/item/device/taperecorder,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/security/backroom)
"bLU" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/security/hallway)
"bLV" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/west,
/area/ice_colony/underground/security/hallway)
"bLW" = (
/obj/structure/disposalpipe/segment,
@@ -29695,17 +23304,11 @@
pixel_x = 24
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/hallway)
"bLX" = (
/obj/structure/filingcabinet/security,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/security/hallway)
"bLY" = (
/obj/structure/machinery/light/small,
@@ -29715,10 +23318,7 @@
/obj/structure/closet/hydrant{
pixel_x = -32
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/hallway/north_west)
"bMa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -29728,9 +23328,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bMb" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -29739,9 +23337,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bMc" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -29750,27 +23346,21 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMe" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/disposalpipe/junction,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMf" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -29780,18 +23370,14 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMg" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMh" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -29801,9 +23387,7 @@
dir = 8;
icon_state = "pipe-j2"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMi" = (
/obj/structure/disposalpipe/segment{
@@ -29811,9 +23395,7 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -29823,9 +23405,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMk" = (
/obj/structure/disposalpipe/segment{
@@ -29834,18 +23414,14 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMl" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMn" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -29854,9 +23430,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMo" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -29866,18 +23440,13 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMp" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/east,
/area/ice_colony/underground/hallway/south_east)
"bMq" = (
/obj/item/reagent_container/glass/bucket/mopbucket,
@@ -29890,9 +23459,7 @@
dir = 1;
name = "\improper Underground Security Interrogation Observation"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/backroom)
"bMs" = (
/turf/closed/wall/r_wall,
@@ -29901,18 +23468,12 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Underground Security Checkpoint"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security)
"bMu" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security)
"bMv" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -29920,9 +23481,7 @@
dir = 1;
name = "\improper Underground Security Lobby"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security)
"bMw" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -29934,35 +23493,26 @@
/area/ice_colony/underground/security)
"bMx" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/hallway/north_west)
"bMy" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper Underground Main Hallway"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/north_west)
"bMz" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMC" = (
/obj/structure/disposalpipe/junction{
@@ -29970,31 +23520,23 @@
icon_state = "pipe-j2"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMD" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bME" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMG" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMH" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -30002,50 +23544,34 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bMI" = (
-/turf/open/floor{
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2,
/area/ice_colony/underground/hallway/south_east)
"bMJ" = (
/obj/structure/closet/crate/secure/weapon,
/obj/structure/curtain/black,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/security/backroom)
"bMK" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/security)
"bML" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security)
"bMM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/north,
/area/ice_colony/underground/security)
"bMN" = (
/obj/structure/disposalpipe/segment{
@@ -30053,43 +23579,29 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkredcorners2"
- },
+/turf/open/floor/darkredcorners2/east,
/area/ice_colony/underground/security)
"bMO" = (
/obj/structure/sign/goldenplaque{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security)
"bMP" = (
/obj/structure/noticeboard{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security)
"bMQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security)
"bMR" = (
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security)
"bMS" = (
/obj/structure/machinery/power/apc{
@@ -30097,81 +23609,51 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security)
"bMT" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security)
"bMU" = (
/obj/item/storage/donut_box,
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security)
"bMV" = (
/obj/item/device/taperecorder,
/obj/item/clothing/glasses/sunglasses,
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security)
"bMW" = (
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security)
"bMX" = (
/obj/item/book/manual/marine_law,
/obj/structure/surface/table/reinforced,
/obj/item/restraint/handcuffs,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security)
"bMY" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/underground/security)
"bMZ" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/southwest,
/area/ice_colony/underground/hallway/north_west)
"bNa" = (
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/hallway/north_west)
"bNb" = (
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/hallway/south_east)
"bNc" = (
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/hallway/south_east)
"bNf" = (
/obj/structure/largecrate/random,
@@ -30182,43 +23664,29 @@
dir = 8
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security/backroom)
"bNh" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security)
"bNi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security)
"bNk" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security)
"bNo" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security)
"bNr" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security)
"bNs" = (
/obj/item/storage/box/donkpockets,
@@ -30227,10 +23695,7 @@
dir = 8;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security)
"bNt" = (
/turf/closed/wall/r_wall,
@@ -30242,9 +23707,7 @@
dir = 1;
name = "\improper Underground Disposals"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/disposals)
"bNv" = (
/turf/closed/wall/r_wall,
@@ -30256,9 +23719,7 @@
dir = 1;
name = "\improper Underground Lavatory"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/lavatory)
"bNx" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -30270,26 +23731,18 @@
/area/ice_colony/underground/hallway/south_east)
"bNy" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/underground/hallway/south_east)
"bNz" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/underground/hallway/south_east)
"bNA" = (
/turf/closed/wall/r_wall,
/area/ice_colony/underground/crew/leisure)
"bNB" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/leisure)
"bND" = (
/turf/open/floor/wood,
@@ -30326,9 +23779,7 @@
/area/ice_colony/underground/security/backroom)
"bNJ" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/backroom)
"bNL" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -30337,62 +23788,43 @@
/obj/structure/machinery/door/airlock/almayer/security/colony{
name = "\improper Underground Security Custodial Closet"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/backroom)
"bNO" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security)
"bNP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security)
"bNQ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security)
"bNR" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security)
"bNS" = (
/obj/structure/machinery/microwave,
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security)
"bNT" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/underground/crew/disposals)
"bNU" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/crew/disposals)
"bNV" = (
/obj/structure/ladder{
@@ -30400,26 +23832,18 @@
icon_state = "ladderup";
id = "janitor_ladder"
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/crew/disposals)
"bNW" = (
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/crew/disposals)
"bNX" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/disposals)
"bNY" = (
/obj/structure/machinery/power/apc{
@@ -30427,45 +23851,27 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/crew/disposals)
"bNZ" = (
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/crew/disposals)
"bOa" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/underground/crew/disposals)
"bOb" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/ice_colony/underground/crew/lavatory)
"bOc" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/crew/lavatory)
"bOd" = (
/obj/structure/closet/jcloset,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/crew/lavatory)
"bOe" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -30473,9 +23879,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/lavatory)
"bOf" = (
/obj/structure/disposalpipe/trunk{
@@ -30485,25 +23889,16 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/crew/lavatory)
"bOg" = (
/obj/structure/surface/table,
-/obj/structure/bedsheetbin,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/obj/structure/bedsheetbin,
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/underground/crew/lavatory)
"bOh" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/underground/crew/lavatory)
"bOi" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -30551,17 +23946,11 @@
"bOs" = (
/obj/structure/surface/table,
/obj/item/storage/box/trackimp,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/security/backroom)
"bOt" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/security)
"bOu" = (
/obj/structure/bed/chair/office/dark{
@@ -30571,27 +23960,21 @@
dir = 8
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security)
"bOv" = (
/obj/structure/machinery/computer/cameras,
/obj/structure/window/reinforced/tinted{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security)
"bOw" = (
/obj/structure/machinery/computer/cameras,
/obj/structure/window/reinforced/tinted{
dir = 8
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security)
"bOx" = (
/obj/structure/bed/chair/office/dark{
@@ -30600,15 +23983,11 @@
/obj/structure/window/reinforced/tinted{
dir = 4
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security)
"bOy" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security)
"bOz" = (
/obj/structure/machinery/light,
@@ -30618,49 +23997,35 @@
/obj/structure/window/reinforced/tinted{
dir = 8
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security)
"bOB" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security)
"bOC" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/security)
"bOD" = (
/obj/structure/closet/crate/trashcart,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/crew/disposals)
"bOE" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/disposals)
"bOF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/disposals)
"bOG" = (
/obj/structure/disposalpipe/segment{
@@ -30670,59 +24035,40 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/disposals)
"bOH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/disposals)
"bOI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/disposals)
"bOJ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/crew/disposals)
"bOK" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/crew/lavatory)
"bOL" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/lavatory)
"bOM" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/lavatory)
"bON" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/crew/lavatory)
"bOO" = (
/obj/structure/reagent_dispensers/watertank,
@@ -30772,9 +24118,7 @@
dir = 1;
name = "\improper Underground Security Armory"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/armory)
"bOX" = (
/turf/closed/wall/r_wall,
@@ -30783,9 +24127,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Underground Security Brig"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/brig)
"bPa" = (
/turf/closed/shuttle{
@@ -30794,33 +24136,21 @@
/area/space)
"bPb" = (
/obj/structure/closet/crate/trashcart,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/underground/crew/disposals)
"bPc" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/disposals)
"bPd" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/disposals)
"bPe" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/disposals)
"bPf" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/crew/disposals)
"bPg" = (
/turf/open/floor/plating,
@@ -30878,9 +24208,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bPp" = (
/obj/structure/disposalpipe/junction{
@@ -30890,9 +24218,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bPq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -30911,16 +24237,11 @@
/area/ice_colony/underground/maintenance/security)
"bPs" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/security/armory)
"bPt" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/armory)
"bPu" = (
/obj/structure/machinery/power/apc{
@@ -30928,51 +24249,31 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/armory)
"bPv" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/armory)
"bPw" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/underground/security/armory)
"bPx" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/underground/security/brig)
"bPy" = (
/obj/structure/bed,
/obj/effect/landmark/corpsespawner/prisoner,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/underground/security/brig)
"bPz" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/security/brig)
"bPA" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/brig)
"bPC" = (
/obj/structure/machinery/power/apc{
@@ -30980,10 +24281,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/brig)
"bPD" = (
/obj/structure/machinery/alarm{
@@ -30993,29 +24291,20 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/underground/security/brig)
"bPE" = (
/obj/structure/toilet,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/security/brig)
"bPF" = (
/obj/structure/urinal{
pixel_y = 32
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/security/brig)
"bPG" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/security/brig)
"bPH" = (
/obj/structure/machinery/shower{
@@ -31023,9 +24312,7 @@
},
/obj/structure/window/reinforced,
/obj/structure/machinery/door/window/westleft,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/security/brig)
"bPI" = (
/turf/open/space/transit/north/shuttlespace_ns4,
@@ -31038,40 +24325,29 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/underground/crew/disposals)
"bPL" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/crew/disposals)
"bPM" = (
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/crew/disposals)
"bPN" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/crew/disposals)
"bPO" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/lavatory)
"bPR" = (
/obj/structure/bed/chair/wood/normal{
@@ -31091,26 +24367,19 @@
/area/ice_colony/underground/maintenance/security)
"bPU" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security/armory)
"bPV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/armory)
"bPW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/armory)
"bPX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -31118,17 +24387,13 @@
},
/obj/effect/landmark/corpsespawner/russian,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/armory)
"bPY" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/armory)
"bPZ" = (
/obj/structure/closet/secure_closet/security,
@@ -31139,28 +24404,19 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/armory)
"bQa" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/underground/security/brig)
"bQb" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/underground/security/brig)
"bQc" = (
/obj/structure/machinery/door/window/brigdoor/westleft{
@@ -31171,32 +24427,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/underground/security/brig)
"bQd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/brig)
"bQe" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/brig)
"bQf" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/brig)
"bQg" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -31205,31 +24452,23 @@
/obj/structure/machinery/door/airlock/almayer/security/colony{
name = "\improper Underground Security Showers"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/brig)
"bQh" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/security/brig)
"bQi" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/security/brig)
"bQj" = (
/obj/item/tool/soap,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/security/brig)
"bQk" = (
/obj/structure/tunnel{
@@ -31247,20 +24486,14 @@
/obj/structure/disposaloutlet{
dir = 4
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/ice_colony/underground/crew/disposals)
"bQm" = (
/obj/effect/landmark/crap_item,
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/ice_colony/underground/crew/disposals)
"bQn" = (
/obj/item/evidencebag,
@@ -31269,38 +24502,26 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/ice_colony/underground/crew/disposals)
"bQo" = (
/obj/item/trash/semki,
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/ice_colony/underground/crew/disposals)
"bQp" = (
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/ice_colony/underground/crew/disposals)
"bQr" = (
/obj/structure/machinery/door/window/northright{
name = "Disposals Chute"
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/ice_colony/underground/crew/disposals)
"bQs" = (
/obj/structure/window/reinforced{
@@ -31309,10 +24530,7 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/ice_colony/underground/crew/disposals)
"bQu" = (
/turf/open/ice,
@@ -31365,10 +24583,7 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/security/armory)
"bQE" = (
/obj/structure/machinery/door_control{
@@ -31376,75 +24591,48 @@
name = "Colony Secure Armory";
pixel_y = -26
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security/armory)
"bQF" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/armory)
"bQG" = (
/obj/item/tool/crowbar,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security/armory)
"bQH" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/security/armory)
"bQI" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/underground/security/brig)
"bQJ" = (
/obj/structure/bed,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/underground/security/brig)
"bQK" = (
/obj/structure/closet/secure_closet/personal,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/security/brig)
"bQL" = (
/obj/structure/closet/secure_closet/personal,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security/brig)
"bQM" = (
/obj/structure/machinery/light,
/obj/structure/closet/secure_closet/personal,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security/brig)
"bQN" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/brig)
"bQO" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/security/brig)
"bQP" = (
/obj/structure/mirror{
@@ -31454,24 +24642,18 @@
dir = 8;
pixel_x = -11
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/security/brig)
"bQQ" = (
/obj/structure/machinery/light/small,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/security/brig)
"bQR" = (
/obj/structure/machinery/shower{
dir = 8
},
/obj/structure/machinery/door/window/westleft,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/security/brig)
"bQS" = (
/turf/open/floor/plating,
@@ -31498,77 +24680,53 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/ice_colony/underground/crew/disposals)
"bQY" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/underground/crew/disposals)
"bQZ" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/underground/crew/lavatory)
"bRa" = (
/obj/structure/machinery/firealarm{
dir = 1;
pixel_y = -24
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/crew/lavatory)
"bRb" = (
/obj/item/reagent_container/glass/bucket/mopbucket,
/obj/item/tool/mop,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/crew/lavatory)
"bRc" = (
/obj/structure/surface/table,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/crew/lavatory)
"bRd" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/crew/lavatory)
"bRe" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/crew/lavatory)
"bRf" = (
/obj/structure/machinery/alarm{
dir = 1;
pixel_y = -24
},
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/ice_colony/underground/crew/lavatory)
"bRg" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/underground/crew/lavatory)
"bRh" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -31581,18 +24739,13 @@
"bRi" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bRj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/hallway/south_east)
"bRk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -31612,9 +24765,7 @@
id = "colony_sec_armory";
name = "Secure Armory"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/armory)
"bRn" = (
/obj/structure/machinery/door/window/brigdoor/westleft{
@@ -31623,9 +24774,7 @@
id = "brg"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/security/brig)
"bRo" = (
/obj/structure/ice/thin/end{
@@ -31689,10 +24838,7 @@
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/security/armory)
"bRy" = (
/obj/structure/machinery/door_control{
@@ -31700,16 +24846,10 @@
name = "Colony Secure Armory";
pixel_y = 26
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/armory)
"bRz" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/security/armory)
"bRA" = (
/obj/structure/surface/rack,
@@ -31718,71 +24858,44 @@
pixel_y = -2
},
/obj/item/storage/box/flashbangs,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/underground/security/armory)
"bRB" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/underground/security/brig)
"bRC" = (
/obj/structure/bedsheetbin,
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/security/brig)
"bRD" = (
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/security/brig)
"bRE" = (
/obj/item/storage/box/donkpockets,
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/security/brig)
"bRF" = (
/obj/structure/machinery/microwave,
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/security/brig)
"bRG" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/security/brig)
"bRH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/underground/security/brig)
"bRI" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/underground/security/brig)
"bRJ" = (
/obj/structure/ladder{
@@ -31839,14 +24952,10 @@
/area/ice_colony/underground/maintenance/south)
"bRS" = (
/obj/structure/filingcabinet,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bRT" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bRU" = (
/obj/structure/surface/table,
@@ -31855,9 +24964,7 @@
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bRW" = (
/obj/structure/surface/table,
@@ -31876,9 +24983,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bRX" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -31900,10 +25005,7 @@
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security/armory)
"bRZ" = (
/obj/structure/surface/rack,
@@ -31912,9 +25014,7 @@
pixel_x = -4;
pixel_y = -2
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/armory)
"bSb" = (
/obj/structure/surface/rack,
@@ -31926,52 +25026,35 @@
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/armory)
"bSc" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/underground/security/brig)
"bSd" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/underground/security/brig)
"bSe" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northwest,
/area/ice_colony/underground/security/brig)
"bSf" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/underground/security/brig)
"bSg" = (
/obj/structure/filingcabinet,
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bSh" = (
/obj/structure/surface/table,
@@ -31980,9 +25063,7 @@
pixel_y = -4
},
/obj/item/folder/black_random,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bSi" = (
/obj/structure/surface/rack,
@@ -31991,10 +25072,7 @@
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/security/armory)
"bSj" = (
/obj/structure/surface/rack,
@@ -32003,28 +25081,16 @@
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/east,
/area/ice_colony/underground/security/armory)
"bSk" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/west,
/area/ice_colony/underground/security/brig)
"bSl" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/underground/security/brig)
"bSm" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/east,
/area/ice_colony/underground/security/brig)
"bSn" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -32037,18 +25103,13 @@
/obj/structure/surface/table/reinforced,
/obj/item/packageWrap,
/obj/item/tool/hand_labeler,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/requesition/lobby)
"bSq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bSr" = (
/obj/structure/surface/table/reinforced,
@@ -32058,10 +25119,7 @@
dir = 8;
pixel_x = 24
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/underground/requesition/lobby)
"bSs" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -32073,9 +25131,7 @@
/area/ice_colony/underground/maintenance/security)
"bSt" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/armory)
"bSu" = (
/obj/structure/surface/rack,
@@ -32084,9 +25140,7 @@
pixel_y = -4
},
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security/armory)
"bSv" = (
/obj/structure/surface/rack,
@@ -32095,16 +25149,12 @@
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security/armory)
"bSw" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/shotgun/incendiary,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security/armory)
"bSx" = (
/obj/structure/surface/rack,
@@ -32115,9 +25165,7 @@
},
/obj/item/ammo_magazine/pistol/holdout,
/obj/item/ammo_magazine/pistol/holdout,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/security/armory)
"bSy" = (
/obj/structure/surface/rack,
@@ -32128,25 +25176,17 @@
pixel_y = -4
},
/obj/item/ammo_magazine/pistol/holdout,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/security/armory)
"bSz" = (
/obj/structure/bed,
/obj/item/bedsheet/orange,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/underground/security/brig)
"bSB" = (
/obj/structure/bed,
/obj/item/bedsheet/orange,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/security/brig)
"bSC" = (
/obj/structure/window/reinforced/tinted{
@@ -32154,17 +25194,12 @@
},
/obj/structure/surface/table,
/obj/item/device/flashlight/lamp,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/security/brig)
"bSD" = (
/obj/structure/surface/table,
/obj/item/device/flashlight/lamp,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/underground/security/brig)
"bSE" = (
/obj/structure/surface/rack,
@@ -32174,15 +25209,11 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bSG" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bSH" = (
/obj/structure/surface/table,
@@ -32193,9 +25224,7 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bSI" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -32203,10 +25232,7 @@
/turf/open/floor/plating,
/area/ice_colony/underground/maintenance/security)
"bSJ" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplatecorner"
- },
+/turf/open/floor/plating/warnplatecorner/north,
/area/ice_colony/underground/maintenance/east)
"bSK" = (
/obj/structure/disposalpipe/segment{
@@ -32214,18 +25240,14 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bSL" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bSM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32265,10 +25287,7 @@
icon_state = "ladderup";
id = "hangar_ladder"
},
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/ice_colony/underground/maintenance/east)
"bSR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32279,18 +25298,13 @@
icon_state = "ladderup";
id = "hangar_ladder1"
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/ice_colony/underground/maintenance/east)
"bSS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/ice_colony/underground/maintenance/east)
"bST" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32305,16 +25319,10 @@
/turf/open/space/transit/north/shuttlespace_ns4,
/area/shuttle/elevator2/transit)
"bSW" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/underground/hallway/south_east)
"bSX" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/underground/hallway/south_east)
"bSY" = (
/obj/structure/disposalpipe/segment,
@@ -32344,9 +25352,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Underground Main Hallway"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bTe" = (
/obj/structure/filingcabinet/chestdrawer,
@@ -32397,23 +25403,14 @@
/area/ice_colony/underground/hallway/south_east)
"bTm" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/underground/hallway/south_east)
"bTn" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bTo" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/underground/hallway/south_east)
"bTp" = (
/turf/open/floor/wood,
@@ -32473,10 +25470,7 @@
dir = 4;
icon_state = "chair"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/hallway/south_east)
"bTD" = (
/obj/item/paper_bin,
@@ -32516,25 +25510,17 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/hallway/south_east)
"bTJ" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/east,
/area/ice_colony/underground/hallway/south_east)
"bTK" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bTL" = (
/obj/structure/disposalpipe/segment{
@@ -32544,17 +25530,11 @@
/obj/structure/noticeboard{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bTM" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/underground/hallway/south_east)
"bTN" = (
/turf/closed/wall/r_wall,
@@ -32565,9 +25545,7 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bTS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32577,26 +25555,20 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bTT" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bTV" = (
/obj/structure/toilet,
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bTW" = (
/obj/structure/toilet,
@@ -32605,9 +25577,7 @@
},
/obj/effect/landmark/corpsespawner/miner,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bTX" = (
/obj/structure/sink{
@@ -32616,68 +25586,49 @@
/obj/structure/mirror{
pixel_y = 28
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bTY" = (
/turf/open/floor,
/area/ice_colony/surface/tcomms)
"bUc" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/underground/hallway/south_east)
"bUd" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Toilet Unit"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUe" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUf" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southwest,
/area/ice_colony/underground/hallway/south_east)
"bUg" = (
/obj/structure/bed/chair/office/dark{
dir = 1;
icon_state = "chair"
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/south_east)
"bUh" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/south_east)
"bUj" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/underground/hallway/south_east)
"bUk" = (
/obj/structure/machinery/disposal,
@@ -32685,33 +25636,22 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bUl" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/ice_colony/underground/hallway/south_east)
"bUm" = (
/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bUn" = (
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUo" = (
/obj/structure/machinery/power/apc{
@@ -32719,25 +25659,19 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUq" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Underground Visitor Entrance"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bUr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bUs" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32746,35 +25680,27 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Underground Men's Restroom"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/item/tool/wet_sign,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32783,17 +25709,13 @@
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUz" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32821,10 +25743,7 @@
/area/ice_colony/underground/maintenance/south)
"bUI" = (
/obj/structure/closet/emcloset,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/ice_colony/underground/hallway/south_east)
"bUJ" = (
/obj/structure/disposalpipe/segment{
@@ -32834,9 +25753,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bUK" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32845,10 +25762,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bUL" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32860,10 +25774,7 @@
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/north,
/area/ice_colony/underground/hallway/south_east)
"bUM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32872,33 +25783,23 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/north,
/area/ice_colony/underground/hallway/south_east)
"bUN" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bUP" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/hallway/south_east)
"bUQ" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUR" = (
/obj/structure/sink{
@@ -32908,17 +25809,13 @@
/obj/structure/mirror{
pixel_y = -28
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUS" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUT" = (
/obj/structure/machinery/light{
@@ -32931,9 +25828,7 @@
/obj/structure/mirror{
pixel_y = -28
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_men)
"bUU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32951,10 +25846,7 @@
dir = 4
},
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/hallway/south_east)
"bVa" = (
/turf/closed/wall/r_wall,
@@ -32994,16 +25886,11 @@
/obj/item/tool/pen/blue{
pixel_x = -6
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/reception/checkpoint_south)
"bVi" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/east,
/area/ice_colony/underground/hallway/south_east)
"bVj" = (
/obj/structure/machinery/light{
@@ -33015,14 +25902,10 @@
/obj/structure/mirror{
pixel_y = 28
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVk" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVl" = (
/obj/structure/sink{
@@ -33031,65 +25914,44 @@
/obj/structure/mirror{
pixel_y = 28
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVm" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVn" = (
/obj/structure/machinery/computer/cameras,
-/turf/open/floor{
- dir = 9;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northwest,
/area/ice_colony/underground/reception/checkpoint_south)
"bVo" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/underground/requesition/lobby)
"bVp" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/reception/checkpoint_south)
"bVq" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/northeast,
/area/ice_colony/underground/reception/checkpoint_south)
"bVr" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Underground Security Checkpoint"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/west,
/area/ice_colony/underground/reception/checkpoint_south)
"bVs" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/hallway/south_east)
"bVt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33098,17 +25960,13 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Underground Women's Restroom"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVx" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33118,15 +25976,11 @@
dir = 1;
pixel_y = -24
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVy" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33139,16 +25993,11 @@
/area/ice_colony/underground/reception/toilet_women)
"bVA" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/reception/checkpoint_south)
"bVB" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/reception/checkpoint_south)
"bVC" = (
/obj/structure/machinery/firealarm{
@@ -33158,9 +26007,7 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2,
/area/ice_colony/underground/reception/checkpoint_south)
"bVD" = (
/obj/structure/filingcabinet/security,
@@ -33168,27 +26015,20 @@
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southeast,
/area/ice_colony/underground/reception/checkpoint_south)
"bVE" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/south_east)
"bVF" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/south_east)
"bVG" = (
/obj/structure/bed/chair{
@@ -33198,52 +26038,39 @@
dir = 1;
pixel_y = -24
},
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/south_east)
"bVI" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/ice_colony/underground/hallway/south_east)
"bVJ" = (
/obj/structure/sink{
dir = 8;
pixel_x = -11
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVK" = (
/obj/structure/machinery/firealarm{
dir = 1;
pixel_y = -24
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVL" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVM" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Toilet Unit"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVN" = (
/obj/structure/mineral_door/resin,
@@ -33287,9 +26114,7 @@
dir = 1
},
/obj/structure/machinery/light/small,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVV" = (
/obj/structure/sink{
@@ -33299,9 +26124,7 @@
/obj/structure/mirror{
pixel_y = -28
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/ice_colony/underground/reception/toilet_women)
"bVW" = (
/turf/closed/shuttle{
@@ -33375,25 +26198,16 @@
/obj/structure/shuttle/engine/heater{
dir = 8
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "vfloor"
- },
+/turf/open/floor/icefloor/shuttle_vfloor,
/area/ice_colony/exterior/underground/caves/dig)
"bWl" = (
/obj/structure/shuttle/engine/heater{
dir = 4
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "vfloor"
- },
+/turf/open/floor/icefloor/shuttle_vfloor,
/area/ice_colony/exterior/underground/caves/dig)
"bWm" = (
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "vfloor"
- },
+/turf/open/floor/icefloor/shuttle_vfloor,
/area/ice_colony/exterior/underground/caves/dig)
"bWn" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33413,10 +26227,7 @@
/obj/structure/shuttle/engine/router{
dir = 4
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "vfloor"
- },
+/turf/open/floor/icefloor/shuttle_vfloor,
/area/ice_colony/exterior/underground/caves/dig)
"bWs" = (
/obj/structure/surface/table,
@@ -33459,10 +26270,7 @@
icon_state = "door_open";
name = "strange airlock"
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "vfloor"
- },
+/turf/open/floor/icefloor/shuttle_vfloor,
/area/ice_colony/exterior/underground/caves/dig)
"bWz" = (
/obj/structure/ice/thin/straight,
@@ -33470,23 +26278,14 @@
/area/ice_colony/exterior/underground/caves/open)
"bWA" = (
/obj/structure/xenoautopsy/tank,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bWB" = (
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bWC" = (
/obj/structure/xenoautopsy/tank/broken,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bWD" = (
/obj/item/tool/pickaxe/silver,
@@ -33523,10 +26322,7 @@
/turf/closed/ice/intersection,
/area/ice_colony/exterior/underground/caves)
"bWJ" = (
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bWK" = (
/obj/structure/shuttle/window{
@@ -33534,10 +26330,7 @@
icon_state = "13"
},
/obj/structure/grille,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bWL" = (
/obj/structure/shuttle/window{
@@ -33545,10 +26338,7 @@
icon_state = "9"
},
/obj/structure/grille,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bWM" = (
/obj/structure/shuttle/window{
@@ -33556,16 +26346,11 @@
icon_state = "12"
},
/obj/structure/grille,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bWN" = (
/obj/structure/inflatable/door,
-/turf/open/floor/icefloor{
- icon_state = "ramptop"
- },
+/turf/open/floor/icefloor/ramptop,
/area/ice_colony/exterior/underground/caves/dig)
"bWO" = (
/obj/structure/inflatable/door,
@@ -33576,33 +26361,21 @@
icon_state = "door_open";
name = "strange airlock"
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bWP" = (
/obj/structure/cryofeed,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "vfloor"
- },
+/turf/open/floor/icefloor/shuttle_vfloor,
/area/ice_colony/exterior/underground/caves/dig)
"bWQ" = (
/obj/structure/cryofeed/right,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "vfloor"
- },
+/turf/open/floor/icefloor/shuttle_vfloor,
/area/ice_colony/exterior/underground/caves/dig)
"bWR" = (
/obj/structure/computerframe{
anchored = 1
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bWS" = (
/obj/structure/shuttle/engine/propulsion/burst{
@@ -33612,33 +26385,21 @@
/area/ice_colony/exterior/underground/caves/dig)
"bWT" = (
/obj/effect/landmark/good_item,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bWU" = (
/obj/structure/xenoautopsy/tank/broken,
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bWV" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bWW" = (
/obj/item/tool/screwdriver,
/obj/item/device/multitool,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bWX" = (
/obj{
@@ -33648,10 +26409,7 @@
icon_state = "door_open";
name = "strange airlock"
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bWZ" = (
/obj/structure/inflatable/door,
@@ -33662,66 +26420,42 @@
icon_state = "door_open";
name = "strange airlock"
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bXa" = (
/obj/structure/machinery/floodlight{
name = "Floodlight"
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXb" = (
/obj/item/stack/cable_coil/random,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXc" = (
/obj/effect/decal/cleanable/spiderling_remains{
name = "greenish remains"
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXd" = (
/obj/structure/inflatable/door,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXe" = (
/obj/item/tool/pickaxe/plasmacutter,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXf" = (
/obj/item/device/flashlight,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXg" = (
/obj/structure/computerframe{
anchored = 1
},
/obj/effect/decal/cleanable/blood/gibs/xeno/up,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXh" = (
/obj/structure/shuttle/window{
@@ -33745,24 +26479,15 @@
name = "strange airlock";
opacity = 1
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXk" = (
/obj/item/device/flashlight/flare,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXl" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXm" = (
/obj/structure/shuttle/window{
@@ -33782,10 +26507,7 @@
name = "strange airlock";
opacity = 1
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bXo" = (
/obj/structure/machinery/door/poddoor{
@@ -33793,10 +26515,7 @@
icon_state = "door_closed";
name = "Strange Airlock"
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXp" = (
/obj{
@@ -33808,31 +26527,19 @@
name = "strange airlock";
opacity = 1
},
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "vfloor"
- },
+/turf/open/floor/icefloor/shuttle_vfloor,
/area/ice_colony/exterior/underground/caves/dig)
"bXq" = (
/obj/structure/xenoautopsy/tank/hugger,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXr" = (
/obj/structure/xenoautopsy/tank/alien,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"bXs" = (
/obj/structure/xenoautopsy/tank/alien,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bXt" = (
/turf/closed/ice/junction{
@@ -33840,9 +26547,7 @@
},
/area/ice_colony/exterior/underground/caves/open)
"bXu" = (
-/turf/open/floor/icefloor{
- icon_state = "ramptop"
- },
+/turf/open/floor/icefloor/ramptop,
/area/ice_colony/exterior/underground/caves/dig)
"bXv" = (
/turf/closed/ice/end{
@@ -33862,17 +26567,11 @@
/area/ice_colony/exterior/underground/caves/open)
"bXy" = (
/obj/structure/xenoautopsy/tank/hugger,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bXz" = (
/obj/structure/xenoautopsy/tank/larva,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor6"
- },
+/turf/open/floor/icefloor/shuttle_floor6,
/area/ice_colony/exterior/underground/caves/dig)
"bXA" = (
/obj/structure/tunnel{
@@ -33882,50 +26581,35 @@
/area/ice_colony/exterior/underground/caves/open)
"bXB" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/security/armory)
"bXD" = (
/obj/structure/surface/table,
/obj/item/tool/surgery/scalpel,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bXE" = (
/obj/structure/surface/table,
/obj/item/device/camera,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/crew/morgue)
"bXF" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering)
"bXL" = (
/obj/structure/surface/table/reinforced,
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/lobby)
"bXM" = (
/obj/structure/surface/table/reinforced,
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/northeast,
/area/ice_colony/underground/medical/lobby)
"bXN" = (
/obj/structure/surface/table,
@@ -33936,10 +26620,7 @@
/obj/item/tool/soap{
pixel_x = 5
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/or)
"bXO" = (
/obj/structure/surface/table/reinforced,
@@ -33947,10 +26628,7 @@
dir = 8;
health = 80
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/west,
/area/ice_colony/underground/medical/lobby)
"bXQ" = (
/obj/structure/surface/table,
@@ -33959,10 +26637,7 @@
pixel_x = 5;
pixel_y = 3
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whitered"
- },
+/turf/open/floor/whitered/north,
/area/ice_colony/underground/medical/storage)
"bXR" = (
/obj/structure/surface/table/woodentable,
@@ -33978,9 +26653,7 @@
/obj/structure/surface/table/reinforced,
/obj/item/clipboard,
/obj/item/tool/stamp,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/command/center)
"bXU" = (
/obj/structure/machinery/firealarm{
@@ -33988,10 +26661,7 @@
pixel_x = -24
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/ice_colony/underground/storage/highsec)
"bXV" = (
/obj/structure/surface/table/reinforced,
@@ -33999,42 +26669,30 @@
/obj/item/spacecash/c100,
/obj/item/spacecash/c10,
/obj/item/spacecash/c1,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/underground/storage/highsec)
"bXW" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/research)
"bXY" = (
/obj/structure/surface/table,
/obj/item/evidencebag,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/interrogation)
"bYa" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/security/interrogation)
"bYb" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/research/work)
"bYc" = (
/obj/structure/surface/table/reinforced,
@@ -34042,55 +26700,39 @@
dir = 8;
pixel_x = -11
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/west,
/area/ice_colony/underground/research/work)
"bYd" = (
/obj/structure/surface/table/reinforced,
-/turf/open/floor{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2,
/area/ice_colony/underground/research/work)
"bYg" = (
/obj/item/storage/box/bodybags,
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/southwest,
/area/ice_colony/underground/security/backroom)
"bYh" = (
/obj/structure/surface/table,
/obj/item/paper,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bYi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bYj" = (
/obj/structure/surface/table,
/obj/item/tool/hand_labeler,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/reception)
"bYk" = (
/obj/structure/window/reinforced/tinted{
dir = 4
},
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/underground/security/brig)
"bYm" = (
/obj/structure/surface/table/reinforced,
@@ -34098,23 +26740,15 @@
/area/ice_colony/underground/reception)
"bYn" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/west,
/area/ice_colony/underground/hallway/south_east)
"bYo" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/reception/checkpoint_south)
"bYp" = (
/obj/structure/surface/table,
/obj/item/trash/chips,
-/turf/open/floor{
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2,
/area/ice_colony/underground/hallway/south_east)
"cbk" = (
/turf/open/floor/plating/icefloor,
@@ -34141,9 +26775,7 @@
dir = 4
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"cBQ" = (
/obj/structure/machinery/door/unpowered/shuttle,
@@ -34173,16 +26805,11 @@
/turf/open/shuttle/can_surgery/red,
/area/ice_colony/surface/hangar/alpha)
"dgG" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/northeast,
/area/ice_colony/surface/tcomms)
"doO" = (
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor{
- icon_state = "platebot"
- },
+/turf/open/floor/platebot,
/area/ice_colony/surface/engineering/generator)
"drG" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -34195,18 +26822,13 @@
"dxl" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"dzn" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/tcomms)
"dFm" = (
/obj/structure/machinery/light,
@@ -34223,10 +26845,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"elU" = (
/obj/structure/bed/chair/wood/normal{
@@ -34246,24 +26865,16 @@
"ezT" = (
/obj/vehicle/train/cargo/trolley,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"eSd" = (
-/turf/open/floor/plating/icefloor{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northeast,
/area/ice_colony/surface/tcomms)
"eSN" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/north,
/area/ice_colony/surface/research/tech_storage)
"faO" = (
/obj/structure/machinery/light{
@@ -34302,21 +26913,15 @@
pixel_y = 2
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/tcomms)
"fUW" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"giH" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/tcomms)
"gxg" = (
/obj/structure/machinery/power/apc{
@@ -34324,17 +26929,11 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"gDb" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkred2"
- },
+/turf/open/floor/darkred2/north,
/area/ice_colony/underground/reception/checkpoint_north)
"gHI" = (
/obj/structure/machinery/light{
@@ -34347,10 +26946,7 @@
/area/ice_colony/surface/hangar/alpha)
"gXP" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/ice_colony/surface/research)
"hfj" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -34386,9 +26982,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"hAX" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -34404,10 +26998,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/ice_colony/underground/hangar)
"ilp" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -34415,17 +27006,12 @@
id = "st_19";
name = "Research Storage Unit"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/research)
"iBu" = (
/obj/structure/surface/table/reinforced,
/obj/item/paper/research_notes,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/research)
"iNy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -34443,10 +27029,7 @@
id = "st_17";
name = "Power Storage Unit"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/power)
"iZc" = (
/obj/structure/lz_sign/ice_sign{
@@ -34462,9 +27045,7 @@
dir = 2;
name = "Underground Secure Technical Storage"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/storage/highsec)
"jtr" = (
/turf/closed/wall,
@@ -34479,10 +27060,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"jFV" = (
/obj/structure/bed/chair{
@@ -34508,10 +27086,7 @@
/turf/open/floor/plating/icefloor,
/area/ice_colony/underground/hangar)
"kfW" = (
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/ice_colony/surface/tcomms)
"krs" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -34520,16 +27095,12 @@
id = "engine_electrical_maintenance";
name = "Underground Power Substation"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/underground/engineering/substation)
"kKZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/dorms)
"kRw" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -34563,10 +27134,7 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"lJQ" = (
/turf/open/auto_turf/snow/layer4,
@@ -34593,19 +27161,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/beta)
"mwS" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/closed/wall/r_wall,
/area/ice_colony/underground/maintenance/south)
"mHc" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/ice_colony/surface/hangar/beta)
"mLJ" = (
/obj/structure/shuttle/diagonal{
@@ -34617,17 +27180,11 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Colony Dormitories"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southwest,
/area/ice_colony/surface/dorms)
"nup" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/darkpurple2/east,
/area/ice_colony/underground/research/storage)
"osF" = (
/turf/open/auto_turf/snow/layer4,
@@ -34665,10 +27222,7 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/ice_colony/surface/hangar/alpha)
"paK" = (
/obj/structure/window/framed/colony/reinforced,
@@ -34704,9 +27258,7 @@
/area/ice_colony/exterior/underground/caves/open)
"qwB" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/tcomms)
"qEB" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -34745,10 +27297,7 @@
/area/ice_colony/underground/hangar)
"rbS" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/floor/plating/icefloor{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northwest,
/area/ice_colony/surface/tcomms)
"rmR" = (
/obj/structure/machinery/recharge_station,
@@ -34769,9 +27318,7 @@
"rAm" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/research)
"rKn" = (
/obj/structure/filingcabinet,
@@ -34786,20 +27333,14 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"rNB" = (
/obj/structure/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"sto" = (
/obj/docking_port/stationary/marine_dropship/lz1{
@@ -34811,10 +27352,7 @@
/obj/structure/surface/table,
/obj/item/device/analyzer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southeast,
/area/ice_colony/surface/tcomms)
"sTg" = (
/turf/open/auto_turf/snow/layer4,
@@ -34827,35 +27365,24 @@
/area/ice_colony/surface/hangar/beta)
"sTY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/ice_colony/surface/hangar/beta)
"tbZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"tly" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"tue" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2,
/area/ice_colony/surface/dorms)
"tBe" = (
/obj/structure/bed/chair,
@@ -34871,10 +27398,7 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Colony Dormitories"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkblue2"
- },
+/turf/open/floor/darkblue2/southeast,
/area/ice_colony/surface/dorms)
"tZS" = (
/turf/open/auto_turf/snow/layer4,
@@ -34888,25 +27412,17 @@
/area/ice_colony/surface/hangar/beta)
"ueV" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hydroponics/south)
"umI" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Colony Dormitories"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/ice_colony/surface/dorms)
"urm" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/exterior/surface/landing_pad)
"uuK" = (
/obj/structure/surface/table,
@@ -34915,9 +27431,7 @@
/area/ice_colony/underground/hangar)
"uAe" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor{
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2,
/area/ice_colony/surface/tcomms)
"uBE" = (
/turf/open/auto_turf/snow/layer4,
@@ -34926,10 +27440,7 @@
/turf/open/auto_turf/snow/layer4,
/area/ice_colony/exterior/surface/cliff)
"uPr" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/ice_colony/surface/hangar/beta)
"uUv" = (
/obj/effect/alien/weeds/node,
@@ -34953,28 +27464,19 @@
icon_state = "W"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/ice_colony/surface/hangar/alpha)
"waD" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/excavation)
"waN" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/tcomms)
"wcI" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/hangar/alpha)
"wue" = (
/obj/structure/filingcabinet,
@@ -34986,10 +27488,7 @@
/turf/open/shuttle/can_surgery/red,
/area/ice_colony/surface/hangar/alpha)
"wDj" = (
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/ice_colony/surface/tcomms)
"wTN" = (
/obj/structure/surface/table/woodentable,
@@ -35002,33 +27501,22 @@
id = "st_18";
name = "Disposals Storage Unit"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/ice_colony/surface/storage_unit/telecomms)
"xkk" = (
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/icefloor{
- icon = 'icons/turf/shuttle.dmi';
- icon_state = "floor7"
- },
+/turf/open/floor/icefloor/shuttle_floor7,
/area/ice_colony/exterior/underground/caves/dig)
"xrT" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkyellow2"
- },
+/turf/open/floor/darkyellow2/southwest,
/area/ice_colony/surface/tcomms)
"xyz" = (
/obj/structure/machinery/power/reactor/colony,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "platebot"
- },
+/turf/open/floor/platebot,
/area/ice_colony/surface/engineering/generator)
"xAI" = (
/obj/structure/shuttle/diagonal{
@@ -35055,9 +27543,7 @@
/obj/structure/surface/table,
/obj/item/device/encryptionkey,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/ice_colony/surface/tcomms)
"yhm" = (
/obj/structure/machinery/light{
diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm
index fc8a5f896be1..c359e4ae0a0e 100644
--- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm
+++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm
@@ -21,9 +21,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"aah" = (
/obj/item/stack/sheet/metal,
@@ -97,9 +95,7 @@
/area/shiva/exterior/cp_lz2)
"aar" = (
/obj/structure/machinery/camera/autoname/lz_camera,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"aas" = (
/obj/structure/platform/strata,
@@ -620,9 +616,7 @@
/obj/structure/platform/shiva/catwalk{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"aco" = (
/obj/structure/stairs/perspective/ice{
@@ -642,10 +636,7 @@
dir = 1;
pixel_y = 4
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/north,
/area/shiva/interior/lz2_habs)
"acr" = (
/obj/structure/fence{
@@ -681,9 +672,7 @@
dir = 1;
start_charge = 0
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/medseceng)
"acA" = (
/obj/structure/ice/thin/indestructible{
@@ -694,10 +683,7 @@
/turf/open/ice/noweed,
/area/shiva/interior/colony/research_hab)
"acC" = (
-/turf/open/floor/plating/icefloor{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/east,
/area/shiva/exterior/junkyard/fortbiceps)
"acD" = (
/turf/closed/shuttle/elevator/button/arrivals,
@@ -734,23 +720,17 @@
/area/shiva/interior/colony/medseceng)
"acU" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"acW" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/shiva/exterior/junkyard/fortbiceps)
"acY" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"ada" = (
/obj/structure/reagent_dispensers,
@@ -758,21 +738,13 @@
/area/shiva/interior/colony/research_hab)
"ade" = (
/obj/structure/fence,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/exterior/cp_colony_grounds)
"adf" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/shiva/interior/colony/central)
"adi" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/east,
/area/shiva/interior/colony/research_hab)
"adj" = (
/obj/item/reagent_container/glass/bucket/mopbucket,
@@ -782,15 +754,11 @@
/area/shiva/interior/colony/research_hab)
"ado" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"adp" = (
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"adq" = (
/obj/structure/prop/ice_colony/surveying_device/measuring_device{
@@ -829,68 +797,46 @@
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"adR" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"adS" = (
/obj/structure/surface/table,
/obj/item/clothing/gloves/black,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/colony/research_hab)
"adT" = (
/obj/structure/surface/table,
/obj/item/clothing/gloves/black,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/research_hab)
"adV" = (
/obj/structure/surface/table,
/obj/item/device/reagent_scanner,
/obj/effect/landmark/good_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/research_hab)
"adW" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/colony/research_hab)
"adX" = (
/obj/structure/machinery/cryo_cell,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"adY" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/electrical,
/obj/item/storage/toolbox/electrical,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"adZ" = (
/obj/vehicle/train/cargo/trolley,
@@ -901,20 +847,14 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/research_hab)
"aeb" = (
/obj/structure/machinery/firealarm{
dir = 4;
pixel_x = 24
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/research_hab)
"aec" = (
/obj/structure/largecrate/random/mini/med{
@@ -939,9 +879,7 @@
},
/obj/structure/window/reinforced,
/obj/structure/machinery/door/window/westleft,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"aeg" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -953,10 +891,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"aek" = (
/obj/structure/window/framed/shiva,
@@ -964,24 +899,17 @@
/area/shiva/interior/colony/medseceng)
"ael" = (
/obj/effect/landmark/corpsespawner/colonist/random,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"aeo" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"aeq" = (
/obj/structure/sink{
pixel_y = 15
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"aes" = (
/obj/structure/surface/table/reinforced/prison,
@@ -990,9 +918,7 @@
},
/obj/item/stack/cable_coil,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"aet" = (
/obj/structure/closet/secure_closet/medical2,
@@ -1001,54 +927,34 @@
pixel_y = 9
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"aev" = (
/obj/structure/machinery/bioprinter,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northeast,
/area/shiva/interior/colony/medseceng)
"aew" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/research_hab)
"aex" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/colony/research_hab)
"aez" = (
/obj/structure/closet/emcloset,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/research_hab)
"aeA" = (
/obj/structure/closet/wardrobe/chaplain_black,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/shiva/interior/colony/central)
"aeC" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/research_hab)
"aeD" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -1088,9 +994,7 @@
amount = 15
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"aeN" = (
/obj/structure/closet/secure_closet/guncabinet,
@@ -1099,33 +1003,22 @@
/obj/item/ammo_magazine/rifle/m41aMK1,
/obj/item/ammo_magazine/rifle/m41aMK1,
/obj/item/ammo_magazine/rifle/m41aMK1,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"aeP" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/colony/research_hab)
"aeQ" = (
/obj/structure/surface/rack,
/obj/item/clothing/mask/gas,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/colony/research_hab)
"aeR" = (
/obj/structure/machinery/light/double,
/obj/structure/surface/rack,
/obj/item/clothing/mask/gas,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/research_hab)
"aeU" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -1152,36 +1045,23 @@
/area/shiva/interior/colony/medseceng)
"afd" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"aff" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"afh" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"afi" = (
/obj/structure/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northeast,
/area/shiva/interior/colony/medseceng)
"afm" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"afp" = (
/obj/structure/surface/table,
@@ -1190,43 +1070,30 @@
pixel_x = 5;
pixel_y = 3
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"afv" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/mechanical,
/obj/item/storage/toolbox/mechanical,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"afw" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"afx" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"afz" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/bomb_supply,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/colony/research_hab)
"afA" = (
/obj/structure/flora/tree/dead/tree_1,
@@ -1244,60 +1111,38 @@
/obj/structure/surface/table,
/obj/item/stack/nanopaste,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"afF" = (
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"afL" = (
/obj/structure/surface/table,
/obj/item/tool/wrench,
/obj/item/paper/research_notes,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"afM" = (
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"afN" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"afP" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"afQ" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/north,
/area/shiva/interior/colony/research_hab)
"afR" = (
/obj/structure/surface/table,
/obj/item/bodybag/cryobag,
/obj/item/storage/box/syringes,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"afT" = (
/obj/structure/surface/table,
@@ -1306,28 +1151,19 @@
pixel_x = 5;
pixel_y = 3
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"afV" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/research_hab)
"afX" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tech_supply,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/research_hab)
"afY" = (
/obj/item/weapon/ice_axe/green,
@@ -1340,10 +1176,7 @@
"aga" = (
/obj/item/device/defibrillator,
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"agb" = (
/obj/structure/bed/chair/wheelchair,
@@ -1351,10 +1184,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"agc" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -1373,37 +1203,25 @@
"age" = (
/obj/structure/closet/radiation,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"agg" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"agh" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"agl" = (
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/research_hab)
"agm" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/research_hab)
"agp" = (
/obj/structure/noticeboard{
@@ -1439,9 +1257,7 @@
"agx" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"agy" = (
/obj/item/lightstick/planted,
@@ -1449,9 +1265,7 @@
/area/shiva/exterior/junkyard)
"agz" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- icon_state = "platebot"
- },
+/turf/open/floor/platebot,
/area/shiva/interior/colony/research_hab)
"agA" = (
/obj/structure/machinery/firealarm{
@@ -1467,18 +1281,14 @@
/area/shiva/interior/colony/medseceng)
"agC" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"agF" = (
/obj/structure/machinery/landinglight/ds2,
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"agJ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1487,19 +1297,13 @@
pixel_x = 4;
pixel_y = 4
},
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/colony/medseceng)
"agK" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
req_access_txt = "102"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"agM" = (
/obj/item/ammo_box/magazine/nailgun,
@@ -1514,10 +1318,7 @@
"agY" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/research_hab)
"agZ" = (
/obj/structure/surface/table,
@@ -1528,25 +1329,16 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/research_hab)
"aha" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/research_hab)
"ahe" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"ahh" = (
/obj/structure/platform/shiva/catwalk{
@@ -1557,10 +1349,7 @@
"ahl" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/tool,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/colony/medseceng)
"ahq" = (
/obj/structure/filingcabinet/security,
@@ -1575,9 +1364,7 @@
/area/shiva/interior/colony/medseceng)
"ahu" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"ahv" = (
/obj/structure/machinery/door/airlock/almayer/security/colony{
@@ -1589,9 +1376,7 @@
"ahy" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"ahC" = (
/obj/structure/flora/bush/snow{
@@ -1604,18 +1389,12 @@
pixel_y = 6
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/shiva/interior/colony/medseceng)
"ahE" = (
/obj/structure/surface/rack,
/obj/item/cell/high/empty,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"ahO" = (
/obj/structure/surface/rack,
@@ -1624,10 +1403,7 @@
pixel_y = -2
},
/obj/item/storage/box/flashbangs,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"ahP" = (
/obj/structure/surface/rack,
@@ -1640,42 +1416,29 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"ahQ" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/cell/high,
/obj/item/storage/toolbox/emergency,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"ahR" = (
/obj/structure/machinery/power/terminal{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"ahS" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/research_hab)
"ahT" = (
/obj/structure/surface/rack,
/obj/effect/landmark/good_item,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/research_hab)
"ahU" = (
/obj/structure/bed/chair/office/dark{
@@ -1685,9 +1448,7 @@
dir = 8
},
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"ahW" = (
/obj/structure/surface/rack,
@@ -1696,10 +1457,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/medseceng)
"ahX" = (
/turf/closed/shuttle/elevator/gears,
@@ -1709,27 +1467,19 @@
dir = 4;
flipped = 1
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"aia" = (
/obj/structure/machinery/power/terminal{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"aii" = (
/obj/structure/machinery/power/smes/buildable{
name = "colony distribution SMES"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"aij" = (
/obj/item/tool/shovel,
@@ -1749,10 +1499,7 @@
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"ain" = (
/obj/structure/flora/bush/snow{
@@ -1783,25 +1530,17 @@
/obj/structure/surface/rack,
/obj/item/cell/high/empty,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"aix" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/wood/medium_stack,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/medseceng)
"aiy" = (
/obj/structure/surface/table,
/obj/item/storage/surgical_tray,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"aiz" = (
/obj/structure/machinery/colony_floodlight,
@@ -1809,9 +1548,7 @@
/area/shiva/exterior/valley)
"aiD" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"aiE" = (
/obj/item/ammo_magazine/flamer_tank,
@@ -1819,9 +1556,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"aiF" = (
/obj/structure/flora/bush/snow,
@@ -1829,31 +1564,23 @@
/area/shiva/exterior/cp_lz2)
"aiG" = (
/obj/structure/machinery/optable,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"aiH" = (
/obj/structure/machinery/computer/operating,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"aiJ" = (
/obj/item/reagent_container/glass/bucket{
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"aiK" = (
/obj/structure/largecrate/random,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"aiL" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1869,10 +1596,7 @@
pixel_x = -5;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/medseceng)
"aiO" = (
/obj/structure/machinery/light/double{
@@ -1880,10 +1604,7 @@
pixel_y = -5
},
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"aiQ" = (
/obj/structure/machinery/door/window/brigdoor/westleft{
@@ -1903,17 +1624,11 @@
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/cell_charger,
/obj/item/clothing/mask/rebreather,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/colony/medseceng)
"aiV" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southeast,
/area/shiva/interior/colony/research_hab)
"aiW" = (
/obj/item/lightstick/red/planted,
@@ -1923,17 +1638,11 @@
/obj/structure/surface/rack,
/obj/item/cell,
/obj/item/cell,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/colony/medseceng)
"ajb" = (
/obj/structure/bed/chair/wheelchair,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northeast,
/area/shiva/interior/colony/medseceng)
"ajd" = (
/obj/item/stack/snow{
@@ -1949,25 +1658,17 @@
pixel_y = -5
},
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"ajg" = (
/obj/structure/closet/toolcloset,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southeast,
/area/shiva/interior/colony/research_hab)
"aji" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/plasteel/medium_stack,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/medseceng)
"ajq" = (
/obj/structure/reagent_dispensers/water_cooler,
@@ -1975,10 +1676,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/east,
/area/shiva/interior/colony/n_admin)
"ajr" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -1989,10 +1687,7 @@
/turf/open/floor/plating,
/area/shiva/interior/colony/central)
"aju" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/colony/central)
"ajw" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{
@@ -2005,9 +1700,7 @@
/area/shiva/interior/caves/cp_camp)
"ajD" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"ajE" = (
/obj/item/stack/snow{
@@ -2026,25 +1719,18 @@
/obj/item/circuitboard/airlock,
/obj/item/circuitboard/airlock,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/colony/medseceng)
"ajK" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/airalarm,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"ajL" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/apc,
/obj/item/circuitboard/apc,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"ajM" = (
/obj/structure/ore_box,
@@ -2052,9 +1738,7 @@
/area/shiva/interior/colony/medseceng)
"ajN" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"ajO" = (
/turf/open/floor/plating,
@@ -2067,10 +1751,7 @@
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/colony/medseceng)
"ajV" = (
/obj/structure/curtain,
@@ -2080,37 +1761,25 @@
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/powercell,
/obj/effect/spawner/random/bomb_supply,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/colony/medseceng)
"ajX" = (
/obj/structure/surface/table/reinforced,
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/colony/medseceng)
"ajY" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/bomb_supply,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southeast,
/area/shiva/interior/colony/medseceng)
"aka" = (
/obj/structure/surface/table/woodentable/poor,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"akf" = (
/obj/item/lightstick/red/planted,
@@ -2118,29 +1787,20 @@
/area/shiva/exterior/junkyard)
"akh" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"aki" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northeast,
/area/shiva/interior/colony/botany)
"akj" = (
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"akl" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
req_access_txt = "102"
},
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/medseceng)
"ako" = (
/obj/structure/barricade/snow{
@@ -2171,26 +1831,18 @@
/area/shiva/exterior/cp_colony_grounds)
"akA" = (
/obj/item/tool/shovel/snow,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull/west,
/area/shiva/interior/colony/n_admin)
"akE" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Underground Sports Center";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/shiva/interior/colony/central)
"akF" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/warehouse)
"akG" = (
/obj/structure/machinery/colony_floodlight,
@@ -2204,17 +1856,13 @@
pixel_y = 2
},
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"akI" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"akL" = (
/obj/structure/machinery/light/double{
@@ -2255,9 +1903,7 @@
/area/shiva/interior/colony/medseceng)
"akX" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"ala" = (
/obj/structure/closet/secure_closet/personal,
@@ -2270,10 +1916,7 @@
pixel_x = -4;
pixel_y = -2
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"ale" = (
/obj/structure/surface/rack,
@@ -2291,18 +1934,12 @@
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"all" = (
/obj/effect/landmark/corpsespawner/security,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"alr" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -2314,9 +1951,7 @@
"alt" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"alx" = (
/obj/structure/surface/table,
@@ -2324,9 +1959,7 @@
amount = 15
},
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"aly" = (
/obj/structure/closet/secure_closet/security,
@@ -2334,10 +1967,7 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"alz" = (
/obj/structure/surface/table,
@@ -2348,10 +1978,7 @@
/obj/item/tool/soap{
pixel_x = 5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"alA" = (
/turf/open/auto_turf/ice/layer2,
@@ -2401,9 +2028,7 @@
/area/shiva/interior/warehouse)
"alV" = (
/obj/item/clothing/gloves/latex,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/medseceng)
"alW" = (
/obj/structure/barricade/deployable{
@@ -2415,9 +2040,7 @@
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"ama" = (
/obj/structure/surface/table/reinforced/prison,
@@ -2426,17 +2049,11 @@
pixel_x = 7;
pixel_y = 14
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"amh" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"ami" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -2455,24 +2072,18 @@
/area/shiva/interior/colony/medseceng)
"amk" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"amn" = (
/obj/structure/surface/rack,
/obj/item/tool/crowbar,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"amr" = (
/obj/structure/surface/rack,
/obj/item/tool/pickaxe,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"amu" = (
/turf/closed/wall/shiva/prefabricated/red,
@@ -2490,17 +2101,13 @@
"amA" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/chips,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"amE" = (
/obj/structure/bed/chair/comfy/blue{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"amG" = (
/obj/structure/machinery/light/double{
@@ -2510,9 +2117,7 @@
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"amH" = (
/obj/structure/bed/chair{
@@ -2545,10 +2150,7 @@
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"amM" = (
/obj/structure/flora/grass/tallgrass/ice/corner,
@@ -2559,23 +2161,16 @@
/area/shiva/exterior/cp_lz2)
"amN" = (
/obj/item/tool/crowbar,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"amO" = (
/obj/structure/bed/chair/comfy/blue{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"amP" = (
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"amQ" = (
/obj/item/lightstick/red/planted,
@@ -2585,14 +2180,10 @@
/obj/structure/prop/ice_colony/ground_wire{
layer = 2.98
},
-/turf/open/floor/shiva{
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple,
/area/shiva/interior/lz2_habs)
"amU" = (
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"amX" = (
/obj/item/paper_bin{
@@ -2612,9 +2203,7 @@
id = "otice";
pixel_y = -24
},
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"anc" = (
/turf/closed/wall/shiva/prefabricated/white,
@@ -2623,9 +2212,7 @@
/obj/structure/bed/chair/comfy/blue{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"anq" = (
/obj/structure/toilet,
@@ -2637,18 +2224,13 @@
/area/shiva/interior/warehouse)
"ant" = (
/obj/item/roller,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/southeast,
/area/shiva/interior/colony/medseceng)
"any" = (
/obj/structure/closet/secure_closet/medical3{
req_access_txt = "100"
},
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/medseceng)
"anz" = (
/obj/structure/surface/table/reinforced/prison,
@@ -2659,26 +2241,19 @@
pixel_x = -1;
pixel_y = 14
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"anA" = (
/obj/structure/barricade/handrail/strata{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"anE" = (
/obj/structure/barricade/metal/wired{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"anF" = (
/obj/item/reagent_container/food/drinks/bottle/limejuice{
@@ -2709,10 +2284,7 @@
"anI" = (
/obj/structure/surface/table,
/obj/item/tool/stamp,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northwest,
/area/shiva/interior/colony/medseceng)
"anJ" = (
/obj/effect/decal/cleanable/dirt,
@@ -2732,10 +2304,7 @@
pixel_y = -4
},
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"anU" = (
/obj/structure/surface/rack,
@@ -2744,10 +2313,7 @@
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"anV" = (
/obj/effect/decal/cleanable/blood{
@@ -2756,10 +2322,7 @@
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/north,
/area/shiva/interior/colony/botany)
"anX" = (
/obj/item/clothing/shoes/snow,
@@ -2771,18 +2334,12 @@
/obj/effect/decal/strata_decals/grime/grime3{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/n_admin)
"anY" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"anZ" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -2803,28 +2360,19 @@
/area/shiva/interior/colony/medseceng)
"aoi" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"aop" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"aor" = (
/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"aos" = (
/obj/structure/machinery/sleep_console,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"aot" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
@@ -2832,33 +2380,22 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"aov" = (
/obj/structure/barricade/handrail/wire,
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"aow" = (
/obj/structure/reagent_dispensers/water_cooler/stacks,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"aoy" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"aoz" = (
/obj/structure/reagent_dispensers/water_cooler{
@@ -2866,41 +2403,28 @@
pixel_x = -10;
pixel_y = 19
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"aoA" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"aoB" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/west,
/area/shiva/interior/colony/botany)
"aoK" = (
/turf/open/floor/wood,
/area/shiva/interior/colony/medseceng)
"aoL" = (
/obj/item/storage/pouch/flare/full,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southeast,
/area/shiva/interior/colony/botany)
"aoP" = (
/obj/structure/closet/secure_closet/medical1{
req_access_txt = "100"
},
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/medseceng)
"aoX" = (
/obj/effect/decal/warning_stripes{
@@ -2998,9 +2522,7 @@
"apk" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/research_hab)
"apm" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -3012,25 +2534,17 @@
/turf/open/auto_turf/snow/layer0,
/area/shiva/exterior/cp_colony_grounds)
"apv" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"apz" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"apB" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"apD" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -3040,10 +2554,7 @@
/area/shiva/interior/caves/research_caves)
"apE" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"apF" = (
/obj/effect/decal/cleanable/blood{
@@ -3062,26 +2573,17 @@
/area/shiva/exterior/cp_lz2)
"apL" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/northeast,
/area/shiva/interior/colony/botany)
"apO" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"apT" = (
/obj/item/ammo_casing{
icon_state = "casing_5"
},
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/northeast,
/area/shiva/interior/colony/botany)
"apW" = (
/obj/structure/surface/table,
@@ -3090,10 +2592,7 @@
pixel_x = 6;
pixel_y = 10
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"apY" = (
/obj/structure/closet/crate/ammo,
@@ -3105,9 +2604,7 @@
/obj/item/ammo_magazine/rifle/boltaction,
/obj/item/ammo_magazine/rifle/boltaction,
/obj/item/ammo_magazine/handful/shotgun/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"apZ" = (
/obj/structure/sink{
@@ -3115,9 +2612,7 @@
pixel_x = -11;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"aqb" = (
/obj/item/lightstick/red/spoke/planted{
@@ -3125,9 +2620,7 @@
pixel_x = 12;
pixel_y = 28
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"aqc" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -3198,9 +2691,7 @@
/obj/structure/surface/rack,
/obj/item/storage/box/lightstick/red,
/obj/item/storage/box/lightstick/red,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/research_hab)
"arh" = (
/obj/effect/decal/warning_stripes{
@@ -3252,25 +2743,18 @@
pixel_x = 12;
pixel_y = 25
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"arK" = (
/obj/structure/surface/table,
/obj/item/circuitboard/apc,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/research_hab)
"arL" = (
/obj/structure/bed/chair/comfy/blue{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"arN" = (
/obj/structure/prop/ice_colony/surveying_device{
@@ -3297,10 +2781,7 @@
"arU" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southeast,
/area/shiva/interior/colony/research_hab)
"arW" = (
/obj/effect/decal/cleanable/dirt,
@@ -3328,20 +2809,14 @@
pixel_y = 24
},
/obj/structure/bed/chair,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"ase" = (
/obj/structure/bed/chair,
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"ash" = (
/obj/structure/prop/invuln/ice_prefab,
@@ -3431,10 +2906,7 @@
pixel_y = 8
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/botany)
"asK" = (
/obj/structure/disposaloutlet{
@@ -3470,9 +2942,7 @@
"asU" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/shuttle/dropship/flight/lz2,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz1_console/two)
"asW" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -3529,43 +2999,31 @@
/area/shiva/exterior/cp_lz2)
"aty" = (
/obj/item/trash/candy,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/shiva/interior/valley_huts/disposals)
"atB" = (
/obj/item/ammo_magazine/shotgun/slugs{
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/shiva/interior/valley_huts/disposals)
"atC" = (
/obj/item/trash/raisins,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/shiva/interior/valley_huts/disposals)
"atD" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/shiva/interior/valley_huts/disposals)
"atF" = (
/obj/item/evidencebag,
/obj/item/trash/pistachios,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/shiva/interior/valley_huts/disposals)
"atG" = (
/obj/item/trash/liquidfood,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/shiva/interior/valley_huts/disposals)
"atH" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -3585,10 +3043,7 @@
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"atT" = (
/obj/structure/surface/table,
@@ -3600,38 +3055,24 @@
pixel_y = -13
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/botany)
"aub" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"aud" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/research_hab)
"aue" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/colony/research_hab)
"auf" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/shiva/interior/valley_huts/disposals)
"aug" = (
/obj/structure/flora/grass/tallgrass/ice,
@@ -3674,16 +3115,12 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"auM" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"auS" = (
/obj/structure/surface/table,
@@ -3693,48 +3130,33 @@
},
/obj/item/reagent_container/food/snacks/hotchili,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"auT" = (
/obj/structure/surface/table,
/obj/structure/machinery/microwave,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"auU" = (
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northwest,
/area/shiva/interior/valley_huts/disposals)
"auV" = (
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/north,
/area/shiva/interior/valley_huts/disposals)
"auZ" = (
/obj/structure/machinery/door/window/northright,
-/turf/open/floor{
- dir = 5;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/northeast,
/area/shiva/interior/valley_huts/disposals)
"ava" = (
/obj/structure/closet/secure_closet/engineering_welding,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/research_hab)
"ave" = (
/obj/structure/flora/grass/tallgrass/ice,
@@ -3758,9 +3180,7 @@
pixel_x = 5;
pixel_y = 10
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"avx" = (
/obj/structure/platform/shiva/catwalk{
@@ -3785,24 +3205,17 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/cp_lz2)
"awc" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/shiva/interior/valley_huts/disposals)
"awj" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"awq" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
name = "\improper Colony Disposals"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/shiva/interior/valley_huts/disposals)
"awr" = (
/obj/structure/largecrate/random/case/small,
@@ -3817,9 +3230,7 @@
/obj/item/storage/belt/utility,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"awK" = (
/obj/structure/flora/bush/snow{
@@ -3853,9 +3264,7 @@
"axd" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"axe" = (
/obj/structure/flora/bush/snow{
@@ -3865,18 +3274,14 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/cp_lz2)
"axf" = (
-/turf/open/floor/shiva{
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull,
/area/shiva/interior/colony/n_admin)
"axq" = (
/obj/item/ammo_magazine/rifle/boltaction{
pixel_x = -5;
pixel_y = -9
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"axt" = (
/obj/structure/surface/table,
@@ -3884,22 +3289,14 @@
/obj/item/device/radio,
/obj/item/storage/toolbox/emergency,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/west,
/area/shiva/interior/valley_huts/disposals)
"axv" = (
-/turf/open/floor{
- icon_state = "darkbrowncorners2"
- },
+/turf/open/floor/darkbrowncorners2,
/area/shiva/interior/valley_huts/disposals)
"axw" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/shiva/interior/valley_huts/disposals)
"axx" = (
/obj/structure/ice/ice_rock/cornerOverlay{
@@ -3922,48 +3319,33 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_colony_grounds)
"axG" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"axH" = (
/obj/structure/surface/table,
/obj/item/storage/belt/utility,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/garage)
"axI" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/garage)
"axJ" = (
/turf/open/asphalt/cement,
/area/shiva/interior/warehouse)
"axK" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/garage)
"axM" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/garage)
"axN" = (
/obj/structure/machinery/door_control{
@@ -3980,25 +3362,16 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/garage)
"axP" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/garage)
"axQ" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/garage)
"axR" = (
/obj/structure/machinery/light/double{
@@ -4007,58 +3380,41 @@
},
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/garage)
"axS" = (
/obj/structure/surface/table,
/obj/item/storage/box/lightstick/red,
/obj/effect/landmark/good_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 10;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southwest,
/area/shiva/interior/valley_huts/disposals)
"axT" = (
/obj/structure/surface/table,
/obj/item/device/lightreplacer,
/obj/item/clothing/mask/rebreather,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/shiva/interior/valley_huts/disposals)
"axU" = (
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/shiva/interior/valley_huts/disposals)
"axV" = (
/obj/structure/machinery/light/double,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/shiva/interior/valley_huts/disposals)
"axZ" = (
/obj/structure/surface/rack,
/obj/item/tool/shovel/snow,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2,
/area/shiva/interior/valley_huts/disposals)
"ayb" = (
/obj/structure/surface/rack,
/obj/item/device/flashlight,
/obj/item/device/flashlight/flare,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 6;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/southeast,
/area/shiva/interior/valley_huts/disposals)
"ayc" = (
/obj/item/lightstick/red/spoke/planted{
@@ -4080,27 +3436,19 @@
/obj/structure/barricade/metal/wired{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"ayx" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/powercell,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/garage)
"ayy" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/north,
/area/shiva/interior/garage)
"ayz" = (
/obj/structure/fence,
@@ -4109,10 +3457,7 @@
"ayB" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/garage)
"ayG" = (
/obj/structure/machinery/alarm{
@@ -4121,9 +3466,7 @@
/obj/structure/barricade/metal/wired{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"ayH" = (
/obj/item/clothing/shoes/snow,
@@ -4181,17 +3524,12 @@
/obj/item/storage/toolbox/emergency,
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/southwest,
/area/shiva/interior/colony/medseceng)
"aze" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"azf" = (
/obj/structure/machinery/light/double{
@@ -4201,25 +3539,18 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"azg" = (
/obj/structure/surface/table,
/obj/item/storage/box/lightstick/red,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"azk" = (
/obj/structure/surface/table,
/obj/effect/landmark/good_item,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/garage)
"azm" = (
/obj/vehicle/train/cargo/trolley,
@@ -4228,26 +3559,19 @@
"azo" = (
/obj/vehicle/train/cargo/trolley,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"azp" = (
/obj/vehicle/train/cargo/engine,
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"azq" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/garage)
"azx" = (
/obj/structure/flora/tree/dead/tree_6,
@@ -4270,35 +3594,24 @@
/area/shiva/exterior/cp_lz2)
"azF" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"azH" = (
/obj/structure/closet/toolcloset,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/research_hab)
"azI" = (
/obj/effect/decal/warning_stripes{
icon_state = "N-corner"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/garage)
"azK" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/garage)
"azM" = (
/obj/structure/machinery/power/port_gen/pacman,
@@ -4314,9 +3627,7 @@
/obj/structure/window/reinforced/tinted{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"azS" = (
/obj/structure/surface/table,
@@ -4329,47 +3640,33 @@
/area/shiva/interior/warehouse)
"azY" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"azZ" = (
/obj/structure/machinery/computer/cameras,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/n_admin)
"aAc" = (
/obj/structure/bed/chair/comfy/blue,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"aAg" = (
/obj/effect/landmark/corpsespawner/colonist/random,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"aAh" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"aAi" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"aAj" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"aAl" = (
/obj/structure/machinery/alarm{
@@ -4386,35 +3683,24 @@
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"aAp" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"aAM" = (
/obj/structure/surface/table,
/obj/item/device/radio,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"aBe" = (
/obj/item/bodybag,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"aBf" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"aBi" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -4434,24 +3720,18 @@
/area/shiva/interior/garage)
"aBk" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"aBl" = (
/obj/item/bodybag,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"aBm" = (
/obj/effect/decal/cleanable/blood{
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"aBs" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -4459,18 +3739,14 @@
name = "\improper Colony Dormitories";
req_access_txt = "100"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"aBt" = (
/obj/structure/machinery/firealarm{
dir = 4;
pixel_x = 24
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"aBA" = (
/obj/structure/flora/grass/tallgrass/ice,
@@ -4479,9 +3755,7 @@
/area/shiva/exterior/cp_lz2)
"aBB" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"aBE" = (
/obj/effect/decal/warning_stripes{
@@ -4493,30 +3767,21 @@
/area/shiva/interior/colony/central)
"aBK" = (
/obj/effect/spawner/random/powercell,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"aBU" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"aBV" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/garage)
"aBZ" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"aCb" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -4558,16 +3823,11 @@
/obj/structure/surface/table,
/obj/item/clothing/mask/rebreather,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/garage)
"aCw" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners,
/area/shiva/interior/garage)
"aCx" = (
/obj/structure/machinery/light/double,
@@ -4575,9 +3835,7 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/garage)
"aCy" = (
/obj/structure/surface/table,
@@ -4590,21 +3848,13 @@
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/garage)
"aCA" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southeast,
/area/shiva/interior/garage)
"aCB" = (
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/research_hab)
"aCC" = (
/obj/structure/largecrate/random/mini/med,
@@ -4663,16 +3913,12 @@
/obj/item/stack/sheet/mineral/phoron{
amount = 15
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts/no2)
"aDq" = (
/obj/structure/largecrate/random,
/obj/effect/landmark/good_item,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts/no2)
"aDu" = (
/turf/open/floor/interior/plastic,
@@ -4695,9 +3941,7 @@
/obj/structure/closet/crate,
/obj/item/tool/shovel/snow,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts/no2)
"aDF" = (
/obj/structure/largecrate/random,
@@ -4705,9 +3949,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts/no2)
"aDG" = (
/obj/structure/machinery/door_control{
@@ -4717,9 +3959,7 @@
pixel_x = 24;
specialfunctions = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts/no2)
"aDH" = (
/obj/structure/machinery/door_control{
@@ -4748,9 +3988,7 @@
/area/shiva/exterior/cp_colony_grounds)
"aDR" = (
/obj/structure/machinery/floodlight,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts/no2)
"aDS" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -4761,9 +3999,7 @@
/area/shiva/interior/valley_huts/no2)
"aDW" = (
/obj/item/storage/toolbox/emergency,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts/no2)
"aEd" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim{
@@ -4884,9 +4120,7 @@
pixel_x = 8
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"aFs" = (
/obj/structure/machinery/door_control{
@@ -4901,16 +4135,11 @@
dir = 4;
start_charge = 50
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts)
"aFu" = (
/obj/item/storage/pouch/firstaid/full/pills,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/east,
/area/shiva/interior/colony/botany)
"aFz" = (
/obj/structure/flora/tree/dead/tree_4,
@@ -4953,15 +4182,11 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"aGb" = (
/obj/item/stack/rods,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/shiva/interior/aerodrome)
"aGc" = (
/obj/structure/prop/structure_lattice{
@@ -4970,14 +4195,10 @@
icon = 'icons/turf/elevator.dmi';
icon_state = "wall_broke"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/shiva/interior/aerodrome)
"aGd" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/shiva/interior/aerodrome)
"aGe" = (
/obj/structure/prop/structure_lattice{
@@ -4986,9 +4207,7 @@
icon = 'icons/turf/elevator.dmi';
icon_state = "wall_broke"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/shiva/interior/aerodrome)
"aGf" = (
/obj/effect/decal/cleanable/dirt,
@@ -5045,9 +4264,7 @@
pixel_x = -3;
pixel_y = 2
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"aHB" = (
/obj/structure/flora/bush/snow{
@@ -5065,9 +4282,7 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"aIh" = (
/obj/effect/decal/cleanable/dirt,
@@ -5077,9 +4292,7 @@
"aIv" = (
/obj/structure/surface/table,
/obj/item/stack/cable_coil,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"aIG" = (
/obj/item/weapon/wirerod,
@@ -5087,16 +4300,12 @@
/area/shiva/interior/aerodrome)
"aJc" = (
/obj/structure/largecrate/random/mini/med,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts/no2)
"aJe" = (
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts)
"aJj" = (
/obj/item/weapon/throwing_knife,
@@ -5104,39 +4313,28 @@
/area/shiva/interior/aerodrome)
"aJk" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/arrivals,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/shiva/interior/aerodrome)
"aJn" = (
/obj/item/frame/table,
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"aJy" = (
/obj/structure/flora/tree/dead/tree_5,
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/cp_lz2)
"aJB" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/west,
/area/shiva/interior/colony/central)
"aJE" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"aJF" = (
/obj/item/lightstick/red/spoke/planted{
pixel_x = -11
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"aJG" = (
/obj/structure/flora/tree/dead/tree_4,
@@ -5151,9 +4349,7 @@
pixel_x = 6;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"aJU" = (
/obj/structure/bed/chair/office/light{
@@ -5186,18 +4382,14 @@
/area/shiva/interior/colony/medseceng)
"aKv" = (
/obj/item/stack/folding_barricade,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"aKJ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Anti-Freeze Lounge"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"aKK" = (
/obj/effect/decal/cleanable/blood,
@@ -5212,9 +4404,7 @@
"aKQ" = (
/obj/structure/machinery/computer/cameras,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"aKR" = (
/obj/structure/bed/chair{
@@ -5227,15 +4417,11 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"aLk" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"aLs" = (
/obj/structure/surface/table/reinforced/prison,
@@ -5265,19 +4451,14 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/cp_lz2)
"aLB" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/s_admin)
"aLD" = (
/obj/structure/largecrate/random/barrel/blue,
/turf/open/auto_turf/snow/layer1,
/area/shiva/exterior/valley)
"aLG" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"aLJ" = (
/obj/structure/prop/invuln/ice_prefab/roof_greeble{
@@ -5316,9 +4497,7 @@
icon_state = "pottedplant_22";
pixel_y = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"aMu" = (
/obj/structure/prop/invuln/ice_prefab/standalone{
@@ -5334,16 +4513,11 @@
/obj/structure/sign/goldenplaque{
pixel_y = 32
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"aMx" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"aMz" = (
/obj/structure/machinery/smartfridge{
@@ -5352,9 +4526,7 @@
},
/obj/structure/surface/table/woodentable,
/obj/item/reagent_container/food/snacks/cheesecakeslice,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"aMA" = (
/obj/structure/bed/chair{
@@ -5424,9 +4596,7 @@
/obj/structure/surface/table/woodentable,
/obj/item/trash/chunk,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"aMW" = (
/obj/vehicle/train/cargo/trolley,
@@ -5442,16 +4612,11 @@
/obj/item/spacecash/c1000,
/obj/item/spacecash/c500,
/obj/effect/landmark/good_item,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"aNd" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"aNe" = (
/obj/effect/spawner/random/toolbox,
@@ -5459,9 +4624,7 @@
/area/shiva/exterior/junkyard/cp_bar)
"aNf" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"aNg" = (
/obj/structure/bed/chair/office/light{
@@ -5495,16 +4658,11 @@
"aNp" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/toolbox/emergency,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"aNq" = (
/obj/item/stool,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"aNy" = (
/obj/structure/platform/strata{
@@ -5523,17 +4681,11 @@
"aNL" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"aNN" = (
/obj/structure/surface/rack,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"aNP" = (
/turf/closed/shuttle/elevator/button/research,
@@ -5555,9 +4707,7 @@
pixel_x = 8
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"aOg" = (
/obj/structure/machinery/colony_floodlight,
@@ -5578,9 +4728,7 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"aOW" = (
/turf/closed/wall/shiva/prefabricated,
@@ -5617,27 +4765,18 @@
/obj/item/ammo_magazine/shotgun/buckshot{
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/lz2_habs)
"aPh" = (
/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"aPi" = (
/obj/item/paper/research_notes/bad{
pixel_x = 11;
pixel_y = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/lz2_habs)
"aPj" = (
/obj/structure/surface/table/woodentable,
@@ -5649,9 +4788,7 @@
pixel_x = 6;
pixel_y = 3
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"aPk" = (
/obj/item/lightstick/red/spoke/planted{
@@ -5681,23 +4818,15 @@
/obj/effect/decal/strata_decals/grime/grime3{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/central)
"aQb" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/s_admin)
"aQg" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"aQi" = (
/obj/structure/largecrate/random/barrel/red,
@@ -5767,9 +4896,7 @@
pixel_y = -5
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"aRz" = (
/obj/structure/ice/thin/indestructible{
@@ -5815,10 +4942,7 @@
/obj/item/ammo_magazine/rifle/boltaction,
/obj/item/ammo_magazine/rifle/boltaction,
/obj/item/storage/belt/marine,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"aSi" = (
/turf/open/auto_turf/snow/layer0,
@@ -5848,9 +4972,7 @@
/area/shiva/interior/aerodrome)
"aSI" = (
/obj/structure/closet/radiation,
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"aSJ" = (
/obj/structure/prop/invuln{
@@ -5961,9 +5083,7 @@
"aTT" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"aTY" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
@@ -5982,9 +5102,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W-corner"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"aUd" = (
/turf/closed/wall/shiva/ice,
@@ -5993,9 +5111,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "E-corner"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"aUt" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -6033,17 +5149,11 @@
/turf/open/shuttle/can_surgery/black,
/area/shiva/interior/aerodrome)
"aUM" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/east,
/area/shiva/interior/colony/botany)
"aUS" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/colony/research_hab)
"aUT" = (
/obj/structure/surface/table,
@@ -6052,9 +5162,7 @@
pixel_y = 2
},
/obj/effect/spawner/random/bomb_supply,
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"aUU" = (
/obj/structure/machinery/light/double{
@@ -6064,18 +5172,13 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"aUX" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"aUY" = (
/obj/structure/machinery/light/double{
@@ -6085,26 +5188,19 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"aVc" = (
/obj/effect/decal/warning_stripes{
icon_state = "W-corner"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/bar)
"aVm" = (
/obj/effect/decal/warning_stripes{
icon_state = "E-corner"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/bar)
"aVn" = (
/obj/structure/reagent_dispensers/beerkeg,
@@ -6161,10 +5257,7 @@
/obj/structure/surface/table,
/obj/item/tool/crowbar/red,
/obj/item/device/flash,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/medseceng)
"aVL" = (
/turf/open/shuttle/can_surgery/black,
@@ -6211,10 +5304,7 @@
pixel_x = 5;
pixel_y = 5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"aVU" = (
/obj/item/stack/sheet/metal,
@@ -6223,42 +5313,32 @@
"aWb" = (
/obj/structure/foamed_metal,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"aWs" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"aWv" = (
/obj/structure/machinery/landinglight/ds2,
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"aWB" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"aWC" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"aWD" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -6331,9 +5411,7 @@
/area/shiva/interior/aerodrome)
"aXa" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"aXb" = (
/obj/structure/prop/ice_colony/soil_net,
@@ -6351,10 +5429,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"aXi" = (
/obj/structure/ice/thin/indestructible{
@@ -6387,19 +5462,13 @@
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"aXH" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/north,
/area/shiva/interior/colony/research_hab)
"aXI" = (
/obj/structure/ice/thin/indestructible{
@@ -6424,9 +5493,7 @@
/area/shiva/exterior/cp_lz2)
"aXZ" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts/no2)
"aYd" = (
/turf/closed/shuttle/ert{
@@ -6445,10 +5512,7 @@
/area/shiva/interior/aerodrome)
"aYU" = (
/obj/structure/machinery/computer/arcade,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northwest,
/area/shiva/interior/colony/medseceng)
"aZg" = (
/obj/structure/largecrate/random/case/double,
@@ -6466,16 +5530,11 @@
dir = 8;
pixel_x = -11
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"aZw" = (
/obj/structure/machinery/vending/hydroseeds,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull/west,
/area/shiva/interior/colony/n_admin)
"aZA" = (
/obj/structure/surface/rack,
@@ -6499,10 +5558,7 @@
name = "\improper Colony Dormitories";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 6;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/southeast,
/area/shiva/interior/colony/botany)
"bag" = (
/obj/structure/ice/thin/indestructible{
@@ -6529,10 +5585,7 @@
/turf/open/ice/noweed,
/area/shiva/interior/colony/research_hab)
"bai" = (
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/shiva/exterior/junkyard/fortbiceps)
"bar" = (
/obj/item/trash/tray,
@@ -6562,15 +5615,11 @@
/area/shiva/interior/colony/n_admin)
"baV" = (
/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"baW" = (
/obj/structure/kitchenspike,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"baX" = (
/turf/closed/shuttle/ert{
@@ -6612,10 +5661,7 @@
/obj/structure/barricade/handrail/strata{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/deck)
"bbG" = (
/obj/structure/ice/thin/indestructible{
@@ -6671,9 +5717,7 @@
/turf/open/gm/river,
/area/shiva/interior/warehouse/caves)
"bdT" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/shiva/interior/colony/medseceng)
"ben" = (
/turf/open/auto_turf/snow/layer1,
@@ -6695,10 +5739,7 @@
/area/shiva/interior/aerodrome)
"beP" = (
/obj/item/clothing/under/rank/janitor,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"beQ" = (
/turf/closed/shuttle/elevator,
@@ -6729,9 +5770,7 @@
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"bfL" = (
/obj/structure/largecrate/random/mini/wooden,
@@ -6747,10 +5786,7 @@
"bfR" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"bga" = (
/obj/structure/prop/dam/truck{
@@ -6770,29 +5806,21 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/junkyard)
"bhI" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/southeast,
/area/shiva/interior/colony/medseceng)
"bhN" = (
/obj/structure/flora/grass/tallgrass/ice/corner,
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/junkyard)
"bhS" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"bhY" = (
/obj/structure/machinery/door_control/brbutton{
id = "nlz_shutters";
pixel_y = 28
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"biM" = (
/turf/open/floor/carpet,
@@ -6814,9 +5842,7 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"bks" = (
/obj/structure/morgue{
@@ -6835,16 +5861,11 @@
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/caves/right_spiders)
"blI" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/telecomm/lz1_biceps)
"blP" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/northwest,
/area/shiva/interior/colony/botany)
"bme" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -6867,9 +5888,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"bnm" = (
/obj/structure/surface/rack,
@@ -6877,9 +5896,7 @@
amount = 50
},
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"bnD" = (
/obj/item/lightstick/planted,
@@ -6905,24 +5922,17 @@
/obj/structure/largecrate/random/mini/wooden{
pixel_y = 6
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"boW" = (
/turf/open/auto_turf/snow/layer0,
/area/shiva/exterior/cp_s_research)
"bpH" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southeast,
/area/shiva/interior/colony/medseceng)
"bqy" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/research_hab)
"bqN" = (
/obj/structure/machinery/door/airlock/almayer/generic,
@@ -6933,9 +5943,7 @@
/turf/open/asphalt/cement,
/area/shiva/interior/warehouse)
"bsp" = (
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/deck)
"bsw" = (
/obj/effect/landmark/corpsespawner/bridgeofficer,
@@ -6948,10 +5956,7 @@
/turf/open/floor/plating,
/area/shiva/interior/aerodrome)
"bsM" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/west,
/area/shiva/exterior/cp_lz2)
"bsN" = (
/obj/item/stack/sheet/metal,
@@ -6975,17 +5980,12 @@
pixel_x = 11;
pixel_y = 20
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"btQ" = (
/obj/structure/machinery/computer/cameras,
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northwest,
/area/shiva/interior/colony/central)
"buJ" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -7010,15 +6010,11 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"bwb" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"bwk" = (
/obj/structure/platform/shiva/catwalk{
@@ -7037,16 +6033,10 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/item/fuel_cell,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/garage)
"bwJ" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/aux_power)
"bwP" = (
/obj/structure/flora/tree/dead/tree_6,
@@ -7058,27 +6048,21 @@
pixel_x = 1;
pixel_y = 3
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"bxL" = (
/obj/structure/surface/rack,
/obj/item/tank/emergency_oxygen/engi,
/obj/item/clothing/under/overalls,
/obj/item/clothing/suit/storage/apron/overalls,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"bxW" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"byr" = (
/obj/effect/landmark/xeno_hive_spawn,
@@ -7093,25 +6077,19 @@
/obj/structure/surface/table,
/obj/item/storage/box/pizza,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"byK" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 9
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/cp_colony_grounds)
"bzh" = (
/obj/structure/platform_decoration/shiva/catwalk{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"bzK" = (
/obj/effect/landmark/hunter_secondary,
@@ -7120,10 +6098,7 @@
"bzZ" = (
/obj/structure/surface/rack,
/obj/item/circuitboard/airalarm,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"bAn" = (
/obj/structure/surface/table/woodentable,
@@ -7134,9 +6109,7 @@
/area/shiva/interior/bar)
"bAv" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/bar)
"bAK" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -7150,15 +6123,11 @@
/obj/structure/platform_decoration/shiva/catwalk{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"bBs" = (
/obj/item/reagent_container/food/drinks/cans/beer,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"bBB" = (
/obj/structure/largecrate/random/barrel,
@@ -7197,9 +6166,7 @@
dir = 4;
start_charge = 10
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"bFS" = (
/obj/structure/platform/shiva/catwalk{
@@ -7222,18 +6189,14 @@
/area/shiva/exterior/cp_lz2)
"bHf" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"bHx" = (
/obj/item/lightstick/red/spoke/planted{
pixel_x = -11;
pixel_y = 20
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"bHC" = (
/obj/structure/platform/shiva/catwalk{
@@ -7249,9 +6212,7 @@
/obj/structure/barricade/metal{
layer = 3
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"bHZ" = (
/obj/structure/platform/strata{
@@ -7277,15 +6238,10 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"bJi" = (
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"bJj" = (
/turf/open/auto_turf/ice/layer1,
@@ -7296,10 +6252,7 @@
},
/area/shiva/interior/colony/central)
"bJF" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/botany)
"bKF" = (
/obj/item/lightstick/red/spoke/planted{
@@ -7337,9 +6290,7 @@
pixel_x = 8
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"bMW" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -7353,18 +6304,13 @@
/obj/structure/prop/ice_colony/dense/ice_tray{
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/research_hab)
"bNN" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"bOh" = (
/obj/effect/landmark/survivor_spawner,
@@ -7377,10 +6323,7 @@
"bPJ" = (
/obj/item/storage/box/donkpockets,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"bQv" = (
/obj/structure/flora/bush/snow{
@@ -7393,19 +6336,14 @@
icon_state = "S"
},
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/north,
/area/shiva/interior/colony/research_hab)
"bQR" = (
/obj/structure/surface/table,
/obj/item/tool/stamp{
icon_state = "stamp-ce"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"bQZ" = (
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
@@ -7440,9 +6378,7 @@
/area/shiva/interior/telecomm/lz1_biceps)
"bTV" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"bUe" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -7453,10 +6389,7 @@
"bUO" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/medseceng)
"bUU" = (
/obj/structure/prop/dam/truck{
@@ -7468,28 +6401,20 @@
/area/shiva/exterior/junkyard)
"bUX" = (
/obj/item/storage/belt/gun/m44,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southwest,
/area/shiva/interior/colony/botany)
"bVb" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"bVr" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
/obj/item/weapon/gun/rifle/m41aMK1,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"bVz" = (
/obj/structure/reagent_dispensers/water_cooler,
@@ -7534,15 +6459,11 @@
/obj/structure/machinery/m56d_hmg{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"bYd" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/garage)
"bYk" = (
/obj/structure/closet/secure_closet/medical3{
@@ -7551,9 +6472,7 @@
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/storage/pill_bottle/dexalin/skillless,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"bYO" = (
/obj/structure/prop/invuln{
@@ -7569,9 +6488,7 @@
/area/shiva/interior/aerodrome)
"bYS" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/central)
"bYV" = (
/obj/structure/machinery/disposal,
@@ -7579,15 +6496,11 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"bZZ" = (
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"caS" = (
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
@@ -7609,9 +6522,7 @@
/obj/effect/spawner/random/toolbox,
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"cbC" = (
/obj/structure/machinery/light/double{
@@ -7619,9 +6530,7 @@
pixel_y = -5
},
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"cbG" = (
/obj/effect/spawner/random/tool,
@@ -7632,9 +6541,7 @@
/turf/open/floor/plating,
/area/shiva/interior/colony/medseceng)
"cce" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"ccu" = (
/obj/structure/machinery/power/apc,
@@ -7663,17 +6570,13 @@
/turf/open/floor/plating,
/area/shiva/interior/aerodrome)
"ceM" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/cp_lz2)
"ceS" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"cgd" = (
/obj/item/lightstick/red/spoke/planted{
@@ -7694,10 +6597,7 @@
/obj/item/device/taperecorder,
/obj/item/clothing/glasses/sunglasses,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"cgR" = (
/obj/structure/platform_decoration/strata,
@@ -7705,15 +6605,10 @@
/area/shiva/exterior/junkyard/cp_bar)
"chq" = (
/obj/item/device/analyzer/plant_analyzer,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"chU" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/research_hab)
"cid" = (
/obj/structure/platform/strata{
@@ -7723,9 +6618,7 @@
/turf/open/gm/river,
/area/shiva/exterior/cp_s_research)
"cio" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/warehouse)
"ciL" = (
/obj/structure/inflatable/popped,
@@ -7745,10 +6638,7 @@
pixel_x = -3;
pixel_y = 18
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/research_hab)
"clp" = (
/obj/item/tool/weldingtool,
@@ -7758,10 +6648,7 @@
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
req_access_txt = "102"
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southeast,
/area/shiva/interior/colony/medseceng)
"cnb" = (
/turf/open/auto_turf/snow/layer1,
@@ -7774,10 +6661,7 @@
/area/shiva/exterior/junkyard/cp_bar)
"cnk" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"cnt" = (
/obj/structure/largecrate/random/secure,
@@ -7786,9 +6670,7 @@
"coj" = (
/obj/structure/surface/rack,
/obj/item/clothing/suit/storage/labcoat/researcher,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"cos" = (
/obj/item/lightstick/red/spoke/planted{
@@ -7815,10 +6697,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"cps" = (
/obj/effect/decal/cleanable/blood{
@@ -7851,10 +6730,7 @@
"crk" = (
/obj/structure/foamed_metal,
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"crF" = (
/turf/open/floor/plating/plating_catwalk/shiva,
@@ -7862,9 +6738,7 @@
"crN" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"cse" = (
/obj/effect/decal/warning_stripes{
@@ -7876,9 +6750,7 @@
/turf/open/floor/wood,
/area/shiva/interior/colony/central)
"cso" = (
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/shiva/interior/colony/medseceng)
"csu" = (
/obj/structure/largecrate/random,
@@ -7886,26 +6758,17 @@
/area/shiva/interior/colony/central)
"ctk" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"ctz" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"ctC" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"ctJ" = (
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/garage)
"cur" = (
/obj/structure/machinery/space_heater,
@@ -7959,10 +6822,7 @@
/obj/structure/sink{
pixel_y = 15
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/botany)
"czf" = (
/obj/structure/flora/bush/snow{
@@ -7972,15 +6832,11 @@
/area/shiva/exterior/cp_colony_grounds)
"czH" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"czI" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/shiva/interior/caves/research_caves)
"cAH" = (
/obj/structure/flora/tree/dead/tree_5,
@@ -7997,10 +6853,7 @@
/turf/open/floor/wood,
/area/shiva/interior/bar)
"cBe" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/medseceng)
"cBB" = (
/obj/item/clothing/shoes/snow,
@@ -8015,16 +6868,11 @@
/obj/item/clothing/mask/rebreather,
/obj/item/tank/emergency_oxygen/engi,
/obj/item/clothing/mask/rebreather,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/exterior/lz2_fortress)
"cBF" = (
/obj/structure/machinery/landinglight/ds2/delayone,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"cBG" = (
/obj/structure/machinery/vending/coffee,
@@ -8032,19 +6880,14 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"cBL" = (
/obj/structure/machinery/vending/cigarette,
/turf/open/floor/shiva,
/area/shiva/interior/bar)
"cCI" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull/west,
/area/shiva/interior/colony/n_admin)
"cDN" = (
/obj/structure/largecrate/random/case/small{
@@ -8060,18 +6903,14 @@
/area/shiva/interior/colony/research_hab)
"cEk" = (
/obj/structure/bed/chair/wheelchair,
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"cFa" = (
/obj/structure/machinery/light/double{
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"cFQ" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
@@ -8111,17 +6950,12 @@
pixel_x = 10;
pixel_y = 12
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"cHB" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/circuitboard,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"cIa" = (
/obj/structure/flora/grass/tallgrass/ice/corner,
@@ -8158,16 +6992,11 @@
/turf/open/auto_turf/snow/layer1,
/area/shiva/interior/caves/cp_camp)
"cJu" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/aux_power)
"cJy" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"cJC" = (
/obj/structure/platform/strata{
@@ -8180,16 +7009,11 @@
/area/shiva/interior/colony/deck)
"cKB" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"cKE" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/shiva/interior/colony/botany)
"cKL" = (
/turf/open/auto_turf/snow/layer4,
@@ -8201,16 +7025,11 @@
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"cLq" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"cLx" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -8243,10 +7062,7 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/west,
/area/shiva/interior/colony/n_admin)
"cOq" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -8263,9 +7079,7 @@
/obj/structure/surface/table,
/obj/item/key/cargo_train,
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"cPK" = (
/obj/item/clothing/shoes/snow,
@@ -8280,17 +7094,11 @@
/obj/item/clothing/mask/rebreather,
/obj/item/tank/emergency_oxygen/engi,
/obj/item/clothing/mask/rebreather,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/exterior/cp_colony_grounds)
"cQB" = (
/obj/structure/machinery/medical_pod/bodyscanner,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"cQW" = (
/turf/open/floor/plating,
@@ -8305,10 +7113,7 @@
/area/shiva/exterior/cp_lz2)
"cRs" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northwest,
/area/shiva/interior/colony/medseceng)
"cRP" = (
/obj/structure/surface/table/woodentable,
@@ -8318,10 +7123,7 @@
/obj/structure/surface/table,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"cSn" = (
/obj/structure/closet/secure_closet/guncabinet,
@@ -8331,10 +7133,7 @@
/obj/item/ammo_magazine/rifle/m41aMK1,
/obj/item/storage/belt/marine,
/obj/item/clothing/suit/armor/riot/marine,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"cTh" = (
/obj/item/lightstick/red/spoke/planted{
@@ -8346,15 +7145,10 @@
"cTo" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"cTu" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluecorners"
- },
+/turf/open/floor/shiva/bluecorners/west,
/area/shiva/interior/colony/central)
"cTU" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -8365,14 +7159,10 @@
/area/shiva/exterior/lz1_valley)
"cTY" = (
/obj/item/ammo_magazine/flamer_tank,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"cUl" = (
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/telecomm/lz1_biceps)
"cUQ" = (
/obj/effect/decal/warning_stripes{
@@ -8381,18 +7171,13 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/junkyard)
"cUS" = (
-/turf/open/floor/shiva{
- icon_state = "greencorners"
- },
+/turf/open/floor/shiva/greencorners,
/area/shiva/interior/colony/botany)
"cVy" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/research_hab)
"cVM" = (
/obj/item/lightstick/red/spoke/planted{
@@ -8429,9 +7214,7 @@
"cXm" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/microwave,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"cXM" = (
/obj/effect/decal/warning_stripes{
@@ -8460,10 +7243,7 @@
/turf/open/gm/river,
/area/shiva/exterior/cp_s_research)
"cYa" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/medseceng)
"cYc" = (
/obj/structure/window/reinforced/tinted{
@@ -8473,9 +7253,7 @@
dir = 4
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"cYz" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -8498,9 +7276,7 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"cYT" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -8513,9 +7289,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"cZk" = (
/turf/open/auto_turf/snow/layer2,
@@ -8539,10 +7313,7 @@
/obj/item/clothing/mask/rebreather,
/obj/item/tank/emergency_oxygen/engi,
/obj/item/clothing/mask/rebreather,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"cZZ" = (
/obj/structure/bed/chair/wood/normal,
@@ -8571,9 +7342,7 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"dcn" = (
/obj/item/lightstick/red/spoke/planted{
@@ -8601,9 +7370,7 @@
/obj/item/reagent_container/food/drinks/cans/thirteenloko{
pixel_y = 7
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"dex" = (
/obj/structure/machinery/photocopier,
@@ -8620,10 +7387,7 @@
/area/shiva/interior/aerodrome)
"dgb" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/garage)
"dgF" = (
/obj/structure/barricade/handrail/wire{
@@ -8656,9 +7420,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull,
/area/shiva/interior/colony/botany)
"djJ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -8674,15 +7436,11 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"djO" = (
/obj/item/stool,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"dkv" = (
/obj/structure/largecrate/random/mini/med,
@@ -8692,9 +7450,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"dkI" = (
/obj/structure/barricade/handrail/wire{
@@ -8703,9 +7459,7 @@
/obj/structure/barricade/handrail/wire{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"dkP" = (
/obj/structure/barricade/metal{
@@ -8751,11 +7505,6 @@
/obj/item/storage/box/lightstick/red,
/turf/open/floor/carpet,
/area/shiva/interior/colony/research_hab)
-"doc" = (
-/turf/open/floor{
- icon_state = "wood"
- },
-/area/shiva/interior/colony/central)
"doJ" = (
/obj/structure/window/framed/shiva,
/turf/open/floor/plating,
@@ -8783,9 +7532,7 @@
pixel_x = -5;
pixel_y = 11
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"dqW" = (
/obj/structure/surface/table/woodentable,
@@ -8801,10 +7548,7 @@
/obj/structure/bed/chair/comfy/black{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/research_hab)
"drM" = (
/obj/effect/spawner/random/toolbox,
@@ -8818,15 +7562,11 @@
/area/shiva/interior/aerodrome)
"dsD" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"dsY" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"dtq" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
@@ -8836,17 +7576,13 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"dtE" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_18"
},
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"dtZ" = (
/obj/structure/barricade/wooden{
@@ -8856,10 +7592,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/bar)
"dug" = (
/obj/item/reagent_container/food/drinks/bottle/rum,
@@ -8872,9 +7605,7 @@
/turf/open/floor/wood,
/area/shiva/interior/colony/botany)
"duv" = (
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/shiva/interior/colony/n_admin)
"dvg" = (
/obj/item/tool/warning_cone{
@@ -8895,10 +7626,7 @@
/obj/item/clothing/mask/rebreather,
/obj/item/tank/emergency_oxygen/engi,
/obj/item/clothing/mask/rebreather,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"dwQ" = (
/turf/open/floor/plating,
@@ -8907,9 +7635,7 @@
/obj/structure/machinery/portable_atmospherics/powered/scrubber{
icon_state = "psiphon:1"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"dxS" = (
/turf/open/auto_turf/ice/layer2,
@@ -8932,10 +7658,7 @@
/area/shiva/exterior/junkyard)
"dAi" = (
/obj/structure/machinery/cm_vending/sorted/boozeomat/chess,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/north,
/area/shiva/exterior/cp_lz2)
"dAt" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -8945,9 +7668,7 @@
/obj/item/reagent_container/glass/beaker/cryopredmix{
pixel_x = -10
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"dBK" = (
/obj/structure/surface/table,
@@ -8955,15 +7676,11 @@
pixel_x = -4;
pixel_y = 10
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"dCo" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"dCS" = (
/turf/closed/shuttle/ert{
@@ -8976,18 +7693,13 @@
/area/shiva/interior/caves/cp_camp)
"dDo" = (
/obj/structure/machinery/landinglight/ds1/spoke,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/botany)
"dEH" = (
/obj/structure/surface/rack,
/obj/item/storage/toolbox/electrical,
/obj/item/storage/toolbox/electrical,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"dGs" = (
/obj/structure/barricade/snow,
@@ -8998,16 +7710,11 @@
/obj/item/storage/toolbox/mechanical,
/obj/item/storage/toolbox/mechanical,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"dIF" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"dJl" = (
/obj/item/lightstick/planted,
@@ -9052,39 +7759,27 @@
/area/shiva/interior/warehouse)
"dLk" = (
/obj/item/device/flashlight,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"dMo" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"dMy" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/shiva/interior/colony/deck)
"dOf" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/east,
/area/shiva/interior/colony/deck)
"dOo" = (
/obj/structure/machinery/door_control/brbutton{
id = "nlz_shutters";
pixel_y = 28
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"dOs" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -9116,18 +7811,14 @@
/obj/item/tool/mop{
pixel_x = -10
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"dQq" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/asphalt/cement,
/area/shiva/interior/warehouse)
"dQF" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"dQZ" = (
/obj/structure/window/reinforced/tinted{
@@ -9137,9 +7828,7 @@
dir = 4
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"dRb" = (
/obj/structure/fence,
@@ -9153,16 +7842,10 @@
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/research_hab)
"dTU" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/research_hab)
"dVw" = (
/obj/structure/machinery/power/apc{
@@ -9172,10 +7855,7 @@
/turf/open/floor/plating,
/area/shiva/interior/caves/research_caves)
"dWp" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southeast,
/area/shiva/interior/colony/medseceng)
"dWw" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -9199,10 +7879,7 @@
/area/shiva/interior/colony/central)
"dWM" = (
/obj/structure/machinery/sleep_console,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"dWO" = (
/obj/structure/surface/rack,
@@ -9213,21 +7890,14 @@
/obj/item/weapon/ice_axe/red{
pixel_y = -4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/warehouse/caves)
"dXc" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"dXp" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/bar)
"dYi" = (
/obj/item/lightstick/red/spoke/planted{
@@ -9237,9 +7907,7 @@
/turf/open/auto_turf/snow/layer1,
/area/shiva/exterior/junkyard)
"dYm" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/cp_colony_grounds)
"dYp" = (
/turf/closed/wall/shiva/ice,
@@ -9257,16 +7925,11 @@
/obj/item/ammo_magazine/rifle/boltaction,
/obj/item/ammo_magazine/rifle/boltaction,
/obj/item/storage/belt/marine,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"dZN" = (
/obj/item/newspaper,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"eaa" = (
/obj/structure/closet/fireaxecabinet{
@@ -9298,9 +7961,7 @@
pixel_x = -12;
pixel_y = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"ebK" = (
/obj/structure/fence,
@@ -9321,30 +7982,21 @@
/obj/structure/closet/crate/trashcart,
/obj/item/clothing/under/marine/veteran/mercenary,
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"ecx" = (
/obj/structure/largecrate/random,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/caves/cp_camp)
"ecz" = (
/obj/structure/barricade/handrail/wire,
/turf/open/auto_turf/snow/layer3,
/area/shiva/interior/caves/cp_camp)
"ecZ" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/cp_colony_grounds)
"edw" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/north,
/area/shiva/exterior/cp_lz2)
"edW" = (
/obj/structure/machinery/power/apc{
@@ -9355,9 +8007,7 @@
/area/shiva/exterior/cp_colony_grounds)
"eep" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"eeD" = (
/obj/structure/platform_decoration/strata{
@@ -9401,14 +8051,10 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts)
"ejt" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"ejF" = (
/obj/item/ammo_magazine/handful/shotgun/incendiary,
@@ -9435,10 +8081,7 @@
pixel_x = -5;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/medseceng)
"elw" = (
/obj/item/stack/rods,
@@ -9453,9 +8096,7 @@
/turf/open/floor/prison,
/area/shiva/interior/bar)
"emd" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/colony/botany)
"emq" = (
/obj/structure/filingcabinet{
@@ -9467,15 +8108,11 @@
pixel_y = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"emy" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/aux_power)
"enc" = (
/obj/structure/prop/invuln/ice_prefab,
@@ -9500,10 +8137,7 @@
/area/shiva/interior/caves/research_caves)
"eoG" = (
/obj/effect/landmark/corpsespawner/security/marshal,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southeast,
/area/shiva/interior/colony/botany)
"eoH" = (
/obj/structure/largecrate/random/case/double,
@@ -9520,36 +8154,25 @@
dir = 4
},
/obj/item/device/analyzer/plant_analyzer,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/west,
/area/shiva/interior/lz2_habs)
"epp" = (
/obj/item/stool{
pixel_x = 4;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/north,
/area/shiva/exterior/cp_lz2)
"eqD" = (
/obj/structure/machinery/light/double{
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/west,
/area/shiva/interior/colony/botany)
"eqY" = (
/obj/structure/toilet,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"erc" = (
/obj/effect/decal/warning_stripes{
@@ -9582,22 +8205,15 @@
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
pixel_y = 28
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"etV" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/reagent_scanner,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"euA" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/research_hab)
"euZ" = (
/obj/structure/filingcabinet,
@@ -9609,9 +8225,7 @@
/obj/item/stack/cable_coil,
/obj/item/storage/box/engineer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"ewa" = (
/turf/open/auto_turf/snow/layer2,
@@ -9635,15 +8249,10 @@
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/storage/pill_bottle/bicaridine/skillless,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"exX" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/warehouse)
"eyx" = (
/obj/structure/bed/chair{
@@ -9667,10 +8276,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/lz2_habs)
"eBG" = (
/obj/structure/barricade/wooden,
@@ -9678,9 +8284,7 @@
/area/shiva/interior/colony/research_hab)
"eBU" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"eBZ" = (
/obj/structure/machinery/alarm{
@@ -9688,9 +8292,7 @@
pixel_x = -24
},
/obj/item/device/flashlight/lamp,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"eCg" = (
/obj/structure/closet/crate/freezer/rations,
@@ -9700,9 +8302,7 @@
/obj/item/reagent_container/food/condiment/coldsauce,
/obj/item/reagent_container/food/condiment/coldsauce,
/obj/item/reagent_container/food/condiment/coldsauce,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"eCr" = (
/obj/structure/flora/tree/dead/tree_3,
@@ -9723,15 +8323,11 @@
/obj/item/paper/research_notes,
/obj/item/paper_bin,
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"eFG" = (
/obj/structure/bed/chair,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"eFI" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -9739,9 +8335,7 @@
/area/shiva/interior/caves/cp_camp)
"eFQ" = (
/obj/item/tool/warning_cone,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"eGq" = (
/obj/structure/platform/strata,
@@ -9775,16 +8369,11 @@
/obj/item/ammo_magazine/rifle/extended,
/obj/item/ammo_magazine/rifle,
/obj/item/ammo_magazine/rifle,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"eHp" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/n_admin)
"eHL" = (
/obj/item/tool/wrench,
@@ -9802,19 +8391,14 @@
/obj/structure/bed/chair/comfy/orange{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"eIe" = (
/obj/structure/largecrate/random/mini/med{
pixel_x = 8;
pixel_y = 6
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/medseceng)
"eIH" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
@@ -9822,17 +8406,12 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"eKY" = (
/obj/structure/closet/radiation,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"eMh" = (
/obj/structure/prop/ice_colony/flamingo{
@@ -9848,16 +8427,11 @@
/obj/structure/bed,
/obj/effect/landmark/corpsespawner/prisoner,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"eNv" = (
/obj/item/tool/kitchen/knife/butcher,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"eOG" = (
/obj/structure/closet/secure_closet/guncabinet,
@@ -9870,10 +8444,7 @@
/obj/item/ammo_magazine/rifle/m41aMK1,
/obj/item/ammo_magazine/rifle/m41aMK1,
/obj/item/ammo_magazine/rifle/m41aMK1,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"eOK" = (
/obj/structure/closet/cabinet,
@@ -9902,9 +8473,7 @@
/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_queen,
/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook,
/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/cp_lz2)
"eRk" = (
/obj/structure/barricade/sandbags/wired{
@@ -9912,9 +8481,7 @@
icon_state = "sandbag_0"
},
/obj/item/ammo_magazine/rifle/boltaction,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"eRE" = (
/obj/item/tool/wirecutters,
@@ -9925,9 +8492,7 @@
dir = 4;
flipped = 1
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"eSf" = (
/obj/item/lightstick/red/spoke/planted{
@@ -9939,10 +8504,7 @@
/area/shiva/interior/caves/cp_camp)
"eSt" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/research_hab)
"eSK" = (
/obj/item/lightstick/red/spoke/planted,
@@ -9971,9 +8533,7 @@
/obj/structure/machinery/landinglight/ds2{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"eVG" = (
/obj/structure/largecrate/random,
@@ -9989,10 +8549,7 @@
"eVX" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/north,
/area/shiva/exterior/cp_lz2)
"eWl" = (
/obj/structure/inflatable/popped,
@@ -10000,10 +8557,7 @@
/area/shiva/exterior/cp_s_research)
"eWn" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"eWB" = (
/turf/open/floor/plating,
@@ -10011,10 +8565,7 @@
"eXL" = (
/obj/structure/surface/table,
/obj/item/stack/cable_coil,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"eXN" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -10031,16 +8582,12 @@
/area/shiva/exterior/cp_lz2)
"eZX" = (
/obj/item/tool/soap,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"far" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/toolbox/emergency,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"faA" = (
/turf/open/auto_turf/snow/layer0,
@@ -10074,9 +8621,7 @@
/obj/structure/closet/crate/trashcart,
/obj/item/clothing/under/marine/veteran/mercenary/support,
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"fbS" = (
/obj/structure/flora/grass/tallgrass/ice/corner,
@@ -10086,9 +8631,7 @@
"fcq" = (
/obj/structure/closet/coffin,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"fcy" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -10101,33 +8644,25 @@
/turf/open/auto_turf/snow/layer0,
/area/shiva/interior/colony/n_admin)
"fcL" = (
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/shiva/exterior/cp_colony_grounds)
"fel" = (
/obj/structure/machinery/light/double{
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/colony/central)
"feA" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/bottle/vodka{
pixel_y = 6
},
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"feR" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/medseceng)
"ffg" = (
/obj/effect/landmark/nightmare{
@@ -10141,24 +8676,17 @@
},
/area/shiva/interior/colony/central)
"ffn" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/aux_power)
"ffo" = (
/obj/structure/surface/rack,
/obj/item/fuel_cell,
/obj/item/fuel_cell,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/garage)
"ffw" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"fgB" = (
/obj/item/stack/sheet/metal,
@@ -10185,9 +8713,7 @@
/obj/effect/decal/cleanable/blood/drip{
icon_state = "3"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"fhv" = (
/obj/item/tool/wrench,
@@ -10195,9 +8721,7 @@
/area/shiva/interior/aerodrome)
"fir" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"fiK" = (
/turf/open/floor/wood,
@@ -10211,10 +8735,7 @@
dir = 10;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/research_hab)
"fjs" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -10231,10 +8752,7 @@
dir = 8;
pixel_x = 24
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"fjS" = (
/obj/structure/surface/rack,
@@ -10261,9 +8779,7 @@
dir = 8
},
/obj/structure/machinery/door/window/westleft,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"fkB" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -10271,18 +8787,14 @@
/area/shiva/exterior/cp_s_research)
"fkF" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"fkP" = (
/obj/item/reagent_container/glass/bucket{
pixel_x = -2;
pixel_y = -8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"flN" = (
/turf/open/auto_turf/ice/layer1,
@@ -10293,9 +8805,7 @@
pixel_x = -6;
pixel_y = 10
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"fmi" = (
/obj/structure/bed,
@@ -10317,10 +8827,7 @@
/turf/open/auto_turf/snow/layer0,
/area/shiva/interior/caves/research_caves)
"fnx" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/exterior/cp_lz2)
"fnG" = (
/obj/structure/barricade/snow{
@@ -10357,9 +8864,7 @@
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"frj" = (
/obj/item/tool/shovel/snow,
@@ -10385,9 +8890,7 @@
/area/shiva/interior/bar)
"ftm" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"ftr" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -10406,10 +8909,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"fuz" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -10421,16 +8921,11 @@
/obj/structure/bed/chair/comfy/beige{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"fww" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/research_hab)
"fwU" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -10445,9 +8940,7 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"fxy" = (
/obj/item/lightstick/variant/planted,
@@ -10458,9 +8951,7 @@
/obj/item/clipboard{
pixel_y = 6
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"fyC" = (
/obj/structure/prop/ice_colony/dense/planter_box/hydro{
@@ -10475,16 +8966,11 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"fze" = (
/obj/item/frame/apc,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"fzm" = (
/turf/open/auto_turf/ice/layer2,
@@ -10492,9 +8978,7 @@
"fzA" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/metal/large_stack,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/medseceng)
"fzF" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -10509,9 +8993,7 @@
"fBg" = (
/obj/structure/closet/wardrobe/green,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull,
/area/shiva/interior/colony/n_admin)
"fBA" = (
/obj/structure/machinery/space_heater,
@@ -10525,10 +9007,7 @@
/area/shiva/interior/colony/s_admin)
"fBQ" = (
/obj/structure/bed/chair,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"fCs" = (
/obj/structure/flora/grass/tallgrass/ice,
@@ -10538,9 +9017,7 @@
/obj/structure/surface/table,
/obj/item/storage/box/donkpockets,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"fDH" = (
/obj/structure/machinery/colony_floodlight,
@@ -10548,10 +9025,7 @@
/area/shiva/exterior/junkyard)
"fEf" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southeast,
/area/shiva/interior/colony/medseceng)
"fEl" = (
/obj/structure/platform/strata{
@@ -10564,10 +9038,7 @@
/turf/open/floor/shiva,
/area/shiva/interior/bar)
"fEO" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/west,
/area/shiva/interior/garage)
"fEU" = (
/turf/open/auto_turf/ice/layer1,
@@ -10576,9 +9047,7 @@
/obj/structure/surface/table,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"fFf" = (
/obj/structure/flora/bush/ausbushes/lavendergrass{
@@ -10609,15 +9078,10 @@
/obj/structure/surface/table,
/obj/item/bodybag/cryobag,
/obj/item/storage/box/syringes,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northeast,
/area/shiva/interior/colony/medseceng)
"fGb" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/caves/cp_camp)
"fGl" = (
/obj/item/shard{
@@ -10648,9 +9112,7 @@
/area/shiva/exterior/junkyard)
"fHH" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"fHM" = (
/obj/item/stool,
@@ -10658,10 +9120,7 @@
/area/shiva/interior/colony/research_hab)
"fHQ" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"fIz" = (
/obj/structure/closet/secure_closet/engineering_electrical,
@@ -10669,9 +9128,7 @@
/obj/item/circuitboard/apc,
/obj/item/circuitboard/apc,
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"fII" = (
/obj/item/lightstick/red/spoke/planted{
@@ -10696,9 +9153,7 @@
"fJw" = (
/obj/structure/surface/table,
/obj/item/device/camera,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"fKb" = (
/obj/structure/fence,
@@ -10706,9 +9161,7 @@
/area/shiva/exterior/lz1_valley)
"fKx" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/shiva{
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull,
/area/shiva/interior/colony/n_admin)
"fKy" = (
/obj/item/tool/pen/blue{
@@ -10736,9 +9189,7 @@
/obj/structure/surface/table,
/obj/item/storage/box/bodybags,
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"fLi" = (
/obj/item/tool/shovel/snow,
@@ -10771,26 +9222,19 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"fLX" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/caves/s_lz2)
"fMe" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"fMq" = (
/obj/vehicle/train/cargo/engine,
@@ -10800,9 +9244,7 @@
/area/shiva/interior/warehouse)
"fMG" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"fMO" = (
/obj/structure/bed/chair/office/dark,
@@ -10829,9 +9271,7 @@
/area/shiva/interior/caves/cp_camp)
"fOE" = (
/obj/item/ammo_magazine/rifle/boltaction,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"fPA" = (
/obj/effect/decal/cleanable/blood/gibs,
@@ -10842,18 +9282,13 @@
"fPD" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/colony/medseceng)
"fQX" = (
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/valley)
"fRg" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"fSc" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -10876,9 +9311,7 @@
},
/obj/item/cell,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"fSt" = (
/obj/item/clothing/shoes/snow,
@@ -10887,26 +9320,18 @@
/obj/item/clothing/suit/storage/snow_suit,
/obj/item/clothing/suit/storage/snow_suit,
/obj/item/tank/emergency_oxygen/engi,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/botany)
"fTX" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/bar)
"fUP" = (
/obj/structure/machinery/light/double{
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"fUZ" = (
/obj/item/lightstick/red/planted,
@@ -10926,21 +9351,15 @@
/area/shiva/interior/caves/cp_camp)
"fVI" = (
/obj/structure/bed/roller,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"fVR" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/limb,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"fWb" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"fWq" = (
/obj/structure/machinery/door_control/brbutton/alt{
@@ -10952,9 +9371,7 @@
pixel_x = -12;
pixel_y = 7
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"fXp" = (
/obj/structure/prop/invuln{
@@ -10992,9 +9409,7 @@
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"fYW" = (
/obj/structure/surface/table/reinforced/prison,
@@ -11004,30 +9419,20 @@
/obj/item/reagent_container/food/snacks/hotchili{
pixel_y = 14
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"fZz" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/medseceng)
"fZP" = (
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgibhead"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/lz2_habs)
"fZR" = (
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/shiva/interior/colony/botany)
"gaz" = (
/turf/open/auto_turf/ice/layer2,
@@ -11045,16 +9450,12 @@
/area/shiva/interior/caves/right_spiders)
"gbC" = (
/obj/structure/machinery/smartfridge,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"gcF" = (
/obj/structure/closet/coffin,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"gcK" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -11070,15 +9471,11 @@
"gcP" = (
/obj/structure/bed/chair/wheelchair,
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"gdk" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/up,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"gdU" = (
/obj/structure/barricade/wooden{
@@ -11095,20 +9492,14 @@
pixel_x = 24
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northeast,
/area/shiva/interior/colony/medseceng)
"geE" = (
/turf/closed/wall/shiva/prefabricated,
/area/shiva/exterior/junkyard)
"geS" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northwest,
/area/shiva/interior/colony/medseceng)
"ggh" = (
/obj/effect/decal/cleanable/dirt,
@@ -11130,10 +9521,7 @@
/area/shiva/interior/caves/cp_camp)
"ggL" = (
/obj/structure/inflatable/popped,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/research_hab)
"gha" = (
/obj/effect/landmark/xeno_spawn,
@@ -11145,10 +9533,7 @@
/area/shiva/interior/colony/research_hab)
"ghK" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"ghS" = (
/obj/structure/surface/table,
@@ -11158,10 +9543,7 @@
"ghU" = (
/obj/structure/closet/crate/trashcart,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"gik" = (
/turf/open/auto_turf/snow/layer0,
@@ -11179,16 +9561,10 @@
/turf/open/floor/plating,
/area/shiva/interior/colony/medseceng)
"gjg" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wredcorners"
- },
+/turf/open/floor/shiva/wredcorners/north,
/area/shiva/interior/colony/medseceng)
"gjY" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/east,
/area/shiva/interior/colony/botany)
"gkv" = (
/turf/open/auto_turf/ice/layer1,
@@ -11201,16 +9577,11 @@
/area/shiva/exterior/cp_colony_grounds)
"gkK" = (
/obj/structure/machinery/landinglight/ds2/delaythree,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"gkL" = (
/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northwest,
/area/shiva/interior/colony/medseceng)
"gkY" = (
/turf/open/floor/plating,
@@ -11218,9 +9589,7 @@
"glG" = (
/obj/structure/surface/table,
/obj/item/storage/toolbox/emergency,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"gmS" = (
/obj/item/device/flashlight,
@@ -11229,9 +9598,7 @@
"gmV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"gnZ" = (
/turf/closed/shuttle/elevator{
@@ -11246,14 +9613,10 @@
icon_state = "gib6"
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"goj" = (
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"goS" = (
/obj/structure/flora/bush/ausbushes/lavendergrass{
@@ -11274,9 +9637,7 @@
/area/shiva/interior/caves/cp_camp)
"gpn" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"gpz" = (
/turf/open/auto_turf/ice/layer0,
@@ -11287,10 +9648,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"gpS" = (
/obj/structure/flora/bush/snow{
@@ -11309,9 +9667,7 @@
pixel_y = 5
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"gqp" = (
/obj/item/stack/catwalk,
@@ -11333,9 +9689,7 @@
dir = 4;
start_charge = 0
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/s_lz2)
"grk" = (
/obj/structure/platform/strata{
@@ -11364,9 +9718,7 @@
pixel_y = 14
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"gtp" = (
/obj/effect/landmark/queen_spawn,
@@ -11383,34 +9735,24 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/cp_colony_grounds)
"gtZ" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/shiva/interior/colony/central)
"gul" = (
/obj/structure/window/reinforced/tinted{
dir = 4
},
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"guz" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/west,
/area/shiva/interior/colony/n_admin)
"guA" = (
/obj/structure/surface/table,
/obj/item/tool/wirecutters/clippers{
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"guH" = (
/obj/structure/prop/ice_colony/surveying_device,
@@ -11424,9 +9766,7 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/interior/caves/cp_camp)
"gvz" = (
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/shiva/interior/colony/central)
"gvT" = (
/obj/structure/flora/bush/ausbushes/lavendergrass{
@@ -11436,9 +9776,7 @@
/area/shiva/interior/colony/medseceng)
"gwq" = (
/obj/structure/bed/chair/comfy/blue,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"gwA" = (
/obj/structure/prop/invuln/ice_prefab/roof_greeble{
@@ -11450,14 +9788,10 @@
/area/shiva/interior/caves/cp_camp)
"gxK" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"gxN" = (
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/shiva/interior/valley_huts/disposals)
"gxW" = (
/obj/structure/closet/cabinet,
@@ -11492,10 +9826,7 @@
/turf/open/floor/plating/plating_catwalk/shiva,
/area/shiva/interior/telecomm/lz1_biceps)
"gAV" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/research_hab)
"gBc" = (
/obj/structure/surface/table,
@@ -11509,9 +9840,7 @@
/area/shiva/exterior/junkyard)
"gBr" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"gBH" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -11528,10 +9857,7 @@
"gCy" = (
/obj/structure/surface/table,
/obj/item/device/flashlight,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southeast,
/area/shiva/interior/garage)
"gCL" = (
/obj/effect/decal/cleanable/dirt,
@@ -11546,9 +9872,7 @@
/area/shiva/exterior/cp_colony_grounds)
"gDz" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/shiva/interior/colony/botany)
"gEk" = (
/obj/structure/prop/invuln/ice_prefab/roof_greeble{
@@ -11569,9 +9893,7 @@
/obj/structure/window{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"gFe" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -11590,9 +9912,7 @@
pixel_x = 6;
pixel_y = -7
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"gGf" = (
/obj/item/ammo_magazine/rifle/m41aMK1,
@@ -11603,9 +9923,7 @@
icon_state = "xgibdown1"
},
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"gGH" = (
/obj/structure/machinery/camera/autoname/lz_camera,
@@ -11618,10 +9936,7 @@
"gHh" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
/obj/structure/medical_supply_link,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northwest,
/area/shiva/interior/colony/medseceng)
"gHr" = (
/obj/structure/surface/table/reinforced/prison,
@@ -11630,9 +9945,7 @@
/obj/structure/window/reinforced/tinted{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"gHu" = (
/obj/item/explosive/grenade/custom/large,
@@ -11643,9 +9956,7 @@
dir = 8
},
/obj/item/clipboard,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"gIq" = (
/obj/structure/filingcabinet,
@@ -11655,9 +9966,7 @@
pixel_y = -5
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"gIQ" = (
/obj/item/stack/sheet/metal,
@@ -11690,9 +9999,7 @@
},
/obj/item/ashtray/glass,
/obj/item/trash/cigbutt,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"gKQ" = (
/obj/structure/machinery/light/small{
@@ -11702,9 +10009,7 @@
/area/shiva/interior/colony/botany)
"gLu" = (
/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"gLv" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -11717,10 +10022,7 @@
/area/shiva/interior/colony/central)
"gMP" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northwest,
/area/shiva/interior/colony/medseceng)
"gNw" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -11729,10 +10031,7 @@
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/caves/s_lz2)
"gNF" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/central)
"gNJ" = (
/obj/structure/platform/shiva/catwalk{
@@ -11759,10 +10058,7 @@
pixel_y = 4
},
/obj/item/weapon/ice_axe,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/botany)
"gPg" = (
/turf/open/auto_turf/snow/layer2,
@@ -11774,9 +10070,7 @@
/area/shiva/interior/colony/central)
"gPZ" = (
/obj/item/stack/sheet/metal/medium_stack,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"gQx" = (
/obj/structure/surface/table/reinforced/prison,
@@ -11784,9 +10078,7 @@
pixel_x = -4;
pixel_y = 5
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"gQy" = (
/obj/structure/flora/bush/snow{
@@ -11840,9 +10132,7 @@
/area/shiva/interior/caves/cp_camp)
"gRG" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"gRJ" = (
/obj/item/clothing/shoes/snow,
@@ -11868,23 +10158,16 @@
"gSb" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"gSG" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"gSJ" = (
/obj/structure/machinery/vending/cola/research,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"gTe" = (
/obj/structure/machinery/gibber,
@@ -11900,15 +10183,11 @@
pixel_y = 4
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"gTU" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"gUc" = (
/turf/closed/shuttle/elevator{
@@ -11917,16 +10196,11 @@
/area/shiva/interior/aerodrome)
"gVh" = (
/obj/structure/window/framed/shiva,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"gVJ" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/northwest,
/area/shiva/interior/colony/botany)
"gWk" = (
/obj/structure/window/framed/shiva,
@@ -11937,10 +10211,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"gXu" = (
/obj/structure/largecrate/random/barrel/green,
@@ -11964,9 +10235,7 @@
/obj/item/weapon/ice_axe/red{
pixel_y = -4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"gYu" = (
/obj/item/lightstick/red/planted,
@@ -11997,9 +10266,7 @@
"hab" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"hbo" = (
/obj/structure/platform/strata,
@@ -12018,14 +10285,10 @@
pixel_x = -3;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"hbB" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/warehouse/caves)
"hbD" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
@@ -12041,26 +10304,18 @@
/area/shiva/interior/telecomm/lz1_biceps)
"hfm" = (
/obj/item/paper/research_notes/good,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"hfw" = (
/obj/structure/machinery/light/double{
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"hfN" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"hgI" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -12091,9 +10346,7 @@
/obj/structure/window/reinforced/tinted{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"hin" = (
/obj/structure/machinery/disposal,
@@ -12107,16 +10360,11 @@
/turf/open/gm/river,
/area/shiva/interior/warehouse/caves)
"hju" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/botany)
"hjx" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"hkC" = (
/obj/item/lightstick/red/planted,
@@ -12146,9 +10394,7 @@
"hlO" = (
/obj/structure/foamed_metal,
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"hmo" = (
/obj/effect/decal/cleanable/dirt,
@@ -12156,25 +10402,18 @@
/turf/open/asphalt/cement,
/area/shiva/interior/warehouse)
"hms" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"hmI" = (
/obj/effect/landmark/corpsespawner/colonist/random,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"hmQ" = (
/obj/structure/filingcabinet/filingcabinet{
name = "mail bins"
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"hmU" = (
/obj/structure/largecrate/random/mini/wooden{
@@ -12191,10 +10430,7 @@
/turf/open/auto_turf/snow/layer1,
/area/shiva/exterior/junkyard)
"hnc" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/exterior/lz2_fortress)
"hnf" = (
/obj/effect/decal/cleanable/blood,
@@ -12202,10 +10438,7 @@
icon_state = "3"
},
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/colony/medseceng)
"hng" = (
/turf/closed/wall/shiva/ice,
@@ -12223,14 +10456,10 @@
/obj/structure/prop/ice_colony/ice_crystal{
dir = 10
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"hpc" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/caves/s_lz2)
"hpm" = (
/obj/structure/largecrate/random/mini{
@@ -12255,9 +10484,7 @@
dir = 4
},
/obj/structure/machinery/landinglight/ds2/delaytwo,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"hqd" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -12267,18 +10494,13 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_lz2)
"hqh" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "greencorners"
- },
+/turf/open/floor/shiva/greencorners/east,
/area/shiva/interior/colony/botany)
"hqC" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"hrb" = (
/obj/structure/surface/table,
@@ -12295,18 +10517,13 @@
/obj/structure/urinal{
pixel_y = 32
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"hsw" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/circuitboard,
/obj/item/tool/screwdriver,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"hsZ" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -12320,14 +10537,10 @@
/area/shiva/exterior/cp_lz2)
"htb" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"htC" = (
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/exterior/cp_colony_grounds)
"hul" = (
/obj/structure/barricade/metal{
@@ -12335,16 +10548,11 @@
health = 130
},
/obj/item/stack/barbed_wire,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"hum" = (
/obj/structure/foamed_metal,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"huv" = (
/obj/structure/barricade/handrail/wire{
@@ -12371,29 +10579,20 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"hwA" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/west,
/area/shiva/interior/colony/medseceng)
"hwJ" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
name = "Underground Morgue"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"hxf" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/cp_lz2)
"hxk" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -12416,9 +10615,7 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/junkyard)
"hyu" = (
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"hyw" = (
/obj/structure/flora/bush/snow{
@@ -12438,18 +10635,14 @@
pixel_x = 4;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"hzJ" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
/area/shiva/exterior/lz1_valley)
"hzZ" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"hAS" = (
/turf/open/floor/interior/plastic/alt,
@@ -12470,9 +10663,7 @@
dir = 8;
pixel_x = -24
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"hBN" = (
/obj/structure/machinery/light/double{
@@ -12481,9 +10672,7 @@
},
/obj/item/clothing/under/colonist,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"hCa" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -12502,9 +10691,7 @@
dir = 8;
pixel_x = -24
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"hCX" = (
/obj/item/storage/box/donkpockets,
@@ -12513,10 +10700,7 @@
dir = 8;
pixel_x = 24
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/shiva/interior/colony/medseceng)
"hCY" = (
/obj/structure/bed/chair/comfy/orange{
@@ -12526,15 +10710,11 @@
/area/shiva/interior/colony/research_hab)
"hDd" = (
/obj/item/lightstick/red/spoke,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"hDo" = (
/obj/structure/girder/reinforced,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"hDs" = (
/obj/vehicle/train/cargo/engine,
@@ -12616,9 +10796,7 @@
"hFJ" = (
/obj/structure/closet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"hGj" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -12628,10 +10806,7 @@
/turf/open/floor/plating,
/area/shiva/interior/aerodrome)
"hGH" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/shiva/interior/colony/medseceng)
"hHf" = (
/obj/structure/largecrate,
@@ -12662,10 +10837,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southeast,
/area/shiva/interior/colony/medseceng)
"hHY" = (
/obj/structure/barricade/metal{
@@ -12689,9 +10861,7 @@
/area/shiva/exterior/cp_colony_grounds)
"hIC" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"hIM" = (
/obj/structure/flora/tree/dead/tree_4,
@@ -12702,16 +10872,11 @@
/turf/open/floor/plating,
/area/shiva/interior/colony/central)
"hKR" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/north,
/area/shiva/interior/colony/botany)
"hKS" = (
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/aux_power)
"hLf" = (
/turf/closed/wall/shiva/prefabricated,
@@ -12722,9 +10887,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"hLE" = (
/obj/item/lightstick/red/variant,
@@ -12739,16 +10902,11 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"hMY" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"hPp" = (
/turf/closed/wall/shiva/prefabricated/orange,
@@ -12769,10 +10927,7 @@
/obj/effect/decal/cleanable/blood/drip{
icon_state = "3"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wredcorners"
- },
+/turf/open/floor/shiva/wredcorners/north,
/area/shiva/interior/colony/medseceng)
"hQW" = (
/obj/structure/machinery/light/double{
@@ -12797,10 +10952,7 @@
/obj/effect/decal/cleanable/blood/drip{
icon_state = "3"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"hRQ" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -12826,9 +10978,7 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"hSW" = (
/obj/item/lightstick/red/spoke/planted{
@@ -12855,9 +11005,7 @@
/obj/item/device/implanter/subdermal_armor{
pixel_x = 12
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"hTk" = (
/obj/structure/bookcase/manuals/medical,
@@ -12896,10 +11044,7 @@
"hUG" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/research_hab)
"hUM" = (
/obj/structure/bed/chair/office/dark{
@@ -12915,9 +11060,7 @@
/turf/open/floor/shiva,
/area/shiva/interior/colony/research_hab)
"hWh" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/deck)
"hWK" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -12961,18 +11104,14 @@
/area/shiva/interior/colony/central)
"hYf" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/up,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"hYT" = (
/obj/structure/machinery/washing_machine,
/obj/structure/machinery/washing_machine{
pixel_y = 15
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"hZu" = (
/obj/structure/machinery/landinglight/ds2{
@@ -12981,9 +11120,7 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"hZI" = (
/obj/structure/largecrate/random/mini/small_case/b{
@@ -13000,9 +11137,7 @@
/area/shiva/interior/colony/n_admin)
"iaj" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"iaK" = (
/obj/structure/bed/chair/comfy/beige,
@@ -13010,9 +11145,7 @@
/area/shiva/interior/colony/research_hab)
"ibN" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"ibP" = (
/obj/structure/closet/toolcloset,
@@ -13020,18 +11153,14 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"icC" = (
/obj/structure/machinery/light/double{
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/deck)
"idR" = (
/obj/structure/platform_decoration/strata{
@@ -13043,18 +11172,13 @@
/obj/structure/prop/souto_land/streamer{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"ieo" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/east,
/area/shiva/interior/colony/n_admin)
"iey" = (
/obj/structure/flora/bush/snow{
@@ -13071,10 +11195,7 @@
/area/shiva/interior/warehouse)
"ift" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"ifN" = (
/obj/structure/surface/rack,
@@ -13089,42 +11210,30 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"igl" = (
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"igr" = (
/obj/structure/bedsheetbin,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"igJ" = (
/obj/effect/landmark/objective_landmark/science,
/turf/open/floor/plating,
/area/shiva/interior/caves/research_caves)
"igN" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/deck)
"ihh" = (
/obj/structure/surface/table,
/obj/item/clipboard,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"ihp" = (
/obj/structure/surface/table/woodentable,
@@ -13143,9 +11252,7 @@
pixel_x = 4;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"iji" = (
/obj/effect/decal/cleanable/blood/gibs/core,
@@ -13158,9 +11265,7 @@
/area/shiva/interior/warehouse/caves)
"ijq" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"ijA" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -13194,34 +11299,24 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/n_admin)
"ilh" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"ilo" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"ilt" = (
/obj/structure/closet/fireaxecabinet{
pixel_y = 32
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"ilW" = (
/obj/item/lightstick/planted,
@@ -13236,9 +11331,7 @@
dir = 4;
icon_state = "sandbag_0"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"inJ" = (
/turf/open/floor/wood,
@@ -13257,9 +11350,7 @@
/obj/item/weapon/gun/smg/pps43,
/obj/item/ammo_magazine/smg/pps43,
/obj/item/ammo_magazine/smg/pps43,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"iqh" = (
/obj/item/device/flashlight,
@@ -13274,10 +11365,7 @@
dir = 5;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/research_hab)
"iqA" = (
/obj/effect/decal/cleanable/blood{
@@ -13298,17 +11386,12 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/botany)
"irk" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/boiledspagetti,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"irt" = (
/obj/structure/barricade/metal{
@@ -13317,16 +11400,12 @@
/obj/structure/barricade/metal{
layer = 3
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"irx" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/cheeseburger,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"irT" = (
/obj/structure/platform/strata{
@@ -13339,23 +11418,16 @@
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/n_admin)
"isU" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"itG" = (
/obj/structure/closet/secure_closet/security,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southwest,
/area/shiva/interior/colony/medseceng)
"itH" = (
/obj/structure/largecrate/random/secure,
@@ -13379,25 +11451,18 @@
/turf/open/floor/interior/plastic,
/area/shiva/interior/warehouse)
"itW" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/central)
"iuz" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"iuI" = (
/obj/structure/prop/invuln/ice_prefab,
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_lz2)
"iuK" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"iuM" = (
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
@@ -13405,24 +11470,18 @@
layer = 3
},
/obj/effect/landmark/corpsespawner/bridgeofficer,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"iuR" = (
/obj/structure/dispenser,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/medseceng)
"iuX" = (
/obj/structure/platform/shiva/catwalk{
dir = 8
},
/obj/structure/largecrate/random/mini/med,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"ivl" = (
/obj/structure/machinery/alarm{
@@ -13436,18 +11495,13 @@
dir = 1;
name = "\improper Underground Chapel"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/shiva/interior/colony/central)
"ivy" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"ivE" = (
/obj/structure/platform/strata{
@@ -13461,9 +11515,7 @@
"ivS" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/n_admin)
"ivU" = (
/obj/structure/stairs/perspective{
@@ -13481,9 +11533,7 @@
dir = 8;
pixel_x = -24
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"ixo" = (
/obj/structure/closet/secure_closet/personal,
@@ -13507,10 +11557,7 @@
/area/shiva/interior/warehouse)
"ixX" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/colony/deck)
"iyk" = (
/obj/structure/surface/table/reinforced/prison,
@@ -13520,9 +11567,7 @@
/obj/item/reagent_container/food/snacks/cheesecakeslice{
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"iyP" = (
/obj/structure/surface/table/reinforced/prison,
@@ -13537,9 +11582,7 @@
pixel_x = 7;
pixel_y = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"izt" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -13547,10 +11590,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/central)
"iAg" = (
/obj/structure/barricade/snow{
@@ -13563,10 +11603,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/east,
/area/shiva/interior/colony/botany)
"iAG" = (
/obj/structure/cargo_container/horizontal/blue/middle,
@@ -13581,16 +11618,11 @@
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"iCs" = (
/obj/item/storage/firstaid/adv,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/north,
/area/shiva/interior/colony/botany)
"iCF" = (
/obj/item/lightstick/red/planted,
@@ -13602,10 +11634,7 @@
dir = 8;
pixel_y = 6
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"iCK" = (
/obj/item/storage/belt/medical{
@@ -13634,10 +11663,7 @@
/area/shiva/exterior/lz1_valley)
"iDN" = (
/obj/item/weapon/ice_axe/red,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/botany)
"iDW" = (
/obj/structure/stairs/perspective{
@@ -13653,15 +11679,11 @@
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"iEp" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/medseceng)
"iEF" = (
/obj/structure/bed/chair/comfy/orange,
@@ -13672,10 +11694,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/botany)
"iHu" = (
/obj/structure/platform_decoration/shiva/catwalk{
@@ -13685,10 +11704,7 @@
/area/shiva/exterior/junkyard)
"iHN" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/east,
/area/shiva/interior/colony/botany)
"iHV" = (
/obj/structure/largecrate/random{
@@ -13711,10 +11727,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/research_hab)
"iIg" = (
/obj/structure/stairs/perspective/ice{
@@ -13742,16 +11755,10 @@
/area/shiva/interior/colony/botany)
"iJA" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/medseceng)
"iJY" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"iKW" = (
/obj/structure/platform_decoration/shiva/catwalk{
@@ -13764,15 +11771,11 @@
pixel_x = 12;
pixel_y = 25
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"iLS" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/deck)
"iMb" = (
/turf/open/auto_turf/snow/layer2,
@@ -13794,9 +11797,7 @@
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"iNX" = (
/obj/effect/decal/cleanable/blood,
@@ -13829,10 +11830,7 @@
/turf/open/auto_turf/snow/layer0,
/area/shiva/exterior/junkyard)
"iPg" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/n_admin)
"iPG" = (
/obj/structure/surface/table,
@@ -13840,9 +11838,7 @@
pixel_x = 5;
pixel_y = 3
},
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/medseceng)
"iPU" = (
/obj/structure/surface/table,
@@ -13850,9 +11846,7 @@
pixel_x = -4;
pixel_y = 7
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"iQe" = (
/obj/structure/barricade/handrail/wire{
@@ -13866,24 +11860,17 @@
/area/shiva/exterior/lz1_valley)
"iQP" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/medseceng)
"iRa" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"iRh" = (
/obj/structure/surface/table,
/obj/item/tool/surgery/scalpel,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"iTQ" = (
/obj/structure/girder,
@@ -13893,31 +11880,21 @@
/obj/structure/machinery/landinglight/ds2{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"iVj" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/east,
/area/shiva/exterior/cp_lz2)
"iVT" = (
/obj/structure/surface/table,
/obj/structure/largecrate/random/mini/chest/c{
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/lz2_habs)
"iWa" = (
/obj/item/clipboard,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/medseceng)
"iWg" = (
/obj/structure/barricade/handrail/strata{
@@ -13931,9 +11908,7 @@
layer = 2.9;
pixel_y = 7
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/deck)
"iWu" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{
@@ -13948,15 +11923,11 @@
pixel_x = 8;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"iWO" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"iWS" = (
/obj/structure/prop/invuln/dense{
@@ -13985,9 +11956,7 @@
/area/shiva/interior/colony/research_hab)
"iXc" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"iXk" = (
/obj/item/lightstick/variant/planted,
@@ -14015,16 +11984,12 @@
pixel_y = 10
},
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"iXE" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/landmark/good_item,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"iXG" = (
/obj/structure/prop/ice_colony/dense/planter_box/hydro,
@@ -14046,9 +12011,7 @@
/obj/effect/decal/cleanable/blood{
icon_state = "xgibdown1"
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"iYc" = (
/obj/structure/surface/table,
@@ -14056,9 +12019,7 @@
pixel_x = -2;
pixel_y = 5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"iYC" = (
/obj/structure/reagent_dispensers/watertank,
@@ -14066,10 +12027,7 @@
/area/shiva/interior/warehouse)
"iYF" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/west,
/area/shiva/interior/colony/botany)
"iZj" = (
/obj/structure/largecrate/random/barrel/green,
@@ -14077,9 +12035,7 @@
/area/shiva/interior/warehouse/caves)
"iZF" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"iZX" = (
/obj/structure/machinery/power/apc{
@@ -14095,10 +12051,7 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/junkyard)
"jay" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/north,
/area/shiva/interior/colony/medseceng)
"jaF" = (
/obj/item/lightstick/red/planted,
@@ -14110,14 +12063,10 @@
"jaU" = (
/obj/structure/surface/table,
/obj/item/device/whistle,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"jbE" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/medseceng)
"jbK" = (
/turf/open/floor/plating,
@@ -14132,10 +12081,7 @@
/obj/structure/surface/table,
/obj/item/clothing/suit/armor/hos,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"jeg" = (
/obj/structure/barricade/wooden{
@@ -14169,10 +12115,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/botany)
"jhm" = (
/obj/structure/platform/shiva/catwalk{
@@ -14181,9 +12124,7 @@
/turf/open/auto_turf/snow/layer4,
/area/shiva/exterior/junkyard)
"jhq" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/colony/n_admin)
"jhR" = (
/obj/structure/surface/table/woodentable,
@@ -14207,9 +12148,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "\improper Colony Administration"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"jjX" = (
/obj/structure/platform/shiva/catwalk{
@@ -14251,9 +12190,7 @@
/turf/open/auto_turf/ice/layer2,
/area/shiva/interior/caves/cp_camp)
"jmq" = (
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/central)
"jmt" = (
/obj/structure/largecrate/random/case/double,
@@ -14265,43 +12202,29 @@
"jny" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"jnW" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/medseceng)
"joh" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/northeast,
/area/shiva/interior/colony/botany)
"jop" = (
/obj/structure/machinery/computer/prisoner,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northwest,
/area/shiva/interior/colony/medseceng)
"joF" = (
/obj/structure/platform_decoration/strata,
/turf/open/auto_turf/ice/layer0,
/area/shiva/interior/caves/s_lz2)
"joP" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/deck)
"jph" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
@@ -14334,22 +12257,16 @@
/obj/structure/closet/firecloset,
/obj/item/explosive/grenade/high_explosive/pmc,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/research_hab)
"jqY" = (
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"jrg" = (
/turf/closed/wall/shiva/ice,
/area/shiva/interior/caves/research_caves)
"jru" = (
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/n_admin)
"jrR" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -14364,10 +12281,7 @@
/area/shiva/interior/colony/central)
"jsA" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southwest,
/area/shiva/interior/colony/central)
"jtp" = (
/obj/structure/prop/invuln/ice_prefab,
@@ -14401,17 +12315,13 @@
pixel_y = 28
},
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"jwk" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"jwm" = (
/obj/structure/flora/bush/snow{
@@ -14425,10 +12335,7 @@
/area/shiva/exterior/valley)
"jxJ" = (
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/shiva/interior/colony/medseceng)
"jzs" = (
/obj/structure/largecrate/random/mini/wooden{
@@ -14438,9 +12345,7 @@
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/warehouse/caves)
"jAg" = (
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/shiva/exterior/cp_lz2)
"jAu" = (
/obj/structure/largecrate/random/barrel/green,
@@ -14449,9 +12354,7 @@
"jAv" = (
/obj/structure/bed,
/obj/item/bedsheet/orange,
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"jAL" = (
/turf/open/auto_turf/snow/layer1,
@@ -14460,33 +12363,23 @@
/turf/closed/wall/shiva/prefabricated,
/area/shiva/interior/valley_huts/disposals)
"jBp" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/n_admin)
"jBu" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"jBN" = (
/obj/structure/machinery/landinglight/ds2{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"jCe" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/botany)
"jCk" = (
/obj/item/lightstick/variant/planted,
@@ -14512,9 +12405,7 @@
pixel_y = 6
},
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"jDv" = (
/obj/structure/ice/thin/single{
@@ -14526,17 +12417,13 @@
/area/shiva/exterior/valley)
"jDB" = (
/obj/item/shard,
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"jEa" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"jEc" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -14572,9 +12459,7 @@
/area/shiva/exterior/junkyard)
"jGZ" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"jHg" = (
/obj/structure/platform/strata{
@@ -14584,15 +12469,10 @@
/area/shiva/interior/caves/cp_camp)
"jIF" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southwest,
/area/shiva/interior/colony/botany)
"jIK" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/n_admin)
"jIP" = (
/obj/structure/platform/strata{
@@ -14602,10 +12482,7 @@
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/oob/dev_room)
"jIR" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/s_admin)
"jJf" = (
/obj/item/lightstick/red/spoke/planted{
@@ -14647,16 +12524,12 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"jLn" = (
/obj/structure/closet/secure_closet/engineering_welding,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/telecomm/lz1_biceps)
"jLx" = (
/obj/item/tool/pickaxe,
@@ -14673,24 +12546,17 @@
/area/shiva/exterior/junkyard)
"jMD" = (
/obj/structure/foamed_metal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"jMZ" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/shiva/interior/colony/central)
"jNr" = (
/obj/structure/machinery/colony_floodlight,
/turf/open/auto_turf/snow/layer2,
/area/shiva/interior/caves/cp_camp)
"jOi" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/caves/cp_camp)
"jOv" = (
/obj/structure/surface/rack,
@@ -14703,9 +12569,7 @@
/obj/item/weapon/gun/smg/pps43,
/obj/item/ammo_magazine/smg/pps43,
/obj/item/ammo_magazine/smg/pps43,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"jOP" = (
/obj/effect/decal/warning_stripes{
@@ -14718,10 +12582,7 @@
/turf/open/auto_turf/snow/layer0,
/area/shiva/exterior/junkyard)
"jPj" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"jPo" = (
/obj/structure/platform/strata{
@@ -14800,9 +12661,7 @@
/obj/structure/barricade/metal{
layer = 3
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"jTT" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
@@ -14820,19 +12679,14 @@
"jUj" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"jVi" = (
/obj/effect/decal/cleanable/blood/drip,
/turf/open/auto_turf/snow/layer2,
/area/shiva/interior/caves/cp_camp)
"jVp" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/deck)
"jVx" = (
/obj/structure/girder/reinforced,
@@ -14860,10 +12714,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/aux_power)
"jXD" = (
/obj/structure/flora/tree/dead/tree_4,
@@ -14874,9 +12725,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"jYO" = (
/obj/item/lightstick/red/spoke/planted{
@@ -14888,17 +12737,13 @@
/area/shiva/exterior/cp_colony_grounds)
"jZF" = (
/obj/item/tool/wirecutters/clippers,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"kap" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"kaC" = (
/turf/closed/wall/shiva/ice,
@@ -14907,10 +12752,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"kaT" = (
/obj/structure/surface/table/woodentable{
@@ -14918,17 +12760,12 @@
flipped = 1
},
/obj/structure/machinery/computer/objective,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"kbf" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/southwest,
/area/shiva/interior/colony/medseceng)
"kbl" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -14936,18 +12773,14 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"kbJ" = (
/obj/structure/machinery/light/double{
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"kbK" = (
/obj/item/reagent_container/glass/bucket{
@@ -14974,17 +12807,13 @@
pixel_x = -8;
pixel_y = 4
},
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"kce" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/metal/medium_stack,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/medseceng)
"kch" = (
/obj/structure/surface/rack,
@@ -14996,32 +12825,23 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"kdd" = (
/obj/effect/landmark/nightmare{
insert_tag = "lz2-east-gate"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"kdy" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"kdK" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"kdR" = (
/obj/structure/surface/rack,
@@ -15033,16 +12853,11 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/n_admin)
"kdW" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/medseceng)
"kec" = (
/obj/structure/window/reinforced/tinted{
@@ -15053,9 +12868,7 @@
/obj/item/clipboard,
/obj/item/tool/stamp,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"kee" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
@@ -15126,9 +12939,7 @@
/area/shiva/interior/colony/botany)
"kiv" = (
/obj/structure/machinery/landinglight/ds2,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"kiB" = (
/obj/structure/machinery/alarm{
@@ -15151,15 +12962,11 @@
dir = 8
},
/obj/structure/barricade/handrail/strata,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/deck)
"kjt" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"kjM" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -15189,9 +12996,7 @@
/area/shiva/interior/caves/right_spiders)
"klP" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts)
"kmM" = (
/obj/structure/flora/bush/snow{
@@ -15244,9 +13049,7 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/junkyard/cp_bar)
"kqs" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/shiva/interior/colony/central)
"kqH" = (
/obj/structure/machinery/firealarm{
@@ -15255,9 +13058,7 @@
},
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"kri" = (
/obj/item/lightstick/red/planted,
@@ -15269,10 +13070,7 @@
/area/shiva/interior/aerodrome)
"krM" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southeast,
/area/shiva/interior/colony/botany)
"krU" = (
/obj/effect/decal/cleanable/dirt,
@@ -15288,17 +13086,12 @@
pixel_x = -32
},
/obj/structure/bed/chair,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"ksY" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/structure/bed/chair,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"ktd" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
@@ -15323,10 +13116,7 @@
/turf/open/floor/wood,
/area/shiva/interior/bar)
"kuM" = (
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/colony/deck)
"kuS" = (
/obj/structure/flora/tree/dead/tree_1,
@@ -15356,9 +13146,7 @@
/obj/item/reagent_container/food/drinks/drinkingglass{
pixel_x = 9
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"kvB" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -15384,9 +13172,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"kwf" = (
/obj/structure/largecrate/random/secure,
@@ -15394,22 +13180,14 @@
/area/shiva/exterior/junkyard)
"kxb" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/central)
"kxv" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"kxx" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/north,
/area/shiva/interior/colony/research_hab)
"kxG" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -15438,10 +13216,7 @@
/obj/structure/machinery/door/window/eastright{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/research_hab)
"kyD" = (
/turf/open/auto_turf/snow/layer0,
@@ -15455,18 +13230,14 @@
/obj/item/clipboard,
/obj/item/tool/stamp,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"kzr" = (
/obj/structure/machinery/alarm{
dir = 4;
pixel_x = -24
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"kzE" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -15502,18 +13273,13 @@
"kAp" = (
/obj/item/stack/sheet/metal/small_stack,
/obj/structure/foamed_metal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"kAw" = (
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/warehouse/caves)
"kAT" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/garage)
"kBo" = (
/obj/structure/prop/ice_colony/poly_kevlon_roll{
@@ -15546,16 +13312,11 @@
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"kEh" = (
/obj/item/stack/rods,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/exterior/lz2_fortress)
"kEs" = (
/obj/effect/decal/cleanable/dirt,
@@ -15566,50 +13327,35 @@
/area/shiva/interior/bar)
"kEy" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"kEB" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/medseceng)
"kEK" = (
/obj/structure/stairs/perspective{
dir = 4;
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"kFd" = (
/obj/structure/machinery/power/terminal{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"kFJ" = (
/obj/structure/machinery/light/double{
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"kGn" = (
/obj/item/device/motiondetector/hacked,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/northwest,
/area/shiva/interior/colony/botany)
"kGz" = (
/obj/effect/landmark/static_comms/net_one,
@@ -15625,46 +13371,32 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"kHG" = (
/obj/structure/largecrate/random/mini/med,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/caves/cp_camp)
"kIq" = (
/obj/structure/bed/chair,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/n_admin)
"kIs" = (
/obj/item/storage/donut_box,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"kIH" = (
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"kJi" = (
/obj/structure/closet/crate/hydroponics,
/obj/item/reagent_container/glass/watertank,
-/turf/open/floor/shiva{
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull,
/area/shiva/interior/colony/n_admin)
"kJw" = (
/obj/item/clipboard,
@@ -15679,16 +13411,11 @@
"kJL" = (
/obj/structure/surface/table,
/obj/item/tool/stamp,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/southwest,
/area/shiva/interior/colony/medseceng)
"kJN" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"kJQ" = (
/obj/item/lightstick/red/variant,
@@ -15698,9 +13425,7 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"kLi" = (
/obj/structure/surface/rack,
@@ -15717,22 +13442,16 @@
/area/shiva/interior/warehouse)
"kLv" = (
/obj/item/tool/wirecutters/clippers,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"kLz" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"kLB" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/emails,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/aux_power)
"kLG" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -15743,9 +13462,7 @@
/turf/open/auto_turf/snow/layer1,
/area/shiva/exterior/lz1_valley)
"kMg" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/s_lz2)
"kMF" = (
/obj/item/lightstick/red/spoke/planted{
@@ -15760,23 +13477,17 @@
/obj/structure/machinery/computer/cameras{
pixel_y = 6
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"kMO" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"kNf" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"kOi" = (
/obj/structure/closet/secure_closet/medical3{
@@ -15784,9 +13495,7 @@
},
/obj/effect/spawner/random/attachment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"kOV" = (
/turf/open/auto_turf/snow/layer3,
@@ -15808,9 +13517,7 @@
"kPX" = (
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"kPZ" = (
/obj/structure/closet/bodybag,
@@ -15819,9 +13526,7 @@
"kQi" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"kQF" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -15835,10 +13540,7 @@
/area/shiva/interior/colony/medseceng)
"kQJ" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"kQW" = (
/obj/structure/barricade/handrail/wire{
@@ -15853,9 +13555,7 @@
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"kRj" = (
/obj/structure/surface/table,
@@ -15863,9 +13563,7 @@
pixel_x = -5;
pixel_y = 11
},
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"kRq" = (
/obj/item/lightstick/red/variant/planted,
@@ -15873,24 +13571,18 @@
/area/shiva/interior/caves/cp_camp)
"kRI" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"kRK" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/shiva/interior/colony/central)
"kRR" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"kRV" = (
/obj/structure/surface/table,
@@ -15899,9 +13591,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"kSh" = (
/obj/structure/flora/tree/dead/tree_6,
@@ -15924,9 +13614,7 @@
/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_queen{
pixel_y = 7
},
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"kTP" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -15949,9 +13637,7 @@
"kVA" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/weapon/twohanded/fireaxe,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"kWa" = (
/obj/structure/prop/invuln/minecart_tracks/bumper{
@@ -15969,9 +13655,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"kWK" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim,
@@ -15988,9 +13672,7 @@
pixel_x = 5;
pixel_y = 5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"kXs" = (
/obj/item/lightstick/red/spoke/planted{
@@ -16026,10 +13708,7 @@
dir = 8;
layer = 2.98
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"kZK" = (
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
@@ -16063,16 +13742,11 @@
pixel_x = 4;
pixel_y = 6
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"laK" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"laL" = (
/obj/effect/decal/warning_stripes{
@@ -16085,9 +13759,7 @@
/obj/structure/machinery/microwave{
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"lcv" = (
/obj/structure/largecrate/random/mini/chest{
@@ -16129,9 +13801,7 @@
pixel_x = -14;
pixel_y = 14
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"lfC" = (
/obj/item/tool/pickaxe,
@@ -16148,9 +13818,7 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"lgN" = (
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
@@ -16183,9 +13851,7 @@
dir = 8;
start_charge = 0
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"ljz" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -16195,33 +13861,22 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_lz2)
"ljM" = (
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/colony/deck)
"ljS" = (
/obj/structure/surface/table,
/obj/item/tool/wrench,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"lkP" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/good_item,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"lkX" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"llZ" = (
/turf/open/auto_turf/snow/layer2,
@@ -16231,16 +13886,11 @@
/turf/open/auto_turf/snow/layer0,
/area/shiva/exterior/junkyard)
"lmL" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/botany)
"lmQ" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"lnk" = (
/obj/structure/machinery/power/apc{
@@ -16248,10 +13898,7 @@
name = "telecomms relay power controller";
start_charge = 10
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/aux_power)
"lnH" = (
/obj/structure/flora/bush/snow{
@@ -16265,15 +13912,10 @@
"lnY" = (
/obj/structure/closet/secure_closet/engineering_electrical,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/telecomm/lz1_biceps)
"lod" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/west,
/area/shiva/interior/colony/botany)
"loe" = (
/obj/structure/flora/bush/snow{
@@ -16295,9 +13937,7 @@
/area/shiva/exterior/cp_lz2)
"loH" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"loX" = (
/obj/structure/flora/bush/snow{
@@ -16309,18 +13949,14 @@
/obj/structure/prop/invuln/minecart_tracks{
dir = 6
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/cp_colony_grounds)
"lpA" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox{
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"lpD" = (
/obj/effect/decal/cleanable/blood{
@@ -16338,9 +13974,7 @@
/area/shiva/exterior/junkyard)
"lpX" = (
/obj/item/tool/crowbar/red,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"lqu" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -16376,9 +14010,7 @@
name = "telecomms relay power controller";
start_charge = 0
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"lrt" = (
/obj/item/shard{
@@ -16396,9 +14028,7 @@
"lsk" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"ltA" = (
/obj/structure/surface/rack,
@@ -16414,22 +14044,16 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"lvj" = (
/obj/structure/machinery/landinglight/ds2,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"lvq" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"lvW" = (
/obj/structure/machinery/computer/cameras{
@@ -16439,9 +14063,7 @@
dir = 4
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"lwo" = (
/turf/open/auto_turf/snow/layer2,
@@ -16459,15 +14081,10 @@
pixel_y = -3
},
/obj/item/stack/catwalk,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/west,
/area/shiva/interior/colony/botany)
"lxn" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"lyh" = (
/obj/item/lightstick/red/spoke/planted{
@@ -16479,10 +14096,7 @@
/area/shiva/exterior/valley)
"lyw" = (
/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northeast,
/area/shiva/interior/colony/medseceng)
"lzQ" = (
/obj/effect/decal/warning_stripes{
@@ -16509,9 +14123,7 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"lCb" = (
/obj/item/tool/pickaxe,
@@ -16532,10 +14144,7 @@
/area/shiva/exterior/valley)
"lDv" = (
/obj/structure/machinery/computer/crew,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/southeast,
/area/shiva/interior/colony/medseceng)
"lDx" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -16546,37 +14155,27 @@
/area/shiva/interior/colony/n_admin)
"lDI" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"lEJ" = (
/obj/structure/surface/table/woodentable{
flipped = 1
},
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"lFp" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox{
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"lFP" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"lFX" = (
/obj/structure/flora/bush/snow{
@@ -16614,9 +14213,7 @@
dir = 4
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"lHl" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -16633,25 +14230,19 @@
pixel_y = -5
},
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"lHK" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool{
pixel_y = 2
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"lHX" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/bottle/holywater,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"lIa" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -16659,17 +14250,13 @@
/area/shiva/exterior/cp_s_research)
"lJh" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"lJt" = (
/obj/structure/noticeboard{
pixel_y = 32
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"lJx" = (
/obj/structure/window/framed/shiva,
@@ -16684,16 +14271,11 @@
dir = 8;
start_charge = 0
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"lKQ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greencorners"
- },
+/turf/open/floor/shiva/greencorners/west,
/area/shiva/interior/colony/botany)
"lLf" = (
/obj/item/tool/screwdriver,
@@ -16712,9 +14294,7 @@
"lNf" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/communications,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/deck)
"lNg" = (
/turf/open/auto_turf/snow/layer3,
@@ -16724,10 +14304,7 @@
pixel_y = 8
},
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"lNE" = (
/obj/structure/flora/bush/snow{
@@ -16751,44 +14328,30 @@
"lOO" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/garage)
"lOT" = (
/obj/structure/bed,
/obj/item/bedsheet/orange,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southwest,
/area/shiva/interior/colony/medseceng)
"lPh" = (
/obj/structure/surface/rack,
/obj/item/explosive/grenade/custom/metal_foam,
/obj/item/explosive/grenade/custom/metal_foam,
/obj/item/device/flashlight,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/medseceng)
"lPC" = (
/obj/structure/surface/table,
/obj/item/cell/high/empty,
/obj/structure/machinery/cell_charger,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"lQa" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/west,
/area/shiva/interior/colony/central)
"lQm" = (
/obj/structure/reagent_dispensers/water_cooler{
@@ -16811,19 +14374,14 @@
"lRI" = (
/obj/structure/largecrate/random/mini/med,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts)
"lRJ" = (
/turf/open/auto_turf/snow/layer4,
/area/shiva/interior/colony/research_hab)
"lSz" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/n_admin)
"lSU" = (
/turf/closed/wall/shiva/prefabricated/blue,
@@ -16839,48 +14397,33 @@
/obj/effect/landmark/nightmare{
insert_tag = "lz2-north"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"lTN" = (
/obj/structure/machinery/power/apc{
dir = 4;
start_charge = 0
},
-/turf/open/floor{
- dir = 4;
- icon_state = "darkbrown2"
- },
+/turf/open/floor/darkbrown2/east,
/area/shiva/interior/valley_huts/disposals)
"lUF" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/north,
/area/shiva/interior/colony/botany)
"lUQ" = (
/obj/structure/closet/toolcloset,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/garage)
"lVb" = (
/obj/structure/surface/table,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"lVf" = (
/obj/structure/surface/table,
/obj/item/trash/plate,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"lVF" = (
/obj/structure/platform/shiva/catwalk{
@@ -16892,9 +14435,7 @@
/obj/structure/barricade/handrail/strata,
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"lWC" = (
/obj/effect/decal/warning_stripes{
@@ -16918,38 +14459,25 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"lWW" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/shiva/interior/colony/central)
"lXj" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/west,
/area/shiva/interior/colony/medseceng)
"lXy" = (
/obj/structure/surface/table,
/obj/structure/machinery/computer/cameras{
pixel_y = 6
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"lXE" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/ashtray/bronze,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"lXM" = (
/obj/structure/surface/table/woodentable,
@@ -16962,9 +14490,7 @@
pixel_x = 2;
pixel_y = 16
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"lXQ" = (
/obj/structure/stairs/perspective/ice{
@@ -16979,9 +14505,7 @@
id = "nlz_shutters";
name = "\improper Bio-lab Shutters"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"lYk" = (
/obj/structure/surface/table/woodentable,
@@ -17021,9 +14545,7 @@
},
/obj/item/ammo_magazine/pistol/holdout,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"mae" = (
/obj/structure/surface/table,
@@ -17032,9 +14554,7 @@
pixel_y = 9
},
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"mah" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -17049,9 +14569,7 @@
/turf/open/floor/wood,
/area/shiva/interior/bar)
"maW" = (
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/medseceng)
"mbj" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -17071,10 +14589,7 @@
/area/shiva/interior/caves/cp_camp)
"mcw" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/research_hab)
"mcH" = (
/obj/effect/decal/warning_stripes{
@@ -17083,9 +14598,7 @@
/turf/open/floor/plating,
/area/shiva/exterior/lz1_valley)
"mdx" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"mdV" = (
/obj/structure/flora/bush/snow{
@@ -17098,9 +14611,7 @@
/obj/item/stack/sheet/mineral/phoron{
amount = 50
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"meg" = (
/obj/item/tool/wet_sign,
@@ -17113,9 +14624,7 @@
/area/shiva/exterior/lz1_valley)
"meG" = (
/obj/structure/bed/chair,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"mfa" = (
/obj/item/weapon/ice_axe,
@@ -17129,16 +14638,10 @@
/area/shiva/interior/caves/cp_camp)
"mfe" = (
/obj/item/frame/firstaid_arm_assembly,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"mfr" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/east,
/area/shiva/interior/colony/medseceng)
"mgt" = (
/obj/effect/decal/warning_stripes{
@@ -17149,9 +14652,7 @@
"mgA" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"mgL" = (
/obj/item/weapon/gun/energy/taser,
@@ -17177,9 +14678,7 @@
/area/shiva/exterior/junkyard)
"mhx" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"mhP" = (
/turf/open/floor/plating/plating_catwalk/shiva,
@@ -17193,18 +14692,12 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/interior/caves/medseceng_caves)
"miD" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/research_hab)
"miW" = (
/obj/structure/closet/secure_closet/security,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"mjV" = (
/obj/structure/largecrate/random/case/small,
@@ -17219,9 +14712,7 @@
/area/shiva/interior/caves/cp_camp)
"mkK" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"mlG" = (
/obj/structure/surface/rack,
@@ -17235,14 +14726,10 @@
/turf/open/floor/plating,
/area/shiva/exterior/lz2_fortress)
"mms" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/deck)
"mnD" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/shiva/exterior/lz2_fortress)
"mnS" = (
/obj/structure/flora/bush/snow{
@@ -17255,9 +14742,7 @@
/obj/item/reagent_container/food/snacks/bigbiteburger,
/obj/item/reagent_container/food/snacks/bigbiteburger,
/obj/structure/machinery/light/double,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"mpt" = (
/obj/effect/decal/cleanable/dirt,
@@ -17275,9 +14760,7 @@
/obj/structure/filingcabinet,
/obj/item/paper/research_notes,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"mqe" = (
/obj/structure/machinery/vending/coffee,
@@ -17285,17 +14768,13 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"mqt" = (
/obj/structure/bed/chair/comfy/blue{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/botany)
"mqD" = (
/obj/item/stack/sheet/metal,
@@ -17310,17 +14789,11 @@
/turf/open/floor/plating,
/area/shiva/interior/colony/central)
"mrY" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/lz2_habs)
"msd" = (
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southeast,
/area/shiva/interior/colony/botany)
"msu" = (
/obj/structure/closet/bodybag,
@@ -17332,10 +14805,7 @@
pixel_y = 9
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"mti" = (
/obj/structure/machinery/light/double{
@@ -17346,9 +14816,7 @@
/area/shiva/exterior/cp_lz2)
"mtA" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"mtU" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim{
@@ -17392,10 +14860,7 @@
/turf/open/auto_turf/ice/layer1,
/area/shiva/exterior/junkyard)
"mwF" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/research_hab)
"mwJ" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -17405,9 +14870,7 @@
/area/shiva/interior/caves/research_caves)
"mxn" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"mxr" = (
/obj/structure/stairs/perspective/ice{
@@ -17456,10 +14919,7 @@
/area/shiva/exterior/lz2_fortress)
"mBW" = (
/obj/item/reagent_container/glass/bucket,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/lz2_habs)
"mCe" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
@@ -17472,9 +14932,7 @@
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"mCj" = (
/turf/open/auto_turf/ice/layer0,
@@ -17486,9 +14944,7 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/junkyard)
"mCn" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/shiva/interior/aux_power)
"mCo" = (
/obj/structure/flora/bush/snow{
@@ -17501,9 +14957,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"mCG" = (
/obj/structure/platform_decoration/strata{
@@ -17533,9 +14987,7 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"mEw" = (
/obj/structure/cargo_container/wy/left,
@@ -17558,14 +15010,10 @@
"mEV" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/tool/hand_labeler,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"mFm" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"mFo" = (
/obj/structure/cargo_container/wy/right,
@@ -17576,10 +15024,7 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northeast,
/area/shiva/interior/colony/medseceng)
"mGk" = (
/obj/item/tool/shovel/snow,
@@ -17595,10 +15040,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/central)
"mGI" = (
/obj/structure/largecrate/random,
@@ -17615,9 +15057,7 @@
/obj/structure/bed/chair/comfy/blue{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"mHB" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -17642,10 +15082,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/north,
/area/shiva/interior/colony/botany)
"mIx" = (
/obj/effect/decal/cleanable/dirt,
@@ -17678,9 +15115,7 @@
/area/shiva/interior/colony/medseceng)
"mKk" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"mKr" = (
/obj/structure/window/framed/shiva,
@@ -17701,9 +15136,7 @@
/area/shiva/interior/colony/s_admin)
"mKB" = (
/obj/item/paper,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"mKD" = (
/obj/structure/machinery/cell_charger,
@@ -17722,15 +15155,11 @@
pixel_x = -2;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"mLG" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"mLT" = (
/obj/structure/machinery/alarm{
@@ -17741,10 +15170,7 @@
/area/shiva/interior/colony/medseceng)
"mMa" = (
/obj/item/packageWrap,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/research_hab)
"mMg" = (
/obj/structure/machinery/door/airlock/almayer/security/colony{
@@ -17775,15 +15201,11 @@
/area/shiva/exterior/lz1_valley)
"mNK" = (
/obj/structure/dispenser,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"mOu" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/research_hab)
"mOv" = (
/obj/structure/platform_decoration/strata{
@@ -17803,24 +15225,17 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"mQs" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/deck)
"mQL" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "darkgreen2"
- },
+/turf/open/floor/darkgreen2/northwest,
/area/shiva/interior/colony/botany)
"mRa" = (
/obj/structure/platform_decoration/shiva/catwalk{
@@ -17852,10 +15267,7 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_colony_grounds)
"mRU" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/west,
/area/shiva/interior/colony/research_hab)
"mSv" = (
/obj/item/tool/shovel/spade{
@@ -17865,15 +15277,11 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/junkyard)
"mSR" = (
-/turf/open/floor/shiva{
- icon_state = "bluecorners"
- },
+/turf/open/floor/shiva/bluecorners,
/area/shiva/interior/colony/central)
"mTK" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"mUB" = (
/obj/item/lightstick/red/spoke/planted{
@@ -17896,9 +15304,7 @@
/area/shiva/exterior/junkyard/cp_bar)
"mVl" = (
/obj/structure/prop/dam/truck,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"mVY" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -17912,17 +15318,12 @@
/area/shiva/exterior/cp_lz2)
"mWw" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"mWA" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"mWE" = (
/obj/structure/surface/table,
@@ -17931,24 +15332,17 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"mWK" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"mXq" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/n_admin)
"mXz" = (
/obj/effect/decal/warning_stripes{
@@ -17974,9 +15368,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"mYK" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -17989,10 +15381,7 @@
icon_state = "W"
},
/obj/item/ammo_magazine/rifle/m41aMK1,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"mZb" = (
/obj/item/stack/sheet/wood,
@@ -18003,10 +15392,7 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/east,
/area/shiva/interior/colony/botany)
"naN" = (
/obj/structure/airlock_assembly,
@@ -18036,9 +15422,7 @@
/area/shiva/interior/warehouse)
"ncY" = (
/obj/item/weapon/gun/flamer,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"ndb" = (
/obj/effect/decal/cleanable/dirt,
@@ -18052,9 +15436,7 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/junkyard)
"ndR" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"nej" = (
/obj/structure/machinery/door/window/brigdoor/westleft{
@@ -18083,9 +15465,7 @@
pixel_x = -4;
pixel_y = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"neZ" = (
/obj/effect/decal/warning_stripes{
@@ -18099,9 +15479,7 @@
/area/shiva/exterior/junkyard)
"nfe" = (
/obj/structure/bed/chair,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"nfg" = (
/obj/structure/surface/rack,
@@ -18115,26 +15493,18 @@
pixel_x = 6;
pixel_y = -4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"ngx" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/garage)
"ngz" = (
/obj/item/tool/wrench,
/turf/open/auto_turf/snow/layer1,
/area/shiva/interior/colony/central)
"nhl" = (
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/aux_power)
"nhB" = (
/obj/structure/surface/rack,
@@ -18146,10 +15516,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/n_admin)
"nig" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim{
@@ -18194,9 +15561,7 @@
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"nmf" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim{
@@ -18207,10 +15572,7 @@
/area/shiva/interior/caves/cp_camp)
"nmi" = (
/obj/item/weapon/twohanded/spear,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"nmt" = (
/obj/structure/machinery/power/apc{
@@ -18233,10 +15595,7 @@
"nnG" = (
/obj/structure/filingcabinet/security,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southeast,
/area/shiva/interior/colony/central)
"noa" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim{
@@ -18270,10 +15629,7 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/cp_s_research)
"nqu" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/north,
/area/shiva/interior/colony/central)
"nqK" = (
/obj/structure/platform/shiva/catwalk,
@@ -18284,9 +15640,7 @@
pixel_y = 12
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"nrr" = (
/obj/structure/surface/table,
@@ -18301,9 +15655,7 @@
/area/shiva/interior/colony/research_hab)
"nrB" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/aux_power)
"nrN" = (
/obj/structure/prop/invuln/ice_prefab/standalone,
@@ -18312,19 +15664,13 @@
"nrU" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/aux_power)
"nsI" = (
/obj/structure/surface/table,
/obj/item/paper/research_notes,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/southeast,
/area/shiva/interior/colony/medseceng)
"ntc" = (
/turf/open/auto_turf/snow/layer1,
@@ -18369,10 +15715,7 @@
/turf/open/gm/river,
/area/shiva/interior/caves/research_caves)
"nvS" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/west,
/area/shiva/exterior/cp_colony_grounds)
"nwd" = (
/obj/structure/surface/table,
@@ -18383,9 +15726,7 @@
/obj/item/storage/firstaid/rad{
pixel_y = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"nxi" = (
/obj/structure/machinery/space_heater,
@@ -18406,9 +15747,7 @@
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"nyc" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -18460,14 +15799,10 @@
/turf/open/auto_turf/snow/layer1,
/area/shiva/exterior/junkyard)
"nAY" = (
-/turf/open/floor/shiva{
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners,
/area/shiva/interior/colony/medseceng)
"nBh" = (
-/turf/open/floor/shiva{
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners,
/area/shiva/interior/colony/research_hab)
"nBo" = (
/obj/structure/largecrate/random,
@@ -18487,26 +15822,19 @@
pixel_x = -5;
pixel_y = -2
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"nBB" = (
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib6"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"nCo" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/shiva/interior/colony/central)
"nCx" = (
/obj/structure/closet/coffin,
@@ -18526,10 +15854,7 @@
/area/shiva/interior/warehouse/caves)
"nED" = (
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/aux_power)
"nEQ" = (
/obj/structure/inflatable,
@@ -18543,32 +15868,24 @@
/area/shiva/interior/caves/cp_camp)
"nEZ" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"nFg" = (
/obj/item/stool{
pixel_x = 4;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/exterior/cp_lz2)
"nFB" = (
/obj/structure/machinery/vending/hydronutrients,
-/turf/open/floor/shiva{
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull,
/area/shiva/interior/colony/n_admin)
"nGv" = (
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"nGT" = (
/obj/structure/flora/grass/tallgrass/ice,
@@ -18579,19 +15896,14 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"nHt" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/colony/medseceng)
"nHH" = (
/obj/structure/surface/table,
@@ -18611,10 +15923,7 @@
/obj/structure/surface/table,
/obj/item/device/taperecorder,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"nIN" = (
/obj/effect/decal/cleanable/blood{
@@ -18624,9 +15933,7 @@
/area/shiva/interior/bar)
"nJu" = (
/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/garage)
"nKc" = (
/obj/structure/machinery/door/airlock/almayer/medical/colony{
@@ -18647,15 +15954,11 @@
/area/shiva/interior/caves/cp_camp)
"nKO" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/colony/botany)
"nLn" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"nMk" = (
/obj/structure/surface/table,
@@ -18666,9 +15969,7 @@
/area/shiva/interior/colony/research_hab)
"nMP" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"nMR" = (
/obj/structure/platform_decoration/strata{
@@ -18695,28 +15996,20 @@
/turf/open/auto_turf/ice/layer1,
/area/shiva/exterior/lz2_fortress)
"nNj" = (
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/colony/medseceng)
"nNN" = (
/obj/structure/bed/chair/comfy/black{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"nNX" = (
/obj/structure/machinery/power/apc{
dir = 1;
start_charge = 0
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/warehouse/caves)
"nOd" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
@@ -18729,10 +16022,7 @@
/area/shiva/exterior/cp_colony_grounds)
"nOB" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"nOK" = (
/obj/structure/platform/strata{
@@ -18755,9 +16045,7 @@
pixel_y = 6
},
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"nPW" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -18776,9 +16064,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/clipboard,
/obj/item/tool/stamp,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"nRD" = (
/obj/structure/stairs/perspective/ice{
@@ -18792,9 +16078,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"nSO" = (
/turf/open/auto_turf/ice/layer1,
@@ -18807,15 +16091,10 @@
/obj/structure/surface/table,
/obj/item/device/encryptionkey,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/telecomm/lz1_biceps)
"nTC" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/aux_power)
"nUa" = (
/obj/structure/bed/chair{
@@ -18837,10 +16116,7 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/east,
/area/shiva/interior/colony/botany)
"nUq" = (
/obj/item/lightstick/variant/planted,
@@ -18849,10 +16125,7 @@
"nVn" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"nVL" = (
/obj/structure/surface/table/reinforced/prison,
@@ -18867,17 +16140,13 @@
/obj/item/storage/box/donkpockets{
pixel_y = 3
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"nVM" = (
/obj/structure/bed/chair/comfy/orange{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"nWI" = (
/obj/structure/flora/bush/snow{
@@ -18889,9 +16158,7 @@
/obj/structure/machinery/power/smes/buildable{
name = "backup power SMES"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"nZA" = (
/turf/open/auto_turf/ice/layer0,
@@ -18906,33 +16173,23 @@
"nZM" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"oag" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"oah" = (
/obj/structure/machinery/medical_pod/bodyscanner,
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"oaH" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"oaI" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/bar)
"oaO" = (
/obj/item/stack/cable_coil/random,
@@ -18987,10 +16244,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/west,
/area/shiva/interior/colony/medseceng)
"odg" = (
/obj/item/tool/weldingtool,
@@ -19001,9 +16255,7 @@
/area/shiva/interior/lz2_habs)
"oeQ" = (
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/shiva/interior/colony/botany)
"ofl" = (
/obj/structure/platform/strata{
@@ -19017,22 +16269,15 @@
"ofK" = (
/obj/structure/closet/secure_closet/security,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"ofU" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/medseceng)
"ogd" = (
/obj/structure/machinery/chem_master/condimaster,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"ogu" = (
/obj/structure/machinery/door/airlock/almayer/generic/autoname{
@@ -19051,10 +16296,7 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_lz2)
"ohb" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/garage)
"ohd" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -19064,9 +16306,7 @@
/area/shiva/interior/caves/cp_camp)
"ohq" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"ohE" = (
/obj/item/clipboard,
@@ -19114,28 +16354,19 @@
layer = 3
},
/obj/effect/landmark/corpsespawner/doctor,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"okM" = (
/obj/item/frame/toolbox_tiles,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"olI" = (
/obj/item/device/pinpointer,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"omu" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"onc" = (
/obj/structure/girder/displaced,
@@ -19150,9 +16381,7 @@
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"ood" = (
/turf/open/auto_turf/ice/layer0,
@@ -19167,9 +16396,7 @@
/area/shiva/interior/colony/central)
"opM" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"oqf" = (
/obj/structure/flora/tree/dead/tree_3,
@@ -19177,9 +16404,7 @@
/area/shiva/exterior/lz1_valley)
"oqt" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"oqy" = (
/obj/effect/decal/warning_stripes{
@@ -19201,10 +16426,7 @@
/obj/structure/bed/chair/comfy/black{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"oqX" = (
/obj/item/reagent_container/glass/bucket{
@@ -19218,9 +16440,7 @@
dir = 2;
name = "Underground Morgue"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"ork" = (
/obj/structure/flora/tree/dead/tree_1,
@@ -19232,15 +16452,10 @@
/area/shiva/interior/colony/research_hab)
"orO" = (
/obj/structure/desertdam/decals/road_stop,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"osh" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"osE" = (
/turf/open/auto_turf/ice/layer2,
@@ -19254,37 +16469,27 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/research_hab)
"otA" = (
/obj/structure/machinery/computer/cameras/wooden_tv{
pixel_y = 7
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"otJ" = (
/obj/effect/decal/cleanable/blood,
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/junkyard)
"otL" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greencorners"
- },
+/turf/open/floor/shiva/greencorners/west,
/area/shiva/interior/colony/botany)
"otV" = (
/obj/vehicle/powerloader/jd{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"ouS" = (
/obj/item/lightstick/red/spoke/planted{
@@ -19298,10 +16503,7 @@
/area/shiva/interior/colony/medseceng)
"ovh" = (
/obj/item/stack/barbed_wire,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/west,
/area/shiva/interior/colony/botany)
"ovI" = (
/obj/structure/largecrate/random/mini/med,
@@ -19321,10 +16523,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/southwest,
/area/shiva/interior/colony/medseceng)
"oww" = (
/obj/item/frame/rack,
@@ -19334,9 +16533,7 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"owB" = (
/obj/structure/platform/shiva/catwalk{
@@ -19346,9 +16543,7 @@
/area/shiva/exterior/cp_colony_grounds)
"owD" = (
/obj/structure/filingcabinet,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"owW" = (
/obj/structure/barricade/snow{
@@ -19369,9 +16564,7 @@
dir = 1;
start_charge = 0
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"oyw" = (
/obj/structure/platform_decoration/strata,
@@ -19392,9 +16585,7 @@
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"oCG" = (
/turf/open/floor/plating/plating_catwalk/shiva,
@@ -19417,16 +16608,10 @@
/area/shiva/exterior/cp_lz2)
"oDJ" = (
/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southeast,
/area/shiva/interior/garage)
"oDM" = (
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/garage)
"oDQ" = (
/obj/structure/flora/grass/tallgrass/ice/corner,
@@ -19442,9 +16627,7 @@
/area/shiva/interior/colony/s_admin)
"oET" = (
/obj/item/weapon/baseballbat/metal,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"oEU" = (
/obj/item/lightstick/red/spoke/planted{
@@ -19463,22 +16646,14 @@
/area/shiva/interior/warehouse/caves)
"oFG" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northeast,
/area/shiva/interior/colony/medseceng)
"oFX" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wredcorners"
- },
+/turf/open/floor/shiva/wredcorners/west,
/area/shiva/interior/colony/medseceng)
"oGb" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"oGg" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -19490,10 +16665,7 @@
/area/shiva/exterior/cp_s_research)
"oHz" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"oHE" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
@@ -19505,32 +16677,22 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/research_hab)
"oHI" = (
/obj/structure/ice/thin/single{
opacity = 1;
unacidable = 0
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"oIh" = (
/obj/item/frame/air_alarm,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"oIR" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"oJe" = (
/obj/structure/surface/table,
@@ -19539,9 +16701,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"oKc" = (
/obj/effect/decal/warning_stripes{
@@ -19567,9 +16727,7 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"oLu" = (
/obj/structure/platform/strata{
@@ -19595,9 +16753,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"oNz" = (
/obj/item/stack/rods,
@@ -19637,9 +16793,7 @@
/area/shiva/exterior/valley)
"oSU" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"oTd" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -19649,9 +16803,7 @@
/area/shiva/exterior/cp_lz2)
"oTh" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"oUu" = (
/obj/item/lightstick/red/variant/planted,
@@ -19661,10 +16813,7 @@
/obj/structure/barricade/deployable{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/warehouse)
"oWG" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber{
@@ -19675,17 +16824,13 @@
"oXf" = (
/obj/structure/closet/secure_closet/freezer/meat,
/obj/item/stack/sheet/metal/medium_stack,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"oXz" = (
/obj/structure/bed/chair/comfy/blue{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"oXM" = (
/obj/structure/machinery/space_heater,
@@ -19707,10 +16852,7 @@
/turf/open/auto_turf/snow/layer1,
/area/shiva/interior/colony/medseceng)
"oYH" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"oYX" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
@@ -19729,9 +16871,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"oZE" = (
/obj/structure/coatrack,
@@ -19739,9 +16879,7 @@
/area/shiva/interior/bar)
"oZR" = (
/obj/item/stack/cable_coil/green,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"pad" = (
/obj/structure/machinery/computer/atmos_alert{
@@ -19751,18 +16889,14 @@
/obj/structure/window/reinforced/tinted{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"paZ" = (
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"pbY" = (
/obj/effect/decal/cleanable/blood{
@@ -19778,9 +16912,7 @@
icon_state = "large";
name = "ice shard"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"pct" = (
/obj/effect/spider/stickyweb,
@@ -19826,9 +16958,7 @@
/area/shiva/interior/caves/s_lz2)
"peQ" = (
/obj/item/device/flashlight/lamp/tripod/grey,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"pff" = (
/obj/item/stack/rods,
@@ -19838,9 +16968,7 @@
/obj/structure/barricade/handrail/strata{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/deck)
"pfp" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -19862,9 +16990,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"pgu" = (
/turf/open/auto_turf/ice/layer0,
@@ -19877,9 +17003,7 @@
/area/shiva/exterior/cp_lz2)
"piW" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"pji" = (
/obj/item/paper_bin{
@@ -19892,9 +17016,7 @@
/obj/structure/prop/invuln/minecart_tracks/bumper{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/cp_colony_grounds)
"pkp" = (
/obj/structure/filingcabinet,
@@ -19903,9 +17025,7 @@
/area/shiva/interior/colony/medseceng)
"pkK" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"pkT" = (
/obj/structure/platform/strata,
@@ -19915,10 +17035,7 @@
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/central)
"plM" = (
/turf/open/auto_turf/ice/layer0,
@@ -19930,9 +17047,7 @@
"pmz" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"pmI" = (
/obj/structure/machinery/alarm{
@@ -19943,28 +17058,20 @@
pixel_x = 5;
pixel_y = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/west,
/area/shiva/interior/colony/botany)
"pnd" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"pnK" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/human/burger,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"poz" = (
/obj/structure/platform/strata{
@@ -19983,9 +17090,7 @@
/area/shiva/interior/caves/cp_camp)
"ppI" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"ppS" = (
/obj/structure/stairs/perspective{
@@ -20010,10 +17115,7 @@
dir = 1;
start_charge = 0
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/garage)
"prO" = (
/obj/structure/stairs/perspective/ice{
@@ -20030,9 +17132,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"psl" = (
/obj/structure/flora/bush/snow,
@@ -20041,9 +17141,7 @@
"pth" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"pti" = (
/obj/item/tool/weldpack{
@@ -20068,10 +17166,7 @@
/turf/open/auto_turf/snow/layer0,
/area/shiva/interior/caves/research_caves)
"ptr" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/research_hab)
"pue" = (
/obj/item/trash/cigbutt/ucigbutt{
@@ -20083,9 +17178,7 @@
/obj/structure/prop/invuln/minecart_tracks/bumper{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/s_lz2)
"puN" = (
/obj/structure/machinery/light/double{
@@ -20093,16 +17186,12 @@
pixel_y = -5
},
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"puT" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"puZ" = (
/turf/closed/wall/shiva/ice,
@@ -20111,17 +17200,12 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"pvk" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southeast,
/area/shiva/interior/colony/medseceng)
"pvv" = (
/turf/open/floor/shiva,
@@ -20144,9 +17228,7 @@
/area/shiva/interior/caves/cp_camp)
"pxi" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"pxl" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -20166,18 +17248,13 @@
icon_state = "medium";
name = "ice shard"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"pyI" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"pyK" = (
/obj/item/lightstick/red/spoke/planted{
@@ -20195,9 +17272,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"pzi" = (
/obj/item/newspaper,
@@ -20221,45 +17296,33 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"pAO" = (
/obj/structure/barricade/handrail/strata{
dir = 8
},
/obj/item/newspaper,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"pAV" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"pBl" = (
/obj/structure/machinery/landinglight/ds2/spoke,
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"pBy" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"pBL" = (
/turf/open/floor/plating/plating_catwalk/shiva,
@@ -20284,26 +17347,19 @@
/area/shiva/exterior/cp_colony_grounds)
"pCI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"pCJ" = (
/obj/item/book/manual/marine_law,
/obj/structure/surface/table/reinforced/prison,
/obj/item/restraint/handcuffs,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"pDp" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"pDr" = (
/obj/structure/fence,
@@ -20343,15 +17399,10 @@
},
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"pEs" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/deck)
"pEv" = (
/obj/structure/surface/table,
@@ -20370,9 +17421,7 @@
/area/shiva/interior/caves/s_lz2)
"pFd" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"pFg" = (
/obj/structure/platform/strata{
@@ -20381,33 +17430,21 @@
/turf/open/gm/river/no_overlay,
/area/shiva/interior/caves/cp_camp)
"pFt" = (
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"pFI" = (
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/botany)
"pFJ" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/aux_power)
"pGf" = (
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/southwest,
/area/shiva/interior/colony/medseceng)
"pGg" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"pGi" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -20434,10 +17471,7 @@
"pHz" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southwest,
/area/shiva/interior/colony/medseceng)
"pId" = (
/obj/structure/machinery/computer/cameras/telescreen{
@@ -20448,10 +17482,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"pIK" = (
/obj/structure/flora/bush/snow{
@@ -20470,9 +17501,7 @@
/area/shiva/exterior/cp_s_research)
"pJp" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"pJA" = (
/obj/structure/surface/table,
@@ -20498,9 +17527,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"pKf" = (
/obj/item/stack/cable_coil/white,
@@ -20531,10 +17558,7 @@
/obj/item/device/flashlight/lamp/green{
pixel_y = 7
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"pKQ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -20555,20 +17579,14 @@
pixel_y = 9
},
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"pLy" = (
/obj/structure/surface/table,
/obj/item/device/flashlight/lamp{
pixel_y = 4
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southeast,
/area/shiva/interior/colony/medseceng)
"pLS" = (
/obj/structure/surface/rack,
@@ -20579,22 +17597,15 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/deck)
"pME" = (
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"pMK" = (
/obj/structure/machinery/processor,
-/obj/structure/machinery/processor,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"pMV" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -20606,9 +17617,7 @@
/turf/open/auto_turf/snow/layer0,
/area/shiva/interior/caves/cp_camp)
"pNf" = (
-/turf/open/floor/shiva{
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners,
/area/shiva/interior/garage)
"pNo" = (
/obj/item/lightstick/red/spoke/planted{
@@ -20620,10 +17629,7 @@
/turf/open/floor/plating,
/area/shiva/exterior/lz1_valley)
"pNq" = (
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northeast,
/area/shiva/interior/colony/medseceng)
"pNs" = (
/obj/structure/flora/tree/dead/tree_2,
@@ -20637,9 +17643,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"pNy" = (
/obj/structure/closet/cabinet,
@@ -20648,26 +17652,19 @@
/area/shiva/interior/colony/botany)
"pNM" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"pOI" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/dry_ramen,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"pOM" = (
/obj/structure/machinery/power/apc{
dir = 1;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/shiva/interior/telecomm/lz1_biceps)
"pPt" = (
/obj/structure/surface/table,
@@ -20684,9 +17681,7 @@
/area/shiva/interior/caves/cp_camp)
"pQt" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"pQE" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
@@ -20710,16 +17705,12 @@
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/warehouse/caves)
"pSD" = (
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/garage)
"pSM" = (
/obj/structure/barricade/metal,
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"pTp" = (
/obj/structure/surface/rack,
@@ -20734,15 +17725,11 @@
/area/shiva/interior/warehouse)
"pTC" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"pTG" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"pUp" = (
/obj/structure/flora/tree/dead/tree_1,
@@ -20754,18 +17741,13 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull/west,
/area/shiva/interior/colony/n_admin)
"pUZ" = (
/obj/structure/barricade/metal{
health = 230
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"pVm" = (
/obj/structure/mirror{
@@ -20775,18 +17757,14 @@
dir = 8;
pixel_x = -11
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"pVo" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/s_lz2)
"pWf" = (
/turf/closed/wall/shiva/ice,
@@ -20869,9 +17847,7 @@
"qdd" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/medseceng)
"qdh" = (
/obj/structure/platform/strata{
@@ -20893,26 +17869,18 @@
/obj/item/vehicle_clamp{
pixel_y = 2
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/central)
"qeH" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"qfe" = (
/obj/structure/machinery/computer/cameras{
dir = 8
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"qfh" = (
/obj/effect/decal/warning_stripes{
@@ -20925,10 +17893,7 @@
/area/shiva/interior/colony/central)
"qfq" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/garage)
"qfR" = (
/obj/structure/flora/grass/tallgrass/ice,
@@ -20951,15 +17916,11 @@
"qgp" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/cheesecakeslice,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"qgz" = (
/obj/item/stack/rods,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"qgP" = (
/turf/open/auto_turf/snow/layer1,
@@ -20977,9 +17938,7 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/aux_power)
"qid" = (
/obj/structure/bed,
@@ -20987,16 +17946,11 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"qiu" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"qiy" = (
/obj/structure/barricade/handrail/wire,
@@ -21009,19 +17963,14 @@
"qjZ" = (
/obj/item/stack/sheet/metal/large_stack,
/obj/structure/foamed_metal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"qkr" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/deck)
"qkt" = (
/obj/item/stack/cable_coil/cut,
@@ -21057,9 +18006,7 @@
},
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"qkT" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -21080,9 +18027,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"qmv" = (
/obj/item/stack/flag/red{
@@ -21092,9 +18037,7 @@
/area/shiva/interior/warehouse)
"qmA" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/limb,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"qng" = (
/obj/structure/machinery/light/double{
@@ -21106,9 +18049,7 @@
pixel_y = 14
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"qnu" = (
/obj/structure/machinery/light/double{
@@ -21145,10 +18086,7 @@
/turf/open/floor/plating,
/area/shiva/interior/colony/central)
"qow" = (
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northeast,
/area/shiva/interior/colony/central)
"qoU" = (
/obj/structure/flora/grass/tallgrass/ice/corner,
@@ -21162,17 +18100,12 @@
/area/shiva/interior/warehouse)
"qpq" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/colony/medseceng)
"qps" = (
/obj/structure/surface/table,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"qpu" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -21188,30 +18121,21 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/colony/medseceng)
"qpZ" = (
/obj/item/frame/table,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"qrq" = (
/obj/structure/machinery/light/double{
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"qrz" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"qrY" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
@@ -21235,9 +18159,7 @@
pixel_x = 7;
pixel_y = 14
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"que" = (
/obj/item/lightstick/red/variant/planted,
@@ -21248,10 +18170,7 @@
dir = 8;
pixel_x = 24
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"qvY" = (
/turf/open/auto_turf/snow/layer0,
@@ -21269,13 +18188,7 @@
/obj/item/clothing/head/fez{
pixel_y = 6
},
-/obj/structure/machinery/light/double{
- dir = 8;
- pixel_y = -5
- },
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"qxQ" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -21286,33 +18199,24 @@
req_access_txt = "100"
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northwest,
/area/shiva/interior/colony/medseceng)
"qyy" = (
/obj/structure/barricade/handrail/wire{
dir = 8
},
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"qyC" = (
/obj/structure/barricade/metal{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"qyE" = (
/obj/item/stool,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"qza" = (
/obj/item/device/flashlight/flare,
@@ -21328,10 +18232,7 @@
"qAL" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"qBM" = (
/obj/structure/platform/strata{
@@ -21344,10 +18245,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"qCn" = (
/turf/open/auto_turf/snow/layer1,
@@ -21368,9 +18266,7 @@
/area/shiva/interior/colony/research_hab)
"qCM" = (
/obj/structure/barricade/metal,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"qCW" = (
/obj/structure/platform/strata{
@@ -21417,10 +18313,7 @@
"qEC" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/southwest,
/area/shiva/interior/colony/medseceng)
"qEH" = (
/obj/structure/largecrate/random/case/small,
@@ -21443,9 +18336,7 @@
/area/shiva/exterior/telecomm/lz1_north)
"qGq" = (
/obj/item/frame/bucket_sensor,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"qGN" = (
/obj/structure/closet/crate/trashcart,
@@ -21456,10 +18347,7 @@
/turf/open/floor/plating/plating_catwalk/shiva,
/area/shiva/interior/warehouse)
"qII" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/exterior/cp_lz2)
"qJa" = (
/obj/structure/surface/rack,
@@ -21467,10 +18355,7 @@
/obj/item/circuitboard/airlock,
/obj/item/circuitboard/airlock,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/medseceng)
"qLA" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -21508,19 +18393,14 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_colony_grounds)
"qNn" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"qNt" = (
/obj/structure/barricade/metal{
dir = 1;
health = 210
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"qNB" = (
/obj/structure/platform/strata,
@@ -21550,10 +18430,7 @@
/turf/open/floor/carpet,
/area/shiva/interior/colony/research_hab)
"qOD" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/deck)
"qOE" = (
/obj/structure/surface/rack,
@@ -21579,9 +18456,7 @@
/area/shiva/interior/warehouse)
"qRb" = (
/obj/structure/barricade/metal/wired,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"qRl" = (
/obj/structure/platform/strata,
@@ -21594,9 +18469,7 @@
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/storage/pill_bottle/kelotane/skillless,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"qRJ" = (
/obj/structure/flora/pottedplant{
@@ -21625,9 +18498,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"qSW" = (
/obj/structure/surface/rack,
@@ -21649,16 +18520,12 @@
"qUe" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/reagent_container/food/snacks/cherrypie,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"qUw" = (
/obj/structure/foamed_metal,
/obj/item/ammo_magazine/handful/shotgun/buckshot,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"qVo" = (
/obj/structure/surface/table/reinforced/prison,
@@ -21666,18 +18533,14 @@
/turf/open/floor/plating,
/area/shiva/interior/colony/research_hab)
"qVq" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts)
"qWu" = (
/obj/structure/machinery/light/double,
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"qWL" = (
/obj/structure/surface/rack,
@@ -21691,21 +18554,15 @@
pixel_x = -13;
pixel_y = 25
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"qXk" = (
/obj/item/clipboard,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"qXm" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull,
/area/shiva/interior/colony/n_admin)
"qXx" = (
/obj/effect/decal/warning_stripes{
@@ -21724,18 +18581,13 @@
pixel_y = 6
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"qYP" = (
/turf/open/auto_turf/snow/layer1,
/area/shiva/interior/caves/s_lz2)
"qZa" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/aux_power)
"rad" = (
/obj/structure/inflatable/popped,
@@ -21764,15 +18616,10 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/clipboard,
/obj/item/tool/stamp,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"rbq" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/caves/research_caves)
"rbA" = (
/obj/effect/decal/warning_stripes{
@@ -21789,9 +18636,7 @@
dir = 8
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"rcp" = (
/obj/item/storage/toolbox/mechanical/green,
@@ -21829,17 +18674,12 @@
/obj/structure/machinery/door/window/eastright{
name = "Security Desk"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"reV" = (
/obj/structure/surface/table,
/obj/item/weapon/gun/revolver/cmb,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/lz2_habs)
"rfc" = (
/obj/structure/surface/table,
@@ -21849,10 +18689,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"rfd" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -21873,10 +18710,7 @@
dir = 1;
network = list("interrogation")
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"rgy" = (
/obj/structure/flora/bush/snow{
@@ -21895,10 +18729,7 @@
/obj/item/paper/janitor{
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"rib" = (
/obj/structure/ice/thin/single{
@@ -21910,9 +18741,7 @@
/area/shiva/exterior/valley)
"ril" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"riV" = (
/obj/item/tool/pickaxe,
@@ -21920,17 +18749,11 @@
/area/shiva/exterior/lz1_valley)
"rjw" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northeast,
/area/shiva/interior/colony/medseceng)
"rjQ" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/colony/medseceng)
"rkc" = (
/obj/structure/surface/table/reinforced/prison,
@@ -21952,10 +18775,7 @@
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/plating/icefloor{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northwest,
/area/shiva/exterior/junkyard/fortbiceps)
"rld" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -21972,9 +18792,7 @@
/area/shiva/exterior/junkyard)
"rnz" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/shiva/interior/colony/central)
"rnB" = (
/obj/structure/platform_decoration/shiva/catwalk{
@@ -21992,9 +18810,7 @@
/area/shiva/interior/caves/cp_camp)
"rpv" = (
/obj/item/stack/rods,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"rpE" = (
/obj/structure/ice/thin/single{
@@ -22011,10 +18827,7 @@
pixel_y = -5
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"rqK" = (
/obj/structure/desertdam/decals/road_stop{
@@ -22033,9 +18846,7 @@
"rsa" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"rti" = (
/obj/structure/surface/table,
@@ -22052,10 +18863,7 @@
"rtv" = (
/obj/structure/surface/table,
/obj/item/storage/box/trackimp,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southeast,
/area/shiva/interior/colony/medseceng)
"rtZ" = (
/obj/item/lightstick/red/variant/planted,
@@ -22063,10 +18871,7 @@
/area/shiva/exterior/junkyard)
"rwQ" = (
/obj/structure/bedsheetbin,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/botany)
"rxd" = (
/obj/structure/bed/chair,
@@ -22084,26 +18889,19 @@
pixel_x = 6;
pixel_y = 12
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"ryI" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"ryZ" = (
/obj/structure/surface/table,
/obj/item/tool/pickaxe/plasmacutter,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/aux_power)
"rzw" = (
/obj/structure/platform_decoration/strata,
@@ -22111,18 +18909,12 @@
/area/shiva/interior/caves/cp_camp)
"rzz" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southeast,
/area/shiva/interior/colony/botany)
"rzI" = (
/obj/structure/surface/table,
/obj/item/stack/medical/ointment,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"rzR" = (
/obj/structure/surface/table/reinforced/prison,
@@ -22133,19 +18925,14 @@
/obj/item/storage/belt/utility/full{
pixel_y = 14
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"rAm" = (
/obj/item/lightstick/red/spoke/planted{
pixel_x = 12;
pixel_y = 25
},
-/turf/open/floor/plating/icefloor{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/northeast,
/area/shiva/exterior/junkyard/fortbiceps)
"rAq" = (
/obj/structure/bed/chair/office/light{
@@ -22155,10 +18942,7 @@
/area/shiva/interior/colony/s_admin)
"rAF" = (
/obj/structure/barricade/handrail/strata,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/deck)
"rAH" = (
/turf/open/auto_turf/snow/layer2,
@@ -22174,17 +18958,12 @@
/area/shiva/interior/warehouse/caves)
"rBr" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/bar)
"rBy" = (
/obj/structure/window/reinforced/tinted/frosted,
/obj/structure/closet/secure_closet/personal/patient,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"rBC" = (
/obj/effect/spawner/random/toolbox,
@@ -22199,10 +18978,7 @@
/turf/open/auto_turf/snow/layer1,
/area/shiva/interior/colony/central)
"rDn" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/west,
/area/shiva/interior/colony/deck)
"rEd" = (
/obj/structure/flora/bush/snow{
@@ -22227,24 +19003,18 @@
/obj/structure/machinery/colony_floodlight{
pixel_y = 10
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/cp_colony_grounds)
"rFA" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"rFB" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim,
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/caves/cp_camp)
"rGg" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"rHO" = (
/obj/structure/largecrate/random,
@@ -22252,9 +19022,7 @@
/area/shiva/interior/colony/research_hab)
"rIj" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"rJI" = (
/obj/structure/platform/strata{
@@ -22269,9 +19037,7 @@
/obj/structure/machinery/door/poddoor/shutters/almayer{
name = "\improper Panic Room Shutters"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"rKq" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -22279,9 +19045,7 @@
/area/shiva/exterior/cp_s_research)
"rKW" = (
/obj/structure/machinery/computer3/powermonitor,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"rLu" = (
/obj/structure/platform/strata{
@@ -22294,9 +19058,7 @@
/obj/structure/machinery/computer/cameras{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"rMb" = (
/obj/item/lightstick/red/spoke/planted{
@@ -22311,24 +19073,16 @@
/area/shiva/exterior/valley)
"rMc" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/medseceng)
"rMe" = (
/obj/structure/surface/table,
/obj/item/restraint/handcuffs,
/obj/item/tool/stamp,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"rMI" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"rNx" = (
/obj/structure/bed/chair/dropship/passenger{
@@ -22358,10 +19112,7 @@
/turf/open/auto_turf/snow/layer0,
/area/shiva/interior/colony/botany)
"rOv" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/exterior/lz2_fortress)
"rOG" = (
/obj/structure/machinery/door/airlock/almayer/medical/colony{
@@ -22388,27 +19139,20 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/botany)
"rRp" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/clipboard,
/obj/item/tool/stamp,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"rRO" = (
/obj/structure/machinery/light/double,
/obj/structure/closet/secure_closet/personal,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"rRP" = (
/obj/structure/closet/crate,
@@ -22420,26 +19164,18 @@
/area/shiva/exterior/cp_s_research)
"rSr" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/aux_power)
"rSL" = (
/obj/item/weapon/gun/boltaction{
pixel_x = -6
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"rTk" = (
/obj/item/storage/box/bodybags,
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southwest,
/area/shiva/interior/colony/medseceng)
"rTG" = (
/obj/item/stack/sheet/wood,
@@ -22447,10 +19183,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/bar)
"rUD" = (
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{
@@ -22469,10 +19202,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/aux_power)
"rUW" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -22480,27 +19210,20 @@
/area/shiva/interior/caves/cp_camp)
"rVF" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"rVK" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
/obj/structure/bed/chair,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"rVM" = (
/obj/structure/cable/heavyduty{
icon_state = "1-2-4"
},
-/turf/open/floor/plating/icefloor{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/west,
/area/shiva/exterior/junkyard/fortbiceps)
"rWj" = (
/obj/effect/landmark/static_comms/net_two,
@@ -22520,10 +19243,7 @@
/area/shiva/exterior/cp_colony_grounds)
"rWS" = (
/obj/item/ammo_magazine/rifle/ap,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/research_hab)
"rWW" = (
/obj/item/lightstick/red/spoke/planted{
@@ -22539,9 +19259,7 @@
/area/shiva/interior/aerodrome)
"rXp" = (
/obj/structure/machinery/landinglight/ds2/delayone,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"rXt" = (
/obj/structure/cable/heavyduty{
@@ -22562,10 +19280,7 @@
/obj/structure/machinery/computer/station_alert{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southeast,
/area/shiva/interior/aux_power)
"rZq" = (
/obj/structure/surface/table/reinforced/prison{
@@ -22584,20 +19299,14 @@
/turf/open/floor/wood,
/area/shiva/interior/colony/botany)
"rZD" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/west,
/area/shiva/interior/colony/botany)
"rZH" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/research_hab)
"rZP" = (
/obj/structure/machinery/optable,
@@ -22610,19 +19319,14 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northwest,
/area/shiva/interior/colony/medseceng)
"san" = (
/obj/structure/machinery/power/apc{
dir = 8;
start_charge = 0
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"sax" = (
/turf/closed/wall/shiva/ice,
@@ -22636,9 +19340,7 @@
/area/shiva/interior/caves/cp_camp)
"sbd" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"sbj" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -22658,10 +19360,7 @@
/obj/structure/surface/table,
/obj/item/device/assembly/infra,
/obj/item/device/assembly/voice,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/colony/medseceng)
"sdF" = (
/obj/structure/surface/table,
@@ -22672,23 +19371,17 @@
/obj/item/reagent_container/food/snacks/grown/goldapple{
pixel_y = 4
},
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"sdG" = (
/obj/structure/machinery/message_server,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"sef" = (
/obj/structure/barricade/handrail/wire{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"sev" = (
/obj/structure/flora/tree/dead/tree_3,
@@ -22749,10 +19442,7 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_18"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/research_hab)
"shP" = (
/obj/structure/barricade/metal{
@@ -22761,9 +19451,7 @@
/obj/structure/barricade/metal{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"siD" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -22784,10 +19472,7 @@
/turf/open/floor/interior/plastic,
/area/shiva/interior/warehouse)
"sjo" = (
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/northwest,
/area/shiva/interior/colony/botany)
"skl" = (
/obj/effect/decal/cleanable/dirt,
@@ -22808,14 +19493,10 @@
/area/shiva/exterior/junkyard/cp_bar)
"skG" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"slj" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"slC" = (
/obj/structure/surface/rack,
@@ -22826,9 +19507,7 @@
/obj/item/weapon/ice_axe/red{
pixel_y = -4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/caves/s_lz2)
"slO" = (
/turf/open/auto_turf/ice/layer1,
@@ -22840,17 +19519,11 @@
"smy" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/tool,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/garage)
"smI" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/research_hab)
"snN" = (
/obj/structure/flora/tree/dead/tree_1,
@@ -22858,9 +19531,7 @@
/area/shiva/exterior/lz1_valley)
"snX" = (
/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"sod" = (
/turf/open/auto_turf/snow/layer1,
@@ -22869,16 +19540,11 @@
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"soE" = (
/obj/structure/machinery/vending/sovietsoda,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"spo" = (
/obj/structure/flora/bush/snow{
@@ -22889,9 +19555,7 @@
"sqy" = (
/obj/item/wrapping_paper,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/deck)
"srJ" = (
/obj/structure/stairs/perspective/ice{
@@ -22910,9 +19574,7 @@
/turf/open/auto_turf/snow/layer4,
/area/shiva/exterior/cp_lz2)
"stN" = (
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"stT" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim{
@@ -22945,9 +19607,7 @@
dir = 8;
pixel_x = -24
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"swV" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -22965,28 +19625,19 @@
/area/shiva/exterior/cp_colony_grounds)
"sxb" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"sxm" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"sxp" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northeast,
/area/shiva/interior/colony/medseceng)
"sxD" = (
/obj/structure/machinery/landinglight/ds2/spoke,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"sxT" = (
/obj/structure/flora/grass/tallgrass/ice,
@@ -22995,10 +19646,7 @@
"sym" = (
/obj/structure/surface/table,
/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"syA" = (
/obj/structure/largecrate/random/case,
@@ -23017,19 +19665,14 @@
/obj/item/weapon/ice_axe/red{
pixel_y = -4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/exterior/cp_colony_grounds)
"syV" = (
/obj/structure/surface/table/reinforced,
/obj/item/stack/medical/bruise_pack,
/obj/item/cell,
/obj/item/clothing/gloves/yellow,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"szU" = (
/obj/structure/prop/ice_colony/flamingo/festive{
@@ -23042,9 +19685,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"sAM" = (
/obj/structure/largecrate/random/barrel/blue,
@@ -23052,9 +19693,7 @@
/area/shiva/exterior/junkyard)
"sBh" = (
/obj/structure/barricade/handrail/wire,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"sBH" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -23067,9 +19706,7 @@
/obj/structure/prop/ice_colony/ice_crystal{
dir = 5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"sBT" = (
/obj/structure/flora/bush/snow,
@@ -23077,18 +19714,14 @@
/area/shiva/exterior/cp_lz2)
"sBW" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"sCc" = (
/obj/structure/machinery/light/double{
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/n_admin)
"sCi" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -23117,9 +19750,7 @@
pixel_x = -7;
pixel_y = 7
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"sDd" = (
/obj/item/lightstick/planted,
@@ -23155,26 +19786,19 @@
/obj/structure/closet,
/obj/item/newspaper,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"sGs" = (
/obj/structure/surface/table,
/obj/item/paper/research_notes,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"sGI" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/item/clothing/head/cakehat,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"sGR" = (
/obj/item/lightstick/red/spoke/planted{
@@ -23183,29 +19807,19 @@
/obj/structure/cable/heavyduty{
icon_state = "1-2"
},
-/turf/open/floor/plating/icefloor{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southwest,
/area/shiva/exterior/junkyard/fortbiceps)
"sHc" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"sHf" = (
/obj/item/paper/research_notes/grant,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/research_hab)
"sHL" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"sII" = (
/obj/structure/closet/coffin,
@@ -23214,9 +19828,7 @@
health = 80
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"sIP" = (
/obj/item/shard{
@@ -23237,9 +19849,7 @@
"sJs" = (
/obj/item/stack/sheet/metal/medium_stack,
/obj/structure/foamed_metal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"sJD" = (
/obj/structure/window/framed/colony/reinforced,
@@ -23253,17 +19863,13 @@
/obj/structure/window/reinforced/tinted{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"sKa" = (
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"sKf" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -23285,10 +19891,7 @@
/obj/item/lightstick/red/spoke/planted{
pixel_x = 12
},
-/turf/open/floor/plating/icefloor{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/southeast,
/area/shiva/exterior/junkyard/fortbiceps)
"sKO" = (
/obj/item/reagent_container/food/drinks/cans/ale{
@@ -23312,9 +19915,7 @@
/area/shiva/exterior/cp_colony_grounds)
"sLV" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/shiva/interior/colony/botany)
"sNi" = (
/obj/structure/stairs/perspective{
@@ -23329,25 +19930,18 @@
"sNZ" = (
/obj/structure/surface/table,
/obj/item/tool/kitchen/utensil/knife,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"sOg" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/colony/medseceng)
"sPn" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox{
pixel_y = 2
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"sPo" = (
/obj/structure/barricade/handrail/wire{
@@ -23364,9 +19958,7 @@
/obj/structure/window/reinforced/tinted{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"sPM" = (
/obj/structure/barricade/snow{
@@ -23377,16 +19969,11 @@
"sQt" = (
/obj/structure/closet/wardrobe/chaplain_black,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/shiva/interior/colony/central)
"sQU" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"sQX" = (
/turf/open/auto_turf/ice/layer0,
@@ -23417,16 +20004,11 @@
/area/shiva/interior/caves/s_lz2)
"sVV" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southwest,
/area/shiva/interior/colony/botany)
"sWt" = (
/obj/item/stack/rods,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"sXr" = (
/obj/structure/surface/table/reinforced/prison,
@@ -23434,9 +20016,7 @@
pixel_y = 7
},
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/deck)
"sXt" = (
/obj/structure/machinery/light/double,
@@ -23447,17 +20027,13 @@
pixel_x = 8;
pixel_y = -3
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"sXP" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"sXZ" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -23494,9 +20070,7 @@
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"tad" = (
/obj/structure/platform/strata{
@@ -23514,9 +20088,7 @@
/obj/item/tool/kitchen/rollingpin,
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"tbR" = (
/obj/structure/surface/table,
@@ -23532,17 +20104,11 @@
/area/shiva/exterior/lz1_valley)
"tcG" = (
/obj/item/weapon/gun/pistol/highpower,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"tcI" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northeast,
/area/shiva/interior/colony/medseceng)
"tcR" = (
/obj/structure/largecrate/random/barrel/yellow,
@@ -23559,9 +20125,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"tdG" = (
/obj/structure/platform_decoration/strata{
@@ -23582,10 +20146,7 @@
/area/shiva/interior/colony/n_admin)
"tef" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"tes" = (
/obj/structure/platform/strata,
@@ -23610,10 +20171,7 @@
/area/shiva/exterior/junkyard/fortbiceps)
"teD" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southwest,
/area/shiva/interior/colony/botany)
"teK" = (
/obj/structure/stairs/perspective/ice{
@@ -23635,10 +20193,7 @@
/obj/item/storage/fancy/cigarettes/lucky_strikes{
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/research_hab)
"thB" = (
/obj/structure/window/reinforced/tinted{
@@ -23650,15 +20205,11 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"tiw" = (
/obj/structure/machinery/light,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/research_hab)
"tiO" = (
/obj/structure/fence,
@@ -23670,9 +20221,7 @@
"tkb" = (
/obj/structure/surface/table,
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"tkm" = (
/obj/structure/largecrate/random/case,
@@ -23703,10 +20252,7 @@
/area/shiva/interior/caves/cp_camp)
"tlX" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"tmh" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -23714,18 +20260,14 @@
/area/shiva/interior/bar)
"tmi" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"tmI" = (
/obj/structure/machinery/firealarm{
dir = 1;
pixel_y = -24
},
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/central)
"tmP" = (
/obj/structure/largecrate/random/case/double,
@@ -23740,10 +20282,7 @@
/turf/open/auto_turf/snow/layer0,
/area/shiva/exterior/junkyard)
"tnh" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/north,
/area/shiva/interior/colony/n_admin)
"tnu" = (
/turf/closed/wall/shiva/prefabricated,
@@ -23751,9 +20290,7 @@
"tnz" = (
/obj/effect/decal/cleanable/blood,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"tnG" = (
/obj/structure/inflatable,
@@ -23770,9 +20307,7 @@
pixel_y = 8
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"tnU" = (
/obj/structure/machinery/power/apc{
@@ -23791,10 +20326,7 @@
/turf/open/auto_turf/snow/layer1,
/area/shiva/interior/caves/cp_camp)
"toA" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/garage)
"toD" = (
/turf/open/auto_turf/ice/layer1,
@@ -23807,10 +20339,7 @@
/area/shiva/exterior/cp_colony_grounds)
"toN" = (
/obj/item/tool/warning_cone,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"toO" = (
/obj/item/stack/rods,
@@ -23827,10 +20356,7 @@
icon_state = "road_edge_decal5";
pixel_x = -14
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"tqs" = (
/obj/structure/prop/ice_colony/dense/ice_tray{
@@ -23840,16 +20366,11 @@
dir = 5;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/research_hab)
"tqL" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"trj" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -23878,9 +20399,7 @@
pixel_x = 3;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"tsU" = (
/obj/structure/machinery/light/double,
@@ -23890,9 +20409,7 @@
/obj/structure/prop/invuln/minecart_tracks{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/cp_colony_grounds)
"ttN" = (
/obj/structure/machinery/sensortower{
@@ -23920,25 +20437,18 @@
/area/shiva/exterior/junkyard/cp_bar)
"tvo" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"twc" = (
/obj/item/paper/research_notes/decent,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"twi" = (
/obj/structure/girder,
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/colony/research_hab)
"twt" = (
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/colony/research_hab)
"twD" = (
/obj/structure/machinery/iv_drip,
@@ -23946,42 +20456,26 @@
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"twG" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/east,
/area/shiva/interior/colony/central)
"txA" = (
/obj/structure/filingcabinet/security,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southeast,
/area/shiva/interior/colony/medseceng)
"txS" = (
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/aux_power)
"txU" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"txX" = (
/obj/structure/bed/chair/comfy/beige,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/research_hab)
"tyi" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -24002,9 +20496,7 @@
dir = 4;
pixel_y = 5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"tze" = (
/obj/item/device/flashlight/lamp/tripod/grey,
@@ -24017,16 +20509,10 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/aux_power)
"tzH" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/deck)
"tAc" = (
/obj/structure/flora/bush/ausbushes/lavendergrass{
@@ -24040,9 +20526,7 @@
/area/shiva/exterior/junkyard/cp_bar)
"tCi" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"tDb" = (
/obj/structure/platform/shiva/catwalk,
@@ -24079,9 +20563,7 @@
dir = 1;
icon_state = "sandbag_0"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"tEE" = (
/obj/structure/blocker/invisible_wall,
@@ -24131,28 +20613,21 @@
/area/shiva/interior/aerodrome)
"tGS" = (
/obj/structure/machinery/landinglight/ds2/spoke,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/botany)
"tGU" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Colony Dormitories Canteen";
req_access_txt = "100"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"tHd" = (
/turf/open/auto_turf/snow/layer1,
/area/shiva/exterior/junkyard)
"tHD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"tHJ" = (
/obj/structure/prop/ice_colony/dense/ice_tray{
@@ -24162,9 +20637,7 @@
/area/shiva/interior/caves/cp_camp)
"tIR" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/shiva/interior/colony/botany)
"tJe" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -24181,9 +20654,7 @@
/obj/structure/bed/chair/comfy/blue{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/botany)
"tJP" = (
/obj/structure/flora/tree/dead/tree_4,
@@ -24201,16 +20672,11 @@
icon_state = "road_edge_decal8";
pixel_x = -14
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"tKd" = (
/obj/structure/bed/chair/comfy/blue,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"tKg" = (
/obj/structure/flora/bush/snow{
@@ -24220,9 +20686,7 @@
/area/shiva/interior/colony/central)
"tKk" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/shiva/interior/colony/botany)
"tKv" = (
/obj/structure/largecrate/random/mini/wooden{
@@ -24239,9 +20703,7 @@
/area/shiva/exterior/telecomm/lz2_southeast)
"tLz" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"tLC" = (
/obj/item/lightstick/red/variant/planted,
@@ -24277,33 +20739,24 @@
pixel_y = 6
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/shiva/interior/colony/medseceng)
"tMY" = (
/obj/structure/machinery/light/double{
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/cp_lz2)
"tNm" = (
/obj/structure/surface/table,
/obj/item/tool/kitchen/utensil/fork,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"tNN" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/t_scanner,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"tNP" = (
/obj/structure/surface/table,
@@ -24312,9 +20765,7 @@
pixel_y = 10
},
/obj/item/storage/firstaid/adv,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"tOo" = (
/obj/effect/spider/stickyweb,
@@ -24335,9 +20786,7 @@
pixel_x = -1;
pixel_y = -4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"tPs" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -24347,9 +20796,7 @@
/area/shiva/interior/caves/cp_camp)
"tPz" = (
/obj/structure/largecrate/random,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts/no2)
"tPB" = (
/obj/structure/platform/strata,
@@ -24368,20 +20815,14 @@
dir = 1;
name = "\improper Colony Storeroom"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/shiva/interior/telecomm/lz1_biceps)
"tQK" = (
/obj/item/stack/rods,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"tQN" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/lz2_habs)
"tQR" = (
/obj/structure/bed/chair{
@@ -24391,9 +20832,7 @@
dir = 8;
start_charge = 0
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"tRq" = (
/obj/structure/filingcabinet{
@@ -24405,9 +20844,7 @@
pixel_y = 4
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"tRN" = (
/obj/structure/largecrate/random{
@@ -24430,26 +20867,20 @@
/obj/structure/bed/chair/comfy/orange{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"tSt" = (
/obj/structure/barricade/handrail/strata,
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"tSI" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"tTc" = (
/obj/effect/landmark/monkey_spawn,
@@ -24472,9 +20903,7 @@
/obj/structure/prop/ice_colony/tiger_rug{
icon_state = "White"
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"tUe" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -24504,18 +20933,14 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"tWv" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/shiva/interior/colony/medseceng)
"tWz" = (
/obj/structure/machinery/space_heater,
@@ -24525,16 +20950,11 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/clipboard,
/obj/item/tool/stamp,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"tXd" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/garage)
"tXe" = (
/obj/effect/landmark/monkey_spawn,
@@ -24546,15 +20966,11 @@
/area/shiva/interior/aerodrome)
"tYa" = (
/obj/item/storage/toolbox/electrical,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/bar)
"tYm" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"tYw" = (
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
@@ -24577,10 +20993,7 @@
/obj/structure/barricade/handrail/strata{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/central)
"tZA" = (
/obj/structure/surface/table/reinforced/prison,
@@ -24593,15 +21006,11 @@
pixel_x = 7;
pixel_y = 14
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"tZM" = (
/obj/item/weapon/broken_bottle,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"tZW" = (
/obj/structure/surface/rack,
@@ -24638,9 +21047,7 @@
id = "nlz_shutters";
name = "\improper Bio-lab Shutters"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"ucn" = (
/obj/structure/largecrate/random/mini/med{
@@ -24670,10 +21077,7 @@
/area/shiva/exterior/junkyard)
"udJ" = (
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/research_hab)
"uee" = (
/obj/item/weapon/gun/revolver/cmb,
@@ -24683,19 +21087,14 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"ueG" = (
/obj/structure/prop/souto_land/streamer{
dir = 9
},
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"ueX" = (
/obj/item/ammo_magazine/rifle/boltaction,
@@ -24706,9 +21105,7 @@
dir = 1;
start_charge = 0
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"ufd" = (
/obj/structure/surface/table,
@@ -24724,9 +21121,7 @@
pixel_x = -3;
pixel_y = -1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"ufA" = (
/obj/structure/surface/table/reinforced,
@@ -24763,31 +21158,22 @@
/area/shiva/interior/oob)
"ugP" = (
/obj/structure/computerframe,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"uhe" = (
/obj/structure/machinery/colony_floodlight{
pixel_y = 10
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/cp_lz2)
"uhL" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"uhO" = (
/obj/item/lightstick/red/spoke/planted{
pixel_x = 11
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"uhV" = (
/obj/structure/machinery/alarm{
@@ -24797,24 +21183,17 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northeast,
/area/shiva/interior/colony/medseceng)
"uig" = (
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"uim" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"uir" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
@@ -24839,16 +21218,11 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/west,
/area/shiva/interior/colony/medseceng)
"ujJ" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"ujV" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
@@ -24857,9 +21231,7 @@
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"ukp" = (
/turf/open/auto_turf/ice/layer1,
@@ -24869,9 +21241,7 @@
/obj/item/tool/wrench,
/obj/item/tool/screwdriver,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"ukU" = (
/obj/structure/surface/table,
@@ -24880,15 +21250,11 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"ulm" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"ulD" = (
/obj/structure/cable/heavyduty{
@@ -24911,15 +21277,10 @@
"umj" = (
/obj/structure/foamed_metal,
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"umm" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"umB" = (
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
@@ -24928,9 +21289,7 @@
/obj/structure/prop/invuln/minecart_tracks/bumper{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/cp_colony_grounds)
"uot" = (
/obj/structure/largecrate/random/case,
@@ -24938,9 +21297,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"uoI" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim{
@@ -24975,10 +21332,7 @@
/area/shiva/exterior/junkyard/fortbiceps)
"upp" = (
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/lz2_habs)
"upK" = (
/obj/effect/landmark/corpsespawner/engineer,
@@ -24990,10 +21344,7 @@
/area/shiva/exterior/lz1_valley)
"uqS" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"urX" = (
/obj/structure/flora/bush/snow{
@@ -25002,10 +21353,7 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_colony_grounds)
"ush" = (
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/garage)
"usZ" = (
/obj/structure/barricade/handrail/wire{
@@ -25022,9 +21370,7 @@
/area/shiva/interior/caves/cp_camp)
"uuv" = (
/obj/structure/bed/chair/comfy/beige,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"uuN" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
@@ -25038,9 +21384,7 @@
dir = 8
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"uvU" = (
/obj/effect/decal/cleanable/blood,
@@ -25050,9 +21394,7 @@
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgibhead"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"uwz" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim{
@@ -25064,28 +21406,18 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"uxH" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"uxO" = (
/obj/structure/bed,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"uxV" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/botany)
"uxZ" = (
/obj/effect/decal/warning_stripes{
@@ -25103,9 +21435,7 @@
"uyJ" = (
/obj/structure/machinery/light,
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/medseceng)
"uzf" = (
/obj/effect/landmark/yautja_teleport,
@@ -25115,9 +21445,7 @@
/obj/structure/surface/rack,
/obj/item/circuitboard/airalarm,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"uzu" = (
/turf/open/auto_turf/snow/layer4,
@@ -25127,15 +21455,11 @@
/turf/open/auto_turf/ice/layer1,
/area/shiva/exterior/lz2_fortress)
"uzP" = (
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/n_admin)
"uzU" = (
/obj/structure/surface/rack,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/cp_colony_grounds)
"uAd" = (
/obj/structure/lz_sign/ice_sign{
@@ -25146,9 +21470,7 @@
"uAq" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"uAM" = (
/obj/item/lightstick/red/spoke/planted{
@@ -25160,9 +21482,7 @@
/area/shiva/exterior/cp_colony_grounds)
"uBz" = (
/obj/structure/machinery/autolathe/full,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"uCp" = (
/obj/structure/machinery/light/small{
@@ -25175,23 +21495,17 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/lz1_valley)
"uCO" = (
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/exterior/cp_lz2)
"uDb" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"uDZ" = (
/obj/effect/landmark/nightmare{
insert_tag = "lz2-east"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"uEo" = (
/obj/structure/platform/strata,
@@ -25202,10 +21516,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/north,
/area/shiva/interior/colony/research_hab)
"uFl" = (
/obj/structure/barricade/snow{
@@ -25224,18 +21535,13 @@
/obj/structure/surface/table,
/obj/item/device/flashlight,
/obj/item/ammo_magazine/shotgun/slugs,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"uFA" = (
/obj/item/weapon/gun/boltaction{
pixel_x = -6
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/exterior/lz2_fortress)
"uGq" = (
/turf/open/floor/plating,
@@ -25243,9 +21549,7 @@
"uGw" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"uHa" = (
/obj/structure/morgue,
@@ -25253,24 +21557,18 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"uHA" = (
/obj/item/tool/wet_sign,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"uHH" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"uIC" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -25291,9 +21589,7 @@
"uII" = (
/obj/structure/surface/table,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"uIO" = (
/obj/item/lightstick/red/variant/planted{
@@ -25316,10 +21612,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/central)
"uJj" = (
/obj/structure/flora/bush/snow{
@@ -25330,10 +21623,7 @@
/area/shiva/exterior/cp_colony_grounds)
"uJk" = (
/obj/item/weapon/broken_bottle,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/north,
/area/shiva/interior/colony/botany)
"uJL" = (
/obj/item/lightstick/red/spoke/planted{
@@ -25359,23 +21649,17 @@
pixel_y = 14
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"uKB" = (
/obj/structure/prop/ice_colony/surveying_device/measuring_device,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/s_lz2)
"uKN" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"uKV" = (
/obj/structure/surface/table,
@@ -25386,10 +21670,7 @@
pixel_x = 5;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"uKZ" = (
/turf/closed/wall/shiva/prefabricated,
@@ -25417,10 +21698,7 @@
},
/obj/item/paper/research_notes,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"uLq" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -25430,17 +21708,11 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/east,
/area/shiva/interior/lz2_habs)
"uLu" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"uLT" = (
/obj/structure/machinery/conveyor,
@@ -25461,19 +21733,14 @@
/area/shiva/interior/colony/medseceng)
"uOR" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/research_hab)
"uPo" = (
/obj/structure/machinery/light/double{
dir = 8;
pixel_y = -5
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/shiva/interior/colony/central)
"uPv" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -25507,22 +21774,16 @@
/area/shiva/interior/colony/central)
"uRi" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"uRn" = (
/obj/item/weapon/gun/boltaction,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"uRt" = (
/obj/structure/closet/radiation,
/obj/effect/spawner/random/powercell,
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"uRK" = (
/obj/structure/surface/table,
@@ -25532,10 +21793,7 @@
pixel_x = 24
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"uSd" = (
/obj/structure/flora/bush/snow{
@@ -25544,10 +21802,7 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_colony_grounds)
"uSe" = (
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southwest,
/area/shiva/interior/colony/botany)
"uSF" = (
/mob/living/simple_animal/hostile/giant_spider/nurse,
@@ -25560,10 +21815,7 @@
"uTB" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/bomb_supply,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/colony/medseceng)
"uTL" = (
/obj/item/tool/pickaxe/diamond{
@@ -25577,15 +21829,11 @@
/obj/effect/landmark/nightmare{
insert_tag = "lz2-southeast-gate"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"uTN" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"uVa" = (
/obj/structure/machinery/power/terminal{
@@ -25595,16 +21843,11 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"uVK" = (
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"uWi" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -25620,20 +21863,13 @@
/obj/structure/bed/chair/comfy/beige{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"uXQ" = (
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/medseceng)
"uYa" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "greencorners"
- },
+/turf/open/floor/shiva/greencorners/north,
/area/shiva/interior/colony/botany)
"uYg" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
@@ -25643,15 +21879,11 @@
/area/shiva/interior/colony/medseceng)
"uYl" = (
/obj/item/tool/warning_cone,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"uYt" = (
/obj/structure/reagent_dispensers,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"uYC" = (
/turf/closed/wall/shiva/prefabricated,
@@ -25664,22 +21896,16 @@
/turf/open/floor/plating,
/area/shiva/interior/colony/medseceng)
"uZf" = (
-/turf/open/floor/shiva{
- icon_state = "wredcorners"
- },
+/turf/open/floor/shiva/wredcorners,
/area/shiva/interior/colony/medseceng)
"uZl" = (
-/turf/open/floor/shiva{
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull,
/area/shiva/interior/colony/botany)
"uZJ" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"uZU" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -25697,9 +21923,7 @@
/obj/item/tool/pen/blue{
pixel_x = 5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"vbm" = (
/obj/structure/bed/chair/comfy/orange,
@@ -25707,31 +21931,22 @@
/area/shiva/interior/colony/central)
"vbA" = (
/obj/item/stack/rods,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"vcx" = (
/obj/structure/surface/table,
/obj/item/device/flashlight/flare,
/obj/item/device/radio,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"vcU" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/southwest,
/area/shiva/interior/colony/medseceng)
"vdb" = (
/obj/structure/closet/secure_closet/freezer/meat,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"vdw" = (
/obj/item/lightstick/red/spoke/planted{
@@ -25748,18 +21963,14 @@
/area/shiva/interior/caves/s_lz2)
"vdC" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"vdS" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"veo" = (
/obj/structure/surface/table,
@@ -25768,21 +21979,14 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/shiva/interior/colony/medseceng)
"ver" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"ves" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/colony/central)
"veu" = (
/obj/structure/platform_decoration/strata,
@@ -25790,10 +21994,7 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/junkyard)
"vey" = (
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northeast,
/area/shiva/interior/colony/medseceng)
"veS" = (
/obj/structure/largecrate/random/case/double,
@@ -25803,10 +22004,7 @@
/turf/closed/wall/shiva/prefabricated,
/area/shiva/exterior/cp_lz2)
"vfd" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/central)
"vgR" = (
/obj/structure/platform_decoration/strata,
@@ -25815,25 +22013,17 @@
"vhp" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"vhG" = (
/obj/structure/surface/rack,
/obj/item/tool/extinguisher/mini,
/obj/item/circuitboard/airlock,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"vhL" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southeast,
/area/shiva/interior/colony/botany)
"vhM" = (
/obj/structure/flora/tree/dead/tree_4,
@@ -25841,9 +22031,7 @@
/area/shiva/exterior/junkyard)
"vhQ" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"vip" = (
/obj/structure/platform_decoration/shiva/catwalk{
@@ -25853,27 +22041,20 @@
/area/shiva/exterior/valley)
"viy" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"viF" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"vjs" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"vjy" = (
/obj/item/lightstick/red/planted,
@@ -25888,10 +22069,7 @@
/area/shiva/interior/bar)
"vkq" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"vkr" = (
/obj/item/device/flashlight,
@@ -25899,9 +22077,7 @@
/area/shiva/exterior/cp_s_research)
"vkZ" = (
/obj/structure/largecrate/random,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts)
"vlh" = (
/obj/structure/platform/strata{
@@ -25914,9 +22090,7 @@
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/caves/research_caves)
"vmy" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"vnc" = (
/obj/structure/platform/strata,
@@ -25927,10 +22101,7 @@
req_access_txt = "100"
},
/obj/item/paper/research_notes,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/southwest,
/area/shiva/interior/colony/medseceng)
"vnF" = (
/obj/structure/surface/table,
@@ -25944,9 +22115,7 @@
/area/shiva/interior/telecomm/lz1_biceps)
"vnX" = (
/obj/item/stack/barbed_wire,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"vom" = (
/obj/structure/barricade/sandbags/wired{
@@ -25973,14 +22142,10 @@
/area/shiva/exterior/telecomm/lz1_north)
"vpZ" = (
/obj/item/tool/wet_sign,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"vqq" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/colony/central)
"vqw" = (
/obj/structure/platform/strata,
@@ -26003,9 +22168,7 @@
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"vrG" = (
/obj/structure/largecrate/random/barrel/blue,
@@ -26015,16 +22178,12 @@
/obj/effect/decal/warning_stripes{
pixel_y = 32
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"vsi" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/box/wy_mre,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"vty" = (
/obj/item/shard{
@@ -26039,17 +22198,13 @@
/area/shiva/interior/caves/cp_camp)
"vuj" = (
/obj/structure/bed/roller,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"vvb" = (
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"vwn" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -26058,9 +22213,7 @@
"vwv" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"vwx" = (
/obj/item/lightstick/red/spoke/planted{
@@ -26074,26 +22227,19 @@
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"vxg" = (
/turf/open/auto_turf/snow/layer0,
/area/shiva/interior/bar)
"vxE" = (
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/shiva/interior/colony/central)
"vxW" = (
/obj/structure/filingcabinet,
/obj/item/paper/research_notes,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"vym" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -26110,9 +22256,7 @@
/obj/structure/noticeboard{
pixel_y = -32
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"vzM" = (
/obj/structure/flora/bush/snow{
@@ -26141,15 +22285,10 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"vAT" = (
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/northeast,
/area/shiva/interior/colony/botany)
"vAU" = (
/obj/structure/platform/strata{
@@ -26167,17 +22306,11 @@
dir = 4
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northwest,
/area/shiva/interior/colony/medseceng)
"vBm" = (
/obj/item/clipboard,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"vCe" = (
/obj/structure/flora/bush/snow{
@@ -26203,26 +22336,19 @@
/obj/item/device/assembly/igniter,
/obj/item/device/assembly/signaller,
/obj/item/circuitboard/airlock,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"vCv" = (
/obj/structure/surface/table,
/obj/item/weapon/gun/pistol/holdout,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"vDB" = (
/obj/structure/barricade/metal{
dir = 4
},
/obj/structure/barricade/metal,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"vDD" = (
/obj/structure/flora/pottedplant,
@@ -26238,10 +22364,7 @@
/area/shiva/interior/colony/botany)
"vFq" = (
/obj/item/stack/sheet/metal/small_stack,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"vFR" = (
/obj/structure/machinery/space_heater,
@@ -26249,9 +22372,7 @@
/area/shiva/interior/aerodrome)
"vFX" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"vGY" = (
/obj/structure/barricade/snow{
@@ -26269,9 +22390,7 @@
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/caves/s_lz2)
"vHM" = (
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/botany)
"vHT" = (
/obj/structure/surface/table/woodentable,
@@ -26288,9 +22407,7 @@
/obj/structure/machinery/power/apc{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts/no2)
"vIy" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -26308,39 +22425,27 @@
/area/shiva/interior/caves/cp_camp)
"vIL" = (
/obj/item/stack/rods,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/central)
"vJh" = (
/obj/structure/barricade/handrail/strata,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/deck)
"vJu" = (
/turf/closed/wall/shiva/prefabricated/blue,
/area/shiva/exterior/valley)
"vKu" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/research_hab)
"vKx" = (
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/colony/medseceng)
"vMX" = (
/obj/structure/flora/grass/tallgrass/ice/corner,
/turf/open/auto_turf/snow/layer0,
/area/shiva/exterior/cp_lz2)
"vNJ" = (
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/shiva/interior/colony/botany)
"vNN" = (
/obj/structure/fence,
@@ -26353,10 +22458,7 @@
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/caves/research_caves)
"vOd" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"vOv" = (
/obj/structure/bookcase{
@@ -26367,10 +22469,7 @@
"vOP" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/shiva/interior/colony/medseceng)
"vPr" = (
/turf/open/auto_turf/snow/layer3,
@@ -26388,16 +22487,11 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/research_hab)
"vQm" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"vQZ" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -26425,20 +22519,14 @@
/area/shiva/exterior/cp_colony_grounds)
"vTc" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"vTh" = (
/obj/structure/machinery/light/double{
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/shiva/interior/colony/medseceng)
"vTi" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -26451,10 +22539,7 @@
/area/shiva/interior/caves/cp_camp)
"vTj" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/colony/research_hab)
"vUC" = (
/obj/structure/flora/grass/tallgrass/ice/corner,
@@ -26468,10 +22553,7 @@
/turf/open/auto_turf/snow/layer1,
/area/shiva/exterior/junkyard/fortbiceps)
"vUL" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/shiva/interior/garage)
"vUR" = (
/turf/closed/wall/shiva/ice,
@@ -26482,10 +22564,7 @@
/area/shiva/interior/aerodrome)
"vWf" = (
/obj/item/restraint/handcuffs,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"vWt" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony{
@@ -26499,16 +22578,11 @@
/area/shiva/exterior/cp_lz2)
"vXh" = (
/obj/structure/filingcabinet,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"vXk" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/botany)
"vXl" = (
/obj/structure/flora/bush/snow{
@@ -26530,16 +22604,11 @@
/obj/structure/prop/ice_colony/ground_wire{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/west,
/area/shiva/interior/lz2_habs)
"vZj" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"vZS" = (
/obj/structure/platform/strata{
@@ -26565,9 +22634,7 @@
/area/shiva/interior/aerodrome)
"wck" = (
/obj/item/ammo_magazine/rifle/boltaction,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"wcF" = (
/obj/item/lightstick/red/spoke/planted{
@@ -26582,21 +22649,15 @@
pixel_x = -7;
pixel_y = 3
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"wfl" = (
/obj/vehicle/train/cargo/engine,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"wfB" = (
/obj/item/book/manual/security_space_law,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"wfH" = (
/obj/item/lightstick/red/spoke/planted{
@@ -26615,9 +22676,7 @@
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"wfP" = (
/obj/item/lightstick/red/spoke/planted{
@@ -26645,10 +22704,7 @@
dir = 5;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/research_hab)
"wgM" = (
/obj/structure/barricade/snow,
@@ -26656,18 +22712,14 @@
/area/shiva/exterior/lz1_valley)
"wgW" = (
/obj/structure/machinery/vending/cigarette,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"wgX" = (
/obj/structure/barricade/sandbags/wired{
dir = 8;
icon_state = "sandbag_0"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"whI" = (
/obj/item/weapon/gun/boltaction,
@@ -26675,22 +22727,15 @@
/area/shiva/exterior/junkyard)
"whS" = (
/obj/vehicle/train/cargo/engine,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/bar)
"whU" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/shiva/interior/colony/medseceng)
"wil" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"wiy" = (
/obj/structure/barricade/snow{
@@ -26704,9 +22749,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/colony/n_admin)
"wje" = (
/turf/open/auto_turf/ice/layer2,
@@ -26735,18 +22778,14 @@
pixel_x = 4;
pixel_y = 5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"wlj" = (
/turf/open/auto_turf/snow/layer4,
/area/shiva/interior/colony/central)
"wls" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"wlJ" = (
/turf/open/auto_turf/snow/layer2,
@@ -26755,14 +22794,10 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/botany)
"wnK" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"woB" = (
/obj/item/clothing/shoes/snow,
@@ -26774,27 +22809,20 @@
/obj/effect/decal/strata_decals/grime/grime3{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/botany)
"wpl" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"wpG" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Colony Security Checkpoint"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"wpW" = (
/obj/item/stack/rods,
@@ -26807,9 +22835,7 @@
/area/shiva/interior/colony/research_hab)
"wqQ" = (
/obj/item/tool/screwdriver,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/bar)
"wsz" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -26825,10 +22851,7 @@
/turf/open/auto_turf/snow/layer1,
/area/shiva/exterior/junkyard)
"wtC" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/n_admin)
"wui" = (
/obj/structure/bed/chair/office/dark{
@@ -26864,9 +22887,7 @@
pixel_y = 4
},
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"wwl" = (
/obj/item/lightstick/red/spoke/planted{
@@ -26891,9 +22912,7 @@
/obj/structure/prop/invuln/minecart_tracks{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/cp_colony_grounds)
"wwZ" = (
/obj/structure/stairs/perspective{
@@ -26911,15 +22930,11 @@
/obj/item/tool/soap{
pixel_x = -7
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"wxu" = (
/obj/structure/bed/chair,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"wxY" = (
/obj/structure/fence,
@@ -26961,9 +22976,7 @@
/obj/item/device/flashlight/lamp{
pixel_y = 4
},
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"wCn" = (
/obj/structure/largecrate/random/mini/med{
@@ -26971,15 +22984,10 @@
pixel_x = -10;
pixel_y = 13
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"wCz" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/shiva/interior/colony/central)
"wCP" = (
/turf/closed/wall/shiva/ice,
@@ -26989,9 +22997,7 @@
dir = 9;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"wCX" = (
/obj/structure/platform_decoration/strata{
@@ -27004,9 +23010,7 @@
dir = 1;
pixel_y = -24
},
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"wFm" = (
/obj/structure/surface/rack,
@@ -27021,27 +23025,17 @@
/area/shiva/interior/colony/central)
"wFw" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull,
/area/shiva/interior/colony/n_admin)
"wFB" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/research_hab)
"wGD" = (
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/s_admin)
"wHi" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/central)
"wHr" = (
/obj/structure/machinery/computer/cameras{
@@ -27051,9 +23045,7 @@
dir = 8
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
"wHx" = (
/obj/vehicle/train/cargo/trolley,
@@ -27061,10 +23053,7 @@
/turf/open/asphalt/cement,
/area/shiva/interior/warehouse)
"wHA" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/east,
/area/shiva/interior/colony/n_admin)
"wHZ" = (
/obj/effect/landmark/objective_landmark/medium,
@@ -27083,31 +23072,22 @@
pixel_x = -5;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"wJd" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"wJp" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/n_admin)
"wKk" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"wLM" = (
/obj/structure/stairs/perspective{
@@ -27127,25 +23107,18 @@
dir = 8
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"wMC" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/deck)
"wMR" = (
/obj/structure/machinery/firealarm{
dir = 4;
pixel_x = 24
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"wNj" = (
/obj/structure/window/framed/shiva,
@@ -27163,10 +23136,7 @@
/area/shiva/exterior/junkyard)
"wOq" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southwest,
/area/shiva/interior/colony/medseceng)
"wOO" = (
/obj/structure/closet/secure_closet/medical3{
@@ -27175,9 +23145,7 @@
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/storage/pill_bottle/inaprovaline/skillless,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"wPs" = (
/obj/item/lightstick/red/variant/planted,
@@ -27206,15 +23174,10 @@
/turf/open/floor/plating,
/area/shiva/interior/colony/central)
"wRa" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/valley_huts/no2)
"wRi" = (
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northwest,
/area/shiva/interior/aux_power)
"wRm" = (
/turf/open/floor/plating,
@@ -27233,9 +23196,7 @@
pixel_x = -24
},
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"wTg" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -27252,9 +23213,7 @@
pixel_x = 7;
pixel_y = 14
},
-/turf/open/floor/strata{
- icon_state = "floor2"
- },
+/turf/open/floor/strata/floor2,
/area/shiva/interior/colony/research_hab)
"wTx" = (
/obj/effect/spawner/random/toolbox,
@@ -27290,9 +23249,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"wVJ" = (
/obj/structure/platform_decoration/shiva/catwalk{
@@ -27301,25 +23258,18 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/valley)
"wWu" = (
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/northwest,
/area/shiva/interior/colony/medseceng)
"wWY" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"wXh" = (
/obj/structure/machinery/disposal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"wXs" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -27327,9 +23277,7 @@
/area/shiva/interior/aerodrome)
"wXQ" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"wYd" = (
/obj/structure/surface/table/reinforced/prison,
@@ -27342,9 +23290,7 @@
pixel_y = 11
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"wZh" = (
/obj/structure/surface/table/reinforced/prison,
@@ -27369,18 +23315,14 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"xar" = (
/obj/structure/surface/table,
/obj/item/storage/box/syringes{
pixel_y = 2
},
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/medseceng)
"xaw" = (
/obj/structure/window/reinforced/tinted{
@@ -27389,9 +23331,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"xbz" = (
/obj/structure/window/framed/shiva,
@@ -27400,23 +23340,17 @@
/area/shiva/interior/colony/medseceng)
"xbP" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"xbZ" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/cp_colony_grounds)
"xcE" = (
/obj/structure/inflatable/popped,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"xde" = (
/obj/structure/closet/cabinet,
@@ -27426,17 +23360,12 @@
/area/shiva/interior/colony/botany)
"xdk" = (
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"xdT" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/aux_power)
"xeq" = (
/obj/structure/prop/ice_colony/surveying_device/measuring_device{
@@ -27468,9 +23397,7 @@
layer = 2.9;
name = "souto graffiti"
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"xhJ" = (
/obj/item/tool/wet_sign,
@@ -27483,28 +23410,21 @@
/area/shiva/interior/caves/cp_camp)
"xiu" = (
/obj/structure/machinery/vending/cola/research,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"xiY" = (
/obj/structure/prop/invuln/ice_prefab,
/turf/open/auto_turf/snow/layer0,
/area/shiva/interior/caves/cp_camp)
"xjg" = (
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/shiva/interior/colony/deck)
"xkf" = (
/obj/structure/machinery/light/double{
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"xkV" = (
/obj/structure/surface/table,
@@ -27516,9 +23436,7 @@
pixel_x = -5;
pixel_y = 11
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aux_power)
"xlg" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
@@ -27528,25 +23446,18 @@
/area/shiva/exterior/cp_lz2)
"xmS" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"xnM" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/shiva/interior/colony/medseceng)
"xoi" = (
/obj/structure/machinery/light/double{
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"xqe" = (
/obj/structure/bed/chair/comfy/orange{
@@ -27554,18 +23465,13 @@
},
/obj/item/paper_bin,
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"xqf" = (
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/bar)
"xru" = (
/obj/structure/foamed_metal,
@@ -27581,9 +23487,7 @@
/area/shiva/interior/caves/cp_camp)
"xsD" = (
/obj/item/tool/warning_cone,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"xtc" = (
/obj/structure/platform/strata{
@@ -27621,9 +23525,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/n_admin)
"xvp" = (
/obj/item/lightstick/red/variant/planted,
@@ -27644,17 +23546,12 @@
/area/shiva/interior/warehouse)
"xvS" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"xwi" = (
/obj/structure/surface/table,
/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/research_hab)
"xwk" = (
/obj/item/lightstick/red/variant,
@@ -27669,9 +23566,7 @@
"xwL" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/shiva/interior/colony/n_admin)
"xxY" = (
/obj/item/lightstick/red/spoke/planted{
@@ -27713,9 +23608,7 @@
pixel_y = -24
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/central)
"xzO" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim{
@@ -27748,9 +23641,7 @@
"xBo" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/shiva/interior/colony/medseceng)
"xCj" = (
/obj/structure/machinery/power/terminal{
@@ -27760,9 +23651,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"xCz" = (
/obj/effect/decal/warning_stripes{
@@ -27776,9 +23665,7 @@
/area/shiva/exterior/junkyard)
"xCA" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"xCD" = (
/obj/effect/decal/cleanable/blood{
@@ -27795,9 +23682,7 @@
dir = 8;
pixel_y = 24
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"xCW" = (
/obj/structure/prop/ice_colony/flamingo{
@@ -27812,30 +23697,21 @@
"xDq" = (
/obj/structure/closet/radiation,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"xEd" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"xEu" = (
/obj/structure/morgue,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/central)
"xEw" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/southeast,
/area/shiva/interior/colony/medseceng)
"xEB" = (
/obj/item/tool/warning_cone,
@@ -27845,9 +23721,7 @@
/obj/structure/bed/chair/comfy/orange{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"xFM" = (
/obj/structure/platform_decoration/strata{
@@ -27862,32 +23736,22 @@
/turf/open/auto_turf/snow/layer4,
/area/shiva/exterior/cp_lz2)
"xFR" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/west,
/area/shiva/interior/colony/n_admin)
"xGR" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/west,
/area/shiva/interior/colony/medseceng)
"xHu" = (
/obj/structure/largecrate/random,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/aerodrome)
"xHv" = (
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/aerodrome)
"xIL" = (
/obj/item/powerloader_clamp,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"xIO" = (
/obj/item/lightstick/red/spoke/planted{
@@ -27903,17 +23767,13 @@
pixel_y = 24
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"xJA" = (
/obj/structure/bed/chair/comfy/beige{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"xLy" = (
/obj/structure/platform/strata,
@@ -27936,24 +23796,18 @@
/area/shiva/exterior/lz1_valley)
"xMC" = (
/obj/item/bananapeel,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/bar)
"xMH" = (
/obj/structure/machinery/power/apc{
dir = 1;
start_charge = 0
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/deck)
"xMQ" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"xMS" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -27967,31 +23821,21 @@
"xMX" = (
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/caves/cp_camp)
"xNe" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"xOb" = (
/turf/open/floor/plating/plating_catwalk/shiva,
/area/shiva/interior/bar)
"xPd" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/shiva/interior/bar)
"xQa" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"xQj" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
@@ -28000,32 +23844,23 @@
/turf/open/auto_turf/snow/layer0,
/area/shiva/exterior/cp_lz2)
"xQJ" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"xQQ" = (
/obj/structure/machinery/door/airlock/almayer/medical/colony{
name = "\improper Colony Dormitories"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/botany)
"xRg" = (
/obj/structure/surface/rack,
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/telecomm/lz1_biceps)
"xRi" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{
req_access_txt = "102"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"xRy" = (
/obj/effect/decal/cleanable/ash,
@@ -28046,10 +23881,7 @@
"xSk" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/powercell,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/shiva/interior/aerodrome)
"xTK" = (
/obj/structure/inflatable/popped,
@@ -28062,18 +23894,12 @@
/obj/item/weapon/ice_axe/red{
pixel_y = -4
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/central)
"xUm" = (
/obj/item/stack/sheet/metal,
/obj/item/shard,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/shiva/interior/colony/medseceng)
"xUt" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
@@ -28083,10 +23909,7 @@
/area/shiva/exterior/cp_lz2)
"xVo" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/west,
/area/shiva/interior/colony/n_admin)
"xVZ" = (
/obj/structure/prop/ice_colony/dense/ice_tray{
@@ -28108,9 +23931,7 @@
pixel_x = 1;
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"xXM" = (
/obj/structure/prop/invuln/minecart_tracks/bumper{
@@ -28125,9 +23946,7 @@
"xXV" = (
/obj/structure/closet/secure_closet/engineering_welding,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/garage)
"xYx" = (
/turf/open/auto_turf/ice/layer1,
@@ -28140,31 +23959,21 @@
/area/shiva/exterior/cp_lz2)
"xZW" = (
/obj/item/trash/hotdog,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/shiva/interior/bar)
"ycc" = (
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northwest,
/area/shiva/interior/colony/medseceng)
"ydz" = (
/obj/structure/stairs/perspective{
dir = 8;
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"ydP" = (
/obj/structure/girder/displaced,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"yer" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -28177,10 +23986,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/medseceng)
"yez" = (
/obj/structure/machinery/door/airlock/almayer/security/colony{
@@ -28191,9 +23997,7 @@
/area/shiva/interior/colony/medseceng)
"yfE" = (
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/shiva/interior/colony/medseceng)
"yfY" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -28205,19 +24009,14 @@
/obj/structure/surface/rack,
/obj/item/circuitboard/apc,
/obj/item/circuitboard/apc,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/shiva/interior/colony/medseceng)
"ygp" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/prop/ice_colony/ice_crystal{
pixel_y = 5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"yhA" = (
/obj/structure/fence,
@@ -28229,22 +24028,14 @@
pixel_x = -5;
pixel_y = -2
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"yiw" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wredcorners"
- },
+/turf/open/floor/shiva/wredcorners/east,
/area/shiva/interior/colony/medseceng)
"yiS" = (
/obj/structure/powerloader_wreckage,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/research_hab)
"yjh" = (
/obj/structure/surface/table/reinforced/prison,
@@ -28252,18 +24043,14 @@
pixel_x = 1;
pixel_y = 3
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"yjn" = (
/obj/structure/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/central)
"yjM" = (
/obj/structure/barricade/handrail/wire,
@@ -28277,9 +24064,7 @@
/obj/structure/surface/table,
/obj/item/storage/bag/plants,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/n_admin)
"ykq" = (
/obj/structure/surface/table/reinforced/prison,
@@ -28288,9 +24073,7 @@
pixel_x = 5;
pixel_y = 10
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"ylz" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -28307,15 +24090,11 @@
/obj/structure/machinery/colony_floodlight_switch{
pixel_y = 32
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/medseceng)
"ylP" = (
/obj/structure/machinery/landinglight/ds2/delaythree,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"ylU" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -28325,9 +24104,7 @@
/area/shiva/interior/caves/cp_camp)
"ylZ" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/shiva/interior/colony/medseceng)
(1,1,1) = {"
@@ -46500,7 +42277,7 @@ aaY
jFy
jFy
axz
-doc
+tfd
ivr
axz
jFy
@@ -46660,12 +42437,12 @@ wlj
axz
axz
rnz
-doc
+tfd
uPo
-doc
-doc
+tfd
+tfd
uPo
-doc
+tfd
rnz
jFy
qrz
@@ -46821,14 +42598,14 @@ qCn
tKg
axz
axz
-doc
+tfd
wCz
lWW
wCz
lWW
wCz
lWW
-doc
+tfd
jFy
gNF
jqY
@@ -46983,14 +42760,14 @@ qCn
ssf
axz
axz
-doc
+tfd
nCo
kRK
nCo
kRK
nCo
kRK
-doc
+tfd
aaY
ilo
jqY
@@ -47145,14 +42922,14 @@ rCO
ssf
axz
axz
-doc
+tfd
wCz
lWW
wCz
lWW
wCz
lWW
-doc
+tfd
jFy
gNF
gNF
@@ -47307,14 +43084,14 @@ qCn
jVx
aaY
aaY
-doc
+tfd
nCo
kRK
nCo
kRK
nCo
kRK
-doc
+tfd
jFy
jqY
jqY
@@ -47469,14 +43246,14 @@ qCn
gPg
xha
axz
-doc
+tfd
wCz
lWW
wCz
lWW
wCz
lWW
-doc
+tfd
jFy
gNF
jqY
@@ -47631,14 +43408,14 @@ xha
aaX
xha
axz
-doc
+tfd
jMZ
gvz
jMZ
gvz
jMZ
gvz
-doc
+tfd
axz
kFJ
jqY
@@ -47793,13 +43570,13 @@ aaY
xha
xha
vWt
-doc
-doc
+tfd
+tfd
cRP
dqW
bMn
cRP
-doc
+tfd
sQt
aaY
axz
@@ -47955,13 +43732,13 @@ axz
xha
xha
axz
-doc
-doc
+tfd
+tfd
jUa
jvT
djn
djn
-doc
+tfd
aeA
axz
pMs
diff --git a/maps/map_files/Ice_Colony_v3/lz2-south-caves/20.destroyed_lz2-south-caves.dmm b/maps/map_files/Ice_Colony_v3/lz2-south-caves/20.destroyed_lz2-south-caves.dmm
index cdf4c289476b..58e057efe1fd 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-south-caves/20.destroyed_lz2-south-caves.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-south-caves/20.destroyed_lz2-south-caves.dmm
@@ -13,9 +13,7 @@
icon_state = "large";
name = "ice shard"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"g" = (
/obj/item/shard{
@@ -35,9 +33,7 @@
icon_state = "large";
name = "ice shard"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/s_lz2)
"o" = (
/obj/item/shard{
@@ -62,9 +58,7 @@
/turf/open/auto_turf/ice/layer0,
/area/shiva/interior/caves/s_lz2)
"v" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/s_lz2)
"w" = (
/obj/structure/barricade/snow,
@@ -76,15 +70,11 @@
name = "ice shard"
},
/obj/structure/barricade/snow,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/s_lz2)
"z" = (
/obj/structure/barricade/metal/wired,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"B" = (
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
@@ -108,9 +98,7 @@
/turf/open/auto_turf/ice/layer1,
/area/shiva/exterior/lz2_fortress)
"K" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"L" = (
/turf/closed/wall/shiva/ice,
@@ -136,9 +124,7 @@
icon_state = "medium";
name = "ice shard"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"T" = (
/obj/item/shard{
@@ -174,15 +160,11 @@
icon_state = "medium";
name = "ice shard"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/s_lz2)
"Z" = (
/obj/structure/barricade/snow,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/s_lz2)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v3/lz2-south-caves/30.builtup_lz2-south-caves.dmm b/maps/map_files/Ice_Colony_v3/lz2-south-caves/30.builtup_lz2-south-caves.dmm
index 67c9c8136cb0..969190345f0f 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-south-caves/30.builtup_lz2-south-caves.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-south-caves/30.builtup_lz2-south-caves.dmm
@@ -5,9 +5,7 @@
"b" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toy,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"c" = (
/turf/open/auto_turf/snow/layer4,
@@ -17,9 +15,7 @@
/area/shiva/interior/caves/s_lz2)
"e" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/lz2_habs)
"f" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname,
@@ -29,41 +25,29 @@
/turf/closed/wall/shiva/ice,
/area/shiva/interior/oob)
"k" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"l" = (
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/lz2_habs)
"m" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/lz2_habs)
"n" = (
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/cp_lz2)
"o" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"p" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
/obj/effect/spawner/random/powercell,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"q" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/lz2_habs)
"r" = (
/turf/open/auto_turf/ice/layer2,
@@ -73,32 +57,24 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"t" = (
/obj/structure/surface/rack,
/obj/item/weapon/ice_axe/red,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"v" = (
/obj/structure/surface/rack,
/obj/item/reagent_container/food/snacks/sliceable/bananabread,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"w" = (
/obj/structure/machinery/light/double{
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/lz2_habs)
"x" = (
/turf/open/auto_turf/ice/layer1,
@@ -118,9 +94,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"z" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -129,9 +103,7 @@
id = "nlz_shutters";
name = "\improper Bio-lab Shutters"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"B" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -140,27 +112,21 @@
id = "nlz_shutters";
name = "\improper Bio-lab Shutters"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"C" = (
/obj/structure/machinery/light/double{
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/lz2_habs)
"D" = (
/turf/open/auto_turf/ice/layer0,
/area/shiva/interior/caves/s_lz2)
"F" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"G" = (
/obj/item/shard{
@@ -178,32 +144,24 @@
pixel_y = -5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"K" = (
/obj/structure/machinery/light/double{
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"L" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"P" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/lz2_habs)
"Q" = (
/obj/item/clothing/shoes/snow,
@@ -218,10 +176,7 @@
/obj/item/clothing/mask/rebreather,
/obj/item/tank/emergency_oxygen/engi,
/obj/item/clothing/mask/rebreather,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/interior/lz2_habs)
"S" = (
/obj/effect/decal/cleanable/dirt,
@@ -233,18 +188,14 @@
"U" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"V" = (
/obj/structure/surface/table,
/obj/structure/largecrate/random/mini/chest/b{
pixel_x = -1
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"W" = (
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
@@ -260,14 +211,10 @@
pixel_y = -5;
pixel_x = 2
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
"Y" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"Z" = (
/obj/structure/machinery/light/double{
@@ -275,9 +222,7 @@
pixel_y = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/lz2_habs)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/blocked.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/blocked.dmm
index e7cccabcd6cf..fd089a343cfb 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/blocked.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/blocked.dmm
@@ -11,9 +11,7 @@
/area/shiva/exterior/lz2_fortress)
"c" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"f" = (
/obj/item/weapon/gun/boltaction,
@@ -25,9 +23,7 @@
"h" = (
/obj/structure/foamed_metal,
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"j" = (
/obj/item/lightstick/red/spoke/planted{
@@ -35,9 +31,7 @@
pixel_x = 12;
pixel_y = 28
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"l" = (
/obj/item/lightstick/red/spoke/planted{
@@ -48,9 +42,7 @@
/turf/open/auto_turf/snow/layer0,
/area/shiva/exterior/cp_lz2)
"m" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"p" = (
/obj/structure/foamed_metal,
@@ -59,29 +51,19 @@
/area/shiva/exterior/lz2_fortress)
"r" = (
/obj/structure/foamed_metal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"u" = (
/obj/item/stack/sheet/metal/small_stack,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"w" = (
/obj/structure/foamed_metal,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"z" = (
/obj/structure/foamed_metal,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"A" = (
/obj/item/lightstick/red/spoke/planted{
@@ -97,15 +79,10 @@
/area/shiva/exterior/lz2_fortress)
"F" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"H" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"I" = (
/obj/structure/foamed_metal,
@@ -116,14 +93,10 @@
pixel_x = 12;
pixel_y = 25
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"N" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"O" = (
/obj/structure/machinery/landinglight/ds2/spoke{
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/closed.dmm
index 63cf02c171f8..190310c2c366 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/closed.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/closed.dmm
@@ -4,18 +4,14 @@
id = "eelz_shutters";
pixel_y = -22
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"c" = (
/obj/structure/machinery/door_control{
id = "eelz_shutters";
pixel_y = 22
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"d" = (
/turf/open/auto_turf/snow/layer1,
@@ -34,18 +30,14 @@
pixel_x = 12;
pixel_y = 28
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"l" = (
/obj/item/lightstick/red/spoke/planted{
pixel_x = 12;
pixel_y = 25
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"m" = (
/obj/structure/flora/bush/snow{
@@ -66,14 +58,10 @@
id = "eelz_shutters";
pixel_y = 22
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"u" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"v" = (
/turf/open/auto_turf/snow/layer0,
@@ -83,29 +71,20 @@
id = "elz_shutters";
pixel_y = 22
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"D" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"F" = (
/obj/structure/machinery/door_control{
id = "elz_shutters";
pixel_y = -22
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"J" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"Q" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -121,18 +100,14 @@
id = "elz_shutters";
pixel_y = 22
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"S" = (
/obj/structure/machinery/door_control{
id = "eelz_shutters";
pixel_y = -22
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"U" = (
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
@@ -151,9 +126,7 @@
id = "elz_shutters";
pixel_y = -22
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/east/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/east/full-closed.dmm
index 4b5c38ce2535..7e3e5a909ec3 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/east/full-closed.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/east/full-closed.dmm
@@ -6,9 +6,7 @@
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
/area/shiva/exterior/lz2_fortress)
"l" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"S" = (
/obj/structure/flora/bush/snow{
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/east/half-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/east/half-closed.dmm
index b1bf24256890..9b8d533d9ef8 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/east/half-closed.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/east/half-closed.dmm
@@ -3,24 +3,18 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_lz2)
"c" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"d" = (
/obj/structure/largecrate/random,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"q" = (
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
/area/shiva/exterior/lz2_fortress)
"t" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"O" = (
/turf/closed/wall/shiva/prefabricated/pink,
@@ -36,9 +30,7 @@
/area/shiva/exterior/cp_lz2)
"U" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm
index 74d967c95bb1..79b0d6456798 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm
@@ -15,32 +15,23 @@
/obj/item/clothing/mask/rebreather,
/obj/item/tank/emergency_oxygen/engi,
/obj/item/clothing/mask/rebreather,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"g" = (
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
/area/shiva/exterior/lz2_fortress)
"h" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"i" = (
/turf/closed/wall/shiva/prefabricated/pink,
/area/shiva/exterior/lz2_fortress)
"m" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"t" = (
/obj/structure/largecrate/random/mini/ammo,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"P" = (
/turf/open/auto_turf/snow/layer2,
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/half-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/half-open.dmm
index 42a9aee0420b..7c55fc2884ac 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/half-open.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/half-open.dmm
@@ -12,10 +12,7 @@
/obj/item/clothing/mask/rebreather,
/obj/item/tank/emergency_oxygen/engi,
/obj/item/clothing/mask/rebreather,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"d" = (
/obj/structure/flora/bush/snow{
@@ -24,9 +21,7 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/cp_lz2)
"h" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"p" = (
/turf/open/auto_turf/snow/layer3,
@@ -60,9 +55,7 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_lz2)
"X" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-closed.dmm
index 4a3306f0b22d..ed8cae18048f 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-closed.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-closed.dmm
@@ -3,9 +3,7 @@
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
/area/shiva/exterior/lz2_fortress)
"c" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"s" = (
/turf/open/auto_turf/snow/layer4,
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-open.dmm
index aea08fa5bf48..f73664ae2eda 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-open.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-open.dmm
@@ -6,9 +6,7 @@
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_lz2)
"w" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"C" = (
/turf/open/auto_turf/snow/layer4,
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm
index 60525207b45b..c74e4644a044 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm
@@ -34,15 +34,11 @@
/area/shiva/exterior/cp_lz2)
"k" = (
/obj/item/stack/sheet/metal/small_stack,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"l" = (
/obj/item/stack/sheet/metal/small_stack,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"o" = (
/obj/structure/machinery/landinglight/ds2/spoke{
@@ -53,60 +49,41 @@
/area/shiva/exterior/lz2_fortress)
"p" = (
/obj/structure/foamed_metal,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/exterior/lz2_fortress)
"s" = (
/turf/open/auto_turf/snow/layer0,
/area/shiva/exterior/cp_lz2)
"u" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"w" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/exterior/lz2_fortress)
"x" = (
/obj/item/lightstick/red/spoke/planted{
pixel_x = 12;
pixel_y = 25
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"z" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"A" = (
/obj/item/stack/sheet/metal/small_stack,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/exterior/lz2_fortress)
"B" = (
/obj/structure/foamed_metal,
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"C" = (
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_lz2)
"F" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"I" = (
/obj/item/lightstick/red/spoke/planted{
@@ -114,9 +91,7 @@
pixel_x = -13;
pixel_y = 25
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"J" = (
/obj/structure/machinery/landinglight/ds2/spoke{
@@ -130,15 +105,11 @@
/area/shiva/exterior/lz2_fortress)
"M" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"N" = (
/obj/structure/foamed_metal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"Q" = (
/obj/structure/foamed_metal,
@@ -158,10 +129,7 @@
/obj/item/weapon/gun/boltaction{
pixel_x = -6
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/exterior/lz2_fortress)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm
index d4111051f784..5c2f90c17f72 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm
@@ -16,23 +16,17 @@
pixel_x = 12;
pixel_y = 25
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"e" = (
/obj/structure/machinery/door_control{
id = "sslz_shutters";
pixel_x = -22
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"f" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"g" = (
/turf/open/auto_turf/snow/layer2,
@@ -45,9 +39,7 @@
id = "sslz_shutters";
pixel_x = -22
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"r" = (
/turf/open/auto_turf/snow/layer4,
@@ -74,30 +66,21 @@
id = "slz_shutters";
pixel_x = -22
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"y" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"B" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/exterior/lz2_fortress)
"F" = (
/obj/structure/machinery/door_control{
id = "sslz_shutters";
pixel_x = 25
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"L" = (
/obj/structure/machinery/door_control{
@@ -116,23 +99,17 @@
id = "slz_shutters";
pixel_x = -22
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"U" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"W" = (
/obj/structure/machinery/door_control{
id = "sslz_shutters";
pixel_x = 25
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"X" = (
/obj/item/lightstick/red/spoke/planted{
@@ -143,9 +120,7 @@
/area/shiva/exterior/cp_lz2)
"Y" = (
/obj/structure/foamed_metal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/cleared.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/cleared.dmm
index a002ca0bc0dd..e3fe7e69221b 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/cleared.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/cleared.dmm
@@ -19,10 +19,7 @@
/area/shiva/exterior/lz2_fortress)
"h" = (
/obj/item/stack/sheet/metal/small_stack,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"k" = (
/obj/item/stack/sheet/metal/small_stack,
@@ -36,9 +33,7 @@
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
/area/shiva/exterior/lz2_fortress)
"o" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"p" = (
/obj/effect/decal/cleanable/ash,
@@ -52,24 +47,17 @@
/area/shiva/exterior/cp_lz2)
"r" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"t" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"u" = (
/obj/item/lightstick/red/spoke/planted{
pixel_x = 12;
pixel_y = 25
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"w" = (
/obj/structure/machinery/landinglight/ds2/spoke{
@@ -101,14 +89,10 @@
/area/shiva/exterior/cp_lz2)
"F" = (
/obj/item/stack/snow,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"J" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"L" = (
/obj/item/lightstick/red/spoke/planted{
@@ -116,21 +100,14 @@
pixel_x = 12;
pixel_y = 28
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"O" = (
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"Q" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"T" = (
/turf/open/auto_turf/snow/layer0,
@@ -142,16 +119,12 @@
/obj/structure/machinery/power/apc{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"Z" = (
/obj/structure/foamed_metal,
/obj/effect/decal/cleanable/ash,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/closed.dmm
index d7f25ee2a3de..c4ff89c41af2 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/closed.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/closed.dmm
@@ -3,33 +3,24 @@
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
/area/shiva/exterior/lz2_fortress)
"f" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/exterior/lz2_fortress)
"i" = (
/obj/structure/machinery/door_control{
id = "seelz_shutters";
pixel_y = -22
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"j" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"l" = (
/obj/structure/machinery/door_control{
id = "selz_shutters";
pixel_y = -22
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"m" = (
/obj/structure/machinery/power/apc{
@@ -42,9 +33,7 @@
id = "selz_shutters";
pixel_y = 22
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"q" = (
/obj/item/lightstick/red/spoke/planted{
@@ -52,49 +41,37 @@
pixel_x = 12;
pixel_y = 28
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"r" = (
/obj/structure/machinery/door_control{
id = "seelz_shutters";
pixel_y = -22
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"t" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/exterior/lz2_fortress)
"v" = (
/obj/structure/machinery/power/apc{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"w" = (
/obj/item/lightstick/red/spoke/planted{
pixel_x = 12;
pixel_y = 25
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"z" = (
/obj/structure/machinery/door_control{
id = "selz_shutters";
pixel_y = 22
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"B" = (
/turf/open/auto_turf/snow/layer0,
@@ -112,9 +89,7 @@
id = "selz_shutters";
pixel_y = -22
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"I" = (
/obj/item/lightstick/red/spoke/planted{
@@ -129,24 +104,18 @@
id = "seelz_shutters";
pixel_y = 22
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"K" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"L" = (
/obj/effect/decal/cleanable/blood{
dir = 4;
icon_state = "gib6"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"N" = (
/turf/open/auto_turf/snow/layer1,
@@ -165,9 +134,7 @@
id = "seelz_shutters";
pixel_y = 22
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"V" = (
/turf/open/auto_turf/snow/layer2,
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/full-closed.dmm
index 88715aa30e8d..a16b6fff9252 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/full-closed.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/full-closed.dmm
@@ -24,23 +24,16 @@
/obj/item/clothing/mask/rebreather,
/obj/item/tank/emergency_oxygen/engi,
/obj/item/clothing/mask/rebreather,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/exterior/lz2_fortress)
"r" = (
/turf/open/auto_turf/snow/layer4,
/area/shiva/exterior/cp_lz2)
"L" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"N" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/half-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/half-open.dmm
index 089aed45da66..256ad00f6120 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/half-open.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/half-open.dmm
@@ -18,10 +18,7 @@
/obj/item/clothing/mask/rebreather,
/obj/item/tank/emergency_oxygen/engi,
/obj/item/clothing/mask/rebreather,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/shiva/exterior/lz2_fortress)
"t" = (
/obj/structure/flora/bush/snow{
@@ -36,14 +33,10 @@
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
/area/shiva/exterior/lz2_fortress)
"C" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/exterior/lz2_fortress)
"Z" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/full-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/full-open.dmm
index 1434a0ba32a2..12e253378b6b 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/full-open.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/full-open.dmm
@@ -6,18 +6,14 @@
/turf/open/auto_turf/snow/layer4,
/area/shiva/exterior/cp_lz2)
"s" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"z" = (
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/cp_lz2)
"B" = (
/obj/item/weapon/gun/boltaction,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"E" = (
/obj/effect/spawner/random/tool,
diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/half-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/half-open.dmm
index bb2c2631ba76..16f594f8f798 100644
--- a/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/half-open.dmm
+++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/half-open.dmm
@@ -9,9 +9,7 @@
/turf/open/auto_turf/snow/layer3,
/area/shiva/exterior/cp_lz2)
"R" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/exterior/lz2_fortress)
"Y" = (
/turf/closed/wall/shiva/prefabricated/reinforced/hull,
diff --git a/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm b/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm
index 4528507bb04f..399903bd1ed0 100644
--- a/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm
+++ b/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm
@@ -6,10 +6,7 @@
"cs" = (
/obj/structure/surface/rack,
/obj/item/device/motiondetector/hacked,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"cO" = (
/obj/structure/surface/rack,
@@ -19,10 +16,7 @@
/area/shiva/interior/colony/research_hab)
"ei" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/north,
/area/shiva/interior/colony/research_hab)
"fs" = (
/obj/structure/barricade/wooden{
@@ -36,10 +30,7 @@
/turf/open/floor/plating,
/area/shiva/interior/colony/research_hab)
"hG" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/north,
/area/shiva/interior/colony/research_hab)
"ip" = (
/obj/structure/closet/crate/secure/weyland,
@@ -59,14 +50,11 @@
dir = 4;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"jW" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
dir = 1;
- req_access = null;
req_one_access = null
},
/turf/open/floor/plating,
@@ -78,15 +66,10 @@
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/storage/pill_bottle/kelotane/skillless,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"lA" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/research_hab)
"lM" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -101,9 +84,7 @@
dir = 1;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"mj" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony,
@@ -116,16 +97,11 @@
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/storage/pill_bottle/bicaridine/skillless,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"nn" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"nQ" = (
/obj/structure/surface/table,
@@ -141,22 +117,15 @@
/area/shiva/interior/colony/research_hab)
"pr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"pC" = (
/obj/structure/closet/radiation,
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"pI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"qr" = (
/obj/effect/decal/cleanable/dirt,
@@ -169,10 +138,7 @@
"qH" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"rA" = (
/obj/structure/machinery/space_heater,
@@ -201,10 +167,7 @@
name = "\improper Omicron Field Gear Storage"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/research_hab)
"sS" = (
/obj/structure/closet/crate,
@@ -213,17 +176,12 @@
/area/shiva/interior/colony/research_hab)
"sV" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/shiva/interior/colony/research_hab)
"tr" = (
/obj/structure/closet/radiation,
/obj/effect/spawner/random/powercell,
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"tL" = (
/obj/effect/decal/cleanable/dirt,
@@ -238,10 +196,7 @@
/turf/open/floor/plating,
/area/shiva/interior/colony/research_hab)
"uJ" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"vf" = (
/obj/structure/window/framed/shiva,
@@ -258,15 +213,10 @@
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/storage/pill_bottle/inaprovaline/skillless,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"yZ" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"zg" = (
/obj/structure/filingcabinet{
@@ -277,9 +227,7 @@
pixel_x = -8;
pixel_y = 4
},
-/turf/open/floor/shiva{
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull,
/area/shiva/interior/colony/research_hab)
"AC" = (
/turf/open/floor/plating,
@@ -291,15 +239,10 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{
req_access_txt = "100"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"GL" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"Hk" = (
/obj/structure/closet/radiation,
@@ -307,9 +250,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"Hm" = (
/turf/open/auto_turf/snow/layer0,
@@ -330,9 +271,7 @@
/area/shiva/interior/colony/research_hab)
"JH" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"JI" = (
/obj/structure/surface/rack,
@@ -342,9 +281,7 @@
/area/shiva/interior/colony/research_hab)
"JO" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"KS" = (
/turf/open/floor/shiva,
@@ -352,9 +289,7 @@
"Lg" = (
/obj/structure/surface/rack,
/obj/item/clothing/suit/storage/labcoat/researcher,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"Lk" = (
/obj/structure/surface/rack,
@@ -378,10 +313,7 @@
/area/shiva/interior/colony/research_hab)
"Ov" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"OW" = (
/obj/structure/surface/rack,
@@ -390,9 +322,7 @@
dir = 8;
pixel_y = 9
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"Pf" = (
/obj/structure/machinery/door_control/brbutton{
@@ -425,9 +355,7 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"Rd" = (
/obj/structure/surface/table/reinforced/prison,
@@ -442,9 +370,7 @@
},
/obj/effect/spawner/random/attachment,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"Vp" = (
/obj/structure/surface/table,
@@ -453,9 +379,7 @@
pixel_y = 2
},
/obj/effect/spawner/random/bomb_supply,
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"Vv" = (
/turf/open/auto_turf/ice/layer1,
@@ -467,21 +391,15 @@
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/storage/pill_bottle/dexalin/skillless,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"Xo" = (
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"XI" = (
/obj/structure/closet/radiation,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/shiva{
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull,
/area/shiva/interior/colony/research_hab)
"Yz" = (
/obj/effect/decal/warning_stripes{
@@ -504,9 +422,7 @@
"YZ" = (
/obj/structure/machinery/disposal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v3/sprinkles/unused/30.labs-elevator_alternate.dmm b/maps/map_files/Ice_Colony_v3/sprinkles/unused/30.labs-elevator_alternate.dmm
index f75a526b4f78..499218ac037e 100644
--- a/maps/map_files/Ice_Colony_v3/sprinkles/unused/30.labs-elevator_alternate.dmm
+++ b/maps/map_files/Ice_Colony_v3/sprinkles/unused/30.labs-elevator_alternate.dmm
@@ -5,9 +5,7 @@
id = "garage_ice_labs";
name = "\improper Garage Shutters"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"b" = (
/obj/structure/curtain/black,
@@ -15,18 +13,13 @@
/area/shiva/interior/colony/research_hab)
"c" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"e" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"f" = (
/obj/effect/decal/warning_stripes{
@@ -36,37 +29,25 @@
dir = 4;
pixel_x = 6
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"g" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"h" = (
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
"k" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"l" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"s" = (
/turf/open/floor/plating/plating_catwalk/shiva,
@@ -75,10 +56,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"u" = (
/obj/structure/machinery/door_control{
@@ -96,19 +74,13 @@
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/north,
/area/shiva/interior/colony/research_hab)
"B" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"E" = (
/obj/effect/decal/warning_stripes{
@@ -118,16 +90,11 @@
dir = 8;
pixel_x = -6
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/east,
/area/shiva/interior/colony/research_hab)
"F" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"I" = (
/turf/closed/wall/shiva/prefabricated/orange,
@@ -135,18 +102,13 @@
"L" = (
/obj/structure/prop/dam/truck,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"Q" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"S" = (
/obj/effect/decal/cleanable/dirt,
@@ -155,28 +117,20 @@
"T" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/research_hab)
"U" = (
/obj/effect/decal/warning_stripes{
icon_state = "N"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/north,
/area/shiva/interior/colony/research_hab)
"W" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/shiva/interior/colony/research_hab)
"X" = (
/obj/effect/decal/cleanable/dirt,
@@ -185,9 +139,7 @@
/area/shiva/interior/colony/research_hab)
"Z" = (
/obj/structure/prop/dam/crane,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/research_hab)
(1,1,1) = {"
diff --git a/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm b/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm
index 5ae1484c7915..6f9f55d9467d 100644
--- a/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm
+++ b/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm
@@ -15,9 +15,7 @@
/area/shiva/interior/caves/left_spiders)
"bP" = (
/obj/structure/prop/static_tank/fuel,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/left_spiders)
"cf" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -181,24 +179,18 @@
/obj/item/weapon/ice_axe/red{
pixel_y = -4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/caves/left_spiders)
"xG" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/left_spiders)
"yu" = (
/turf/closed/wall/shiva/prefabricated/pink,
/area/shiva/interior/caves/left_spiders)
"yS" = (
/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/left_spiders)
"Am" = (
/obj/effect/spider/cocoon,
@@ -211,9 +203,7 @@
/area/shiva/interior/caves/left_spiders)
"Ar" = (
/obj/structure/prop/static_tank,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/caves/left_spiders)
"AW" = (
/obj/structure/barricade/handrail/wire{
diff --git a/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm b/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm
index 15ec0c4e099d..30848fc8f513 100644
--- a/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm
+++ b/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm
@@ -24,25 +24,19 @@
pixel_x = -24
},
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"bi" = (
/obj/item/reagent_container/food/drinks/cans/waterbottle{
pixel_x = -5;
pixel_y = 12
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"bI" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"ce" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
@@ -52,30 +46,21 @@
pixel_x = 11;
pixel_y = 20
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"cv" = (
/obj/structure/machinery/alarm{
dir = 4;
pixel_x = -24
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"cL" = (
/obj/item/prop/colony/folded_bedroll,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"cO" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/s_admin)
"cS" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
@@ -88,52 +73,35 @@
icon_state = "large"
},
/obj/item/frame/table/reinforced,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"dg" = (
/obj/structure/barricade/metal{
dir = 1;
health = 210
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"do" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"dv" = (
/obj/item/ammo_magazine/rifle/m16,
/obj/structure/closet/secure_closet/guncabinet/wy,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"dF" = (
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"eO" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/s_admin)
"eZ" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"ff" = (
/obj/structure/barricade/wooden{
@@ -144,9 +112,7 @@
/turf/open/floor/wood,
/area/shiva/interior/colony/s_admin)
"fj" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"fx" = (
/obj/structure/stairs/perspective{
@@ -156,10 +122,7 @@
layer = 3
},
/obj/effect/landmark/corpsespawner/doctor,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"fM" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -173,16 +136,11 @@
/area/shiva/interior/colony/s_admin)
"fT" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southeast,
/area/shiva/interior/colony/botany)
"gf" = (
/obj/structure/closet/crate/freezer,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"gh" = (
/obj/structure/noticeboard{
@@ -191,37 +149,27 @@
/obj/item/ammo_magazine/rifle/extended{
current_rounds = 0
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"gk" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/shiva/interior/colony/s_admin)
"gn" = (
/obj/structure/machinery/computer/cameras/wooden_tv{
pixel_y = 7
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"gB" = (
/obj/structure/surface/table,
/obj/item/weapon/gun/rifle/m16,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"gL" = (
/obj/structure/bed/bedroll,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"gO" = (
/obj/structure/window/reinforced/tinted{
@@ -231,51 +179,34 @@
dir = 4
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"gR" = (
/obj/item/stack/rods,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"hN" = (
/obj/item/ammo_casing,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/s_admin)
"iF" = (
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"iS" = (
/obj/structure/filingcabinet,
/obj/item/paper/research_notes,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"iZ" = (
/obj/item/weapon/gun/rifle/m16,
/obj/structure/closet/secure_closet/guncabinet/wy,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"js" = (
/obj/item/stack/rods,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southwest,
/area/shiva/interior/colony/botany)
"jE" = (
/obj/effect/acid_hole{
@@ -302,25 +233,19 @@
pixel_y = 10
},
/obj/item/tool/stamp/hos,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"ky" = (
/obj/item/reagent_container/food/drinks/cans/waterbottle{
pixel_x = 10;
pixel_y = 16
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"kB" = (
/obj/structure/bed/bedroll,
/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"kP" = (
/obj/structure/surface/table/woodentable{
@@ -328,15 +253,11 @@
flipped = 1
},
/obj/structure/machinery/computer/objective,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"kT" = (
/obj/item/stack/folding_barricade,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"lb" = (
/obj/structure/machinery/firealarm{
@@ -345,26 +266,20 @@
},
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"lq" = (
/obj/item/ammo_magazine/rifle{
current_rounds = 0
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"lP" = (
/obj/effect/landmark/corpsespawner/wygoon,
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"lQ" = (
/obj/structure/window/reinforced/tinted{
@@ -376,26 +291,20 @@
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"mC" = (
/obj/structure/machinery/power/apc{
dir = 8;
start_charge = 0
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"mI" = (
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"ne" = (
/turf/open/auto_turf/snow/layer3,
@@ -411,9 +320,7 @@
"ns" = (
/obj/structure/surface/table,
/obj/item/weapon/gun/rifle/ar10,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"ob" = (
/obj/structure/surface/table/reinforced/prison,
@@ -429,9 +336,7 @@
pixel_y = 4
},
/obj/item/reagent_container/food/drinks/cans/ale,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"of" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -442,51 +347,36 @@
/area/shiva/interior/colony/s_admin)
"ov" = (
/obj/item/trash/buritto,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"oH" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/shiva/interior/colony/botany)
"oT" = (
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"oY" = (
/obj/structure/closet/crate/secure/weyland,
/obj/effect/landmark/objective_landmark/science,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"pz" = (
/obj/item/weapon/gun/boltaction,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"pC" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"pG" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"pQ" = (
/turf/open/auto_turf/snow/layer1,
@@ -494,30 +384,22 @@
"pS" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"pV" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2,
/area/shiva/interior/colony/s_admin)
"qT" = (
/obj/structure/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"qU" = (
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"rB" = (
/obj/structure/window/reinforced/tinted{
@@ -528,52 +410,37 @@
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"rM" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"rQ" = (
/obj/item/ammo_magazine/rifle/boltaction,
/obj/effect/landmark/survivor_spawner/shivas_panic_room_civ,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"sq" = (
/obj/structure/machinery/faxmachine,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"sy" = (
/obj/effect/decal/cleanable/blood{
icon_state = "xgibdown1"
},
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"sZ" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/s_admin)
"ti" = (
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/shiva/interior/colony/s_admin)
"tk" = (
/obj/structure/window/reinforced/tinted{
@@ -585,18 +452,14 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/clipboard,
/obj/item/tool/stamp,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"tl" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"tu" = (
/obj/structure/machinery/light/double{
@@ -604,9 +467,7 @@
pixel_y = -5
},
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"tD" = (
/obj/effect/decal/cleanable/vomit{
@@ -619,16 +480,11 @@
/obj/effect/landmark/corpsespawner/chef,
/obj/structure/bed/bedroll,
/obj/item/bedsheet/ce,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"tG" = (
/obj/structure/janitorialcart,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southeast,
/area/shiva/interior/colony/botany)
"tW" = (
/obj/effect/decal/cleanable/blood/gibs/xeno,
@@ -638,31 +494,22 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"ug" = (
/obj/effect/decal/cleanable/blood/drip{
icon_state = "3"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/s_admin)
"uh" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/item/ammo_casing,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"ul" = (
/obj/item/ammo_magazine/rifle/boltaction,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"uA" = (
/obj/structure/stairs/perspective{
@@ -672,25 +519,18 @@
pixel_x = 3;
pixel_y = 2
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"uE" = (
/obj/structure/machinery/door_control{
id = "north_panicroom";
pixel_y = 30
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"uJ" = (
/obj/item/stack/rods,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"uM" = (
/obj/structure/window/reinforced/tinted{
@@ -701,9 +541,7 @@
/obj/item/clipboard,
/obj/item/tool/stamp,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"uP" = (
/obj/structure/machinery/light/double{
@@ -711,24 +549,18 @@
pixel_y = -5
},
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"uR" = (
/obj/structure/machinery/light/double{
dir = 8;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"vn" = (
/obj/effect/decal/remains/xeno,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"vq" = (
/obj/structure/filingcabinet,
@@ -738,37 +570,26 @@
pixel_y = -5
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"vs" = (
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/s_admin)
"vL" = (
/obj/item/reagent_container/glass/bucket/mopbucket{
pixel_x = 5;
pixel_y = 5
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southeast,
/area/shiva/interior/colony/botany)
"wH" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/shiva/interior/colony/s_admin)
"wM" = (
/obj/item/reagent_container/food/drinks/cans/waterbottle{
pixel_y = 5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"wO" = (
/obj/item/clipboard,
@@ -781,21 +602,14 @@
icon_state = "large"
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"wW" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/shiva/interior/colony/s_admin)
"wX" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/s_admin)
"wY" = (
/obj/structure/machinery/power/apc{
@@ -808,9 +622,7 @@
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"xg" = (
/obj/structure/bed/chair/office/light{
@@ -827,54 +639,39 @@
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"xZ" = (
/obj/item/storage/belt/marine,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"yd" = (
/obj/item/weapon/gun/rifle/ar10,
/obj/item/ammo_magazine/rifle/ar10,
/obj/structure/closet/secure_closet/guncabinet/wy,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"ye" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
/obj/effect/landmark/survivor_spawner/shivas_panic_room_cl,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"yi" = (
/obj/item/trash/wy_chips_pepper,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"yo" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"yq" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
/obj/effect/decal/remains/human,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"yz" = (
/obj/structure/flora/bush/snow{
@@ -884,9 +681,7 @@
/area/shiva/exterior/junkyard)
"yQ" = (
/obj/effect/landmark/survivor_spawner/shivas_panic_room_sci,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"yS" = (
/obj/structure/machinery/firealarm{
@@ -895,16 +690,11 @@
},
/obj/item/weapon/gun/boltaction,
/obj/structure/closet/secure_closet/guncabinet/wy,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"zc" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"zi" = (
/obj/structure/window/reinforced/tinted{
@@ -913,28 +703,19 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"zp" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"zu" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southeast,
/area/shiva/interior/colony/botany)
"zw" = (
/obj/item/ammo_casing,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"zA" = (
/obj/structure/window_frame/colony/reinforced,
@@ -944,9 +725,7 @@
/obj/structure/bed/chair/office/light{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"Av" = (
/obj/structure/machinery/light/double{
@@ -954,36 +733,25 @@
pixel_y = -5
},
/obj/structure/closet/secure_closet/guncabinet/wy,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"AC" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"AY" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"AZ" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/shiva/interior/colony/s_admin)
"Bg" = (
/obj/structure/machinery/light_construct{
dir = 1
},
/obj/item/light_bulb/tube/prison,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Bq" = (
/obj/structure/window/reinforced/tinted{
@@ -993,9 +761,7 @@
dir = 8
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"Bv" = (
/obj/structure/machinery/door_control{
@@ -1004,46 +770,33 @@
},
/obj/structure/surface/table,
/obj/item/ammo_magazine/shotgun/slugs,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"BD" = (
/obj/item/lightstick/red/spoke/planted{
pixel_x = -11;
pixel_y = 20
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/bar)
"BQ" = (
/obj/effect/decal/cleanable/blood{
icon_state = "gib6"
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"BU" = (
/obj/effect/landmark/survivor_spawner/shivas_panic_room_civ,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Cc" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/shiva/interior/colony/s_admin)
"Cd" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/good_item,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Cu" = (
/obj/structure/window/reinforced/tinted{
@@ -1054,21 +807,15 @@
/obj/item/clipboard,
/obj/item/tool/stamp,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"Cx" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"CZ" = (
/obj/item/ammo_casing,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Dg" = (
/obj/effect/decal/cleanable/vomit,
@@ -1076,54 +823,39 @@
pixel_x = -3;
pixel_y = 6
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Dl" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Dx" = (
/obj/structure/machinery/light/double,
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"DB" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/s_admin)
"DU" = (
/obj/structure/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"DW" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"DY" = (
/obj/item/trash/burger,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"EX" = (
/obj/structure/machinery/light/double{
@@ -1133,50 +865,36 @@
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"Fa" = (
/obj/effect/spawner/gibspawner/human,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2,
/area/shiva/interior/colony/s_admin)
"Fc" = (
/obj/structure/surface/table,
/obj/item/ammo_magazine/rifle/ar10,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"Ff" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/shiva/interior/colony/s_admin)
"Fg" = (
/obj/structure/largecrate/random/case/double,
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/junkyard/cp_bar)
"Fn" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile"
- },
+/turf/open/floor/shiva/radiator_tile,
/area/shiva/interior/bar)
"Fp" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Fx" = (
/obj/structure/surface/table,
/obj/structure/prop/ice_colony/hula_girl,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"FH" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -1185,9 +903,7 @@
/area/shiva/interior/colony/s_admin)
"FK" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"FY" = (
/turf/template_noop,
@@ -1198,42 +914,29 @@
"GJ" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"GQ" = (
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgibhead"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"He" = (
/obj/item/stool,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Hf" = (
/obj/structure/closet/secure_closet/security,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"Hp" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/s_admin)
"Hx" = (
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"HA" = (
/obj/structure/window/reinforced/tinted{
@@ -1243,9 +946,7 @@
dir = 4
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"Ik" = (
/turf/open/auto_turf/snow/layer3,
@@ -1265,32 +966,23 @@
/area/shiva/interior/colony/s_admin)
"IQ" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"Jp" = (
/obj/item/ammo_magazine/rifle/extended{
current_rounds = 0
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"Jv" = (
/obj/structure/machinery/light/double{
dir = 4;
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"Jx" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/botany)
"JF" = (
/obj/structure/machinery/blackbox_recorder,
@@ -1298,9 +990,7 @@
pixel_x = -6;
pixel_y = 10
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"JQ" = (
/obj/item/ammo_magazine/rifle/boltaction,
@@ -1309,24 +999,16 @@
pixel_x = -24
},
/obj/structure/closet/secure_closet/guncabinet/wy,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"Kb" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/botany)
"Ko" = (
/obj/structure/bed/chair,
/obj/item/ammo_casing,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Kp" = (
/obj/structure/machinery/computer/cameras{
@@ -1336,9 +1018,7 @@
/obj/item/shard{
icon_state = "large"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"KO" = (
/obj/structure/largecrate/random/case/small,
@@ -1348,24 +1028,18 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"Ld" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/shiva/interior/colony/botany)
"Lh" = (
/obj/structure/machinery/firealarm{
dir = 4;
pixel_x = 24
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Lk" = (
/obj/structure/largecrate/random/case,
@@ -1375,57 +1049,39 @@
/obj/structure/prop/ice_colony/tiger_rug{
icon_state = "White"
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Lu" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/s_admin)
"LE" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"LF" = (
/obj/effect/decal/cleanable/blood{
layer = 3
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"LU" = (
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/shiva/interior/colony/botany)
"Mi" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"MG" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
name = "\improper Panic Room Shutters";
id = "south_panicroom"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"ML" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/shiva/interior/colony/s_admin)
"MR" = (
/obj/structure/safe,
@@ -1436,30 +1092,20 @@
/obj/item/spacecash/c1000,
/obj/item/spacecash/c500,
/obj/effect/landmark/good_item,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"Nq" = (
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/shiva/interior/colony/botany)
"Nt" = (
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib6"
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/colony/s_admin)
"Nu" = (
/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"NC" = (
/obj/item/lightstick/variant/planted,
@@ -1485,21 +1131,14 @@
/obj/structure/filingcabinet,
/obj/item/paper/research_notes,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"Py" = (
/obj/item/trash/kepler,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"PG" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/east,
/area/shiva/interior/colony/botany)
"PI" = (
/obj/structure/window/reinforced/tinted{
@@ -1509,25 +1148,18 @@
/obj/item/clipboard,
/obj/item/tool/stamp,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"PV" = (
/obj/structure/bed/bedroll,
/obj/effect/landmark/survivor_spawner/shivas_panic_room_sci,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Qh" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"QS" = (
/turf/open/auto_turf/snow/layer2,
@@ -1540,29 +1172,21 @@
/obj/item/paper_bin{
pixel_y = 7
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Ru" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"Ry" = (
/obj/item/tool/mop{
pixel_x = -10
},
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/shiva/interior/colony/botany)
"RD" = (
/obj/structure/bed/chair/wood/normal,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"RH" = (
/obj/structure/window/reinforced/tinted{
@@ -1574,29 +1198,20 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"RP" = (
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southwest,
/area/shiva/interior/colony/botany)
"RQ" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"RS" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"Se" = (
/obj/effect/decal/cleanable/vomit{
@@ -1606,9 +1221,7 @@
pixel_x = 5;
pixel_y = 10
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"Sl" = (
/obj/structure/machinery/disposal/broken,
@@ -1616,10 +1229,7 @@
/area/shiva/interior/colony/s_admin)
"Sq" = (
/obj/item/tool/wet_sign,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southeast,
/area/shiva/interior/colony/botany)
"SB" = (
/obj/item/stack/sheet/metal,
@@ -1637,22 +1247,16 @@
/area/shiva/interior/colony/s_admin)
"Tc" = (
/obj/item/frame/table/reinforced,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Td" = (
/obj/item/reagent_container/food/drinks/cans/waterbottle,
/obj/item/ammo_casing,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"Tj" = (
/obj/structure/machinery/disposal/broken,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Tr" = (
/obj/structure/machinery/computer/station_alert{
@@ -1662,23 +1266,15 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"TG" = (
/obj/item/prop/colony/folded_bedroll,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/shiva/interior/colony/s_admin)
"TI" = (
/obj/item/ammo_casing,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/shiva/interior/colony/s_admin)
"TL" = (
/obj/item/weapon/gun/energy/taser,
@@ -1690,41 +1286,29 @@
/area/shiva/interior/colony/s_admin)
"Ub" = (
/obj/item/trash/kepler/flamehot,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"Ue" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
/obj/item/ammo_casing,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"UD" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
name = "\improper Colony Administration";
locked = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"UW" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southwest,
/area/shiva/interior/colony/botany)
"Vb" = (
/obj/item/bodybag,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Vi" = (
/obj/structure/window_frame/colony/reinforced,
@@ -1738,9 +1322,7 @@
"Vy" = (
/obj/structure/surface/table,
/obj/item/storage/toolbox/emergency,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"VC" = (
/obj/structure/machinery/light/double{
@@ -1749,33 +1331,25 @@
},
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"VE" = (
/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
name = "\improper Colony Security Checkpoint"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"VX" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/landmark/objective_landmark/medium,
/obj/effect/landmark/good_item,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"Wj" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Wm" = (
/turf/open/auto_turf/snow/layer2,
@@ -1785,28 +1359,19 @@
dir = 4;
icon_state = "p_stair_sn_full_cap"
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"WT" = (
/obj/item/frame/table/wood,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2,
/area/shiva/interior/colony/s_admin)
"Xt" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
"Xu" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/shiva/interior/colony/s_admin)
"XP" = (
/obj/structure/window/reinforced/tinted{
@@ -1816,26 +1381,20 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin,
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"YD" = (
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/cameras{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"YS" = (
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/shiva/interior/colony/s_admin)
"YT" = (
/obj/structure/window/reinforced/tinted{
@@ -1845,29 +1404,20 @@
dir = 8
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/shiva/interior/colony/s_admin)
"Zi" = (
/obj/item/weapon/gun/pistol/holdout,
/obj/item/ammo_magazine/pistol/holdout,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/shiva/interior/bar)
"Zl" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/shiva/interior/colony/s_admin)
"ZD" = (
/obj/item/ammo_magazine/rifle/m16,
-/turf/open/floor/shiva{
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull,
/area/shiva/interior/colony/s_admin)
(1,1,1) = {"
diff --git a/maps/map_files/Kutjevo/Kutjevo.dmm b/maps/map_files/Kutjevo/Kutjevo.dmm
index f61ed5ee3597..ab9ccc4c399e 100644
--- a/maps/map_files/Kutjevo/Kutjevo.dmm
+++ b/maps/map_files/Kutjevo/Kutjevo.dmm
@@ -55,9 +55,7 @@
/area/kutjevo/interior/colony_South/power2)
"acN" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/kutjevo/interior/oob)
"adD" = (
/turf/open/floor/almayer/research/containment/floor1,
@@ -180,14 +178,10 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/complex/med/locks)
"aog" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/kutjevo/exterior/runoff_dunes)
"aoh" = (
/obj/structure/platform_decoration/kutjevo/rock{
@@ -199,9 +193,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/colony_N_East)
"aor" = (
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 5
- },
+/turf/open/floor/kutjevo/colors/orange/edge/northeast,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"aoJ" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -217,9 +209,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/colony_central)
"apD" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/kutjevo/exterior/lz_river)
"aqC" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
@@ -250,18 +240,14 @@
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"arA" = (
/obj/effect/landmark/yautja_teleport,
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/stonyfields)
"arG" = (
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/exterior/runoff_bridge)
"arM" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -311,15 +297,11 @@
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"atC" = (
/obj/item/stack/rods,
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/purple/edge/west,
/area/kutjevo/interior/construction)
"atQ" = (
/obj/item/tank/emergency_oxygen/engi,
@@ -362,18 +344,14 @@
/area/kutjevo/interior/power)
"awJ" = (
/obj/structure/bed/chair,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/kutjevo/interior/complex/Northwest_Dorms)
"axi" = (
/obj/structure/flora/bush/ausbushes/grassybush{
pixel_x = -4;
pixel_y = 10
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/kutjevo/exterior/spring)
"axK" = (
/obj/item/trash/cigbutt/bcigbutt,
@@ -401,9 +379,7 @@
/area/kutjevo/interior/construction)
"aze" = (
/obj/structure/platform/kutjevo,
-/turf/open/floor/coagulation{
- icon_state = "7,0"
- },
+/turf/open/floor/coagulation/icon7_0,
/area/kutjevo/interior/construction)
"azo" = (
/obj/structure/largecrate/random/case/small,
@@ -413,14 +389,10 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/med)
"azO" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/kutjevo/exterior/lz_river)
"aAe" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -428,9 +400,7 @@
icon_state = "p_stair_full";
pixel_y = 16
},
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"aAg" = (
/obj/structure/machinery/recharge_station,
@@ -449,9 +419,7 @@
/area/kutjevo/exterior/runoff_bridge)
"aCo" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"aCD" = (
/turf/open/floor/kutjevo/tan,
@@ -469,9 +437,7 @@
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/floor/coagulation{
- icon_state = "0,8"
- },
+/turf/open/floor/coagulation/icon0_8,
/area/kutjevo/interior/construction)
"aFc" = (
/obj/structure/surface/table/reinforced/prison,
@@ -479,9 +445,7 @@
layer = 3.1
},
/obj/item/device/flashlight/lamp,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"aFf" = (
/obj/item/tool/wirecutters/clippers,
@@ -515,9 +479,7 @@
/area/kutjevo/interior/complex/botany/east)
"aHg" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/kutjevo/interior/oob)
"aHl" = (
/turf/open/floor/kutjevo/colors/cyan,
@@ -624,9 +586,7 @@
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/complex/botany)
"aRu" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/exterior/lz_dunes)
"aRB" = (
/obj/item/fuel_cell,
@@ -634,9 +594,7 @@
/obj/structure/platform/kutjevo/smooth{
dir = 1
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/colony_South/power2)
"aRS" = (
/obj/structure/bed{
@@ -670,17 +628,13 @@
/turf/open/gm/dirt2,
/area/kutjevo/exterior/complex_border/med_park)
"aWt" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/kutjevo/exterior/lz_river)
"aWR" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/exterior/construction)
"aXU" = (
/obj/structure/barricade/wooden{
@@ -702,9 +656,7 @@
pixel_x = -2;
pixel_y = 5
},
-/turf/open/gm/dirtgrassborder2{
- icon_state = "wall3"
- },
+/turf/open/gm/dirtgrassborder2/wall3,
/area/kutjevo/exterior/complex_border/med_park)
"baL" = (
/obj/structure/platform/kutjevo/smooth{
@@ -719,9 +671,7 @@
dir = 8
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"bbc" = (
/obj/structure/surface/table/reinforced/prison,
@@ -743,9 +693,7 @@
/area/kutjevo/interior/complex/botany/east_tech)
"bcl" = (
/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/botany)
"bcG" = (
/obj/structure/platform/kutjevo{
@@ -754,9 +702,7 @@
/obj/structure/platform/kutjevo{
dir = 4
},
-/turf/open/floor/coagulation{
- icon_state = "8,8"
- },
+/turf/open/floor/coagulation/icon8_8,
/area/kutjevo/interior/construction)
"bcO" = (
/obj/item/stack/rods,
@@ -764,9 +710,7 @@
/area/kutjevo/interior/complex/botany)
"bdd" = (
/obj/structure/largecrate,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/exterior/lz_pad)
"bde" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -788,9 +732,7 @@
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/colony_South/power2)
"bex" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/med/auto_doc)
"beR" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -847,9 +789,7 @@
/turf/closed/wall/kutjevo/colony/reinforced,
/area/kutjevo/interior/power)
"bjc" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/kutjevo/exterior/runoff_river)
"bjj" = (
/obj/structure/machinery/light{
@@ -883,18 +823,14 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"bne" = (
/obj/structure/prop/dam/crane{
icon_state = "tractor";
name = "tractor"
},
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"bng" = (
/obj/structure/platform/kutjevo/smooth{
@@ -907,9 +843,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/construction)
"bnF" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/kutjevo/exterior/runoff_bridge)
"bnK" = (
/obj/structure/platform/kutjevo/rock{
@@ -922,17 +856,13 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/colony_north)
"bnQ" = (
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/complex/botany)
"boa" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/power)
"boR" = (
/turf/open/floor/kutjevo/colors/orange,
@@ -992,9 +922,7 @@
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"btI" = (
-/turf/open/floor/plating/kutjevo{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/kutjevo/panelscorched,
/area/kutjevo/interior/complex/botany/east_tech)
"buo" = (
/obj/structure/machinery/power/apc{
@@ -1004,9 +932,7 @@
/turf/open/floor/kutjevo/colors/orange/inner_corner,
/area/kutjevo/interior/foremans_office)
"bux" = (
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/north,
/area/kutjevo/interior/complex/med/auto_doc)
"buG" = (
/obj/effect/landmark/objective_landmark/close,
@@ -1016,24 +942,18 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/exterior/construction)
"bwt" = (
/obj/structure/prop/dam/truck/cargo,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/exterior/Northwest_Colony)
"bwT" = (
/obj/structure/flora/bush/ausbushes/reedbush,
/obj/structure/platform_decoration/kutjevo{
dir = 1
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/kutjevo/exterior/runoff_river)
"byl" = (
/obj/structure/blocker/invisible_wall,
@@ -1071,20 +991,14 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/complex/med/operating)
"bAe" = (
/obj/structure/bed/sofa/south/grey/right,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/exterior/runoff_bridge)
"bBf" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/kutjevo/exterior/runoff_river)
"bBS" = (
/obj/structure/flora/bush/ausbushes/grassybush{
@@ -1095,9 +1009,7 @@
/area/kutjevo/exterior/runoff_bridge)
"bDg" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"bDl" = (
/obj/structure/surface/table/almayer,
@@ -1121,9 +1033,7 @@
/area/kutjevo/interior/colony_S_East)
"bDW" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/kutjevo/interior/oob/dev_room)
"bDX" = (
/obj/structure/machinery/sensortower,
@@ -1170,9 +1080,7 @@
dir = 1
},
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/kutjevo/interior/oob)
"bGg" = (
/obj/structure/flora/bush/desert{
@@ -1190,9 +1098,7 @@
/area/kutjevo/exterior/complex_border/med_rec)
"bGw" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/kutjevo/interior/oob/dev_room)
"bGD" = (
/turf/open/desert/desert_shore/shore_edge1,
@@ -1235,9 +1141,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/exterior/construction)
"bJf" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/runoff_river)
"bKi" = (
/obj/structure/pipes/unary/freezer{
@@ -1263,9 +1167,7 @@
/obj/structure/platform_decoration/kutjevo{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/exterior/complex_border/med_rec)
"bKO" = (
/obj/effect/landmark/monkey_spawn,
@@ -1283,9 +1185,7 @@
/area/kutjevo/interior/colony_central/mine_elevator)
"bMu" = (
/obj/structure/bed/sofa/south/grey,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"bNG" = (
/obj/structure/prop/dam/boulder/boulder1,
@@ -1301,9 +1201,7 @@
dir = 1;
pixel_y = 13
},
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"bOc" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -1328,9 +1226,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/edge/north,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"bQy" = (
/obj/structure/cable/heavyduty{
@@ -1349,9 +1245,7 @@
/obj/structure/machinery/computer/communications{
dir = 1
},
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/orange/edge/east,
/area/kutjevo/interior/foremans_office)
"bRF" = (
/obj/item/stack/sheet/metal,
@@ -1377,9 +1271,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/purple/edge/north,
/area/kutjevo/interior/construction)
"bTN" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -1400,9 +1292,7 @@
"bVB" = (
/obj/structure/blocker/invisible_wall,
/obj/effect/landmark/corpsespawner/security/marshal,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/power)
"bVK" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -1451,9 +1341,7 @@
/area/kutjevo/exterior/lz_dunes)
"cal" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/purple/edge/west,
/area/kutjevo/interior/construction)
"cau" = (
/obj/item/bodybag/tarp/reactive,
@@ -1472,9 +1360,7 @@
/area/kutjevo/interior/complex/med/operating)
"cbv" = (
/obj/structure/platform_decoration/kutjevo,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"cbz" = (
/turf/open/floor/plating/kutjevo,
@@ -1486,9 +1372,7 @@
/turf/open/floor/kutjevo/multi_tiles,
/area/kutjevo/exterior/lz_pad)
"ccu" = (
-/turf/open/floor/kutjevo/tan/grey_inner_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/grey_inner_edge/west,
/area/kutjevo/interior/complex/med)
"cdE" = (
/obj/structure/barricade/deployable{
@@ -1497,9 +1381,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/kutjevo/colors/purple/inner_corner{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/purple/inner_corner/east,
/area/kutjevo/interior/construction)
"cek" = (
/obj/structure/platform_decoration/kutjevo/rock{
@@ -1557,9 +1439,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 5
- },
+/turf/open/floor/kutjevo/tan/alt_edge/northeast,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"cjO" = (
/turf/open/floor/kutjevo/tan/multi_tiles,
@@ -1568,25 +1448,17 @@
/obj/structure/platform_decoration/kutjevo/rock{
dir = 8
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/kutjevo/exterior/scrubland)
"ckF" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/interior/oob/dev_room)
"clo" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/kutjevo/exterior/runoff_dunes)
"cmG" = (
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/east,
/area/kutjevo/interior/complex/med/triage)
"cnb" = (
/obj/structure/reagent_dispensers/watertank,
@@ -1608,9 +1480,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"coL" = (
/obj/structure/machinery/medical_pod/bodyscanner,
@@ -1648,9 +1518,7 @@
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
pixel_x = -28
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/botany)
"cpD" = (
/obj/structure/flora/bush/desert{
@@ -1665,16 +1533,12 @@
pixel_y = 13
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/colors/orange/inner_corner{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/orange/inner_corner/east,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"cqk" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/east,
/area/kutjevo/interior/complex/botany/east)
"cqX" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -1739,9 +1603,7 @@
dir = 4
},
/obj/structure/largecrate/random,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"cum" = (
/obj/structure/extinguisher_cabinet,
@@ -1749,9 +1611,7 @@
/area/kutjevo/interior/oob)
"cun" = (
/obj/structure/platform_decoration/kutjevo,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/kutjevo/exterior/lz_river)
"cuF" = (
/obj/structure/platform/kutjevo{
@@ -1766,17 +1626,13 @@
/turf/open/floor/kutjevo/plate,
/area/kutjevo/interior/colony_central)
"cvm" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"cvF" = (
/obj/structure/reagent_dispensers/watertank{
desc = "A watertank. The label has been written over with the sequence 2---"
},
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/exterior/Northwest_Colony)
"cvV" = (
/obj/item/weapon/gun/rifle/mar40,
@@ -1815,17 +1671,13 @@
/area/kutjevo/exterior/runoff_dunes)
"cBd" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/kutjevo/colors/purple/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/purple/inner_corner/north,
/area/kutjevo/interior/construction)
"cBi" = (
/obj/structure/platform_decoration/kutjevo{
dir = 4
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/scrubland)
"cBq" = (
/obj/structure/flora/bush/ausbushes/ausbush{
@@ -1895,9 +1747,7 @@
/area/kutjevo/interior/complex/botany)
"cFJ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/botany/east_tech)
"cFT" = (
/obj/structure/platform/kutjevo/smooth{
@@ -1906,9 +1756,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"cFY" = (
/obj/item/stool,
@@ -1963,9 +1811,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/colony_central)
"cKi" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/kutjevo/exterior/runoff_dunes)
"cKH" = (
/obj/structure/platform_decoration/kutjevo{
@@ -2000,9 +1846,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/lz_pad)
"cLQ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/kutjevo/exterior/lz_dunes)
"cMc" = (
/obj/structure/platform/kutjevo/smooth,
@@ -2029,9 +1873,7 @@
},
/obj/structure/closet/secure_closet/engineering_electrical,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"cMJ" = (
/obj/structure/platform/kutjevo{
@@ -2058,14 +1900,10 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
},
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/west,
/area/kutjevo/interior/complex/med)
"cPn" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/alt_edge/east,
/area/kutjevo/exterior/lz_dunes)
"cPt" = (
/obj/item/stack/sheet/wood,
@@ -2091,9 +1929,7 @@
},
/obj/structure/platform/kutjevo/smooth,
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"cQz" = (
/obj/effect/landmark/objective_landmark/science,
@@ -2154,9 +1990,7 @@
dir = 4
},
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"cTW" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -2178,9 +2012,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"cUm" = (
/turf/open/floor/plating/kutjevo,
@@ -2241,9 +2073,7 @@
/mob/living/simple_animal/cat/Runtime{
name = "Garry"
},
-/turf/open/gm/dirtgrassborder2{
- dir = 8
- },
+/turf/open/gm/dirtgrassborder2/west,
/area/kutjevo/exterior/complex_border/med_park)
"cXL" = (
/turf/open/floor/plating/kutjevo,
@@ -2273,9 +2103,7 @@
range = 15
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/med)
"dax" = (
/obj/structure/sink{
@@ -2321,9 +2149,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/complex/botany)
"dcC" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/kutjevo/exterior/spring)
"ddi" = (
/obj/structure/platform/kutjevo,
@@ -2360,10 +2186,7 @@
/obj/structure/bookcase{
icon_state = "book-5"
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles/west,
/area/kutjevo/interior/complex/med)
"dew" = (
/turf/open/floor/kutjevo/plate,
@@ -2382,15 +2205,11 @@
/turf/open/floor/kutjevo/grey/plate,
/area/kutjevo/interior/complex/Northwest_Dorms)
"dfY" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/kutjevo/exterior/lz_river)
"dga" = (
/obj/item/storage/belt/marine,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"dgs" = (
/obj/item/toy/crayon/rainbow{
@@ -2450,17 +2269,13 @@
/obj/structure/platform/kutjevo/smooth{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"dmy" = (
/turf/open/asphalt/cement_sunbleached,
/area/kutjevo/exterior/lz_pad)
"dnd" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/kutjevo/exterior/spring)
"dnl" = (
/obj/structure/platform/kutjevo/rock,
@@ -2495,9 +2310,7 @@
/obj/structure/platform_decoration/kutjevo{
dir = 8
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/kutjevo/exterior/runoff_river)
"dpt" = (
/obj/structure/machinery/landinglight/ds2/delayone{
@@ -2517,9 +2330,7 @@
/obj/structure/platform/kutjevo/smooth{
dir = 8
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/kutjevo/exterior/runoff_bridge)
"dqH" = (
/obj/structure/barricade/handrail/kutjevo{
@@ -2528,9 +2339,7 @@
/obj/structure/closet/secure_closet/engineering_electrical,
/obj/structure/platform/kutjevo/smooth,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"dqK" = (
/obj/structure/flora/grass/desert/lightgrass_1,
@@ -2538,14 +2347,10 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/oob/dev_room)
"dsi" = (
-/turf/open/floor/coagulation{
- icon_state = "7,0"
- },
+/turf/open/floor/coagulation/icon7_0,
/area/kutjevo/exterior/scrubland)
"dsp" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/scrubland)
"dsN" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -2562,9 +2367,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/construction)
"dte" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/kutjevo/exterior/runoff_river)
"dtM" = (
/obj/structure/blocker/invisible_wall,
@@ -2574,9 +2377,7 @@
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"dtV" = (
/obj/structure/machinery/blackbox_recorder,
@@ -2620,14 +2421,10 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/med)
"dwP" = (
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/orange/edge/east,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"dxc" = (
/obj/structure/machinery/light{
@@ -2640,18 +2437,14 @@
/area/kutjevo/interior/oob)
"dxL" = (
/obj/structure/prop/dam/truck/cargo,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"dyz" = (
/obj/structure/flora/bush/ausbushes/grassybush{
pixel_x = -6;
pixel_y = 10
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/kutjevo/exterior/runoff_river)
"dyB" = (
/obj/effect/landmark/objective_landmark/close,
@@ -2661,14 +2454,10 @@
/obj/structure/platform_decoration/kutjevo{
dir = 1
},
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/kutjevo/exterior/lz_river)
"dyW" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/kutjevo/exterior/lz_pad)
"dzd" = (
/obj/item/storage/briefcase,
@@ -2692,9 +2481,7 @@
/turf/open/floor/kutjevo/multi_tiles,
/area/kutjevo/interior/power)
"dzH" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/lz_dunes)
"dzN" = (
/obj/item/stack/rods,
@@ -2702,17 +2489,13 @@
/area/kutjevo/exterior/complex_border/med_rec)
"dAB" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"dAH" = (
/turf/open/desert/desert_shore/shore_edge1,
/area/kutjevo/exterior/runoff_bridge)
"dAM" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/kutjevo/exterior/runoff_river)
"dBj" = (
/turf/open/floor/kutjevo/plate,
@@ -2722,9 +2505,7 @@
pixel_x = -8;
pixel_y = 10
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/kutjevo/exterior/spring)
"dBO" = (
/obj/structure/ladder,
@@ -2759,9 +2540,7 @@
/turf/open/floor/kutjevo/colors/green,
/area/kutjevo/exterior/runoff_bridge)
"dDm" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/kutjevo/exterior/runoff_dunes)
"dDq" = (
/obj/item/stack/sheet/metal,
@@ -2780,9 +2559,7 @@
/turf/open/auto_turf/sand/layer2,
/area/kutjevo/exterior/Northwest_Colony)
"dFk" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/kutjevo/exterior/scrubland)
"dFx" = (
/obj/item/stack/sheet/metal,
@@ -2809,9 +2586,7 @@
dir = 4
},
/obj/structure/flora/bush/ausbushes/reedbush,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/kutjevo/exterior/runoff_river)
"dHj" = (
/obj/structure/machinery/door_control/brbutton/alt{
@@ -2840,9 +2615,7 @@
/area/kutjevo/interior/power)
"dIc" = (
/obj/structure/flora/bush/ausbushes/grassybush,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/kutjevo/exterior/runoff_river)
"dIo" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
@@ -2874,17 +2647,13 @@
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"dKu" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/kutjevo/exterior/runoff_river)
"dKz" = (
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/kutjevo/interior/colony_north)
"dKO" = (
/obj/structure/bed/chair{
@@ -2903,14 +2672,10 @@
/turf/open/floor/kutjevo/colors/cyan,
/area/kutjevo/interior/complex/med/cells)
"dLZ" = (
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/kutjevo/interior/power/comms)
"dNc" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/kutjevo/exterior/runoff_river)
"dNg" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -2924,9 +2689,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/colony_north)
"dOj" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/kutjevo/exterior/spring)
"dOJ" = (
/obj/structure/barricade/deployable,
@@ -2945,9 +2708,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/scrubland)
"dQs" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/med/locks)
"dQv" = (
/obj/structure/girder,
@@ -2965,9 +2726,7 @@
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/power)
"dRj" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/exterior/runoff_bridge)
"dRX" = (
/obj/structure/window/framed/kutjevo/reinforced,
@@ -2991,19 +2750,13 @@
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"dTn" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/exterior/Northwest_Colony)
"dTp" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/kutjevo/exterior/lz_river)
"dTJ" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/runoff_river)
"dTL" = (
/obj/structure/bed/chair{
@@ -3024,9 +2777,7 @@
/area/kutjevo/exterior/spring)
"dUy" = (
/obj/structure/platform/kutjevo/smooth,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"dUE" = (
/obj/structure/flora/grass/desert/lightgrass_10,
@@ -3116,9 +2867,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/colony_South)
"ebv" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/kutjevo/exterior/spring)
"ebB" = (
/turf/open/auto_turf/sand/layer1,
@@ -3131,9 +2880,7 @@
dir = 4
},
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/kutjevo/interior/oob)
"ebZ" = (
/obj/structure/platform_decoration/kutjevo/rock{
@@ -3153,9 +2900,7 @@
/area/kutjevo/interior/complex/med/auto_doc)
"ecO" = (
/obj/structure/machinery/light,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/exterior/construction)
"ecV" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -3168,9 +2913,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/foremans_office)
"eem" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/kutjevo/exterior/runoff_bridge)
"eeP" = (
/obj/structure/platform/kutjevo/smooth{
@@ -3180,17 +2923,13 @@
/area/kutjevo/interior/complex/botany)
"efr" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/southeast,
/area/kutjevo/interior/colony_South/power2)
"efF" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/purple/edge/north,
/area/kutjevo/interior/construction)
"efS" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -3207,9 +2946,7 @@
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"egu" = (
/obj/structure/platform/kutjevo/smooth{
@@ -3218,9 +2955,7 @@
/obj/structure/machinery/optable,
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/colonist/kutjevo/burst,
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/west,
/area/kutjevo/interior/complex/med/operating)
"egx" = (
/obj/structure/platform_decoration/kutjevo{
@@ -3251,9 +2986,7 @@
/obj/item/bedsheet/brown{
pixel_y = 13
},
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/grey_edge/west,
/area/kutjevo/interior/complex/Northwest_Dorms)
"egZ" = (
/turf/open/auto_turf/sand/layer1,
@@ -3298,9 +3031,7 @@
dir = 8;
network = null
},
-/turf/open/floor/kutjevo/tan/alt_inner_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_inner_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"ekJ" = (
/obj/structure/bed/chair{
@@ -3311,18 +3042,14 @@
"ekV" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"ele" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/complex/botany)
"elo" = (
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/kutjevo/exterior/scrubland)
"emi" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -3343,9 +3070,7 @@
/obj/structure/platform/kutjevo/smooth{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/colony_South/power2)
"enK" = (
/obj/structure/window{
@@ -3379,9 +3104,7 @@
/obj/structure/barricade/handrail/kutjevo{
layer = 3.05
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"epd" = (
/obj/item/reagent_container/food/drinks/cans/thirteenloko,
@@ -3394,9 +3117,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/construction)
"epG" = (
-/turf/open/gm/dirtgrassborder2{
- icon_state = "wall2"
- },
+/turf/open/gm/dirtgrassborder2/wall2,
/area/kutjevo/exterior/complex_border/med_park)
"epQ" = (
/obj/effect/landmark/monkey_spawn,
@@ -3409,9 +3130,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/exterior/construction)
"eqJ" = (
/obj/structure/flora/grass/desert/lightgrass_2,
@@ -3473,9 +3192,7 @@
pixel_x = 5;
pixel_y = -12
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/runoff_river)
"eud" = (
/obj/effect/landmark/xeno_spawn,
@@ -3490,15 +3207,11 @@
pixel_y = 13
},
/obj/item/prop/helmetgarb/spent_buckshot,
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/edge/north,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"euI" = (
/obj/item/clipboard,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"evr" = (
/turf/open/floor/kutjevo/colors,
@@ -3535,9 +3248,7 @@
pixel_x = 5;
pixel_y = 12
},
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/kutjevo/exterior/runoff_bridge)
"exD" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -3569,9 +3280,7 @@
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/colony_north)
"eyU" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/kutjevo/exterior/lz_river)
"ezg" = (
/obj/structure/surface/table/almayer,
@@ -3581,9 +3290,7 @@
/obj/structure/largecrate/random/case/small{
pixel_y = 7
},
-/turf/open/floor/kutjevo/colors/purple/inner_corner{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/purple/inner_corner/east,
/area/kutjevo/interior/construction)
"ezm" = (
/obj/structure/largecrate/random/case/double,
@@ -3650,9 +3357,7 @@
/area/kutjevo/interior/complex/med/cells)
"eDQ" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/kutjevo/interior/oob/dev_room)
"eDS" = (
/obj/structure/prop/dam/boulder/boulder3,
@@ -3670,9 +3375,7 @@
/turf/open/floor/kutjevo/colors/orange,
/area/kutjevo/interior/colony_South/power2)
"eFy" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/lz_pad)
"eFX" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -3705,9 +3408,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/spring)
"eIL" = (
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/east,
/area/kutjevo/interior/complex/med/auto_doc)
"eIZ" = (
/obj/item/stack/rods,
@@ -3717,15 +3418,11 @@
/obj/structure/platform/kutjevo/smooth{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/botany)
"eJi" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/power)
"eJo" = (
/obj/effect/landmark/corpsespawner/security/marshal,
@@ -3733,9 +3430,7 @@
/area/kutjevo/interior/colony_South/power2)
"eKr" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river{
- color = "#995555"
- },
+/turf/open/gm/river/red,
/area/kutjevo/interior/oob)
"eLO" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -3778,22 +3473,16 @@
/obj/structure/platform/kutjevo/smooth{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"eOc" = (
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 9
- },
+/turf/open/floor/kutjevo/colors/orange/edge/northwest,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"eOt" = (
/obj/structure/platform_decoration/kutjevo{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"eOy" = (
/obj/effect/landmark/monkey_spawn,
@@ -3829,9 +3518,7 @@
dir = 4
},
/obj/structure/platform/kutjevo,
-/turf/open/floor/coagulation{
- icon_state = "8,0"
- },
+/turf/open/floor/coagulation/icon8_0,
/area/kutjevo/interior/colony_north)
"ePx" = (
/turf/open/auto_turf/sand/layer0,
@@ -3851,9 +3538,7 @@
/area/kutjevo/interior/power)
"eQK" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/kutjevo/interior/oob/dev_room)
"eQQ" = (
/obj/structure/machinery/colony_floodlight,
@@ -3889,9 +3574,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/complex/med/locks)
"eSH" = (
/turf/open/floor/kutjevo/colors/orange/inner_corner,
@@ -3909,9 +3592,7 @@
/area/kutjevo/exterior/runoff_river)
"eTy" = (
/obj/item/weapon/gun/rifle/mar40,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"eTP" = (
/obj/structure/machinery/light/small{
@@ -3925,9 +3606,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/construction)
"eUA" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/construction)
"eUJ" = (
/obj/structure/closet/crate,
@@ -3938,9 +3617,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/edge/north,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"eVy" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -3953,9 +3630,7 @@
layer = 3.1
},
/obj/item/clipboard,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"eVR" = (
/turf/open/gm/river/desert/deep,
@@ -4005,9 +3680,7 @@
/turf/open/floor/kutjevo/tiles,
/area/kutjevo/exterior/Northwest_Colony)
"fbK" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/alt_edge/west,
/area/kutjevo/interior/colony_central)
"fbZ" = (
/turf/open/floor/kutjevo/tan,
@@ -4031,18 +3704,14 @@
/obj/structure/platform/kutjevo/smooth{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"fdF" = (
/obj/structure/platform_decoration/kutjevo{
dir = 8
},
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/power)
"fdH" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -4067,9 +3736,7 @@
"feQ" = (
/obj/structure/closet,
/obj/item/clothing/under/kutjevo/drysuit,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"feR" = (
/obj/structure/surface/rack,
@@ -4100,9 +3767,7 @@
/obj/structure/surface/table/almayer,
/obj/item/device/defibrillator,
/obj/structure/machinery/light,
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/east,
/area/kutjevo/interior/complex/med/auto_doc)
"ffP" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
@@ -4132,9 +3797,7 @@
/area/kutjevo/interior/complex/botany/east)
"fiq" = (
/obj/structure/flora/bush/ausbushes/reedbush,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/runoff_river)
"fiE" = (
/obj/item/stack/sheet/wood,
@@ -4186,16 +3849,12 @@
/area/kutjevo/interior/colony_South)
"flp" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/exterior/runoff_bridge)
"flP" = (
/obj/structure/blocker/invisible_wall,
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river{
- color = "#995555"
- },
+/turf/open/gm/river/red,
/area/kutjevo/interior/oob)
"flW" = (
/obj/effect/landmark/yautja_teleport,
@@ -4215,9 +3874,7 @@
"fmR" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/drinks/bottle/vodka,
-/turf/open/floor/kutjevo/colors/purple/inner_corner{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/purple/inner_corner/east,
/area/kutjevo/interior/construction)
"fne" = (
/obj/item/trash/barcardine,
@@ -4230,9 +3887,7 @@
},
/obj/item/clipboard,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"foI" = (
/obj/structure/barricade/wooden{
@@ -4243,18 +3898,14 @@
dir = 4
},
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/botany)
"fpj" = (
/obj/item/trash/hotdog,
/turf/open/auto_turf/sand/layer2,
/area/kutjevo/interior/construction)
"fpJ" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/complex/med/locks)
"fpM" = (
/obj/structure/platform_decoration/kutjevo{
@@ -4323,9 +3974,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/power)
"fui" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/kutjevo/exterior/scrubland)
"fuz" = (
/turf/open/auto_turf/sand/layer1,
@@ -4335,9 +3984,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/colony_north)
"fwF" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/colony_central)
"fxL" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -4348,9 +3995,7 @@
/area/kutjevo/interior/oob/dev_room)
"fyB" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"fyD" = (
/turf/open/floor/kutjevo/tan/multi_tiles,
@@ -4364,9 +4009,7 @@
"fyZ" = (
/obj/structure/closet,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"fAE" = (
/obj/effect/landmark/hunter_secondary,
@@ -4374,9 +4017,7 @@
/area/kutjevo/exterior/complex_border/botany_medical_cave)
"fAF" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/kutjevo/interior/oob)
"fAT" = (
/obj/item/device/flashlight/lamp/tripod/grey,
@@ -4393,16 +4034,12 @@
/obj/structure/platform/kutjevo/smooth{
dir = 1
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"fEu" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"fEz" = (
/obj/structure/surface/table/almayer,
@@ -4430,9 +4067,7 @@
/obj/item/book/manual/nuclear,
/obj/structure/machinery/light,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/colony_South/power2)
"fGk" = (
/obj/item/clipboard,
@@ -4470,9 +4105,7 @@
"fKD" = (
/obj/item/stack/sheet/wood,
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"fKJ" = (
/obj/structure/reagent_dispensers/water_cooler{
@@ -4486,10 +4119,7 @@
},
/obj/structure/machinery/light,
/obj/structure/platform/kutjevo/smooth,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles/west,
/area/kutjevo/interior/complex/med/operating)
"fKL" = (
/obj/structure/surface/table/almayer,
@@ -4524,9 +4154,7 @@
/obj/structure/platform/kutjevo{
dir = 4
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/runoff_river)
"fNe" = (
/obj/effect/landmark/nightmare{
@@ -4557,14 +4185,10 @@
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/runoff_river)
"fQg" = (
-/turf/open/gm/dirtgrassborder2{
- dir = 8
- },
+/turf/open/gm/dirtgrassborder2/west,
/area/kutjevo/exterior/complex_border/med_park)
"fQn" = (
/obj/structure/girder,
@@ -4591,9 +4215,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/power/comms)
"fQJ" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -4620,9 +4242,7 @@
dir = 4
},
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"fSm" = (
/obj/structure/sink{
@@ -4632,9 +4252,7 @@
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/spray/cleaner,
/obj/item/roller,
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/east,
/area/kutjevo/interior/complex/med/operating)
"fSK" = (
/obj/structure/surface/table/gamblingtable,
@@ -4642,9 +4260,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/lz_pad)
"fTk" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"fTR" = (
/obj/structure/closet/secure_closet/hydroponics,
@@ -4668,9 +4284,7 @@
"fVm" = (
/obj/structure/surface/table/almayer,
/obj/item/newspaper,
-/turf/open/floor/kutjevo/tan/alt_inner_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_inner_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"fVv" = (
/obj/structure/largecrate/random/secure,
@@ -4701,9 +4315,7 @@
"fYE" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/shuttle/dropship/flight/lz2,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 5
- },
+/turf/open/floor/kutjevo/tan/alt_edge/northeast,
/area/kutjevo/exterior/lz_pad)
"fYF" = (
/obj/structure/bed/chair/comfy{
@@ -4712,17 +4324,13 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/lz_pad)
"fYI" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/kutjevo/exterior/runoff_river)
"fZT" = (
/obj/structure/platform/kutjevo/smooth{
dir = 4
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/kutjevo/exterior/runoff_bridge)
"gbv" = (
/turf/closed/wall/kutjevo/rock/border,
@@ -4731,9 +4339,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/alt_edge/east,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"gce" = (
/obj/item/device/radio,
@@ -4762,9 +4368,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"gdX" = (
/obj/structure/surface/table/almayer,
@@ -4787,18 +4391,14 @@
dir = 1
},
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/kutjevo/interior/oob/dev_room)
"ggC" = (
/obj/structure/fence,
/turf/open/floor/almayer/research/containment/floor2,
/area/kutjevo/exterior/Northwest_Colony)
"ghj" = (
-/turf/open/floor/kutjevo/colors/orange/inner_corner{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/orange/inner_corner/west,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"ghk" = (
/obj/structure/bed/sofa/vert/white,
@@ -4816,9 +4416,7 @@
pixel_y = 6
},
/obj/structure/machinery/light,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/power/comms)
"giY" = (
/obj/item/device/flashlight/lamp/tripod/grey,
@@ -4843,9 +4441,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/north,
/area/kutjevo/interior/complex/med/operating)
"gld" = (
/turf/open/auto_turf/sand/layer0,
@@ -4886,14 +4482,10 @@
/turf/open/floor/kutjevo/multi_tiles,
/area/kutjevo/exterior/runoff_dunes)
"goa" = (
-/turf/open/floor/coagulation{
- icon_state = "0,0"
- },
+/turf/open/floor/coagulation/icon0_0,
/area/kutjevo/exterior/scrubland)
"goh" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/kutjevo/exterior/runoff_dunes)
"gok" = (
/obj/structure/flora/bush/desert{
@@ -4914,9 +4506,7 @@
"gpm" = (
/obj/structure/bed/roller,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/north,
/area/kutjevo/interior/complex/med/triage)
"gqQ" = (
/obj/item/weapon/gun/rifle/m16,
@@ -4938,9 +4528,7 @@
icon_state = "tree_2";
pixel_y = 14
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/spring)
"gsq" = (
/obj/structure/filingcabinet,
@@ -4952,9 +4540,7 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/north,
/area/kutjevo/interior/complex/med)
"gtr" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -4964,10 +4550,7 @@
"gtE" = (
/obj/structure/blocker/invisible_wall,
/obj/structure/platform/kutjevo,
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/kutjevo/interior/power)
"gtL" = (
/obj/structure/platform/kutjevo/smooth{
@@ -4977,9 +4560,7 @@
dir = 8
},
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"gvO" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -4993,17 +4574,13 @@
},
/obj/structure/closet,
/obj/item/clothing/under/kutjevo,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"gwv" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/alt_edge/west,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"gwC" = (
/obj/structure/platform/kutjevo{
@@ -5011,17 +4588,13 @@
},
/obj/structure/blocker/invisible_wall,
/obj/structure/platform/kutjevo,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/power)
"gwY" = (
/turf/closed/wall/kutjevo/colony,
/area/kutjevo/interior/complex/med)
"gxs" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/kutjevo/exterior/scrubland)
"gxD" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -5029,9 +4602,7 @@
icon_state = "p_stair_full";
pixel_y = 16
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"gxK" = (
/obj/structure/blocker/invisible_wall,
@@ -5041,9 +4612,7 @@
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgibarm"
},
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/exterior/runoff_bridge)
"gzb" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -5074,9 +4643,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/exterior/scrubland)
"gAM" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/alt_edge/west,
/area/kutjevo/exterior/lz_dunes)
"gBa" = (
/obj/structure/largecrate/random/case/double,
@@ -5123,9 +4690,7 @@
"gCh" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/colony_South/power2)
"gCt" = (
/obj/structure/morgue{
@@ -5145,9 +4710,7 @@
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"gEc" = (
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/west,
/area/kutjevo/interior/complex/med/operating)
"gEe" = (
/obj/effect/decal/cleanable/blood/xeno{
@@ -5179,15 +4742,11 @@
/area/kutjevo/interior/colony_N_East)
"gFo" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 10
- },
+/turf/open/floor/kutjevo/tan/alt_edge/southwest,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"gFt" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/alt_edge/west,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"gFA" = (
/turf/open/desert/desert_shore/shore_edge1,
@@ -5201,9 +4760,7 @@
dir = 4
},
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"gHp" = (
/obj/structure/surface/rack,
@@ -5216,9 +4773,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/spring)
"gJx" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_corner/east,
/area/kutjevo/exterior/spring)
"gJB" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -5274,9 +4829,7 @@
/turf/open/floor/kutjevo/colors/orange,
/area/kutjevo/interior/colony_South/power2)
"gNI" = (
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/east,
/area/kutjevo/interior/complex/med/operating)
"gNZ" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -5343,9 +4896,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/kutjevo/tan/grey_inner_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_inner_edge/north,
/area/kutjevo/interior/complex/med)
"gTo" = (
/obj/structure/filingcabinet,
@@ -5402,9 +4953,7 @@
"gWo" = (
/obj/structure/blocker/invisible_wall,
/obj/structure/filtration/coagulation_arm,
-/turf/open/gm/river{
- color = "#990000"
- },
+/turf/open/gm/river/darkred,
/area/kutjevo/interior/oob)
"gWF" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -5497,9 +5046,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/colony_central)
"hdF" = (
-/turf/open/floor/plating/kutjevo{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/kutjevo/platingdmg1,
/area/kutjevo/interior/complex/botany/east_tech)
"hdQ" = (
/obj/structure/platform/kutjevo/smooth,
@@ -5516,18 +5063,14 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/lz_dunes)
"hfu" = (
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/west,
/area/kutjevo/interior/complex/med/triage)
"hhu" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras{
dir = 4
},
-/turf/open/floor/kutjevo/tan/alt_inner_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/alt_inner_edge/east,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"hii" = (
/turf/open/auto_turf/sand/layer2,
@@ -5541,9 +5084,7 @@
},
/obj/structure/closet/secure_closet/engineering_personal,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"hiM" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
@@ -5565,9 +5106,7 @@
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/construction)
"hmR" = (
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 9
- },
+/turf/open/floor/kutjevo/colors/orange/edge/northwest,
/area/kutjevo/interior/foremans_office)
"hnm" = (
/obj/effect/landmark/objective_landmark/far,
@@ -5647,9 +5186,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/med)
"hrz" = (
/turf/open/auto_turf/sand/layer0,
@@ -5713,14 +5250,10 @@
dir = 1
},
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"hwA" = (
-/turf/open/floor/plating/kutjevo{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/kutjevo/platingdmg3,
/area/kutjevo/interior/complex/botany/east_tech)
"hwO" = (
/obj/structure/machinery/light{
@@ -5805,14 +5338,10 @@
/area/kutjevo/interior/complex/Northwest_Dorms)
"hCl" = (
/obj/structure/bed/sofa/south/grey/right,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"hCu" = (
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/complex/botany/east)
"hDi" = (
/obj/structure/filingcabinet/chestdrawer{
@@ -5826,9 +5355,7 @@
pixel_y = 16
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"hDu" = (
/obj/structure/surface/rack,
@@ -5865,9 +5392,7 @@
/turf/open/floor/kutjevo/plate,
/area/kutjevo/interior/colony_central)
"hET" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/kutjevo/exterior/spring)
"hFi" = (
/obj/structure/barricade/wooden{
@@ -5894,9 +5419,7 @@
/turf/open/floor/kutjevo/plate,
/area/kutjevo/interior/colony_central)
"hHi" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/botany)
"hHo" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber,
@@ -5908,16 +5431,12 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/orange/edge/west,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"hJN" = (
/obj/structure/largecrate/random,
/obj/item/storage/fancy/cigarettes/lucky_strikes,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/exterior/runoff_bridge)
"hKE" = (
/obj/structure/platform/kutjevo{
@@ -5952,18 +5471,14 @@
"hOm" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/m94,
-/turf/open/floor/kutjevo/colors/purple/inner_corner{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/purple/inner_corner/west,
/area/kutjevo/interior/construction)
"hOB" = (
/obj/structure/bed/chair{
dir = 8;
pixel_y = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/botany)
"hPf" = (
/obj/structure/window/framed/kutjevo/reinforced,
@@ -5987,9 +5502,7 @@
/area/kutjevo/interior/oob/dev_room)
"hRm" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/kutjevo{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/kutjevo/platingdmg3,
/area/kutjevo/interior/complex/Northwest_Dorms)
"hRG" = (
/obj/structure/prop/dam/boulder/boulder2,
@@ -6030,9 +5543,7 @@
/turf/closed/wall/kutjevo/rock,
/area/kutjevo/interior/colony_north)
"hUy" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/kutjevo/interior/complex/botany/east_tech)
"hVg" = (
/obj/effect/spawner/random/tool,
@@ -6050,9 +5561,7 @@
dir = 8
},
/obj/structure/largecrate/random/secure,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/med/auto_doc)
"hWD" = (
/obj/structure/lattice,
@@ -6136,16 +5645,11 @@
/obj/structure/platform/kutjevo{
dir = 1
},
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/kutjevo/interior/oob)
"ieA" = (
/obj/item/tool/weldingtool,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 5
- },
+/turf/open/floor/kutjevo/tan/alt_edge/northeast,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"ify" = (
/turf/closed/wall/kutjevo/colony,
@@ -6156,16 +5660,12 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/grey_edge/west,
/area/kutjevo/interior/construction)
"ifT" = (
/obj/structure/largecrate/random,
/obj/structure/machinery/light,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/colony_South/power2)
"ige" = (
/obj/structure/blocker/invisible_wall,
@@ -6199,18 +5699,14 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/complex/botany/east_tech)
"ikW" = (
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/purple/edge/east,
/area/kutjevo/interior/construction)
"imG" = (
/obj/structure/bed/sofa/vert/white/top{
pixel_y = 17
},
/obj/structure/bed/sofa/vert/white,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/med)
"inR" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -6220,9 +5716,7 @@
/area/kutjevo/exterior/construction)
"iob" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/kutjevo/interior/oob)
"ips" = (
/obj/item/bodybag/tarp/reactive,
@@ -6230,9 +5724,7 @@
/area/kutjevo/interior/power)
"ipy" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"ipz" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
@@ -6262,9 +5754,7 @@
/obj/structure/platform/kutjevo{
dir = 4
},
-/turf/open/gm/river{
- color = "#990000"
- },
+/turf/open/gm/river/darkred,
/area/kutjevo/interior/oob)
"irK" = (
/obj/structure/machinery/light/small{
@@ -6282,9 +5772,7 @@
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/botany)
"iuz" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/kutjevo/exterior/runoff_river)
"iuL" = (
/obj/structure/machinery/vending/coffee,
@@ -6311,9 +5799,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/colony_South)
"iwV" = (
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/complex/botany)
"iwW" = (
/obj/item/stool{
@@ -6326,29 +5812,21 @@
/turf/open/gm/river/desert/deep,
/area/kutjevo/exterior/runoff_river)
"iyd" = (
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/north,
/area/kutjevo/interior/complex/med/operating)
"iyP" = (
-/turf/open/floor/coagulation{
- icon_state = "7,8-2"
- },
+/turf/open/floor/coagulation/icon7_8_2,
/area/kutjevo/exterior/scrubland)
"izS" = (
/obj/structure/machinery/light,
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/east,
/area/kutjevo/interior/complex/med/triage)
"izY" = (
/obj/effect/decal/cleanable/blood/xeno,
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/lz_pad)
"iBa" = (
-/turf/open/floor/kutjevo/colors/orange/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/inner_corner/north,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"iBd" = (
/obj/structure/filingcabinet{
@@ -6386,9 +5864,7 @@
"iCw" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/tan/alt_inner_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/alt_inner_edge/west,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"iCG" = (
/obj/structure/platform/kutjevo{
@@ -6396,9 +5872,7 @@
},
/obj/structure/blocker/invisible_wall,
/obj/structure/platform/kutjevo,
-/turf/open/gm/river{
- color = "#990000"
- },
+/turf/open/gm/river/darkred,
/area/kutjevo/interior/power)
"iCQ" = (
/obj/structure/flora/grass/desert/lightgrass_9,
@@ -6448,9 +5922,7 @@
/obj/structure/platform/kutjevo{
dir = 4
},
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/kutjevo/interior/construction)
"iJo" = (
/obj/structure/platform/kutjevo{
@@ -6459,9 +5931,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/exterior/scrubland)
"iJq" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/kutjevo/exterior/runoff_dunes)
"iJx" = (
/obj/structure/largecrate/random/case/double,
@@ -6477,9 +5947,7 @@
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/floor/coagulation{
- icon_state = "0,8"
- },
+/turf/open/floor/coagulation/icon0_8,
/area/kutjevo/interior/colony_north)
"iKE" = (
/obj/structure/surface/table/almayer,
@@ -6512,14 +5980,10 @@
/obj/structure/sign/poster{
pixel_y = 32
},
-/turf/open/floor/kutjevo/colors/purple/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/purple/inner_corner/north,
/area/kutjevo/interior/construction)
"iMR" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/colony_central)
"iNt" = (
/obj/structure/surface/table/reinforced/prison,
@@ -6538,9 +6002,7 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/alt_edge/west,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"iPk" = (
/obj/item/prop/alien/hugger,
@@ -6567,9 +6029,7 @@
/turf/open/floor/almayer/research/containment/floor2,
/area/kutjevo/interior/oob)
"iSN" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/kutjevo/exterior/lz_river)
"iTc" = (
/obj/effect/decal/cleanable/blood,
@@ -6654,35 +6114,27 @@
/obj/structure/platform/kutjevo{
dir = 1
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"iXz" = (
/obj/structure/window/framed/kutjevo/reinforced,
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/colony_central/mine_elevator)
"iXD" = (
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/exterior/scrubland)
"iYo" = (
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/med/auto_doc)
"iYO" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 5
- },
+/turf/open/floor/kutjevo/tan/grey_edge/northeast,
/area/kutjevo/interior/complex/Northwest_Dorms)
"iZi" = (
/obj/structure/barricade/wooden{
dir = 1;
pixel_y = 20
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"iZu" = (
/obj/structure/machinery/light,
@@ -6720,16 +6172,12 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/west,
/area/kutjevo/interior/complex/med/auto_doc)
"jcl" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 9
- },
+/turf/open/floor/kutjevo/tan/alt_edge/northwest,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"jcI" = (
/turf/open/auto_turf/sand/layer1,
@@ -6816,9 +6264,7 @@
/turf/open/floor/kutjevo/multi_tiles,
/area/kutjevo/exterior/runoff_bridge)
"jiX" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 6
- },
+/turf/open/floor/kutjevo/tan/grey_edge/southeast,
/area/kutjevo/interior/complex/Northwest_Dorms)
"jjt" = (
/obj/structure/machinery/light{
@@ -6854,9 +6300,7 @@
pixel_x = 4;
pixel_y = 8
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"jnr" = (
/turf/open/floor/kutjevo/tan/alt_edge,
@@ -6890,9 +6334,7 @@
/obj/structure/platform_decoration/kutjevo{
dir = 4
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/kutjevo/exterior/runoff_river)
"jog" = (
/obj/effect/landmark/static_comms/net_one,
@@ -6900,9 +6342,7 @@
/area/kutjevo/exterior/telecomm/lz1_south)
"joo" = (
/obj/item/cell/high,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"joL" = (
/obj/structure/filingcabinet,
@@ -6936,14 +6376,10 @@
/obj/structure/platform/kutjevo/rock{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_7"
- },
+/turf/open/mars_cave/mars_cave_7,
/area/kutjevo/exterior/scrubland)
"jrk" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/interior/complex/botany)
"jrs" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -7050,9 +6486,7 @@
/turf/open/gm/river/desert/deep/covered,
/area/kutjevo/interior/complex/med/operating)
"jwx" = (
-/turf/open/floor/kutjevo/tan/grey_inner_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_inner_edge/north,
/area/kutjevo/interior/complex/med)
"jwA" = (
/turf/open/floor/kutjevo/multi_tiles,
@@ -7073,9 +6507,7 @@
dir = 8
},
/obj/structure/machinery/vending/cola,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"jxS" = (
/obj/structure/bed/chair{
@@ -7094,9 +6526,7 @@
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/complex/botany/east_tech)
"jyz" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/kutjevo/exterior/lz_river)
"jzb" = (
/obj/structure/prop/dam/truck/mining,
@@ -7110,16 +6540,12 @@
/turf/closed/wall/kutjevo/colony/reinforced,
/area/kutjevo/interior/complex/med)
"jzm" = (
-/turf/open/floor/kutjevo/colors/orange/inner_corner{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/orange/inner_corner/east,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"jzQ" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/east,
/area/kutjevo/interior/complex/med)
"jBe" = (
/obj/structure/closet/firecloset/full,
@@ -7144,9 +6570,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/complex/botany)
"jEh" = (
-/turf/open/floor/plating/kutjevo{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/kutjevo/panelscorched,
/area/kutjevo/interior/complex/Northwest_Dorms)
"jEo" = (
/obj/structure/machinery/camera/autoname{
@@ -7185,9 +6609,7 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/item/fuel_cell,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"jGF" = (
/turf/open/floor/almayer/research/containment/floor2,
@@ -7231,18 +6653,14 @@
"jJo" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/radio,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"jKc" = (
/obj/structure/platform/kutjevo/smooth,
/turf/open/asphalt/cement_sunbleached,
/area/kutjevo/interior/power)
"jKm" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/alt_edge/east,
/area/kutjevo/interior/colony_central)
"jKI" = (
/turf/closed/wall/kutjevo/colony/reinforced,
@@ -7257,9 +6675,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/colony_South/power2)
"jOx" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/kutjevo/exterior/runoff_dunes)
"jOA" = (
/obj/item/prop/alien/hugger,
@@ -7267,9 +6683,7 @@
dir = 1;
pixel_y = 20
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"jPb" = (
/obj/structure/monorail,
@@ -7323,9 +6737,7 @@
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"jSQ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/botany/east)
"jUK" = (
/obj/structure/machinery/landinglight/ds2{
@@ -7344,9 +6756,7 @@
/obj/structure/platform/kutjevo{
dir = 4
},
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/kutjevo/interior/colony_north)
"jXo" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -7361,9 +6771,7 @@
/turf/open/auto_turf/sand/layer2,
/area/kutjevo/interior/colony_S_East)
"jZT" = (
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/west,
/area/kutjevo/interior/complex/med/triage)
"kah" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -7374,9 +6782,7 @@
"kbg" = (
/obj/structure/blocker/invisible_wall,
/obj/structure/platform/kutjevo,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/power)
"kbL" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -7389,9 +6795,7 @@
/area/kutjevo/exterior/runoff_river)
"kcd" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/construction)
"kct" = (
/obj/effect/decal/cleanable/blood/xeno{
@@ -7409,9 +6813,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/runoff_dunes)
"kdY" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/power)
"kec" = (
/obj/structure/platform_decoration/kutjevo/rock{
@@ -7425,9 +6827,7 @@
/obj/structure/barricade/deployable{
dir = 8
},
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/purple/edge/west,
/area/kutjevo/interior/construction)
"keX" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -7470,9 +6870,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/orange/edge/east,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"kie" = (
/obj/structure/blocker/invisible_wall,
@@ -7485,9 +6883,7 @@
/area/kutjevo/interior/complex/botany)
"kiE" = (
/obj/item/reagent_container/glass/bucket,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/botany)
"kiN" = (
/obj/structure/cable/heavyduty{
@@ -7501,9 +6897,7 @@
/area/kutjevo/interior/colony_central)
"kjo" = (
/obj/structure/flora/bush/ausbushes/reedbush,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/scrubland)
"kkB" = (
/obj/structure/machinery/vending/cigarette/colony,
@@ -7511,9 +6905,7 @@
/area/kutjevo/interior/complex/med)
"kkC" = (
/obj/structure/platform/kutjevo,
-/turf/open/floor/coagulation{
- icon_state = "7,0"
- },
+/turf/open/floor/coagulation/icon7_0,
/area/kutjevo/interior/colony_north)
"kkH" = (
/turf/closed/wall/kutjevo/colony/reinforced,
@@ -7521,9 +6913,7 @@
"kls" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/surgical_tray,
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/north,
/area/kutjevo/interior/complex/med/operating)
"klu" = (
/obj/structure/surface/table/almayer,
@@ -7532,9 +6922,7 @@
/turf/open/floor/kutjevo/grey/plate,
/area/kutjevo/interior/complex/Northwest_Dorms)
"klE" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"klN" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -7548,9 +6936,7 @@
dir = 1;
pixel_y = 10
},
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/north,
/area/kutjevo/interior/complex/med)
"kma" = (
/obj/structure/blocker/invisible_wall,
@@ -7560,9 +6946,7 @@
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
pixel_x = -28
},
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/purple/edge/west,
/area/kutjevo/interior/construction)
"kne" = (
/obj/structure/flora/grass/desert/lightgrass_1,
@@ -7622,9 +7006,7 @@
/area/kutjevo/interior/complex/med/operating)
"kqE" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 6
- },
+/turf/open/floor/kutjevo/tan/grey_edge/southeast,
/area/kutjevo/interior/complex/Northwest_Dorms)
"kqY" = (
/obj/structure/reagent_dispensers/water_cooler,
@@ -7681,9 +7063,7 @@
/area/kutjevo/exterior/Northwest_Colony)
"kuL" = (
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/purple/edge/north,
/area/kutjevo/interior/construction)
"kuM" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -7709,9 +7089,7 @@
/area/kutjevo/interior/complex/med/triage)
"kvu" = (
/obj/item/storage/briefcase,
-/turf/open/floor/kutjevo/tan/grey_inner_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/grey_inner_edge/west,
/area/kutjevo/interior/complex/med)
"kvI" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -7776,9 +7154,7 @@
dir = 1;
pixel_y = 20
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/botany)
"kAf" = (
/obj/structure/surface/table/almayer,
@@ -7786,9 +7162,7 @@
dir = 8;
network = null
},
-/turf/open/floor/kutjevo/tan/alt_inner_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/alt_inner_edge/west,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"kAr" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -7811,9 +7185,7 @@
range = 15
},
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/med)
"kBm" = (
/obj/structure/closet/crate,
@@ -7887,9 +7259,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/colony_S_East)
"kGM" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/botany/east_tech)
"kGU" = (
/turf/closed/wall/kutjevo/colony/reinforced,
@@ -7901,9 +7271,7 @@
/obj/structure/surface/rack,
/obj/item/stack/sheet/metal/medium_stack,
/obj/item/stack/sheet/metal/medium_stack,
-/turf/open/floor/kutjevo/colors/orange/inner_corner{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/orange/inner_corner/west,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"kIc" = (
/obj/structure/barricade/deployable{
@@ -7948,9 +7316,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/complex/botany)
"kMx" = (
-/turf/open/floor/coagulation{
- icon_state = "7,8-2"
- },
+/turf/open/floor/coagulation/icon7_8_2,
/area/kutjevo/interior/power/comms)
"kMC" = (
/obj/structure/cable/heavyduty{
@@ -7959,9 +7325,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/colony_central)
"kMP" = (
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"kNn" = (
/obj/structure/closet/secure_closet/hydroponics,
@@ -7969,9 +7333,7 @@
/turf/open/floor/kutjevo/colors/green,
/area/kutjevo/interior/complex/botany)
"kNq" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/kutjevo/exterior/lz_river)
"kNx" = (
/obj/structure/platform/kutjevo{
@@ -8035,9 +7397,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/construction)
"kQD" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/kutjevo/exterior/spring)
"kQU" = (
/obj/structure/platform/kutjevo{
@@ -8051,24 +7411,18 @@
"kSh" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/complex/botany/east)
"kSo" = (
/obj/structure/platform_decoration/kutjevo/rock{
dir = 4
},
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/kutjevo/interior/oob/dev_room)
"kSy" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 10
- },
+/turf/open/floor/kutjevo/tan/grey_edge/southwest,
/area/kutjevo/interior/complex/Northwest_Dorms)
"kSB" = (
/obj/structure/platform/kutjevo{
@@ -8114,17 +7468,13 @@
/obj/structure/machinery/light,
/obj/structure/closet/secure_closet/security,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/orange/edge/east,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"kWd" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/revolver/cmb,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/edge/north,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"kWX" = (
/turf/open/auto_turf/sand/layer2,
@@ -8132,9 +7482,7 @@
"kYb" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/book/manual/atmospipes,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"kZm" = (
/obj/structure/platform_decoration/kutjevo,
@@ -8163,9 +7511,7 @@
/area/kutjevo/interior/colony_N_East)
"lac" = (
/obj/item/ammo_magazine/rifle/mar40,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"laf" = (
/obj/structure/platform_decoration/kutjevo/rock{
@@ -8201,9 +7547,7 @@
/area/kutjevo/interior/complex/med)
"lcv" = (
/obj/structure/bed/sofa/south/grey/left,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/exterior/runoff_bridge)
"lcS" = (
/turf/open/floor/kutjevo/colors,
@@ -8229,9 +7573,7 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/complex/med/locks)
"lfm" = (
/obj/item/stack/sheet/wood,
@@ -8269,9 +7611,7 @@
dir = 4
},
/obj/item/device/radio,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"lhY" = (
/obj/structure/machinery/light{
@@ -8283,9 +7623,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"lkC" = (
/turf/open/floor/kutjevo/tan/multi_tiles,
@@ -8317,9 +7655,7 @@
"lmK" = (
/obj/structure/flora/bush/ausbushes/reedbush,
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/interior/oob/dev_room)
"loe" = (
/obj/structure/platform/kutjevo/rock,
@@ -8331,15 +7667,11 @@
icon_state = "xgib4"
},
/obj/structure/machinery/light/small,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/exterior/runoff_bridge)
"lov" = (
/obj/item/ammo_magazine/rifle/mar40/extended,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"loI" = (
/obj/structure/surface/rack,
@@ -8365,9 +7697,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/north,
/area/kutjevo/interior/complex/med/triage)
"lpJ" = (
/turf/open/desert/desert_shore/shore_corner2,
@@ -8386,9 +7716,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/power/comms)
"lrx" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/lz_dunes)
"lry" = (
/obj/structure/machinery/light{
@@ -8408,9 +7736,7 @@
/area/kutjevo/exterior/scrubland)
"lsy" = (
/obj/item/storage/belt/marine,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/power/comms)
"ltv" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -8424,9 +7750,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 10
- },
+/turf/open/floor/kutjevo/tan/alt_edge/southwest,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"lvb" = (
/obj/structure/surface/table/almayer,
@@ -8437,9 +7761,7 @@
/turf/open/floor/kutjevo/colors/red/tile,
/area/kutjevo/exterior/Northwest_Colony)
"lwL" = (
-/turf/open/gm/dirtgrassborder2{
- dir = 4
- },
+/turf/open/gm/dirtgrassborder2/east,
/area/kutjevo/exterior/complex_border/med_park)
"lxc" = (
/turf/open/auto_turf/sand/layer1,
@@ -8487,17 +7809,13 @@
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/colony_South/power2)
"lyJ" = (
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/kutjevo/exterior/scrubland)
"lzb" = (
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/power/comms)
"lzD" = (
/turf/open/floor/almayer/research/containment/floor1,
@@ -8562,9 +7880,7 @@
/turf/open/floor/kutjevo/colors/purple,
/area/kutjevo/interior/complex/med/locks)
"lEf" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/kutjevo/exterior/spring)
"lEA" = (
/turf/closed/wall/kutjevo/colony/reinforced,
@@ -8582,9 +7898,7 @@
icon_state = "solo_tank_empty"
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"lFt" = (
/obj/structure/blocker/invisible_wall,
@@ -8616,23 +7930,17 @@
/area/kutjevo/interior/oob)
"lIM" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/edge/north,
/area/kutjevo/interior/foremans_office)
"lKk" = (
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/lz_pad)
"lKR" = (
/obj/structure/platform_decoration/kutjevo,
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/purple/edge/east,
/area/kutjevo/interior/construction)
"lKV" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/kutjevo/exterior/runoff_river)
"lLo" = (
/obj/structure/monorail,
@@ -8660,9 +7968,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/purple/edge/west,
/area/kutjevo/interior/construction)
"lMr" = (
/obj/structure/barricade/wooden{
@@ -8770,18 +8076,14 @@
dir = 1;
pixel_y = 13
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"lVt" = (
/obj/effect/decal/cleanable/blood,
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"lVO" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/kutjevo/exterior/runoff_dunes)
"lVS" = (
/obj/structure/monorail,
@@ -8803,9 +8105,7 @@
dir = 4
},
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/interior/oob)
"lXN" = (
/turf/open/floor/kutjevo/plate,
@@ -8816,9 +8116,7 @@
/area/kutjevo/interior/colony_N_East)
"lYI" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_corner/north,
/area/kutjevo/interior/oob)
"lYW" = (
/obj/effect/landmark/survivor_spawner,
@@ -8846,9 +8144,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/exterior/lz_pad)
"mar" = (
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/exterior/Northwest_Colony)
"maE" = (
/turf/open/floor/kutjevo/tan/alt_edge,
@@ -8856,15 +8152,11 @@
"mbc" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"mbh" = (
/obj/structure/flora/bush/ausbushes/reedbush,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/kutjevo/exterior/scrubland)
"mbp" = (
/obj/structure/barricade/wooden{
@@ -8882,9 +8174,7 @@
/turf/closed/wall/kutjevo/colony,
/area/kutjevo/interior/complex/botany)
"mct" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/kutjevo/exterior/spring)
"mcv" = (
/obj/structure/window/framed/kutjevo/reinforced/hull,
@@ -8893,9 +8183,7 @@
/area/kutjevo/interior/oob)
"mcA" = (
/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"mcZ" = (
/obj/structure/bed/chair{
@@ -8909,9 +8197,7 @@
/area/kutjevo/exterior/scrubland)
"mdr" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/north,
/area/kutjevo/interior/complex/med/triage)
"mdu" = (
/obj/structure/machinery/light/small,
@@ -8962,9 +8248,7 @@
dir = 8
},
/obj/structure/platform/kutjevo,
-/turf/open/floor/coagulation{
- icon_state = "0,0"
- },
+/turf/open/floor/coagulation/icon0_0,
/area/kutjevo/interior/colony_north)
"mgn" = (
/turf/open/floor/kutjevo/multi_tiles,
@@ -8987,9 +8271,7 @@
},
/obj/structure/closet/secure_closet/engineering_personal,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/colony_South/power2)
"mhj" = (
/obj/structure/platform/kutjevo/rock{
@@ -9001,9 +8283,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/complex_border/botany_medical_cave)
"mhJ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/kutjevo/exterior/lz_dunes)
"mhN" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -9025,24 +8305,18 @@
/area/kutjevo/exterior/telecomm/lz2_north)
"mjq" = (
/obj/structure/flora/bush/ausbushes/grassybush,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/kutjevo/exterior/runoff_river)
"mjN" = (
/obj/item/stack/barbed_wire,
/turf/open/asphalt/cement_sunbleached,
/area/kutjevo/exterior/Northwest_Colony)
"mjP" = (
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/kutjevo/interior/complex/botany/east_tech)
"mjW" = (
/obj/structure/flora/bush/ausbushes/reedbush,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/kutjevo/exterior/lz_pad)
"mkJ" = (
/obj/structure/machinery/light,
@@ -9060,18 +8334,14 @@
/obj/structure/machinery/computer/cameras{
dir = 4
},
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/orange/edge/west,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"mmH" = (
/obj/structure/largecrate/random,
/turf/open/floor/kutjevo/colors/orange,
/area/kutjevo/interior/colony_South/power2)
"mnk" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/kutjevo/exterior/lz_dunes)
"mnn" = (
/obj/structure/platform/kutjevo{
@@ -9097,9 +8367,7 @@
/turf/open/floor/almayer/research/containment/floor1,
/area/kutjevo/exterior/complex_border/med_rec)
"mqu" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/lz_river)
"mqG" = (
/turf/open/floor/kutjevo/colors/cyan/inner_corner,
@@ -9108,16 +8376,12 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/kutjevo/colors/purple/inner_corner{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/purple/inner_corner/west,
/area/kutjevo/interior/construction)
"msF" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/interior/power)
"msK" = (
/turf/open/auto_turf/sand/layer1,
@@ -9128,9 +8392,7 @@
/area/kutjevo/interior/complex/botany)
"mti" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/kutjevo/colors/orange/inner_corner{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/orange/inner_corner/west,
/area/kutjevo/interior/foremans_office)
"mtt" = (
/obj/effect/decal/cleanable/blood,
@@ -9182,9 +8444,7 @@
"mvM" = (
/obj/structure/closet/emcloset,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/med/locks)
"mvX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -9210,9 +8470,7 @@
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/complex/botany/east_tech)
"myk" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/kutjevo/exterior/spring)
"mzn" = (
/obj/structure/platform/kutjevo{
@@ -9231,9 +8489,7 @@
/turf/open/floor/kutjevo/grey/plate,
/area/kutjevo/interior/complex/med)
"mAb" = (
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/exterior/lz_pad)
"mAD" = (
/obj/structure/barricade/wooden{
@@ -9269,9 +8525,7 @@
/area/kutjevo/exterior/stonyfields)
"mBG" = (
/obj/item/weapon/wirerod,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"mBP" = (
/obj/structure/prop/dam/large_boulder/boulder2,
@@ -9287,9 +8541,7 @@
/area/kutjevo/interior/complex/med/operating)
"mCo" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/kutjevo/interior/oob)
"mCI" = (
/obj/structure/prop/dam/crane{
@@ -9336,9 +8588,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/purple/edge/north,
/area/kutjevo/interior/construction)
"mDA" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -9386,9 +8636,7 @@
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/kutjevo/interior/colony_central)
"mFf" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -9426,9 +8674,7 @@
pixel_x = -2;
pixel_y = 5
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/med/locks)
"mHo" = (
/obj/structure/platform_decoration/kutjevo{
@@ -9462,9 +8708,7 @@
/turf/open/floor/kutjevo/colors/green/tile,
/area/kutjevo/interior/complex/botany/east)
"mIA" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/kutjevo/exterior/scrubland)
"mIB" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -9509,14 +8753,10 @@
dir = 1
},
/obj/structure/machinery/camera/autoname,
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/north,
/area/kutjevo/interior/complex/med/triage)
"mLY" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/kutjevo/interior/complex/Northwest_Dorms)
"mMf" = (
/turf/open/auto_turf/sand/layer2,
@@ -9524,9 +8764,7 @@
"mMF" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/west,
/area/kutjevo/interior/colony_South/power2)
"mMH" = (
/turf/open/auto_turf/sand/layer0,
@@ -9536,14 +8774,10 @@
/area/kutjevo/exterior/telecomm/lz2_north)
"mNl" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river{
- color = "#990000"
- },
+/turf/open/gm/river/darkred,
/area/kutjevo/interior/oob)
"mNv" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/kutjevo/exterior/spring)
"mNM" = (
/turf/closed/wall/kutjevo/colony,
@@ -9582,9 +8816,7 @@
/turf/open/desert/desert_shore/desert_shore1,
/area/kutjevo/exterior/lz_river)
"mRP" = (
-/turf/open/floor/kutjevo/colors/purple/inner_corner{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/purple/inner_corner/west,
/area/kutjevo/interior/construction)
"mSd" = (
/obj/structure/platform_decoration/kutjevo{
@@ -9601,9 +8833,7 @@
/turf/open/floor/kutjevo/plate,
/area/kutjevo/interior/colony_central)
"mSv" = (
-/turf/open/floor/kutjevo/tan/grey_inner_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_inner_edge/east,
/area/kutjevo/interior/complex/med/auto_doc)
"mSG" = (
/obj/structure/flora/grass/tallgrass/desert,
@@ -9624,9 +8854,7 @@
/turf/open/asphalt/cement_sunbleached,
/area/kutjevo/exterior/scrubland)
"mVr" = (
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/kutjevo/exterior/lz_river)
"mVC" = (
/obj/structure/platform_decoration/kutjevo{
@@ -9639,9 +8867,7 @@
/area/kutjevo/interior/complex/med/cells)
"mWA" = (
/obj/structure/machinery/autolathe/full,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"mWO" = (
/obj/structure/platform_decoration/kutjevo,
@@ -9654,9 +8880,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/runoff_dunes)
"mYj" = (
-/turf/open/floor/coagulation{
- icon_state = "0,8"
- },
+/turf/open/floor/coagulation/icon0_8,
/area/kutjevo/exterior/scrubland)
"mYt" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -9675,9 +8899,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/exterior/runoff_dunes)
"mZE" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"nah" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -9712,9 +8934,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/colony_South)
"nct" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/kutjevo/exterior/runoff_river)
"ndw" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -9726,9 +8946,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/orange/edge/east,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"neI" = (
/obj/structure/machinery/light,
@@ -9739,9 +8957,7 @@
pixel_y = 28
},
/obj/structure/machinery/iv_drip,
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/north,
/area/kutjevo/interior/complex/med/triage)
"ngp" = (
/obj/structure/platform_decoration/kutjevo{
@@ -9750,9 +8966,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/exterior/scrubland)
"ngK" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/interior/colony_South/power2)
"ngX" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -9806,17 +9020,13 @@
/obj/structure/machinery/camera/autoname{
dir = 1
},
-/turf/open/gm/dirtgrassborder2{
- dir = 8
- },
+/turf/open/gm/dirtgrassborder2/west,
/area/kutjevo/exterior/complex_border/med_park)
"nlv" = (
/turf/open/auto_turf/sand/layer2,
/area/kutjevo/interior/colony_central)
"nlA" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/exterior/construction)
"nlT" = (
/obj/structure/platform/kutjevo,
@@ -9825,9 +9035,7 @@
"nmw" = (
/obj/structure/surface/table/almayer,
/obj/item/paper/janitor,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"nmK" = (
/obj/structure/bed/chair/comfy{
@@ -9843,9 +9051,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/orange/edge/west,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"nnx" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -9856,9 +9062,7 @@
/area/kutjevo/exterior/construction)
"nnz" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/orange/edge/west,
/area/kutjevo/interior/foremans_office)
"nps" = (
/obj/effect/decal/cleanable/blood,
@@ -9867,9 +9071,7 @@
"npx" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/metal/large_stack,
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/edge/north,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"npB" = (
/obj/structure/machinery/light,
@@ -9911,9 +9113,7 @@
/turf/closed/wall/kutjevo/colony,
/area/kutjevo/interior/complex/botany/east)
"nsF" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/med/locks)
"nsU" = (
/obj/structure/machinery/light{
@@ -9993,9 +9193,7 @@
start_charge = 0
},
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/north,
/area/kutjevo/interior/complex/med/operating)
"nyv" = (
/obj/structure/platform_decoration/kutjevo/rock{
@@ -10029,9 +9227,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/complex/botany)
"nzQ" = (
-/turf/open/floor/coagulation{
- icon_state = "8,8"
- },
+/turf/open/floor/coagulation/icon8_8,
/area/kutjevo/exterior/scrubland)
"nAc" = (
/turf/open/auto_turf/sand/layer2,
@@ -10085,9 +9281,7 @@
/obj/item/bedsheet/brown{
pixel_y = 13
},
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 5
- },
+/turf/open/floor/kutjevo/tan/grey_edge/northeast,
/area/kutjevo/interior/complex/Northwest_Dorms)
"nDH" = (
/obj/structure/pipes/standard/simple/visible{
@@ -10153,9 +9347,7 @@
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/gm/river{
- color = "#990000"
- },
+/turf/open/gm/river/darkred,
/area/kutjevo/interior/oob)
"nHV" = (
/obj/structure/surface/rack,
@@ -10192,9 +9384,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/orange/edge/west,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"nJC" = (
/turf/open/floor/kutjevo/colors/orange,
@@ -10221,9 +9411,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/colony_South)
"nLc" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/complex/botany)
"nLg" = (
/obj/structure/cable/heavyduty{
@@ -10267,9 +9455,7 @@
/turf/open/floor/kutjevo/grey/plate,
/area/kutjevo/interior/complex/Northwest_Dorms)
"nLT" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/kutjevo/exterior/lz_river)
"nMz" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -10315,18 +9501,14 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/oob/dev_room)
"nPA" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/kutjevo/interior/colony_central)
"nPO" = (
/obj/structure/machinery/iv_drip,
/turf/open/floor/kutjevo/colors/cyan,
/area/kutjevo/interior/complex/med/triage)
"nPX" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/kutjevo/exterior/spring)
"nQc" = (
/obj/structure/platform_decoration/kutjevo/rock,
@@ -10336,9 +9518,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/colony_north)
"nQo" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_edge/west,
/area/kutjevo/exterior/lz_river)
"nQr" = (
/obj/item/ammo_magazine/rifle/mar40,
@@ -10348,9 +9528,7 @@
/obj/structure/platform/kutjevo{
dir = 1
},
-/turf/open/floor/coagulation{
- icon_state = "7,8-2"
- },
+/turf/open/floor/coagulation/icon7_8_2,
/area/kutjevo/interior/construction)
"nRd" = (
/obj/item/tool/wrench,
@@ -10401,9 +9579,7 @@
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"nVH" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"nWo" = (
/obj/structure/platform/kutjevo{
@@ -10412,9 +9588,7 @@
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/scrubland)
"nWu" = (
/obj/structure/barricade/wooden{
@@ -10458,9 +9632,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/power)
"nZw" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -10498,9 +9670,7 @@
"oca" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/edge/north,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"ocd" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -10514,26 +9684,20 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/colony_South/power2)
"oce" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/kutjevo/exterior/runoff_river)
"ocn" = (
/obj/structure/machinery/light,
/turf/open/asphalt/cement_sunbleached,
/area/kutjevo/exterior/scrubland)
"oeb" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/exterior/runoff_bridge)
"oex" = (
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/complex/med/auto_doc)
"oeE" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/kutjevo/exterior/scrubland)
"ofn" = (
/obj/structure/flora/grass/desert/lightgrass_6,
@@ -10561,19 +9725,13 @@
},
/obj/item/clipboard,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"ogo" = (
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/north,
/area/kutjevo/interior/complex/med/operating)
"ogG" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/complex/med/operating)
"oii" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -10667,9 +9825,7 @@
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/power/comms)
"onC" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 9
- },
+/turf/open/floor/kutjevo/tan/alt_edge/northwest,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"onP" = (
/obj/structure/bed/chair{
@@ -10695,9 +9851,7 @@
/turf/open/floor/kutjevo/colors,
/area/kutjevo/interior/complex/botany)
"oqg" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/kutjevo/exterior/lz_river)
"oqw" = (
/obj/item/tool/pickaxe,
@@ -10798,9 +9952,7 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"oxT" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -10809,17 +9961,13 @@
/area/kutjevo/interior/colony_S_East)
"ozl" = (
/obj/structure/platform/kutjevo,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/kutjevo/exterior/lz_river)
"ozq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"ozs" = (
/obj/structure/platform/kutjevo{
@@ -10874,23 +10022,17 @@
/area/kutjevo/exterior/Northwest_Colony)
"oFs" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/kutjevo/interior/oob/dev_room)
"oFz" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/complex/botany/east)
"oFX" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras,
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/edge/north,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"oGw" = (
/obj/structure/platform/kutjevo/smooth,
@@ -10899,9 +10041,7 @@
/area/kutjevo/interior/colony_South/power2)
"oGC" = (
/obj/structure/platform/kutjevo/smooth,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/kutjevo/exterior/runoff_river)
"oIb" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -10926,9 +10066,7 @@
"oIV" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"oJj" = (
/obj/structure/surface/table/almayer,
@@ -10974,9 +10112,7 @@
/area/kutjevo/interior/colony_South/power2)
"oMW" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 5
- },
+/turf/open/floor/kutjevo/colors/purple/edge/northeast,
/area/kutjevo/interior/construction)
"oMZ" = (
/turf/closed/wall/kutjevo/colony,
@@ -10997,14 +10133,10 @@
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/med/cells)
"oOd" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 5
- },
+/turf/open/floor/kutjevo/tan/alt_edge/northeast,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"oOl" = (
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/east,
/area/kutjevo/interior/complex/botany/east)
"oOs" = (
/obj/structure/machinery/light/small{
@@ -11019,9 +10151,7 @@
/area/kutjevo/interior/colony_N_East)
"oOO" = (
/obj/structure/platform/kutjevo,
-/turf/open/gm/river/desert/shallow_corner{
- dir = 8
- },
+/turf/open/gm/river/desert/shallow_corner/west,
/area/kutjevo/exterior/lz_river)
"oPb" = (
/obj/structure/blocker/invisible_wall,
@@ -11045,9 +10175,7 @@
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/botany)
"oQL" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/kutjevo/interior/construction)
"oQQ" = (
/obj/structure/window/framed/kutjevo/reinforced,
@@ -11063,25 +10191,19 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/exterior/scrubland)
"oRE" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/grey_edge/west,
/area/kutjevo/interior/complex/med/auto_doc)
"oRM" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
/obj/structure/platform/kutjevo/smooth{
dir = 1
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/colony_South/power2)
"oRZ" = (
/obj/structure/machinery/autodoc_console,
/obj/structure/machinery/light,
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/west,
/area/kutjevo/interior/complex/med/auto_doc)
"oSK" = (
/obj/structure/machinery/vending/snack,
@@ -11125,9 +10247,7 @@
/obj/structure/platform/kutjevo/smooth{
dir = 8
},
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/east,
/area/kutjevo/interior/complex/med/operating)
"oXb" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -11169,14 +10289,10 @@
/area/kutjevo/exterior/runoff_river)
"pbP" = (
/obj/structure/machinery/light,
-/turf/open/floor/kutjevo/tan/alt_inner_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/alt_inner_edge/west,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"pbR" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/colony_South/power2)
"pbY" = (
/turf/closed/wall/kutjevo/colony/reinforced/hull,
@@ -11199,9 +10315,7 @@
pixel_y = 6
},
/obj/structure/platform_decoration/kutjevo,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/runoff_river)
"pfe" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -11212,9 +10326,7 @@
dir = 1;
pixel_y = 20
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/exterior/runoff_bridge)
"pfq" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -11228,9 +10340,7 @@
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/kutjevo/interior/construction)
"pfK" = (
/obj/structure/barricade/wooden{
@@ -11273,18 +10383,14 @@
dir = 8;
pixel_y = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/exterior/runoff_bridge)
"pih" = (
/obj/structure/window/framed/kutjevo,
/turf/open/floor/kutjevo/multi_tiles,
/area/kutjevo/interior/construction)
"pio" = (
-/turf/open/floor/kutjevo/tan/alt_inner_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/alt_inner_edge/west,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"piq" = (
/obj/structure/platform/kutjevo/rock,
@@ -11310,24 +10416,18 @@
/area/kutjevo/interior/complex/botany/east)
"pjH" = (
/obj/structure/flora/bush/ausbushes/reedbush,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/kutjevo/exterior/lz_river)
"pkg" = (
/obj/structure/platform/kutjevo{
dir = 4
},
/obj/structure/platform/kutjevo,
-/turf/open/floor/coagulation{
- icon_state = "8,0"
- },
+/turf/open/floor/coagulation/icon8_0,
/area/kutjevo/interior/construction)
"pks" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/coagulation{
- icon_state = "8,6"
- },
+/turf/open/floor/coagulation/icon8_6,
/area/kutjevo/interior/oob)
"pkP" = (
/turf/closed/wall/kutjevo/colony,
@@ -11343,18 +10443,14 @@
/turf/open/floor/almayer/research/containment/floor2,
/area/kutjevo/exterior/runoff_bridge)
"plQ" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/botany/east)
"pma" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname,
/turf/open/floor/kutjevo/grey/plate,
/area/kutjevo/interior/complex/Northwest_Dorms)
"pmo" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 10
- },
+/turf/open/floor/kutjevo/tan/alt_edge/southwest,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"pmu" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -11370,9 +10466,7 @@
pixel_x = -6;
pixel_y = 10
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/kutjevo/exterior/spring)
"pmR" = (
/obj/structure/largecrate/supply/supplies/flares,
@@ -11382,9 +10476,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"pnM" = (
/obj/item/storage/belt/shotgun,
@@ -11416,14 +10508,10 @@
/turf/open/floor/kutjevo/plate,
/area/kutjevo/interior/construction)
"ppn" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/runoff_bridge)
"ppB" = (
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/orange/edge/east,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"ppM" = (
/obj/structure/blocker/invisible_wall,
@@ -11433,9 +10521,7 @@
/turf/open/floor/plating/kutjevo,
/area/shuttle/drop2/kutjevo)
"pqs" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/kutjevo/exterior/scrubland)
"prv" = (
/obj/structure/blocker/invisible_wall,
@@ -11445,9 +10531,7 @@
/obj/structure/platform/kutjevo{
dir = 4
},
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/power)
"prJ" = (
/turf/open/auto_turf/sand/layer0,
@@ -11527,9 +10611,7 @@
/turf/open/floor/kutjevo/multi_tiles,
/area/kutjevo/interior/construction)
"pxb" = (
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 6
- },
+/turf/open/floor/kutjevo/colors/orange/edge/southeast,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"pxB" = (
/obj/structure/platform/kutjevo/rock{
@@ -11560,9 +10642,7 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/alt_edge/east,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"pzG" = (
/obj/structure/sign/safety/medical{
@@ -11575,9 +10655,7 @@
/turf/open/floor/almayer/research/containment/floor2,
/area/kutjevo/interior/complex/med/auto_doc)
"pzH" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/med)
"pzL" = (
/obj/structure/bed/chair,
@@ -11587,9 +10665,7 @@
/obj/structure/platform/kutjevo/smooth{
dir = 1
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/kutjevo/exterior/runoff_river)
"pBi" = (
/obj/structure/platform/kutjevo,
@@ -11611,9 +10687,7 @@
/area/kutjevo/exterior/runoff_dunes)
"pCJ" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/kutjevo/colors/purple/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/purple/inner_corner/north,
/area/kutjevo/interior/construction)
"pCS" = (
/turf/open/asphalt/cement_sunbleached,
@@ -11623,9 +10697,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/exterior/runoff_dunes)
"pDk" = (
-/turf/open/floor/kutjevo/tan/grey_inner_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_inner_edge/north,
/area/kutjevo/interior/construction)
"pDs" = (
/obj/effect/decal/cleanable/blood,
@@ -11642,9 +10714,7 @@
/turf/open/floor/kutjevo/colors/orange/tile,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"pEg" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_5"
- },
+/turf/open/mars_cave/mars_cave_5,
/area/kutjevo/exterior/scrubland)
"pEt" = (
/obj/structure/platform_decoration/kutjevo{
@@ -11682,9 +10752,7 @@
/area/kutjevo/interior/complex/med/auto_doc)
"pGO" = (
/obj/item/storage/briefcase,
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/north,
/area/kutjevo/interior/complex/med/auto_doc)
"pGY" = (
/obj/effect/decal/medical_decals{
@@ -11696,9 +10764,7 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/orange/edge/east,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"pHv" = (
/obj/effect/landmark/objective_landmark/medium,
@@ -11728,15 +10794,11 @@
icon_state = "pottedplant_30";
pixel_y = 9
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/complex/med/locks)
"pIK" = (
/obj/item/prop/helmetgarb/spent_buckshot,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/exterior/runoff_bridge)
"pJa" = (
/obj/structure/machinery/light{
@@ -11784,9 +10846,7 @@
/area/kutjevo/exterior/complex_border/botany_medical_cave)
"pLN" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/kutjevo/tan/alt_inner_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_inner_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"pLS" = (
/obj/effect/landmark/corpsespawner/wygoon,
@@ -11797,9 +10857,7 @@
/area/kutjevo/interior/complex/med/locks)
"pMS" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"pNi" = (
/obj/structure/window_frame/kutjevo,
@@ -11840,9 +10898,7 @@
"pPn" = (
/obj/item/stack/sheet/wood,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"pPz" = (
/obj/structure/machinery/landinglight/ds2/delayone{
@@ -11884,9 +10940,7 @@
/area/kutjevo/exterior/lz_pad)
"pRS" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/interior/colony_South/power2)
"pSs" = (
/turf/open/floor/kutjevo/colors/red,
@@ -11954,9 +11008,7 @@
/area/kutjevo/exterior/Northwest_Colony)
"pXf" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/filtrationside{
- dir = 1
- },
+/turf/open/floor/filtrationside/north,
/area/kutjevo/interior/power)
"pXF" = (
/obj/item/device/flashlight/on,
@@ -11985,20 +11037,14 @@
/area/kutjevo/interior/construction)
"qaS" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/east,
/area/kutjevo/interior/complex/botany/east_tech)
"qaU" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/kutjevo/exterior/spring)
"qaY" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/kutjevo/interior/oob/dev_room)
"qcE" = (
/obj/structure/barricade/wooden{
@@ -12017,9 +11063,7 @@
pixel_y = 13
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/edge/north,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"qgr" = (
/obj/item/ammo_magazine/rifle/m16,
@@ -12031,9 +11075,7 @@
layer = 3.1
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"qgW" = (
/turf/open/floor/kutjevo/tan/multi_tiles,
@@ -12086,19 +11128,13 @@
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/colony_South)
"qnd" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/exterior/lz_pad)
"qny" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/kutjevo/exterior/runoff_river)
"qnB" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/exterior/complex_border/med_rec)
"qnU" = (
/turf/open/floor/kutjevo/tan,
@@ -12154,9 +11190,7 @@
/turf/open/floor/kutjevo/colors/red,
/area/kutjevo/interior/complex/med/pano)
"qpZ" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/complex/botany)
"qqM" = (
/obj/structure/surface/table/almayer,
@@ -12173,9 +11207,7 @@
pixel_x = 1;
pixel_y = 15
},
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"qrl" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -12192,9 +11224,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/exterior/runoff_bridge)
"qru" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_11"
- },
+/turf/open/mars_cave/mars_cave_11,
/area/kutjevo/exterior/lz_dunes)
"qsY" = (
/obj/structure/cable/heavyduty{
@@ -12212,9 +11242,7 @@
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/botany)
"quu" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"quy" = (
/turf/open/gm/dirtgrassborder2,
@@ -12224,9 +11252,7 @@
/area/kutjevo/interior/colony_central/mine_elevator)
"qwg" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"qwT" = (
/obj/item/tool/wirecutters/clippers,
@@ -12257,9 +11283,7 @@
icon_state = "solo_tank_empty"
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"qyS" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -12285,16 +11309,11 @@
/area/kutjevo/exterior/lz_river)
"qAk" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power)
"qAP" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/kutjevo/interior/oob)
"qBa" = (
/obj/structure/platform/kutjevo{
@@ -12323,31 +11342,23 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/construction)
"qCi" = (
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/purple/edge/west,
/area/kutjevo/interior/construction)
"qCy" = (
/obj/structure/barricade/handrail/kutjevo{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/colony_South/power2)
"qDu" = (
/obj/item/trash/kepler,
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/construction)
"qDH" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/alt_edge/east,
/area/kutjevo/exterior/lz_pad)
"qEq" = (
-/turf/open/floor/kutjevo/tan/alt_inner_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/alt_inner_edge/east,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"qEA" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -12366,9 +11377,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/spring)
"qFU" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/kutjevo/exterior/runoff_dunes)
"qGa" = (
/obj/structure/platform_decoration/kutjevo,
@@ -12382,18 +11391,14 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/complex/botany)
"qGJ" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/kutjevo/exterior/lz_dunes)
"qGQ" = (
/obj/structure/stairs/perspective/kutjevo{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"qHH" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -12421,9 +11426,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/toy/deck,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"qIV" = (
/obj/structure/platform/kutjevo/smooth,
@@ -12433,9 +11436,7 @@
/turf/open/floor/kutjevo/colors/orange,
/area/kutjevo/interior/colony_South/power2)
"qJx" = (
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 10
- },
+/turf/open/floor/kutjevo/colors/orange/edge/southwest,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"qKm" = (
/obj/structure/machinery/disposal,
@@ -12469,17 +11470,13 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/power)
"qOw" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 6
- },
+/turf/open/gm/river/desert/shallow_edge/southeast,
/area/kutjevo/exterior/runoff_river)
"qOy" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/interior/complex/med/auto_doc)
"qOJ" = (
/obj/structure/platform_decoration/kutjevo{
@@ -12489,9 +11486,7 @@
/area/kutjevo/interior/complex/med/locks)
"qOM" = (
/obj/effect/decal/cleanable/blood/gibs/limb,
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 5
- },
+/turf/open/floor/kutjevo/colors/purple/edge/northeast,
/area/kutjevo/interior/construction)
"qOP" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -12507,9 +11502,7 @@
/turf/open/floor/kutjevo/colors/purple,
/area/kutjevo/interior/construction)
"qPz" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/kutjevo/exterior/runoff_river)
"qPO" = (
/turf/open/floor/plating/kutjevo,
@@ -12529,9 +11522,7 @@
/area/kutjevo/interior/complex/botany)
"qRp" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 9
- },
+/turf/open/floor/kutjevo/tan/grey_edge/northwest,
/area/kutjevo/interior/complex/Northwest_Dorms)
"qRq" = (
/obj/structure/machinery/light{
@@ -12567,9 +11558,7 @@
/area/kutjevo/exterior/lz_pad)
"qUZ" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/alt_edge/east,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"qVc" = (
/obj/structure/machinery/landinglight/ds1/delayone{
@@ -12596,15 +11585,11 @@
/area/kutjevo/interior/complex/botany)
"qVU" = (
/obj/structure/machinery/light,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/interior/complex/med/auto_doc)
"qVY" = (
/obj/structure/flora/bush/ausbushes/grassybush,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/kutjevo/exterior/runoff_river)
"qVZ" = (
/obj/structure/filtration/machine_96x96{
@@ -12668,9 +11653,7 @@
/area/kutjevo/exterior/runoff_dunes)
"rfz" = (
/obj/structure/flora/bush/ausbushes/reedbush,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/lz_pad)
"rfE" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -12716,9 +11699,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/colony_north)
"rih" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/kutjevo/exterior/lz_dunes)
"riu" = (
/obj/structure/blocker/invisible_wall,
@@ -12758,9 +11739,7 @@
/obj/structure/platform/kutjevo{
dir = 4
},
-/turf/open/gm/river{
- color = "#995555"
- },
+/turf/open/gm/river/red,
/area/kutjevo/interior/oob)
"rkt" = (
/obj/structure/flora/grass/desert/lightgrass_9,
@@ -12791,9 +11770,7 @@
/turf/open/floor/kutjevo/tan,
/area/kutjevo/exterior/lz_pad)
"rme" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/botany)
"rmg" = (
/obj/structure/flora/grass/tallgrass/desert,
@@ -12814,24 +11791,18 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"rmO" = (
/obj/structure/largecrate/random/case,
/turf/open/floor/kutjevo/colors/cyan,
/area/kutjevo/interior/complex/med/auto_doc)
"rno" = (
-/turf/open/mars_cave{
- icon_state = "mars_cave_10"
- },
+/turf/open/mars_cave/mars_cave_10,
/area/kutjevo/exterior/scrubland)
"rnA" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/gm/dirtgrassborder2{
- dir = 1
- },
+/turf/open/gm/dirtgrassborder2/north,
/area/kutjevo/exterior/complex_border/med_park)
"rnM" = (
/obj/effect/landmark/hunter_secondary,
@@ -12876,14 +11847,10 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"rsV" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/kutjevo/exterior/scrubland)
"rte" = (
/obj/structure/prop/dam/boulder/boulder2,
@@ -12900,9 +11867,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"rvA" = (
/obj/structure/girder,
@@ -12970,9 +11935,7 @@
dir = 8
},
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"rzc" = (
/turf/open/gm/river/desert/deep,
@@ -13032,14 +11995,10 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/construction)
"rEs" = (
-/turf/open/floor/plating/kutjevo{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/kutjevo/platingdmg1,
/area/kutjevo/interior/complex/Northwest_Dorms)
"rEI" = (
-/turf/open/floor/kutjevo/colors/orange/inner_corner{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/orange/inner_corner/east,
/area/kutjevo/interior/foremans_office)
"rES" = (
/turf/closed/wall/kutjevo/colony,
@@ -13053,9 +12012,7 @@
/obj/item/reagent_container/food/drinks/coffeecup{
pixel_x = 3
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"rFR" = (
/obj/effect/landmark/monkey_spawn,
@@ -13094,9 +12051,7 @@
"rIo" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/backpack/lightpack,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"rID" = (
/obj/structure/machinery/shower{
@@ -13112,9 +12067,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/complex/botany/east_tech)
"rJU" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/kutjevo/exterior/runoff_dunes)
"rKl" = (
/obj/item/storage/briefcase,
@@ -13162,9 +12115,7 @@
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/colony_central)
"rNg" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/kutjevo/exterior/runoff_river)
"rNG" = (
/obj/item/ammo_magazine/revolver/cmb,
@@ -13183,9 +12134,7 @@
"rQa" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
/obj/structure/medical_supply_link/green,
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/north,
/area/kutjevo/interior/complex/med/operating)
"rQY" = (
/turf/open/floor/kutjevo/tan,
@@ -13203,17 +12152,13 @@
icon_state = "kutjevo_goggles";
pixel_y = -2
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"rRL" = (
/obj/structure/platform/kutjevo{
dir = 1
},
-/turf/open/floor/coagulation{
- icon_state = "7,8-2"
- },
+/turf/open/floor/coagulation/icon7_8_2,
/area/kutjevo/interior/colony_north)
"rSg" = (
/obj/item/device/flashlight/lamp/tripod/grey,
@@ -13226,9 +12171,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/interior/colony_South)
"rSU" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/alt_edge/west,
/area/kutjevo/exterior/lz_pad)
"rTi" = (
/obj/structure/platform_decoration/kutjevo/rock{
@@ -13241,9 +12184,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/colony_central)
"rTF" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 10
- },
+/turf/open/floor/kutjevo/tan/grey_edge/southwest,
/area/kutjevo/interior/construction)
"rTL" = (
/obj/structure/window{
@@ -13300,9 +12241,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 6
- },
+/turf/open/floor/kutjevo/tan/alt_edge/southeast,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"rXe" = (
/obj/structure/platform/kutjevo/rock{
@@ -13313,9 +12252,7 @@
"rXj" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/pizza,
-/turf/open/floor/kutjevo/colors/purple/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/purple/inner_corner/north,
/area/kutjevo/interior/construction)
"rYc" = (
/obj/item/toy/handcard/uno_reverse_yellow,
@@ -13323,9 +12260,7 @@
/area/kutjevo/interior/colony_central)
"rYs" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/interior/oob/dev_room)
"rYF" = (
/obj/structure/flora/bush/ausbushes/reedbush{
@@ -13350,9 +12285,7 @@
/area/kutjevo/exterior/scrubland)
"rZV" = (
/obj/item/tool/wirecutters/clippers,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/complex/botany)
"rZW" = (
/turf/open/floor/kutjevo/colors/orange/tile,
@@ -13361,9 +12294,7 @@
/obj/structure/platform/kutjevo{
dir = 1
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/alt_edge/west,
/area/kutjevo/interior/colony_central)
"saK" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
@@ -13388,9 +12319,7 @@
icon_state = "solo_tank_empty"
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"sbX" = (
/turf/open/auto_turf/sand/layer2,
@@ -13436,9 +12365,7 @@
/turf/open/gm/river/desert/deep,
/area/kutjevo/interior/complex/botany/east_tech)
"sgc" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 6
- },
+/turf/open/floor/kutjevo/tan/alt_edge/southeast,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"sgF" = (
/obj/structure/noticeboard{
@@ -13454,31 +12381,23 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/orange/edge/east,
/area/kutjevo/interior/foremans_office)
"shX" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/multi_tiles/west,
/area/kutjevo/interior/colony_South/power2)
"sit" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"siR" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/kutjevo/colors/cyan,
/area/kutjevo/interior/complex/med)
"sjE" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/grey_edge/west,
/area/kutjevo/interior/complex/Northwest_Dorms)
"sjN" = (
/obj/structure/surface/rack,
@@ -13497,9 +12416,7 @@
/turf/open/auto_turf/sand/layer2,
/area/kutjevo/exterior/complex_border/botany_medical_cave)
"slx" = (
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/southeast,
/area/kutjevo/interior/colony_South/power2)
"slB" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
@@ -13561,9 +12478,7 @@
pixel_x = 5;
pixel_y = -12
},
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/kutjevo/exterior/runoff_bridge)
"soe" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -13599,9 +12514,7 @@
"spd" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"sqr" = (
/obj/structure/platform/kutjevo,
@@ -13616,9 +12529,7 @@
"sre" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/orange/edge/west,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"srs" = (
/obj/structure/largecrate/random/case/double,
@@ -13648,9 +12559,7 @@
/turf/open/floor/almayer/research/containment/floor1,
/area/kutjevo/interior/complex/botany)
"stt" = (
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/orange/edge/west,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"svp" = (
/obj/structure/platform/kutjevo/rock{
@@ -13679,9 +12588,7 @@
/turf/open/floor/kutjevo/plate,
/area/kutjevo/exterior/lz_dunes)
"sxy" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 9
- },
+/turf/open/gm/river/desert/shallow_edge/northwest,
/area/kutjevo/exterior/runoff_river)
"sxZ" = (
/obj/structure/closet/secure_closet/medical3{
@@ -13720,18 +12627,14 @@
/area/kutjevo/exterior/lz_dunes)
"sAe" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/east,
/area/kutjevo/interior/complex/botany/east_tech)
"sAf" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"sAA" = (
/obj/structure/bed/chair{
@@ -13757,9 +12660,7 @@
/area/kutjevo/interior/foremans_office)
"sBH" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/coagulation{
- icon_state = "2,0"
- },
+/turf/open/floor/coagulation/icon2_0,
/area/kutjevo/interior/oob)
"sCw" = (
/obj/structure/flora/bush/ausbushes/grassybush{
@@ -13770,9 +12671,7 @@
pixel_x = -6;
pixel_y = 10
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 10
- },
+/turf/open/gm/river/desert/shallow_edge/southwest,
/area/kutjevo/exterior/runoff_river)
"sCA" = (
/obj/structure/prop/dam/boulder/boulder3,
@@ -13788,9 +12687,7 @@
/obj/structure/platform/kutjevo{
dir = 1
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/exterior/complex_border/med_rec)
"sEG" = (
/turf/open/floor/kutjevo/tan/alt_edge,
@@ -13806,9 +12703,7 @@
/obj/structure/filtration/machine_64x96{
icon_state = "filtration_machine_A_0"
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/complex/botany)
"sGs" = (
/turf/closed/wall/kutjevo/colony,
@@ -13820,17 +12715,13 @@
/turf/open/floor/kutjevo/colors,
/area/kutjevo/interior/complex/botany)
"sGS" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/kutjevo/exterior/spring)
"sHg" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/east,
/area/kutjevo/interior/complex/med/operating)
"sHu" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -13860,9 +12751,7 @@
/obj/item/clothing/head/helmet/marine/veteran/kutjevo,
/obj/item/clothing/glasses/kutjevo,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"sKo" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
@@ -13926,9 +12815,7 @@
/obj/item/stack/sheet/wood{
pixel_x = -4
},
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/edge/north,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"sOJ" = (
/turf/open/gm/river/desert/shallow_corner,
@@ -13941,9 +12828,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/power/comms)
"sPV" = (
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/edge/north,
/area/kutjevo/interior/power_pt2_electric_boogaloo)
"sRb" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -14009,18 +12894,14 @@
"sUC" = (
/obj/structure/blocker/invisible_wall,
/obj/structure/filtration/coagulation_arm,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"sVc" = (
/obj/structure/platform/kutjevo{
dir = 1
},
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/power)
"sVx" = (
/turf/open/gm/river/desert/deep/covered,
@@ -14086,15 +12967,11 @@
/obj/structure/blocker/invisible_wall,
/obj/item/toy/inflatable_duck,
/obj/structure/platform/kutjevo,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/power)
"sZz" = (
/obj/effect/landmark/corpsespawner/colonist/kutjevo,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/exterior/runoff_bridge)
"sZO" = (
/obj/structure/machinery/light,
@@ -14103,9 +12980,7 @@
/area/kutjevo/interior/complex/med)
"sZY" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/colony_central)
"sZZ" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -14154,9 +13029,7 @@
/area/kutjevo/interior/complex/med/cells)
"ten" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/north,
/area/kutjevo/interior/complex/med/operating)
"ter" = (
/obj/structure/largecrate/random,
@@ -14245,9 +13118,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/Northwest_Colony)
"tjS" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/kutjevo/exterior/lz_river)
"tjZ" = (
/obj/structure/platform_decoration/kutjevo{
@@ -14274,9 +13145,7 @@
/area/kutjevo/interior/colony_central/mine_elevator)
"tlK" = (
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"tlN" = (
/turf/closed/wall/kutjevo/colony/reinforced,
@@ -14289,17 +13158,13 @@
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/interior/colony_South/power2)
"tnI" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/kutjevo/exterior/lz_pad)
"tnM" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/med)
"tob" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -14345,9 +13210,7 @@
/turf/open/floor/almayer/research/containment/floor2,
/area/kutjevo/interior/complex/botany)
"tqE" = (
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/botany/east_tech)
"trC" = (
/obj/structure/platform/kutjevo/rock{
@@ -14391,15 +13254,11 @@
dir = 4
},
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/power)
"tvb" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/west,
/area/kutjevo/interior/complex/med/operating)
"tvJ" = (
/obj/structure/platform_decoration/kutjevo/rock,
@@ -14413,17 +13272,13 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/construction)
"twq" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/runoff_dunes)
"txe" = (
/obj/structure/platform/kutjevo/rock{
dir = 1
},
-/turf/open/mars_cave{
- icon_state = "mars_cave_23"
- },
+/turf/open/mars_cave/mars_cave_23,
/area/kutjevo/exterior/scrubland)
"txH" = (
/obj/structure/machinery/light,
@@ -14496,9 +13351,7 @@
/obj/structure/flora/bush/ausbushes/reedbush{
pixel_y = 14
},
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/kutjevo/exterior/runoff_bridge)
"tDP" = (
/obj/item/stack/sheet/wood,
@@ -14526,9 +13379,7 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/item/fuel_cell,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"tEK" = (
/obj/structure/bed/sofa/vert/grey/bot{
@@ -14549,9 +13400,7 @@
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib6"
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/botany)
"tFH" = (
/obj/item/toy/beach_ball,
@@ -14569,9 +13418,7 @@
/turf/open/auto_turf/sand/layer2,
/area/kutjevo/exterior/construction)
"tGi" = (
-/turf/open/floor/coagulation{
- icon_state = "8,6"
- },
+/turf/open/floor/coagulation/icon8_6,
/area/kutjevo/exterior/runoff_river)
"tGm" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -14593,9 +13440,7 @@
/turf/open/floor/kutjevo/multi_tiles,
/area/kutjevo/exterior/lz_pad)
"tIh" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/kutjevo/exterior/runoff_river)
"tIy" = (
/obj/structure/closet/secure_closet/security_empty,
@@ -14635,9 +13480,7 @@
dir = 8
},
/obj/structure/platform/kutjevo,
-/turf/open/floor/coagulation{
- icon_state = "0,0"
- },
+/turf/open/floor/coagulation/icon0_0,
/area/kutjevo/interior/construction)
"tLO" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -14699,9 +13542,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/exterior/lz_dunes)
"tQB" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/kutjevo/exterior/runoff_dunes)
"tQO" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -14751,14 +13592,10 @@
/turf/open/floor/kutjevo/colors/green/tile,
/area/kutjevo/interior/complex/botany)
"tUm" = (
-/turf/open/gm/dirtgrassborder2{
- dir = 1
- },
+/turf/open/gm/dirtgrassborder2/north,
/area/kutjevo/exterior/complex_border/med_park)
"tUz" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/kutjevo/exterior/lz_river)
"tVs" = (
/obj/effect/landmark/hunter_primary,
@@ -14795,15 +13632,11 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/telecomm/lz2_north)
"uah" = (
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/exterior/construction)
"uaj" = (
/obj/structure/machinery/light,
-/turf/open/floor/kutjevo/tan/alt_inner_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/alt_inner_edge/east,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"uam" = (
/obj/structure/platform_decoration/kutjevo,
@@ -14814,9 +13647,7 @@
/turf/open/gm/river/desert/deep,
/area/kutjevo/interior/oob)
"uaz" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/spring)
"ubm" = (
/obj/structure/machinery/light{
@@ -14846,9 +13677,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/colony_N_East)
"ueM" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/kutjevo/exterior/spring)
"ueO" = (
/obj/structure/prop/dam/boulder/boulder1,
@@ -14857,9 +13686,7 @@
"ufp" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/syndi_cakes,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/Northwest_Dorms)
"ufN" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -14890,9 +13717,7 @@
/turf/open/floor/almayer/research/containment/floor2,
/area/kutjevo/exterior/runoff_bridge)
"uhD" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/grey_edge/west,
/area/kutjevo/interior/construction)
"uhM" = (
/obj/structure/blocker/invisible_wall,
@@ -14995,9 +13820,7 @@
/area/kutjevo/interior/complex/botany)
"uma" = (
/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"umo" = (
/obj/structure/machinery/camera/autoname/lz_camera,
@@ -15008,9 +13831,7 @@
/turf/open/floor/kutjevo/multi_tiles,
/area/kutjevo/interior/colony_central)
"umQ" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_edge1/west,
/area/kutjevo/exterior/scrubland)
"una" = (
/obj/structure/platform/kutjevo/rock{
@@ -15034,9 +13855,7 @@
/turf/open/floor/kutjevo/tan/alt_edge,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"upp" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 10
- },
+/turf/open/floor/kutjevo/tan/grey_edge/southwest,
/area/kutjevo/interior/complex/Northwest_Dorms)
"upY" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -15044,17 +13863,13 @@
/area/kutjevo/interior/complex/med/triage)
"uqv" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/west,
/area/kutjevo/interior/complex/med)
"uqL" = (
/obj/structure/platform_decoration/kutjevo{
dir = 8
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/kutjevo/exterior/lz_river)
"uqR" = (
/obj/structure/machinery/light,
@@ -15064,9 +13879,7 @@
/obj/structure/platform/kutjevo{
dir = 1
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/alt_edge/east,
/area/kutjevo/interior/colony_central)
"uri" = (
/obj/structure/flora/bush/ausbushes/ppflowers{
@@ -15103,9 +13916,7 @@
/obj/structure/platform/kutjevo{
dir = 4
},
-/turf/open/floor/coagulation{
- icon_state = "8,8"
- },
+/turf/open/floor/coagulation/icon8_8,
/area/kutjevo/interior/colony_north)
"usd" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
@@ -15135,9 +13946,7 @@
/area/kutjevo/interior/complex/med/cells)
"uwD" = (
/obj/item/clothing/mask/cigarette/pipe/cobpipe,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/complex/botany)
"uwY" = (
/obj/structure/platform/kutjevo{
@@ -15160,9 +13969,7 @@
/area/kutjevo/exterior/scrubland)
"uze" = (
/obj/structure/platform/kutjevo/smooth,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/runoff_river)
"uzp" = (
/obj/structure/window/framed/kutjevo,
@@ -15251,9 +14058,7 @@
/obj/structure/surface/table/almayer,
/obj/item/book/manual/surgery,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/west,
/area/kutjevo/interior/complex/med/operating)
"uEr" = (
/obj/structure/filingcabinet{
@@ -15267,40 +14072,30 @@
pixel_y = 17
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"uEY" = (
/obj/structure/platform_decoration/kutjevo{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/exterior/complex_border/med_rec)
"uGd" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/kutjevo/exterior/lz_river)
"uGB" = (
/obj/structure/platform/kutjevo/rock{
dir = 1
},
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/interior/oob)
"uGN" = (
/obj/structure/flora/grass/tallgrass/desert,
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/stonyfields)
"uHg" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 9
- },
+/turf/open/floor/kutjevo/tan/grey_edge/northwest,
/area/kutjevo/interior/complex/Northwest_Dorms)
"uHo" = (
/obj/structure/flora/grass/desert/lightgrass_3,
@@ -15341,9 +14136,7 @@
"uJV" = (
/obj/structure/surface/rack,
/obj/item/book/manual/orbital_cannon_manual,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"uKx" = (
/obj/effect/decal/cleanable/blood/xeno{
@@ -15377,9 +14170,7 @@
/turf/open/floor/kutjevo,
/area/kutjevo/interior/oob/dev_room)
"uMg" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/kutjevo/exterior/lz_dunes)
"uML" = (
/obj/item/ammo_magazine/rifle/mar40/extended,
@@ -15407,10 +14198,7 @@
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/kutjevo/interior/oob)
"uNJ" = (
/obj/structure/platform/kutjevo{
@@ -15515,9 +14303,7 @@
/area/kutjevo/interior/colony_South/power2)
"uSG" = (
/obj/structure/window/framed/kutjevo/reinforced/hull,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/oob)
"uTa" = (
/obj/effect/landmark/objective_landmark/science,
@@ -15536,9 +14322,7 @@
/obj/structure/platform/kutjevo/smooth{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"uTo" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
@@ -15555,9 +14339,7 @@
dir = 1
},
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/kutjevo/interior/oob)
"uWu" = (
/obj/effect/spawner/random/toolbox{
@@ -15571,9 +14353,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/med)
"uYi" = (
/turf/closed/wall/kutjevo/colony/reinforced/hull,
@@ -15601,9 +14381,7 @@
/area/kutjevo/interior/power)
"vaa" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"vap" = (
/obj/effect/decal/cleanable/blood/xeno{
@@ -15640,17 +14418,13 @@
/turf/open/floor/mech_bay_recharge_floor,
/area/kutjevo/interior/colony_central/mine_elevator)
"vbA" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/kutjevo/exterior/runoff_dunes)
"vbV" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 6
- },
+/turf/open/floor/kutjevo/multi_tiles/southeast,
/area/kutjevo/interior/power)
"vcs" = (
/obj/structure/machinery/computer/cameras{
@@ -15660,9 +14434,7 @@
/turf/open/floor/kutjevo/colors/green/tile,
/area/kutjevo/interior/complex/botany/east)
"vcT" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/kutjevo/exterior/lz_river)
"vcW" = (
/obj/structure/platform/kutjevo/rock{
@@ -15680,9 +14452,7 @@
"vcY" = (
/obj/structure/platform/kutjevo/smooth,
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"vdl" = (
/obj/structure/platform_decoration/kutjevo{
@@ -15746,9 +14516,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/Northwest_Colony)
"vfr" = (
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/purple/edge/north,
/area/kutjevo/interior/construction)
"vfZ" = (
/obj/structure/platform/kutjevo/rock{
@@ -15757,9 +14525,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/runoff_river)
"vgw" = (
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/east,
/area/kutjevo/interior/complex/med)
"vgX" = (
/obj/effect/decal/cleanable/blood/xeno{
@@ -15790,9 +14556,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/scrubland)
"vin" = (
-/turf/open/floor/coagulation{
- icon_state = "2,0"
- },
+/turf/open/floor/coagulation/icon2_0,
/area/kutjevo/exterior/lz_river)
"viU" = (
/turf/open/floor/plating/kutjevo,
@@ -15802,9 +14566,7 @@
/turf/open/floor/kutjevo/tan/multi_tiles,
/area/kutjevo/exterior/runoff_bridge)
"vkK" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/kutjevo/exterior/runoff_dunes)
"vkV" = (
/obj/structure/platform/kutjevo{
@@ -15826,9 +14588,7 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/alt_edge/east,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"vlt" = (
/obj/structure/surface/rack,
@@ -15837,9 +14597,7 @@
/area/kutjevo/interior/power/comms)
"vmB" = (
/obj/structure/flora/bush/ausbushes/reedbush,
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_corner2/north,
/area/kutjevo/exterior/runoff_river)
"vmH" = (
/obj/structure/monorail,
@@ -15849,9 +14607,7 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/colony_central/mine_elevator)
"vmJ" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/kutjevo/interior/complex/med)
"vnO" = (
/obj/structure/bed/chair{
@@ -15901,17 +14657,13 @@
/obj/structure/platform_decoration/kutjevo{
dir = 8
},
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/purple/edge/east,
/area/kutjevo/interior/construction)
"vsP" = (
/turf/closed/wall/kutjevo/rock,
/area/kutjevo/interior/colony_N_East)
"vsS" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 1
- },
+/turf/open/desert/desert_shore/shore_edge1/north,
/area/kutjevo/exterior/lz_dunes)
"vtY" = (
/obj/structure/machinery/light,
@@ -15930,9 +14682,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/scrubland)
"vxe" = (
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/alt_edge/west,
/area/kutjevo/interior/colony_South)
"vxM" = (
/obj/structure/surface/table/almayer,
@@ -15977,9 +14727,7 @@
"vCx" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/snacks/applecakeslice,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/grey_edge/west,
/area/kutjevo/interior/complex/Northwest_Dorms)
"vCT" = (
/obj/structure/blocker/invisible_wall,
@@ -15989,10 +14737,7 @@
/obj/structure/platform/kutjevo{
dir = 8
},
-/turf/open/gm/river{
- color = "#995555";
- name = "pool"
- },
+/turf/open/gm/river/red_pool,
/area/kutjevo/interior/power)
"vDi" = (
/obj/structure/platform_decoration/kutjevo{
@@ -16007,9 +14752,7 @@
/obj/structure/sign/safety/medical{
pixel_y = 32
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/complex/botany)
"vDH" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
@@ -16052,9 +14795,7 @@
/area/kutjevo/interior/colony_South/power2)
"vER" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/kutjevo/interior/complex/Northwest_Dorms)
"vES" = (
/obj/item/tool/wirecutters,
@@ -16096,9 +14837,7 @@
},
/obj/structure/platform/kutjevo/smooth,
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/oob)
"vHf" = (
/obj/structure/surface/table/almayer,
@@ -16114,17 +14853,13 @@
/area/kutjevo/interior/construction)
"vHh" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/east,
/area/kutjevo/interior/complex/botany/east)
"vHG" = (
/obj/structure/platform/kutjevo/smooth{
dir = 1
},
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/kutjevo/exterior/runoff_river)
"vHL" = (
/turf/open/floor/kutjevo/colors/green/tile,
@@ -16213,9 +14948,7 @@
pixel_y = 17
},
/obj/structure/bed/sofa/vert/white,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/kutjevo/interior/complex/med/auto_doc)
"vOc" = (
/obj/structure/cable/heavyduty{
@@ -16285,9 +15018,7 @@
/area/kutjevo/exterior/lz_dunes)
"vTe" = (
/obj/structure/platform_decoration/kutjevo,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/runoff_river)
"vVr" = (
/turf/closed/wall/kutjevo/colony/reinforced,
@@ -16300,9 +15031,7 @@
/obj/structure/platform/kutjevo{
dir = 4
},
-/turf/open/floor/kutjevo/colors/purple/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/purple/edge/east,
/area/kutjevo/interior/construction)
"vXo" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -16321,18 +15050,14 @@
/area/kutjevo/interior/power/comms)
"vXs" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/grey_edge/west,
/area/kutjevo/interior/complex/Northwest_Dorms)
"vXK" = (
/obj/structure/bed/chair/office/dark,
/turf/open/floor/kutjevo/colors,
/area/kutjevo/interior/colony_South/power2)
"vYC" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/scrubland)
"vYD" = (
/obj/effect/decal/cleanable/blood,
@@ -16360,9 +15085,7 @@
/area/kutjevo/exterior/runoff_river)
"vYW" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"wae" = (
/obj/structure/flora/grass/tallgrass/desert/corner{
@@ -16449,9 +15172,7 @@
/turf/open/floor/kutjevo/colors,
/area/kutjevo/interior/complex/botany)
"wgK" = (
-/turf/open/floor/coagulation{
- icon_state = "8,0"
- },
+/turf/open/floor/coagulation/icon8_0,
/area/kutjevo/exterior/scrubland)
"wgT" = (
/obj/structure/platform/kutjevo/rock{
@@ -16509,9 +15230,7 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"wnk" = (
/obj/structure/largecrate/random/case/small,
@@ -16541,9 +15260,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/kutjevo/interior/complex/Northwest_Dorms)
"wpq" = (
/obj/structure/blocker/invisible_wall,
@@ -16565,9 +15282,7 @@
/area/kutjevo/interior/power)
"wqR" = (
/obj/structure/bed/chair,
-/turf/open/gm/dirtgrassborder2{
- dir = 4
- },
+/turf/open/gm/dirtgrassborder2/east,
/area/kutjevo/exterior/complex_border/med_park)
"wrk" = (
/obj/structure/machinery/landinglight/ds2/delayone{
@@ -16576,23 +15291,17 @@
/turf/open/floor/kutjevo/multi_tiles,
/area/kutjevo/exterior/lz_pad)
"wrO" = (
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/kutjevo/exterior/spring)
"wrV" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/spring)
"wsf" = (
/obj/structure/platform_decoration/kutjevo/rock{
dir = 8
},
/obj/structure/blocker/invisible_wall,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/kutjevo/interior/oob)
"wsk" = (
/obj/structure/surface/table/almayer,
@@ -16608,9 +15317,7 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/colors/orange/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/orange/inner_corner/north,
/area/kutjevo/interior/foremans_office)
"wtk" = (
/obj/structure/barricade/wooden{
@@ -16695,9 +15402,7 @@
/obj/structure/platform_decoration/kutjevo{
dir = 8
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 1
- },
+/turf/open/gm/river/desert/shallow_edge/north,
/area/kutjevo/exterior/runoff_river)
"wwQ" = (
/obj/structure/window/framed/kutjevo,
@@ -16777,9 +15482,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"wDm" = (
/obj/structure/stairs/perspective/kutjevo{
@@ -16799,9 +15502,7 @@
/obj/structure/platform_decoration/kutjevo{
dir = 8
},
-/turf/open/gm/river/desert/shallow_edge{
- dir = 5
- },
+/turf/open/gm/river/desert/shallow_edge/northeast,
/area/kutjevo/exterior/runoff_river)
"wEU" = (
/obj/structure/barricade/wooden{
@@ -16813,10 +15514,7 @@
"wFa" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles/west,
/area/kutjevo/interior/complex/med)
"wFQ" = (
/obj/structure/flora/grass/desert/lightgrass_9,
@@ -16869,9 +15567,7 @@
/obj/structure/platform/kutjevo/smooth{
dir = 4
},
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"wMw" = (
/obj/structure/blocker/invisible_wall,
@@ -16901,9 +15597,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/kutjevo/colors/purple/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/purple/inner_corner/north,
/area/kutjevo/interior/construction)
"wOU" = (
/obj/structure/flora/bush/ausbushes/ausbush{
@@ -16976,9 +15670,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/exterior/runoff_bridge)
"wWy" = (
-/turf/open/gm/river/desert/deep{
- icon = 'icons/turf/floors/desert_water_toxic.dmi'
- },
+/turf/open/gm/river/desert/deep/toxic,
/area/kutjevo/interior/complex/med)
"wXd" = (
/turf/closed/wall/kutjevo/rock,
@@ -17041,9 +15733,7 @@
/area/kutjevo/interior/oob)
"xaB" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/multi_tiles/north,
/area/kutjevo/exterior/runoff_bridge)
"xaI" = (
/obj/structure/surface/table/almayer,
@@ -17056,9 +15746,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/kutjevo/tan/alt_inner_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_inner_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"xcG" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -17069,9 +15757,7 @@
dir = 4
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/colors/orange/edge/east,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"xdM" = (
/turf/open/floor/kutjevo/plate,
@@ -17109,9 +15795,7 @@
dir = 1;
pixel_y = 13
},
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"xjg" = (
/obj/structure/platform/kutjevo{
@@ -17124,9 +15808,7 @@
/obj/structure/platform/kutjevo{
dir = 4
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/kutjevo/exterior/lz_river)
"xjY" = (
/turf/open/floor/almayer/research/containment/floor1,
@@ -17172,15 +15854,11 @@
/area/kutjevo/exterior/runoff_bridge)
"xnk" = (
/obj/item/ammo_magazine/rifle/mar40,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"xnr" = (
/obj/structure/blocker/invisible_wall,
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 1
- },
+/turf/open/desert/desert_shore/desert_shore1/north,
/area/kutjevo/exterior/runoff_river)
"xnT" = (
/obj/effect/landmark/monkey_spawn,
@@ -17198,9 +15876,7 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor/kutjevo/tan/grey_inner_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_inner_edge/east,
/area/kutjevo/interior/complex/med)
"xoM" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -17210,18 +15886,14 @@
/turf/open/floor/plating/kutjevo,
/area/kutjevo/interior/colony_South/power2)
"xoV" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_corner2/east,
/area/kutjevo/exterior/runoff_dunes)
"xpd" = (
/obj/structure/largecrate/guns/merc,
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/power/comms)
"xpk" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/lz_river)
"xpz" = (
/obj/structure/bed/chair{
@@ -17291,20 +15963,14 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/kutjevo/colors/cyan/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/cyan/edge/west,
/area/kutjevo/interior/complex/med/operating)
"xuN" = (
-/turf/open/desert/desert_shore/shore_edge1{
- dir = 4
- },
+/turf/open/desert/desert_shore/shore_edge1/east,
/area/kutjevo/exterior/spring)
"xuY" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/exterior/runoff_bridge)
"xvg" = (
/obj/item/stool{
@@ -17354,9 +16020,7 @@
/area/kutjevo/interior/construction)
"xyY" = (
/obj/structure/machinery/light/small,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/exterior/runoff_bridge)
"xzd" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -17390,9 +16054,7 @@
/turf/open/floor/almayer/research/containment/floor2,
/area/kutjevo/exterior/Northwest_Colony)
"xCc" = (
-/turf/open/gm/dirtgrassborder2{
- icon_state = "wall3"
- },
+/turf/open/gm/dirtgrassborder2/wall3,
/area/kutjevo/exterior/complex_border/med_park)
"xDR" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
@@ -17490,9 +16152,7 @@
layer = 3.1
},
/obj/structure/machinery/power/port_gen/pacman/super,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 10
- },
+/turf/open/floor/kutjevo/multi_tiles/southwest,
/area/kutjevo/interior/colony_South/power2)
"xOU" = (
/obj/structure/sign/safety/hazard{
@@ -17515,9 +16175,7 @@
/turf/open/auto_turf/sand/layer1,
/area/kutjevo/exterior/construction)
"xQz" = (
-/turf/open/floor/kutjevo/colors/cyan/inner_corner{
- dir = 1
- },
+/turf/open/floor/kutjevo/colors/cyan/inner_corner/north,
/area/kutjevo/interior/complex/med/triage)
"xQM" = (
/obj/item/tool/minihoe,
@@ -17568,9 +16226,7 @@
/obj/structure/surface/rack,
/obj/structure/machinery/light,
/obj/item/stack/sheet/metal/small_stack,
-/turf/open/floor/kutjevo/colors/orange/edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/colors/orange/edge/west,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"xVt" = (
/obj/structure/platform/kutjevo/smooth,
@@ -17588,9 +16244,7 @@
/turf/open/auto_turf/sand/layer0,
/area/kutjevo/interior/colony_N_East)
"xVZ" = (
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/west,
/area/kutjevo/interior/colony_South/power2)
"xWK" = (
/turf/open/auto_turf/sand/layer1,
@@ -17621,9 +16275,7 @@
"xYR" = (
/obj/item/stack/sheet/wood,
/obj/item/storage/belt/marine,
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/north,
/area/kutjevo/interior/power/comms)
"xZd" = (
/obj/structure/bed/chair{
@@ -17679,16 +16331,12 @@
/area/kutjevo/exterior/lz_dunes)
"yaI" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/kutjevo/interior/complex/botany/east_tech)
"ybd" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/kutjevo/tan/alt_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/alt_edge/north,
/area/kutjevo/interior/complex/Northwest_Flight_Control)
"ybh" = (
/obj/structure/filtration/machine_96x96/indestructible{
@@ -17712,24 +16360,18 @@
/turf/open/floor/kutjevo/tan,
/area/kutjevo/interior/complex/Northwest_Security_Checkpoint)
"ycN" = (
-/turf/open/floor/kutjevo/tan/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/multi_tiles/east,
/area/kutjevo/interior/complex/botany)
"ydh" = (
/obj/structure/platform_decoration/kutjevo,
-/turf/open/gm/river/desert/shallow_edge{
- dir = 4
- },
+/turf/open/gm/river/desert/shallow_edge/east,
/area/kutjevo/exterior/runoff_river)
"yeY" = (
/obj/item/stack/sheet/wood,
/turf/open/floor/kutjevo/colors/orange,
/area/kutjevo/interior/power)
"yfc" = (
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 8
- },
+/turf/open/desert/desert_shore/desert_shore1/west,
/area/kutjevo/exterior/lz_pad)
"yfo" = (
/turf/open/floor/kutjevo/colors/orange,
@@ -17784,9 +16426,7 @@
icon_state = "tree_2";
pixel_y = 14
},
-/turf/open/desert/desert_shore/desert_shore1{
- dir = 4
- },
+/turf/open/desert/desert_shore/desert_shore1/east,
/area/kutjevo/exterior/spring)
"yir" = (
/turf/open/floor/kutjevo/colors/orange,
@@ -17804,9 +16444,7 @@
/turf/open/floor/kutjevo/colors/cyan/tile,
/area/kutjevo/interior/complex/med/cells)
"yjF" = (
-/turf/open/desert/desert_shore/shore_corner2{
- dir = 8
- },
+/turf/open/desert/desert_shore/shore_corner2/west,
/area/kutjevo/exterior/runoff_bridge)
"yjI" = (
/turf/open/floor/kutjevo/tan,
@@ -17829,9 +16467,7 @@
/area/kutjevo/interior/complex/med/cells)
"ykL" = (
/obj/structure/largecrate/random,
-/turf/open/floor/kutjevo/multi_tiles{
- dir = 4
- },
+/turf/open/floor/kutjevo/multi_tiles/east,
/area/kutjevo/interior/colony_South/power2)
"ykY" = (
/obj/effect/landmark/xeno_hive_spawn,
@@ -17858,10 +16494,7 @@
/obj/item/storage/pill_bottle/tramadol/skillless,
/obj/structure/platform/kutjevo/smooth,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles/west,
/area/kutjevo/interior/complex/med/operating)
"ymc" = (
/obj/structure/machinery/shower{
diff --git a/maps/map_files/Kutjevo/sprinkles/35.communications.dmm b/maps/map_files/Kutjevo/sprinkles/35.communications.dmm
index d172399ca564..c392400aa31d 100644
--- a/maps/map_files/Kutjevo/sprinkles/35.communications.dmm
+++ b/maps/map_files/Kutjevo/sprinkles/35.communications.dmm
@@ -5,9 +5,7 @@
/turf/open/auto_turf/sand/layer0,
/area/template_noop)
"cm" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/grey_edge/west,
/area/template_noop)
"cL" = (
/obj/item/clothing/suit/storage/hazardvest/yellow,
@@ -17,9 +15,7 @@
/turf/open/floor/kutjevo/grey/plate,
/area/template_noop)
"di" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/template_noop)
"dl" = (
/obj/structure/girder/displaced,
@@ -104,9 +100,7 @@
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
req_one_access = null
},
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/template_noop)
"qM" = (
/obj/structure/machinery/light,
@@ -134,9 +128,7 @@
/area/template_noop)
"sQ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/template_noop)
"uS" = (
/obj/structure/surface/table/almayer,
@@ -222,9 +214,7 @@
/area/template_noop)
"Af" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/template_noop)
"Ca" = (
/obj/structure/window/framed/kutjevo,
@@ -235,18 +225,14 @@
/area/template_noop)
"Ci" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/template_noop)
"DY" = (
/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{
dir = 1;
req_one_access = null
},
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/template_noop)
"EK" = (
/obj/structure/window/framed/kutjevo,
@@ -266,16 +252,12 @@
/area/template_noop)
"Jg" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/template_noop)
"Jz" = (
/obj/item/stack/sheet/metal,
/obj/item/stack/rods,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/template_noop)
"Ks" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -378,9 +360,7 @@
/turf/open/floor/kutjevo/tan/grey_edge,
/area/template_noop)
"Um" = (
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 4
- },
+/turf/open/floor/kutjevo/tan/grey_edge/east,
/area/template_noop)
"Vc" = (
/obj/effect/decal/cleanable/dirt,
@@ -393,9 +373,7 @@
/area/template_noop)
"Xq" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/grey_edge/west,
/area/template_noop)
"XS" = (
/obj/structure/fence{
@@ -405,9 +383,7 @@
/area/template_noop)
"Yo" = (
/obj/item/clothing/head/hardhat/orange,
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 1
- },
+/turf/open/floor/kutjevo/tan/grey_edge/north,
/area/template_noop)
"YG" = (
/obj/structure/machinery/power/port_gen/pacman,
@@ -419,9 +395,7 @@
dir = 1;
req_one_access = null
},
-/turf/open/floor/kutjevo/tan/grey_edge{
- dir = 8
- },
+/turf/open/floor/kutjevo/tan/grey_edge/west,
/area/template_noop)
"Zf" = (
/obj/structure/window/framed/kutjevo,
diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm
index 93436ca83de0..f0860d688645 100644
--- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm
+++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm
@@ -5,9 +5,7 @@
network = list("interrogation")
},
/obj/structure/machinery/light/small,
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"aaF" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -16,10 +14,7 @@
/area/lv522/landing_zone_forecon/UD6_Tornado)
"aaI" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"aaX" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -30,9 +25,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/tank/emergency_oxygen/double,
/obj/item/tank/emergency_oxygen/double,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"abo" = (
/turf/closed/wall/strata_outpost,
@@ -46,9 +39,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"abS" = (
/obj/effect/acid_hole,
@@ -62,17 +53,12 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/cargo_intake)
"abX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/chair/comfy,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"ack" = (
/obj/structure/sink{
@@ -80,10 +66,7 @@
pixel_x = -11
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/executive)
"acn" = (
/obj/structure/largecrate/random/secure,
@@ -92,9 +75,7 @@
icon_state = "NW-out";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"acp" = (
/obj/effect/decal/cleanable/dirt,
@@ -104,9 +85,7 @@
/obj/structure/largecrate/random{
layer = 2.9
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"acD" = (
/obj/effect/decal/cleanable/dirt,
@@ -149,9 +128,7 @@
"adG" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/reagent_container/food/condiment/saltshaker,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/lone_buildings/chunk)
"adI" = (
/obj/structure/ladder{
@@ -183,9 +160,7 @@
/area/lv522/indoors/b_block/bridge)
"aem" = (
/obj/structure/barricade/plasteel/metal,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_street)
"aeD" = (
/obj/structure/largecrate/random,
@@ -196,18 +171,14 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"afn" = (
/obj/item/reagent_container/spray/cleaner/drone{
pixel_x = -3;
pixel_y = 6
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"afp" = (
/obj/structure/platform,
@@ -231,9 +202,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/north_command_centre)
"afI" = (
/obj/item/reagent_container/food/drinks/cans/beer{
@@ -257,9 +226,7 @@
/area/lv522/oob)
"afX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/central_streets)
"agu" = (
/obj/effect/decal/warning_stripes{
@@ -270,28 +237,19 @@
/area/lv522/outdoors/colony_streets/south_west_street)
"agM" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"ahs" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"ahH" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/east_reactor/east)
"ahJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"ahP" = (
/turf/open/asphalt/cement,
@@ -314,9 +272,7 @@
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"aij" = (
/obj/structure/stairs/perspective{
@@ -327,9 +283,7 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"aio" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bar)
"aiw" = (
/obj/structure/desertdam/decals/road_edge{
@@ -354,10 +308,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/north_command_centre)
"ajM" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -370,10 +321,7 @@
/area/lv522/oob)
"ajY" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"akh" = (
/obj/structure/foamed_metal,
@@ -384,9 +332,7 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"akl" = (
/obj/structure/barricade/wooden{
@@ -396,9 +342,7 @@
/area/lv522/oob)
"akn" = (
/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"akp" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
@@ -409,9 +353,7 @@
/area/lv522/oob)
"akP" = (
/obj/structure/girder,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"akV" = (
/obj/structure/prop/invuln/ice_prefab,
@@ -427,9 +369,7 @@
/turf/closed/wall/strata_outpost/reinforced/hull,
/area/lv522/oob)
"alJ" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/oob)
"ama" = (
/obj/effect/decal/cleanable/dirt,
@@ -446,9 +386,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"amC" = (
/obj/structure/bed/roller,
@@ -457,10 +395,7 @@
/obj/structure/machinery/camera/autoname{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"amP" = (
/obj/structure/machinery/light{
@@ -485,15 +420,10 @@
/area/lv522/indoors/c_block/cargo)
"ana" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/east)
"anb" = (
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/lv522/atmos/way_in_command_centre)
"ann" = (
/obj/structure/barricade/wooden{
@@ -504,9 +434,7 @@
"ans" = (
/obj/structure/surface/table/almayer,
/obj/item/book/manual/chef_recipes,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"anv" = (
/obj/structure/surface/table/reinforced/prison,
@@ -522,10 +450,7 @@
"anw" = (
/obj/structure/girder/displaced,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"anG" = (
/obj/effect/decal/cleanable/dirt,
@@ -533,9 +458,7 @@
/area/lv522/indoors/lone_buildings/outdoor_bot)
"anH" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"anM" = (
/obj/structure/machinery/defenses/sentry/premade/dumb{
@@ -552,9 +475,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"aoi" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -568,31 +489,20 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"aox" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"aoH" = (
/obj/structure/machinery/light,
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"apc" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"apd" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/atmos/sewer)
"ape" = (
/obj/structure/bed/chair{
@@ -604,10 +514,7 @@
"apt" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"apC" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -621,16 +528,12 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"aqo" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"aqH" = (
/obj/structure/prop/vehicles/crawler{
@@ -641,9 +544,7 @@
/area/lv522/indoors/c_block/garage)
"aqT" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"arh" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -651,9 +552,7 @@
pixel_x = -12;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/oob)
"arq" = (
/obj/structure/surface/table/reinforced/prison,
@@ -662,26 +561,19 @@
/area/lv522/indoors/c_block/garage)
"art" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/op_centre)
"arN" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/rack,
/obj/item/clothing/head/welding,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"arP" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"arV" = (
/obj/structure/surface/table/almayer,
@@ -706,9 +598,7 @@
/area/lv522/indoors/a_block/kitchen)
"asH" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"asI" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -726,9 +616,7 @@
"asZ" = (
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"att" = (
/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{
@@ -737,18 +625,13 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"atz" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"atL" = (
/obj/structure/closet/crate,
@@ -758,9 +641,7 @@
},
/obj/item/tool/pickaxe/silver,
/obj/item/tool/pickaxe/silver,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"atO" = (
/obj/structure/prop/vehicles/crawler{
@@ -771,18 +652,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"atV" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/n_rockies)
"aue" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -797,10 +674,7 @@
/turf/open/floor/plating,
/area/lv522/landing_zone_1/tunnel/far)
"aut" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/north_command_centre)
"auG" = (
/turf/open/auto_turf/shale/layer2,
@@ -811,16 +685,12 @@
dir = 1
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"avp" = (
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"awj" = (
/obj/item/stack/rods,
@@ -843,9 +713,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"axC" = (
/obj/structure/stairs/perspective{
@@ -853,9 +721,7 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"axD" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -871,23 +737,17 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"ayn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"ayX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"aza" = (
/obj/structure/stairs/perspective{
@@ -915,19 +775,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/corpo/glass)
"azK" = (
/obj/item/prop/colony/used_flare,
/turf/open/floor/prison,
/area/lv522/indoors/a_block/admin)
"aAb" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/east_reactor)
"aAI" = (
/obj/structure/window/framed/strata/reinforced,
@@ -941,9 +796,7 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"aAW" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"aBm" = (
/obj/effect/decal/cleanable/dirt,
@@ -951,10 +804,7 @@
icon_state = "lattice9";
pixel_x = -5
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/hallway)
"aBY" = (
/obj/vehicle/train/cargo/trolley,
@@ -962,22 +812,14 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/mining)
"aCJ" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/filt)
"aCQ" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor)
"aCR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"aCS" = (
/obj/structure/surface/rack,
@@ -988,15 +830,11 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"aDf" = (
/obj/structure/ore_box,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"aDh" = (
/obj/structure/platform{
@@ -1007,9 +845,7 @@
"aDj" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/north_command_centre)
"aDs" = (
/obj/item/explosive/mine/active{
@@ -1025,18 +861,14 @@
/area/shuttle/drop2/lv522)
"aDS" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"aDZ" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1;
welded = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/oob)
"aEF" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -1048,9 +880,7 @@
/area/lv522/indoors/c_block/mining)
"aEL" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"aEM" = (
/obj/structure/machinery/atm{
@@ -1066,19 +896,14 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"aER" = (
/obj/structure/barricade/wooden{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"aFf" = (
/obj/structure/window/framed/strata/reinforced,
@@ -1086,17 +911,13 @@
id = "LZ1_Lockdown_Lo";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/ceiling)
"aFA" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/n_rockies)
"aFN" = (
/turf/open/floor/prison,
@@ -1108,17 +929,13 @@
/obj/item/toy/beach_ball/holoball{
pixel_y = -3
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"aGg" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"aGy" = (
/obj/structure/surface/table/almayer,
@@ -1126,9 +943,7 @@
dir = 8;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/mining)
"aGE" = (
/obj/structure/closet/crate/trashcart,
@@ -1141,9 +956,7 @@
"aGI" = (
/obj/structure/largecrate/random/case/double,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"aGQ" = (
/obj/effect/decal/cleanable/dirt,
@@ -1174,10 +987,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"aIf" = (
/obj/structure/machinery/light{
@@ -1203,17 +1013,13 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"aIM" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/reactor_garage)
"aIY" = (
/obj/structure/prop/invuln/lattice_prop{
@@ -1221,10 +1027,7 @@
pixel_x = -5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/hallway)
"aJg" = (
/obj/structure/fence{
@@ -1237,10 +1040,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/outdoors/colony_streets/north_east_street)
"aJr" = (
/obj/effect/decal/cleanable/dirt,
@@ -1248,30 +1048,21 @@
icon_state = "S";
pixel_y = -1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/oob/w_y_vault)
"aJS" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"aJT" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"aKf" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/op_centre)
"aKn" = (
/obj/item/clothing/mask/facehugger{
@@ -1281,41 +1072,29 @@
name = "????";
stat = 2
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"aKK" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"aKO" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"aKQ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/cargo_intake)
"aLf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"aLy" = (
/obj/structure/machinery/light{
@@ -1324,10 +1103,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp/on,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"aLJ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
@@ -1341,9 +1117,7 @@
/obj/item/bedsheet/brown{
layer = 3.1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"aNn" = (
/obj/structure/transmitter/colony_net{
@@ -1352,10 +1126,7 @@
phone_id = "Colony Corporate";
pixel_y = 26
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"aNr" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1372,16 +1143,10 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"aNP" = (
-/turf/open/floor/strata{
- dir = 6;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/southeast,
/area/lv522/indoors/a_block/medical)
"aOi" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -1393,19 +1158,14 @@
"aOP" = (
/obj/effect/spawner/gibspawner/xeno,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges)
"aOV" = (
/obj/structure/barricade/deployable{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/admin)
"aPe" = (
/obj/effect/decal/warning_stripes{
@@ -1415,10 +1175,7 @@
/area/lv522/outdoors/colony_streets/south_street)
"aPu" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"aPN" = (
/obj/structure/surface/table/almayer,
@@ -1434,33 +1191,23 @@
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/recharger,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"aQf" = (
/obj/structure/surface/table/almayer,
/obj/item/map/lv522_map,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"aQs" = (
/obj/structure/machinery/telecomms/bus/preset_one,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"aQH" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1;
welded = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/tunnel/far)
"aQU" = (
/obj/structure/machinery/computer/cameras{
@@ -1468,22 +1215,15 @@
network = null;
pixel_x = -16
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"aRd" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical)
"aRi" = (
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"aRB" = (
/obj/structure/platform{
@@ -1504,9 +1244,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/central_streets)
"aRN" = (
/obj/structure/largecrate/random/barrel,
@@ -1519,10 +1257,7 @@
/area/lv522/indoors/a_block/dorms)
"aSR" = (
/obj/structure/machinery/floodlight/landing,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/outdoors/colony_streets/north_east_street)
"aSZ" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -1533,10 +1268,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"aTj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1564,9 +1296,7 @@
/obj/structure/prop/dam/truck/cargo{
layer = 3.1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/east)
"aTP" = (
/obj/structure/cargo_container/watatsumi/right,
@@ -1576,17 +1306,13 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/bridge)
"aTS" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"aUb" = (
/obj/structure/surface/table/almayer,
@@ -1598,16 +1324,12 @@
pixel_x = 6;
pixel_y = 14
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"aUL" = (
/obj/structure/machinery/light,
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"aUN" = (
/obj/item/stack/sheet/wood/large_stack,
@@ -1615,9 +1337,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"aVa" = (
/obj/structure/platform{
@@ -1638,15 +1358,11 @@
"aVo" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/computer/PC,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"aVs" = (
/obj/structure/cargo_container/horizontal/blue/top,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"aVt" = (
/obj/item/pamphlet/skill/powerloader,
@@ -1654,9 +1370,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"aVA" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -1667,10 +1381,7 @@
"aVD" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"aVF" = (
/obj/structure/surface/table/almayer,
@@ -1682,9 +1393,7 @@
pixel_x = 2;
pixel_y = 7
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"aVX" = (
/obj/structure/ore_box,
@@ -1697,9 +1406,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/t_comm)
"aWl" = (
/obj/structure/barricade/wooden,
@@ -1710,68 +1417,45 @@
/obj/item/stack/rods{
pixel_y = 14
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/central_streets)
"aWu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/east_reactor/north)
"aWw" = (
/obj/structure/sink{
pixel_y = 15
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"aWz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/east_reactor/north)
"aWB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/lv522/indoors/a_block/dorms)
"aWJ" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor/north)
"aWT" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"aWX" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"aXa" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/north)
"aXx" = (
/obj/item/weapon/twohanded/folded_metal_chair,
@@ -1781,9 +1465,7 @@
"aXB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"aXR" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -1817,9 +1499,7 @@
id = "East_Lock";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"aYF" = (
/obj/structure/desertdam/decals/road_edge{
@@ -1850,10 +1530,7 @@
pixel_x = 8;
pixel_y = 5
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"aYO" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1866,9 +1543,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"aZj" = (
/obj/structure/plasticflaps,
@@ -1894,33 +1569,23 @@
pixel_y = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"bag" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"ban" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/corpsespawner/colonist/burst,
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"baG" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/east_reactor/south)
"baN" = (
/obj/structure/surface/rack,
@@ -1944,10 +1609,7 @@
pixel_y = 5
},
/obj/effect/decal/cleanable/cobweb2,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"bby" = (
/obj/item/trash/barcardine,
@@ -1955,9 +1617,7 @@
pixel_x = -7;
pixel_y = 16
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/oob)
"bbz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1967,17 +1627,13 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"bbL" = (
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/east)
"bce" = (
/obj/item/trash/hotdog,
@@ -1993,9 +1649,7 @@
pixel_x = -11;
pixel_y = 12
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/oob)
"bcf" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -2009,28 +1663,17 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/outdoors/colony_streets/north_east_street)
"bco" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/west_reactor)
"bcP" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/west_reactor)
"bcU" = (
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/n_rockies)
"bdi" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/c_block/t_comm)
"bdj" = (
/obj/structure/bed/chair/comfy,
@@ -2038,16 +1681,12 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"bdv" = (
/obj/structure/largecrate/random/case,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"bdH" = (
/obj/structure/bed/chair{
@@ -2061,14 +1700,10 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_street)
"bdX" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/nw_rockies)
"bdY" = (
/obj/effect/decal/warning_stripes{
@@ -2076,18 +1711,13 @@
pixel_x = 1
},
/obj/item/weapon/gun/launcher/grenade/m81/m79,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"beb" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/east_reactor/north)
"beh" = (
/obj/effect/decal/warning_stripes{
@@ -2102,9 +1732,7 @@
/area/lv522/outdoors/colony_streets/south_street)
"bel" = (
/obj/structure/machinery/computer/crew/colony,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"ben" = (
/obj/item/prop{
@@ -2124,15 +1752,11 @@
pixel_y = 13
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/corpo)
"bet" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/west_reactor)
"bex" = (
/obj/effect/decal/cleanable/blood,
@@ -2149,28 +1773,20 @@
/area/lv522/indoors/a_block/security)
"bfn" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/north)
"bgc" = (
/turf/open/floor/plating,
/area/lv522/atmos/cargo_intake)
"bgg" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/north)
"bgJ" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen)
"bgN" = (
/obj/structure/surface/table/reinforced/prison,
@@ -2184,46 +1800,32 @@
},
/obj/item/newspaper,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"bgV" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/n_rockies)
"bha" = (
/obj/item/stack/rods,
/turf/open/floor/prison,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"bhd" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor/north)
"bhh" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/south)
"bhD" = (
/obj/structure/platform_decoration{
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"bhL" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/north)
"bia" = (
/obj/structure/largecrate/supply/supplies/tables_racks,
@@ -2246,41 +1848,29 @@
"biY" = (
/obj/structure/girder,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/lv522/indoors/a_block/dorms)
"biZ" = (
/obj/structure/barricade/sandbags{
dir = 8
},
/obj/item/trash/uscm_mre,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"bjd" = (
/turf/closed/wall/strata_outpost/reinforced,
/area/lv522/atmos/sewer)
"bjC" = (
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/oob/w_y_vault)
"bjF" = (
/obj/effect/decal/cleanable/blood/xeno,
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/damage)
"bjT" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/n_rockies)
"bjX" = (
/obj/effect/decal/warning_stripes{
@@ -2300,23 +1890,15 @@
},
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"bkf" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 9;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/northwest,
/area/lv522/indoors/a_block/medical/glass)
"bkh" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/southwest,
/area/lv522/indoors/a_block/medical)
"bkl" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2343,9 +1925,7 @@
/turf/closed/wall/shiva/prefabricated/reinforced,
/area/lv522/outdoors/nw_rockies)
"bkQ" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/oob)
"bkY" = (
/obj/structure/surface/rack,
@@ -2360,10 +1940,7 @@
pixel_y = -3
},
/obj/item/reagent_container/glass/bucket,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"blW" = (
/obj/structure/machinery/light/double,
@@ -2372,14 +1949,10 @@
layer = 3
},
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/lv522/indoors/c_block/mining)
"bmg" = (
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/east_central_street)
"bmj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2392,9 +1965,7 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"bnf" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"bny" = (
/obj/effect/decal/cleanable/dirt,
@@ -2404,9 +1975,7 @@
phone_id = "Reactor Garage";
pixel_y = 26
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"bnz" = (
/obj/structure/surface/table/almayer,
@@ -2419,9 +1988,7 @@
},
/obj/effect/decal/cleanable/cobweb2,
/obj/effect/spider/spiderling/nogrow,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"bnH" = (
/obj/structure/machinery/light{
@@ -2429,10 +1996,7 @@
},
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"bnP" = (
/obj/structure/pipes/vents/pump,
@@ -2460,9 +2024,7 @@
/area/lv522/indoors/c_block/mining)
"bpD" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"bpN" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2483,9 +2045,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/a_block/admin)
"bqE" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_east_street)
"brk" = (
/obj/structure/cargo_container/grant/rightmid,
@@ -2496,15 +2056,11 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"bsx" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"bsz" = (
/obj/effect/decal/warning_stripes{
@@ -2518,17 +2074,12 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/c_block/bridge)
"btb" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"btP" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"buD" = (
/obj/structure/barricade/deployable,
@@ -2539,9 +2090,7 @@
dir = 1;
flipped = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"bvI" = (
/obj/structure/surface/table/almayer,
@@ -2549,18 +2098,14 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"bvK" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass{
dir = 1;
name = "\improper Chunk 'N Dump"
},
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"bvP" = (
/obj/structure/machinery/light{
@@ -2575,9 +2120,7 @@
/obj/item/reagent_container/food/condiment/peppermill{
pixel_x = 9
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"bwd" = (
/obj/item/toy/beach_ball/holoball{
@@ -2600,9 +2143,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"bwF" = (
/obj/item/stack/rods,
@@ -2619,26 +2160,18 @@
pixel_x = -3;
pixel_y = 2
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"bwU" = (
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"bxn" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"bxr" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -2651,41 +2184,29 @@
/area/lv522/indoors/c_block/mining)
"bxz" = (
/obj/structure/machinery/disposal,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"bxU" = (
/obj/item/clothing/head/hardhat,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"bye" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor)
"byu" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"byJ" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
/obj/item/circuitboard/machine/ghettosmes,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"byR" = (
/obj/structure/closet/crate,
@@ -2693,17 +2214,12 @@
/obj/item/ore/silver,
/obj/item/ore/silver,
/obj/item/ore/silver,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"bzv" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/reactor_garage)
"bzC" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -2715,9 +2231,7 @@
/obj/item/prop/colony/usedbandage{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/oob)
"bzL" = (
/obj/structure/machinery/camera/autoname,
@@ -2737,10 +2251,7 @@
pixel_x = 7;
pixel_y = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"bAe" = (
/obj/structure/window/framed/strata/reinforced,
@@ -2754,9 +2265,7 @@
/obj/item/prop/colony/usedbandage{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/oob)
"bBe" = (
/obj/structure/machinery/light{
@@ -2764,9 +2273,7 @@
},
/obj/structure/machinery/disposal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"bBt" = (
/obj/structure/desertdam/decals/road_edge{
@@ -2796,9 +2303,7 @@
pixel_x = -16;
pixel_y = 13
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/oob)
"bBI" = (
/obj/item/stack/tile/plasteel{
@@ -2809,9 +2314,7 @@
/turf/open/gm/river,
/area/lv522/indoors/a_block/kitchen/damage)
"bBJ" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/reactor_garage)
"bBW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2820,25 +2323,18 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_east_street)
"bCd" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/corpsespawner/colonist/burst,
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"bCh" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"bCl" = (
/obj/structure/prop/invuln/lattice_prop{
@@ -2851,9 +2347,7 @@
/turf/open/floor/plating,
/area/lv522/indoors/a_block/admin)
"bCy" = (
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/south_street)
"bCX" = (
/obj/effect/decal/cleanable/dirt,
@@ -2861,24 +2355,17 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"bDk" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"bDn" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"bDr" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2895,9 +2382,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/north)
"bDI" = (
/obj/structure/machinery/light{
@@ -2905,26 +2390,18 @@
},
/obj/structure/barricade/wooden,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"bDR" = (
/obj/item/explosive/grenade/high_explosive,
/turf/open/floor/prison,
/area/lv522/indoors/a_block/kitchen)
"bDS" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/north)
"bEk" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"bFn" = (
/obj/item/tool/wet_sign{
@@ -2939,10 +2416,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"bGL" = (
/obj/structure/machinery/light{
@@ -2953,9 +2427,7 @@
},
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"bGN" = (
/obj/structure/surface/table/almayer,
@@ -2967,9 +2439,7 @@
},
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"bGT" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -2992,14 +2462,10 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"bHg" = (
-/turf/open/floor/strata{
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3,
/area/lv522/indoors/a_block/medical)
"bHk" = (
/obj/structure/barricade/sandbags,
@@ -3028,10 +2494,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"bIe" = (
/obj/item/stack/sheet/metal,
@@ -3044,9 +2507,7 @@
pixel_y = 7
},
/obj/item/tool/pen/red/clicky,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/mining)
"bIr" = (
/turf/open/floor/corsat,
@@ -3072,30 +2533,21 @@
/obj/item/trash/plate{
pixel_x = 6
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"bIJ" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
/area/lv522/atmos/cargo_intake)
"bIQ" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"bIY" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/west_reactor)
"bJa" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/corpo/glass)
"bJp" = (
/obj/item/storage/backpack/marine/satchel{
@@ -3113,25 +2565,19 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"bJy" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"bJE" = (
/obj/structure/prop/vehicles/crawler{
icon_state = "crawler_fuel";
pixel_y = 5
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"bJG" = (
/obj/effect/decal/cleanable/dirt,
@@ -3140,10 +2586,7 @@
dir = 8;
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"bJN" = (
/obj/item/stack/folding_barricade,
@@ -3153,9 +2596,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"bJZ" = (
/obj/structure/barricade/wooden{
@@ -3170,33 +2611,24 @@
pixel_y = 11
},
/obj/item/clothing/head/hardhat/white,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"bKj" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/plasteel/small_stack,
/obj/item/ore/uranium,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"bKk" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/cargo_intake)
"bKn" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 4;
id = "Reactor_garage_1"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"bKq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -3209,9 +2641,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/central_streets)
"bLh" = (
/obj/structure/surface/table/almayer,
@@ -3219,9 +2649,7 @@
pixel_x = 1;
pixel_y = 6
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"bLk" = (
/obj/structure/surface/table/almayer,
@@ -3232,9 +2660,7 @@
pixel_x = -3;
pixel_y = 3
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"bLA" = (
/obj/structure/platform_decoration{
@@ -3246,10 +2672,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/secure_closet/engineering_electrical,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"bLV" = (
/obj/structure/barricade/wooden{
@@ -3260,15 +2683,11 @@
pixel_y = 13
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"bMa" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"bMB" = (
/obj/effect/decal/warning_stripes{
@@ -3307,24 +2726,18 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"bNy" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper A-Block Corporate Office Airlock";
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo)
"bNA" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/lv522/indoors/a_block/dorms)
"bNE" = (
/obj/item/tank/oxygen{
@@ -3351,25 +2764,18 @@
pixel_y = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv522/indoors/a_block/dorms)
"bNT" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor)
"bOv" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"bOE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -3380,9 +2786,7 @@
"bOM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"bOX" = (
/obj/effect/decal/cleanable/dirt,
@@ -3423,16 +2827,11 @@
pixel_x = 8;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"bQl" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness/glass)
"bQq" = (
/obj/structure/cargo_container/grant/rightmid,
@@ -3446,10 +2845,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor)
"bQG" = (
/obj/effect/decal/warning_stripes{
@@ -3466,20 +2862,14 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"bRv" = (
/obj/item/trash/uscm_mre,
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/outdoors/colony_streets/north_street)
"bRN" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/north_command_centre)
"bRP" = (
/obj/structure/bed/chair/comfy{
@@ -3501,18 +2891,14 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"bSD" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"bSI" = (
/obj/structure/barricade/wooden{
@@ -3521,16 +2907,11 @@
/obj/effect/decal/cleanable/blood/gibs,
/obj/effect/decal/cleanable/blood,
/obj/item/weapon/gun/revolver/cmb,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/op_centre)
"bSM" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/west_reactor)
"bSU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -3564,10 +2945,7 @@
pixel_x = -6;
pixel_y = 10
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"bTT" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -3587,9 +2965,7 @@
pixel_y = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"bUy" = (
/obj/structure/cargo_container/wy/left,
@@ -3604,9 +2980,7 @@
dir = 5;
pixel_y = 8
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/oob)
"bUN" = (
/obj/effect/decal/cleanable/dirt,
@@ -3617,10 +2991,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"bUV" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -3643,15 +3014,11 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"bVF" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/west)
"bVG" = (
/obj/structure/bed/bedroll{
@@ -3663,9 +3030,7 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"bWd" = (
/obj/structure/flora/jungle/planttop1,
@@ -3675,17 +3040,12 @@
"bWm" = (
/obj/structure/barricade/wooden,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/admin)
"bWq" = (
/obj/item/trash/barcardine,
/obj/item/tool/weldingtool,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/oob)
"bWt" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -3706,24 +3066,17 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/atmos/reactor_garage)
"bWX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"bXl" = (
/obj/effect/landmark/corpsespawner/colonist/burst,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"bXo" = (
/obj/structure/surface/table/almayer,
@@ -3736,21 +3089,15 @@
pixel_x = -9;
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"bXq" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/west_reactor)
"bXA" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/north_command_centre)
"bXO" = (
/obj/structure/bed/stool,
@@ -3772,16 +3119,11 @@
/area/lv522/indoors/c_block/mining)
"bYd" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"bYx" = (
/obj/structure/cargo_container/wy/right,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"bYy" = (
/obj/item/paper,
@@ -3831,9 +3173,7 @@
/area/lv522/indoors/lone_buildings/storage_blocks)
"bZe" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor/north)
"bZB" = (
/obj/structure/girder/displaced,
@@ -3848,9 +3188,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"bZK" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
@@ -3864,17 +3202,12 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"bZX" = (
/obj/structure/barricade/deployable,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/admin)
"cac" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
@@ -3888,10 +3221,7 @@
pixel_x = 12;
pixel_y = -4
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/north)
"caf" = (
/obj/structure/surface/table/almayer,
@@ -3902,19 +3232,14 @@
pixel_x = 2;
pixel_y = 9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"cay" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
dir = 8;
pixel_y = 16
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"caE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -3927,9 +3252,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/west)
"caP" = (
/obj/effect/decal/cleanable/blood/xeno{
@@ -3943,9 +3266,7 @@
pixel_x = 6;
pixel_y = 19
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/damage)
"caV" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -3955,27 +3276,21 @@
/area/lv522/atmos/sewer)
"cbp" = (
/obj/structure/machinery/squeezer,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"cbB" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
dir = 10;
pixel_y = 16
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"cbR" = (
/obj/structure/stairs/perspective{
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_west_street)
"cbW" = (
/obj/structure/machinery/light,
@@ -3992,9 +3307,7 @@
icon_state = "flammable_pipe_3"
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"cce" = (
/obj/structure/surface/table/almayer,
@@ -4006,10 +3319,7 @@
pixel_x = 5;
pixel_y = 3
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor)
"cct" = (
/obj/structure/bed/chair/wood/normal,
@@ -4018,10 +3328,7 @@
/area/lv522/indoors/c_block/casino)
"ccu" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor)
"ccN" = (
/obj/item/reagent_container/glass/bucket,
@@ -4048,9 +3355,7 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"cem" = (
/obj/structure/bed/chair/comfy{
@@ -4080,27 +3385,20 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"cfg" = (
/obj/structure/prop/vehicles/crawler{
dir = 8;
layer = 3.1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"cfv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/north_command_centre)
"cfz" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -4110,9 +3408,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"cfT" = (
/obj/effect/decal/warning_stripes{
@@ -4133,10 +3429,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"chm" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
@@ -4144,9 +3437,7 @@
/area/lv522/atmos/west_reactor)
"cho" = (
/obj/item/weapon/gun/rifle/mar40/carbine,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"chR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4161,21 +3452,14 @@
icon_state = "xgib3"
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor/south)
"cia" = (
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"cil" = (
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"cim" = (
/obj/structure/pipes/vents/pump,
@@ -4191,9 +3475,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"ciw" = (
/obj/structure/stairs/perspective{
@@ -4204,24 +3486,18 @@
/area/lv522/outdoors/n_rockies)
"ciA" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/south_east_street)
"ciF" = (
/obj/item/reagent_container/glass/bucket/janibucket{
pixel_x = -6;
pixel_y = 15
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"ciL" = (
/obj/item/tool/pen/clicky,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"ciS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4246,9 +3522,7 @@
dir = 1;
name = "\improper A-Block Corporate Office Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges/corpo)
"cjE" = (
/obj/effect/decal/warning_stripes{
@@ -4271,17 +3545,13 @@
dir = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"ckZ" = (
/obj/structure/barricade/handrail/strata{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"clf" = (
/obj/effect/landmark/xeno_spawn,
@@ -4292,19 +3562,13 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"clT" = (
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"clY" = (
/turf/open/auto_turf/shale/layer1,
@@ -4313,9 +3577,7 @@
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"cmB" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4331,9 +3593,7 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper A-Block Fitness Centre Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness)
"cmF" = (
/obj/structure/prop/vehicles/crawler{
@@ -4352,49 +3612,35 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"cnA" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"cnN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/central_streets)
"col" = (
/obj/structure/machinery/suit_storage_unit{
pixel_x = -2
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"con" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_east_street)
"coR" = (
/obj/structure/ore_box,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"cpk" = (
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/south_east_street)
"cpn" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -4403,9 +3649,7 @@
unacidable = 1
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/oob)
"cpx" = (
/obj/structure/platform_decoration{
@@ -4428,10 +3672,7 @@
dir = 6;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"cpJ" = (
/obj/structure/barricade/deployable{
@@ -4446,10 +3687,7 @@
"cpO" = (
/obj/structure/machinery/light,
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"cpX" = (
/obj/item/toy/beach_ball/holoball,
@@ -4464,9 +3702,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor/south)
"cqb" = (
/obj/structure/stairs/perspective{
@@ -4488,16 +3724,11 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"cqr" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/north)
"cqs" = (
/obj/structure/machinery/light{
@@ -4510,32 +3741,23 @@
/turf/open/auto_turf/shale/layer2,
/area/lv522/outdoors/colony_streets/central_streets)
"cqH" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"cqP" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/north)
"crm" = (
/obj/structure/surface/table/almayer,
/obj/item/prop/almayer/flight_recorder{
pixel_x = 9
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/north)
"crH" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_street)
"crM" = (
/obj/structure/surface/rack,
@@ -4560,43 +3782,32 @@
"crX" = (
/obj/structure/prop/ice_colony/ground_wire,
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"csv" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"csy" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/east_reactor/south)
"csC" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper C-Block - Garage Airlock"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/garage)
"csK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/north_command_centre)
"csS" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -4604,9 +3815,7 @@
icon_state = "xgib3"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"csU" = (
/obj/effect/decal/warning_stripes{
@@ -4620,18 +3829,14 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"ctu" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper C-Block - Casino Airlock";
welded = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/casino)
"ctE" = (
/obj/structure/foamed_metal,
@@ -4639,10 +3844,7 @@
/area/lv522/oob)
"cuk" = (
/obj/structure/cargo_container/horizontal/blue/top,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"cuu" = (
/obj/structure/machinery/light{
@@ -4651,9 +3853,7 @@
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/corpsespawner/colonist/burst,
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"cuF" = (
/obj/item/tool/warning_cone{
@@ -4663,16 +3863,11 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/west)
"cuY" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"cve" = (
/obj/structure/bed/chair/comfy{
@@ -4688,23 +3883,17 @@
pixel_y = 7
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"cwe" = (
/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"cwq" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"cwr" = (
/obj/structure/machinery/deployable/barrier,
@@ -4712,9 +3901,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"cwE" = (
/obj/structure/largecrate/random/secure,
@@ -4746,9 +3933,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"cxo" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4761,9 +3946,7 @@
/turf/open/floor/corsat,
/area/lv522/atmos/east_reactor)
"cxv" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/south_west_street)
"cxC" = (
/obj/structure/surface/table/almayer,
@@ -4771,51 +3954,34 @@
dir = 4;
pixel_x = -3
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"cxE" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"cxK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"cxT" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/lv522/indoors/a_block/admin)
"cyl" = (
/obj/structure/cargo_container/wy/left,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"cys" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/central_streets)
"cyt" = (
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"cyu" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4823,38 +3989,28 @@
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"cyv" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"cyH" = (
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"cyO" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/west_reactor)
"cyV" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/b_block/bridge)
"czd" = (
/obj/effect/decal/cleanable/vomit{
@@ -4870,9 +4026,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"czC" = (
/turf/closed/wall/strata_outpost,
@@ -4904,10 +4058,7 @@
dir = 10;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"czW" = (
/obj/structure/barricade/wooden{
@@ -4919,9 +4070,7 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"cAp" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor)
"cAx" = (
/obj/structure/filingcabinet{
@@ -4935,62 +4084,42 @@
pixel_y = 20
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"cAy" = (
/obj/structure/cargo_container/horizontal/blue/middle,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"cAW" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"cBi" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/north_command_centre)
"cBs" = (
/obj/item/tool/extinguisher,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"cBU" = (
/obj/structure/prop/vehicles/crawler{
icon_state = "crawler_covered_bed"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"cBV" = (
/obj/effect/decal/cleanable/cobweb2,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"cCt" = (
/obj/item/prop/alien/hugger,
/obj/item/clothing/head/helmet/riot,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/kitchen)
"cCC" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"cCH" = (
/obj/effect/decal/cleanable/generic,
@@ -4998,16 +4127,11 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"cCK" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"cCL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"cCN" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -5016,15 +4140,10 @@
/area/lv522/indoors/c_block/cargo)
"cCQ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/north_command_centre)
"cDh" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/east_reactor/north)
"cDi" = (
/obj/structure/platform_decoration{
@@ -5037,23 +4156,16 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/landing_zone_2)
"cDo" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/north)
"cDp" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/north_east_street)
"cDx" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"cDH" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -5077,9 +4189,7 @@
"cEw" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/north)
"cEx" = (
/obj/structure/surface/table/almayer,
@@ -5087,19 +4197,14 @@
pixel_x = -7;
pixel_y = 3
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/north)
"cEM" = (
/obj/item/tool/warning_cone{
pixel_x = -10;
pixel_y = 3
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/north)
"cEN" = (
/obj/structure/bed/bedroll{
@@ -5113,16 +4218,11 @@
/area/lv522/indoors/a_block/admin)
"cFv" = (
/obj/structure/cargo_container/wy/mid,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"cFP" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/north)
"cFR" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -5132,16 +4232,10 @@
/area/lv522/atmos/east_reactor)
"cFW" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"cGd" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor/east)
"cGw" = (
/obj/structure/machinery/light{
@@ -5149,20 +4243,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"cGG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/machinery/space_heater/radiator/red,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"cGY" = (
/obj/item/tool/wrench,
@@ -5176,10 +4264,7 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"cHg" = (
/obj/structure/machinery/deployable/barrier,
@@ -5196,15 +4281,11 @@
dir = 1;
welded = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"cHw" = (
/obj/structure/largecrate/random,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"cHy" = (
/turf/closed/wall/strata_outpost/reinforced,
@@ -5219,17 +4300,11 @@
pixel_x = -7;
pixel_y = 4
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/lv522/indoors/a_block/dorms)
"cHL" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor)
"cIe" = (
/obj/structure/surface/rack,
@@ -5249,25 +4324,17 @@
pixel_y = -2
},
/obj/item/tool/wirecutters/clippers,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"cIm" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/east_reactor/east)
"cIo" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper C-Block - Cargo Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"cIr" = (
/obj/structure/bed/chair{
@@ -5277,9 +4344,7 @@
/area/lv522/atmos/east_reactor)
"cIs" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"cIA" = (
/obj/structure/surface/table/reinforced/prison,
@@ -5321,20 +4386,14 @@
},
/obj/effect/decal/cleanable/cobweb,
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"cIV" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/east)
"cIW" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/east)
"cIX" = (
/obj/structure/window/reinforced{
@@ -5345,20 +4404,14 @@
pixel_x = 10;
pixel_y = 22
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/oob)
"cJh" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/prop/almayer/computers/sensor_computer2,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/oob)
"cJm" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -5368,9 +4421,7 @@
/area/lv522/outdoors/w_rockies)
"cJo" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"cJy" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -5394,17 +4445,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/east_central_street)
"cKf" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"cKi" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -5412,9 +4459,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/hydro)
"cKo" = (
/obj/structure/closet/crate/trashcart,
@@ -5476,10 +4521,7 @@
/turf/open/floor/corsat,
/area/lv522/atmos/east_reactor)
"cLb" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/east_reactor/east)
"cLi" = (
/obj/structure/barricade/deployable{
@@ -5496,14 +4538,10 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
+/turf/open/floor/wood/wood_broken5,
/area/lv522/indoors/b_block/bar)
"cLx" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"cLB" = (
/obj/structure/stairs/perspective{
@@ -5518,15 +4556,11 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"cLQ" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/op_centre)
"cMc" = (
/obj/item/clothing/head/hardhat,
@@ -5539,10 +4573,7 @@
amount = 2
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"cMt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5550,10 +4581,7 @@
},
/obj/effect/landmark/objective_landmark/science,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 1;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/north,
/area/lv522/indoors/a_block/medical)
"cMv" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -5562,33 +4590,22 @@
},
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"cMQ" = (
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan4"
- },
+/turf/open/floor/strata/white_cyan4/east,
/area/lv522/indoors/a_block/medical/glass)
"cMW" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/reactor_garage)
"cNB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/east_reactor/east)
"cNO" = (
/obj/structure/machinery/colony_floodlight_switch{
@@ -5597,10 +4614,7 @@
/turf/open/floor/plating,
/area/lv522/indoors/lone_buildings/engineering)
"cNQ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/filt)
"cNU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5616,25 +4630,18 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"cOJ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"cOZ" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"cPg" = (
/obj/structure/surface/table/almayer,
@@ -5644,9 +4651,7 @@
pixel_y = 7
},
/obj/item/toy/plush/farwa,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"cPi" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -5658,38 +4663,26 @@
/turf/open/floor/corsat,
/area/lv522/atmos/filt)
"cPy" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/filt)
"cPN" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
dir = 1;
pixel_y = 6
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/oob)
"cPO" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/oob)
"cPU" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/oob)
"cPY" = (
/obj/structure/surface/table/almayer,
@@ -5698,9 +4691,7 @@
pixel_x = -5;
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"cQc" = (
/obj/effect/decal/hefa_cult_decals/d32{
@@ -5716,10 +4707,7 @@
icon_state = "folder_black";
name = "USCM classified intelligence folder"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/oob)
"cQm" = (
/obj/structure/surface/table/reinforced/prison,
@@ -5743,10 +4731,7 @@
/area/lv522/indoors/lone_buildings/storage_blocks)
"cQS" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"cQW" = (
/obj/structure/machinery/light{
@@ -5758,76 +4743,54 @@
pixel_x = 3
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"cRB" = (
/obj/structure/cargo_container/kelland/right,
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/central_streets)
"cRD" = (
/obj/structure/blocker/forcefield/vehicles,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"cRG" = (
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/oob)
"cRL" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
pixel_y = 6
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/oob)
"cRN" = (
/obj/structure/largecrate,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_east_street)
"cRT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/east)
"cSb" = (
/obj/structure/largecrate,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/west)
"cSf" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper C-Block - Cargo Airlock"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"cSh" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/west)
"cSO" = (
/turf/open/floor/plating,
@@ -5836,24 +4799,18 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"cTf" = (
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/west)
"cTz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"cTU" = (
/obj/structure/curtain/red,
@@ -5871,9 +4828,7 @@
/area/lv522/indoors/c_block/mining)
"cUa" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/casino)
"cUg" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -5892,9 +4847,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"cUl" = (
/obj/item/stack/cable_coil/cut,
@@ -5907,9 +4860,7 @@
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"cUA" = (
/obj/effect/decal/cleanable/dirt,
@@ -5927,9 +4878,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"cUG" = (
/turf/closed/wall/strata_outpost,
@@ -5940,9 +4889,7 @@
pixel_x = -9;
pixel_y = 11
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/t_comm)
"cVc" = (
/obj/item/stack/tile/plasteel{
@@ -5955,26 +4902,18 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"cVe" = (
/obj/item/stack/sheet/wood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"cVm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/east_reactor)
"cVy" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -5984,9 +4923,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"cWf" = (
/turf/open/auto_turf/sand_white/layer0,
@@ -6001,9 +4938,7 @@
pixel_y = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"cWr" = (
/obj/structure/surface/table/almayer,
@@ -6014,37 +4949,26 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"cWH" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"cWL" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/east)
"cWS" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_west_street)
"cWT" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/central_streets)
"cWY" = (
/obj/structure/filingcabinet/seeds{
@@ -6058,35 +4982,24 @@
pixel_y = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"cWZ" = (
/obj/structure/blocker/forcefield/vehicles,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"cXf" = (
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"cXi" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/machinery/photocopier,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"cXm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges)
"cXq" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -6114,9 +5027,7 @@
/obj/item/reagent_container/food/condiment/enzyme,
/obj/item/reagent_container/food/condiment/enzyme,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"cYn" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -6132,10 +5043,7 @@
/area/lv522/indoors/c_block/mining)
"cYF" = (
/obj/structure/cargo_container/wy/right,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"cYG" = (
/obj/structure/machinery/light,
@@ -6143,9 +5051,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/op_centre)
"cYQ" = (
/obj/structure/window/framed/corsat,
@@ -6164,9 +5070,7 @@
},
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"cZu" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -6180,10 +5084,7 @@
pixel_x = 7;
pixel_y = 20
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/east_reactor/east)
"cZH" = (
/obj/structure/blocker/invisible_wall,
@@ -6191,17 +5092,11 @@
/area/lv522/atmos/sewer)
"cZM" = (
/obj/structure/cargo_container/horizontal/blue/top,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"cZN" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"cZQ" = (
/obj/structure/machinery/photocopier,
@@ -6218,16 +5113,11 @@
pixel_x = 7;
pixel_y = 20
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/east)
"dak" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/op_centre)
"daq" = (
/obj/effect/decal/hefa_cult_decals/d32{
@@ -6235,10 +5125,7 @@
icon_state = "2"
},
/obj/item/storage/belt/gun/m44/custom,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/oob)
"das" = (
/obj/structure/machinery/landinglight/ds1/delayone,
@@ -6250,32 +5137,22 @@
pixel_y = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"daB" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"daG" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"daL" = (
/obj/item/clothing/under/marine/reconnaissance,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/oob)
"dbc" = (
/turf/closed/wall/solaris/reinforced/hull/lv522,
@@ -6286,21 +5163,15 @@
pixel_x = 9;
pixel_y = 14
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/oob)
"dbs" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"dbt" = (
/obj/item/reagent_container/food/snacks/meat/human,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/oob)
"dbF" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -6341,9 +5212,7 @@
/area/lv522/indoors/a_block/kitchen)
"dbX" = (
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/oob)
"dcc" = (
/obj/structure/cargo_container/kelland/left,
@@ -6353,10 +5222,7 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/north_east_street)
"dci" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/oob)
"dck" = (
/obj/structure/surface/table/almayer,
@@ -6366,9 +5232,7 @@
/obj/item/trash/ceramic_plate{
pixel_y = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"dco" = (
/obj/structure/cargo_container/grant/right,
@@ -6378,22 +5242,15 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/west)
"dcD" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/east_reactor/west)
"dcF" = (
/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/casino)
"dcJ" = (
/obj/structure/filingcabinet{
@@ -6406,17 +5263,12 @@
pixel_x = 8;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"dcM" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/alien/resin/sticky,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"dcR" = (
/obj/structure/cargo_container/grant/right,
@@ -6433,10 +5285,7 @@
amount = 30
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"ddr" = (
/obj/structure/surface/table/almayer,
@@ -6444,15 +5293,10 @@
pixel_x = -4;
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"ddy" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/cargo_intake)
"ddC" = (
/obj/structure/filingcabinet{
@@ -6466,10 +5310,7 @@
pixel_y = 19
},
/obj/item/trash/uscm_mre,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"ddK" = (
/obj/structure/filingcabinet/chestdrawer{
@@ -6502,10 +5343,7 @@
/area/lv522/indoors/a_block/executive)
"ddN" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/west)
"ddP" = (
/obj/structure/surface/table/almayer{
@@ -6513,17 +5351,11 @@
flipped = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"ddS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/west)
"dek" = (
/obj/effect/decal/warning_stripes{
@@ -6538,10 +5370,7 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/outdoors/nw_rockies)
"del" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor/west)
"den" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -6565,9 +5394,7 @@
/area/lv522/indoors/c_block/cargo)
"dfn" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/west)
"dfE" = (
/obj/structure/filingcabinet{
@@ -6594,17 +5421,13 @@
/area/lv522/indoors/c_block/garage)
"dfH" = (
/obj/effect/spawner/gibspawner/human,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"dfK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"dfV" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -6612,59 +5435,42 @@
welded = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"dgb" = (
/obj/structure/cryofeed,
/turf/open/floor/bluegrid,
/area/lv522/atmos/east_reactor)
"dgd" = (
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/north_east_street)
"dgj" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"dgq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/east_reactor/east)
"dgI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/west_reactor)
"dgJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/cargo_intake)
"dgO" = (
/obj/structure/tunnel,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor)
"dgR" = (
/obj/structure/machinery/conveyor{
@@ -6675,10 +5481,7 @@
/turf/open/floor/plating,
/area/lv522/indoors/c_block/cargo)
"dgY" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"dgZ" = (
/obj/structure/window/framed/strata/reinforced,
@@ -6686,14 +5489,10 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"dhH" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/landing_zone_2)
"dhJ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
@@ -6709,18 +5508,14 @@
/area/lv522/landing_zone_1)
"dhQ" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo/glass)
"dhW" = (
/obj/item/stack/tile/plasteel,
/obj/structure/prop/ice_colony/ground_wire{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"dhX" = (
/obj/item/stack/cable_coil/cut,
@@ -6730,45 +5525,33 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"dip" = (
/obj/structure/prop/ice_colony/ground_wire{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"dit" = (
/obj/structure/machinery/floodlight,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"diT" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/east_central_street)
"diZ" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"djg" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/mucus,
-/turf/open/floor/strata{
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3,
/area/lv522/indoors/a_block/medical)
"djm" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -6778,9 +5561,7 @@
/area/lv522/indoors/lone_buildings/storage_blocks)
"djq" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/filt)
"djD" = (
/obj/structure/surface/table/almayer,
@@ -6793,9 +5574,7 @@
pixel_y = 8
},
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"djM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -6814,16 +5593,10 @@
/obj/structure/flora/bush/ausbushes/palebush{
pixel_y = 9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"dkh" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/lv522/indoors/a_block/admin)
"dkq" = (
/obj/structure/bed/chair/comfy{
@@ -6851,20 +5624,14 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/landing_zone_2/ceiling)
"dkL" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/east)
"dkP" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
dir = 1;
pixel_y = 6
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/oob)
"dkX" = (
/obj/structure/platform_decoration,
@@ -6873,9 +5640,7 @@
"dli" = (
/obj/structure/blocker/forcefield/vehicles,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"dlC" = (
/obj/structure/prop/invuln/fire{
@@ -6892,9 +5657,7 @@
pixel_y = 26
},
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"dmm" = (
/obj/item/weapon/twohanded/folded_metal_chair{
@@ -6909,9 +5672,7 @@
"dmn" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"dmx" = (
/obj/structure/prop/invuln/minecart_tracks,
@@ -6919,9 +5680,7 @@
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/indoors/c_block/mining)
"dmE" = (
/obj/structure/surface/table/almayer,
@@ -6932,9 +5691,7 @@
name = "synthethic potted plant";
pixel_y = 12
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"dmG" = (
/obj/structure/barricade/deployable{
@@ -6957,10 +5714,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"dng" = (
/obj/effect/decal/hefa_cult_decals/d96{
@@ -6973,16 +5727,12 @@
/obj/item/prop/colony/proptag{
desc = "A fallen marine's information dog tag. It reads, Captain Hashim ibn Al-Waqqas"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/oob)
"dni" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb2,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/b_block/bridge)
"dnx" = (
/obj/structure/pipes/vents/pump,
@@ -6991,30 +5741,21 @@
dir = 1;
pixel_y = 26
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"dnB" = (
/obj/item/clothing/head/helmet/marine/pilot,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/oob)
"dnD" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"dnG" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
pixel_y = 6
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/oob)
"dnM" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -7027,9 +5768,7 @@
/turf/open/floor/plating,
/area/lv522/landing_zone_1/tunnel/far)
"dnQ" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/west_reactor)
"dnX" = (
/obj/structure/surface/table/almayer,
@@ -7044,9 +5783,7 @@
pixel_x = -9;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"doj" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -7059,9 +5796,7 @@
"doq" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"dos" = (
/obj/docking_port/stationary/marine_dropship/lz1{
@@ -7081,9 +5816,7 @@
/area/lv522/outdoors/colony_streets/north_street)
"doC" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/west_reactor)
"doF" = (
/obj/structure/barricade/deployable{
@@ -7092,22 +5825,15 @@
/turf/open/floor/prison,
/area/lv522/atmos/cargo_intake)
"doP" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/west_reactor)
"dpg" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/west_reactor)
"dpj" = (
/obj/structure/cargo_container/hd/mid/alt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"dpk" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -7124,15 +5850,13 @@
name = "????";
stat = 2
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"dpS" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"dqr" = (
/obj/item/weapon/gun/rifle/m41a{
@@ -7141,9 +5865,7 @@
/turf/open/floor/prison,
/area/lv522/atmos/cargo_intake)
"dqB" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/south_east_street)
"drd" = (
/obj/structure/stairs/perspective{
@@ -7168,9 +5890,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"drz" = (
/obj/effect/decal/cleanable/blood,
@@ -7182,15 +5902,11 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"drS" = (
/obj/structure/cargo_container/hd/right/alt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"drV" = (
/obj/structure/machinery/light{
@@ -7200,10 +5916,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"dsa" = (
/obj/structure/fence,
@@ -7214,17 +5927,11 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/landing_zone_2/ceiling)
"dsc" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/cargo_intake)
"dsl" = (
/obj/structure/stairs/perspective{
@@ -7239,10 +5946,7 @@
amount = 5
},
/obj/item/stack/sheet/mineral/platinum,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"dsu" = (
/obj/structure/machinery/light,
@@ -7282,25 +5986,18 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"dtb" = (
/obj/structure/surface/table/almayer,
/obj/item/weapon/gun/rifle/m4ra{
current_mag = null
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"dtr" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"dtE" = (
/obj/effect/decal/cleanable/dirt,
@@ -7308,15 +6005,11 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"dtR" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"dtU" = (
/obj/effect/spawner/gibspawner/human,
@@ -7325,26 +6018,18 @@
"dua" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/hallway)
"dut" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"duN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/west)
"dvn" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -7355,9 +6040,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/hydro)
"dvp" = (
/obj/structure/largecrate/supply,
@@ -7385,10 +6068,7 @@
/area/lv522/outdoors/colony_streets/central_streets)
"dwG" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/west_reactor)
"dwI" = (
/obj/structure/surface/table/reinforced/almayer_B,
@@ -7414,17 +6094,12 @@
/area/lv522/indoors/c_block/t_comm)
"dwP" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/north_command_centre)
"dwX" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"dxc" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -7436,25 +6111,18 @@
/area/lv522/atmos/east_reactor/south)
"dxl" = (
/obj/effect/decal/cleanable/flour,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"dxJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/south)
"dxU" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/west_reactor)
"dxY" = (
/obj/structure/machinery/computer/telecomms/server{
@@ -7463,73 +6131,52 @@
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"dya" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"dyl" = (
/obj/structure/largecrate,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"dyH" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"dyI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/mucus,
-/turf/open/floor/strata{
- dir = 1;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/north,
/area/lv522/indoors/a_block/medical)
"dyS" = (
/obj/item/stack/sheet/wood,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"dzd" = (
/obj/structure/closet/secure_closet/marshal,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"dzs" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper,
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"dzv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/north)
"dzB" = (
/obj/structure/curtain/red,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/casino)
"dAf" = (
/obj/structure/surface/table/almayer,
@@ -7540,32 +6187,22 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"dAm" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/north_command_centre)
"dAG" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor/south)
"dAQ" = (
/obj/structure/platform_decoration{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"dBa" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -7575,18 +6212,13 @@
icon_state = "fernybush_2";
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"dBb" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/mucus,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"dBc" = (
/obj/structure/prop/server_equipment/yutani_server{
@@ -7597,9 +6229,7 @@
pixel_y = 11
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"dBd" = (
/obj/item/clothing/mask/facehugger{
@@ -7616,25 +6246,18 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"dBi" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"dBo" = (
/obj/item/device/defibrillator,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"dBC" = (
/obj/structure/cargo_container/horizontal/blue/middle,
@@ -7649,21 +6272,14 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"dCx" = (
/obj/structure/closet/crate/radiation,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"dCJ" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/east_central_street)
"dCT" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness/glass)
"dCY" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -7678,25 +6294,17 @@
pixel_y = 7
},
/obj/item/tool/pen/red/clicky,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"dDq" = (
/turf/closed/wall/shiva/prefabricated,
/area/lv522/landing_zone_2/ceiling)
"dDC" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/west)
"dDF" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/filt)
"dDS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -7710,9 +6318,7 @@
/area/lv522/atmos/cargo_intake)
"dEk" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/north_command_centre)
"dEm" = (
/obj/structure/closet,
@@ -7743,28 +6349,20 @@
pixel_y = 13
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"dEL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/west)
"dEM" = (
/obj/structure/barricade/deployable{
dir = 1
},
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"dEP" = (
/obj/structure/closet/crate/trashcart,
@@ -7778,9 +6376,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"dFd" = (
/obj/structure/bed/chair/comfy,
@@ -7832,23 +6428,17 @@
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"dGp" = (
/obj/structure/cargo_container/horizontal/blue/middle{
layer = 3.1
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"dGB" = (
/obj/structure/window_frame/strata,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bar)
"dGD" = (
/obj/structure/machinery/colony_floodlight{
@@ -7858,28 +6448,17 @@
/area/lv522/outdoors/colony_streets/south_street)
"dGK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/indoors/lone_buildings/storage_blocks)
"dGV" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor/west)
"dHc" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/west)
"dHg" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"dHj" = (
/obj/item/device/flashlight,
@@ -7889,9 +6468,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor)
"dHy" = (
/obj/structure/bed/chair/comfy{
@@ -7905,21 +6482,14 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"dHE" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/lv522/indoors/a_block/hallway)
"dHF" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"dHR" = (
/obj/structure/cargo_container/horizontal/blue/top{
@@ -7949,9 +6519,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"dIG" = (
/obj/structure/surface/table/reinforced/prison,
@@ -7963,9 +6531,7 @@
network = null;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"dIK" = (
/obj/structure/bed/chair,
@@ -7976,26 +6542,20 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"dIX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/prop/ice_colony/ground_wire{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"dJp" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"dJs" = (
/obj/item/tool/pen/red/clicky,
@@ -8009,10 +6569,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/reinforced/prison,
/obj/structure/machinery/computer/operating,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"dJJ" = (
/obj/structure/cargo_container/horizontal/blue/middle{
@@ -8021,10 +6578,7 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/outdoors/nw_rockies)
"dJN" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/east_reactor/east)
"dKd" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -8035,21 +6589,13 @@
/area/lv522/indoors/c_block/garage)
"dKC" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness/glass)
"dKF" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/east)
"dKM" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/east)
"dKO" = (
/obj/structure/machinery/photocopier,
@@ -8060,30 +6606,21 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"dLq" = (
/obj/item/prop/colony/proptag{
desc = "A fallen marine's information dog tag. It reads, Staff Sergeant Thomas 'Dog' Smith"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/oob)
"dLs" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/north_command_centre)
"dLz" = (
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/oob)
"dLC" = (
/obj/structure/largecrate/random/barrel/white,
@@ -8099,9 +6636,7 @@
pixel_y = 10
},
/obj/item/device/implanter/subdermal_armor,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/oob)
"dMl" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -8119,23 +6654,15 @@
},
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/executive)
"dMu" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/west_reactor)
"dMy" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"dMN" = (
/obj/effect/decal/hefa_cult_decals/d32{
@@ -8147,10 +6674,7 @@
layer = 3.1;
pixel_y = 2
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/oob)
"dMY" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
@@ -8160,9 +6684,7 @@
/area/lv522/landing_zone_1)
"dNd" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"dNe" = (
/obj/effect/decal/warning_stripes{
@@ -8171,9 +6693,7 @@
pixel_x = -1;
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"dNm" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -8186,9 +6706,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"dNx" = (
/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down,
@@ -8202,17 +6720,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo)
"dNP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/security/glass)
"dOa" = (
/turf/closed/wall/strata_outpost,
@@ -8222,23 +6736,16 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"dOw" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/north_command_centre)
"dOz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/hydro)
"dOI" = (
/obj/structure/prop/invuln/remote_console_pod,
@@ -8247,44 +6754,29 @@
layer = 3.5;
pixel_y = -9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/shuttle/drop2/lv522)
"dOK" = (
/obj/structure/cargo_container/arious/leftmid,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"dOY" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{
req_access = null;
req_one_access_txt = "7;23;27"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"dPl" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/reactor_garage)
"dPq" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/east_reactor/north)
"dPv" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"dPG" = (
/obj/item/trash/uscm_mre,
@@ -8304,47 +6796,32 @@
pixel_x = 1;
pixel_y = 2
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"dPP" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_west_street)
"dQa" = (
/obj/structure/curtain/medical,
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"dQg" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"dQh" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"dQm" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/west)
"dQr" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -8366,9 +6843,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"dQQ" = (
/obj/structure/stairs/perspective{
@@ -8377,9 +6852,7 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"dRn" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -8388,25 +6861,18 @@
name = "Storage";
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/cargo_intake)
"dRy" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"dRK" = (
/obj/structure/stairs/perspective{
dir = 9;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"dRL" = (
/turf/closed/wall/strata_outpost,
@@ -8415,22 +6881,15 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"dSt" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/east)
"dSy" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/east)
"dSW" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
@@ -8440,10 +6899,7 @@
/obj/effect/decal/hefa_cult_decals/d96{
desc = "You think you can make out the iconography of a Xenomorph?"
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/oob)
"dTs" = (
/obj/effect/landmark/objective_landmark/close,
@@ -8462,19 +6918,14 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"dTW" = (
/obj/item/reagent_container/food/snacks/meat/human,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/oob)
"dUj" = (
/obj/effect/decal/hefa_cult_decals/d32{
desc = "You think you can make out the iconography of a Xenomorph.";
icon_state = "bee"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/oob)
"dUq" = (
/obj/structure/surface/table/almayer,
@@ -8482,26 +6933,19 @@
pixel_x = 5;
pixel_y = 5
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"dUD" = (
/obj/item/prop/colony/proptag{
desc = "A fallen marine's information dog tag. It reads, Ensign Robert 'Roach' Yangley"
},
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/oob)
"dUE" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
pixel_y = 6
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/oob)
"dUS" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -8527,16 +6971,12 @@
welded = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorm_north)
"dVD" = (
/obj/structure/surface/rack,
/obj/item/tool/pickaxe,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_east_street)
"dVM" = (
/obj/structure/curtain/red,
@@ -8546,10 +6986,7 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"dWc" = (
/obj/structure/closet/crate/trashcart,
@@ -8570,10 +7007,7 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"dWE" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/west_reactor)
"dWG" = (
/obj/structure/window/reinforced{
@@ -8581,15 +7015,11 @@
layer = 3
},
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/lv522/indoors/c_block/mining)
"dWT" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/west_reactor)
"dWY" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -8604,9 +7034,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"dXo" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
@@ -8614,16 +7042,12 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"dXq" = (
/obj/effect/landmark/monkey_spawn,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/north_command_centre)
"dXt" = (
/obj/item/stack/folding_barricade,
@@ -8634,9 +7058,7 @@
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"dXI" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -8650,27 +7072,20 @@
/turf/open/floor/wood,
/area/lv522/indoors/a_block/security)
"dXN" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/east)
"dXX" = (
/obj/structure/closet/fireaxecabinet{
pixel_y = 29
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"dYb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"dYA" = (
/obj/structure/cargo_container/kelland/right,
@@ -8689,9 +7104,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor)
"dZd" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -8701,10 +7114,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/east_reactor)
"dZr" = (
/obj/structure/ore_box,
@@ -8712,9 +7122,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"dZs" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
@@ -8726,9 +7134,7 @@
dir = 1;
name = "\improper Mining Equipment"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"dZx" = (
/obj/structure/surface/table/almayer,
@@ -8746,19 +7152,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/south)
"dZM" = (
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"dZP" = (
/obj/structure/curtain/red,
@@ -8774,9 +7174,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"eah" = (
/obj/structure/surface/table/almayer,
@@ -8789,55 +7187,40 @@
},
/obj/item/prop/alien/hugger,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"eam" = (
/obj/structure/blocker/forcefield/vehicles,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/command_centre)
"ear" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/west)
"eaE" = (
/turf/open/floor/prison,
/area/lv522/atmos/cargo_intake)
"eaG" = (
/obj/structure/ore_box,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/lone_buildings/storage_blocks)
"ebe" = (
/obj/item/storage/pouch/autoinjector/full,
/turf/open/auto_turf/shale/layer2,
/area/lv522/outdoors/w_rockies)
"ebn" = (
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"ebt" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_east_street)
"ebP" = (
/obj/effect/decal/hefa_cult_decals/d32{
icon_state = "2"
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/oob)
"ebR" = (
/obj/structure/surface/table/almayer,
@@ -8848,17 +7231,11 @@
phone_id = "Colony Engineering";
pixel_y = -6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"ecm" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"ecq" = (
/obj/structure/fence,
@@ -8869,18 +7246,14 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"ecK" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"ecP" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -8889,10 +7262,7 @@
/area/lv522/landing_zone_forecon/UD6_Tornado)
"ecU" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor/south)
"edi" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -8905,10 +7275,7 @@
/turf/open/floor/plating,
/area/lv522/landing_zone_1/tunnel/far)
"edk" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/oob)
"edw" = (
/obj/structure/bed/roller,
@@ -8917,16 +7284,11 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"edP" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/oob)
"edQ" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -8958,10 +7320,7 @@
/obj/structure/flora/bush/ausbushes/reedbush{
pixel_y = 10
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"eeY" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -8970,10 +7329,7 @@
"efk" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"efy" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -8982,9 +7338,7 @@
unacidable = 1
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"efK" = (
/obj/item/stack/tile/plasteel{
@@ -9006,19 +7360,14 @@
desc = "You think you can make out the iconography of a Xenomorph."
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/oob)
"efS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"efT" = (
/obj/structure/closet/coffin/woodencrate,
@@ -9067,16 +7416,11 @@
},
/obj/item/clothing/suit/storage/bomber/alt,
/obj/item/clothing/suit/storage/bomber/alt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"egd" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor)
"egj" = (
/obj/structure/machinery/floodlight,
@@ -9084,10 +7428,7 @@
/area/lv522/indoors/lone_buildings/storage_blocks)
"egt" = (
/obj/structure/powerloader_wreckage,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor)
"egv" = (
/obj/item/cell/crap{
@@ -9102,16 +7443,10 @@
pixel_y = -6
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"egD" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/east_reactor)
"egE" = (
/obj/structure/machinery/washing_machine{
@@ -9123,16 +7458,11 @@
layer = 3.5;
pixel_y = 29
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"egK" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/east_reactor/south)
"egP" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -9143,9 +7473,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen)
"egV" = (
/obj/structure/barricade/deployable{
@@ -9162,17 +7490,12 @@
/turf/open/floor/plating,
/area/lv522/indoors/a_block/kitchen/damage)
"egY" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/east_reactor)
"ehr" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"ehy" = (
/obj/effect/acid_hole,
@@ -9185,9 +7508,7 @@
pixel_y = 1
},
/obj/effect/alien/resin/sticky,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"ehO" = (
/obj/effect/alien/resin/sticky,
@@ -9195,10 +7516,7 @@
/area/lv522/atmos/east_reactor/south)
"eil" = (
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/oob)
"eiC" = (
/obj/effect/decal/warning_stripes{
@@ -9210,9 +7528,7 @@
pixel_x = -7;
pixel_y = -5
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"eiP" = (
/obj/structure/coatrack{
@@ -9228,26 +7544,18 @@
pixel_y = -6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"eiY" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_street)
"eiZ" = (
/turf/open/floor/prison,
/area/lv522/outdoors/colony_streets/north_west_street)
"ejo" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/north_command_centre)
"eju" = (
/obj/item/storage/backpack/marine/satchel{
@@ -9272,39 +7580,26 @@
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"ejN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"ekf" = (
/obj/structure/curtain/medical,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"ekt" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/north_command_centre)
"ekK" = (
/obj/item/clothing/under/marine/reconnaissance,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/oob)
"ekO" = (
/obj/structure/bed/chair/wood/normal{
@@ -9322,9 +7617,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"elq" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -9340,23 +7633,16 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"elx" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"elS" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/hallway)
"elX" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/suit/storage/CMB,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"emb" = (
/obj/item/ammo_magazine/smartgun{
@@ -9379,19 +7665,14 @@
dir = 4
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"emt" = (
/obj/structure/barricade/handrail{
dir = 8
},
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/indoors/lone_buildings/storage_blocks)
"emz" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -9406,20 +7687,13 @@
network = list("interrogation")
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"emH" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"ene" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/hallway)
"eng" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -9433,16 +7707,12 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"enr" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"enB" = (
/obj/effect/decal/cleanable/dirt,
@@ -9450,15 +7720,11 @@
/area/lv522/landing_zone_1/tunnel/far)
"enD" = (
/obj/structure/curtain/red,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"enG" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/north_command_centre)
"enP" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -9469,10 +7735,7 @@
"enR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/bodybag,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"enS" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -9485,9 +7748,7 @@
/obj/vehicle/powerloader/ft{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/north)
"eof" = (
/obj/structure/sign/safety/restrictedarea{
@@ -9503,9 +7764,7 @@
/obj/structure/barricade/metal{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"eov" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -9536,18 +7795,14 @@
name = "\improper Secure Blast Door";
unacidable = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/oob)
"eow" = (
/obj/structure/tunnel{
pixel_x = 2;
pixel_y = -6
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/west_reactor)
"eoA" = (
/obj/item/prop/colony/used_flare,
@@ -9566,29 +7821,21 @@
dir = 1
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"eoH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/north_command_centre)
"eoZ" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/queen_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/west_reactor)
"epb" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/west_reactor)
"epe" = (
/obj/effect/decal/cleanable/dirt,
@@ -9599,25 +7846,16 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"ept" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/east_reactor)
"epI" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/north_command_centre)
"epN" = (
/obj/structure/closet/emcloset,
@@ -9627,17 +7865,12 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/east)
"epX" = (
/obj/item/storage/firstaid/toxin/empty,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"eqe" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -9649,42 +7882,28 @@
pixel_x = -5;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway/damage)
"equ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"eqD" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"eqE" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/nw_rockies)
"eqM" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv522/indoors/a_block/security)
"eqU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/north_command_centre)
"eqV" = (
/obj/structure/largecrate/random/barrel,
@@ -9703,17 +7922,11 @@
/area/lv522/outdoors/colony_streets/south_west_street)
"erS" = (
/obj/structure/cargo_container/watatsumi/rightmid,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"erZ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/west)
"esa" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -9721,9 +7934,7 @@
/area/lv522/indoors/a_block/dorms)
"esj" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/east_central_street)
"eso" = (
/turf/open/floor/prison,
@@ -9743,17 +7954,13 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"esF" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"etn" = (
/obj/structure/prop/invuln/minecart_tracks{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/indoors/c_block/mining)
"etq" = (
/obj/item/device/flashlight/lamp/green{
@@ -9766,27 +7973,20 @@
id = "Secure_Master_Armoury_2";
name = "remote door-control"
},
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"etx" = (
/turf/open/gm/river,
/area/lv522/indoors/a_block/kitchen/damage)
"etN" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"euj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical)
"eum" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -9798,9 +7998,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen/glass)
"eur" = (
/obj/structure/stairs/perspective{
@@ -9816,10 +8014,7 @@
/obj/effect/decal/cleanable/blood,
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"euN" = (
/obj/structure/stairs/perspective{
@@ -9840,10 +8035,7 @@
/obj/structure/machinery/power/apc/weak{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"evu" = (
/obj/structure/tunnel/maint_tunnel{
@@ -9865,27 +8057,20 @@
pixel_x = 3;
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"evx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"evN" = (
/obj/structure/window/framed/strata/reinforced,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo/glass)
"evS" = (
/obj/structure/platform,
@@ -9904,47 +8089,33 @@
dir = 8
},
/obj/structure/prop/almayer/computers/sensor_computer1,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/oob)
"ewf" = (
/obj/structure/platform,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_east_street)
"ewm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor)
"ewn" = (
/obj/structure/platform,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_west_street)
"ewp" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"ewt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"ewE" = (
/obj/structure/platform{
@@ -9980,9 +8151,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"exQ" = (
/obj/structure/machinery/light/small{
@@ -9996,9 +8165,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"eyc" = (
/obj/structure/platform{
@@ -10020,15 +8187,11 @@
/obj/item/storage/toolbox/mechanical/green{
pixel_y = -3
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"eyn" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/central_streets)
"eyy" = (
/obj/structure/machinery/landinglight/ds1,
@@ -10046,15 +8209,10 @@
icon_state = "p_stair_full"
},
/obj/item/trash/uscm_mre,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"ezj" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_east_street)
"ezo" = (
/obj/structure/surface/table/almayer,
@@ -10082,23 +8240,16 @@
/area/lv522/atmos/east_reactor/east)
"ezB" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"ezC" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"ezH" = (
/obj/structure/cargo_container/watatsumi/rightmid,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"ezU" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -10110,17 +8261,13 @@
},
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"eAg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/west_reactor)
"eAm" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10131,9 +8278,7 @@
/area/lv522/indoors/a_block/dorms)
"eAz" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"eAC" = (
/obj/structure/surface/table/almayer,
@@ -10149,16 +8294,11 @@
density = 0;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"eAF" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/east)
"eAX" = (
/obj/structure/surface/table/almayer,
@@ -10167,9 +8307,7 @@
/area/lv522/indoors/b_block/hydro)
"eAY" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"eBi" = (
/obj/item/stack/cable_coil/cut,
@@ -10178,9 +8316,7 @@
/area/lv522/atmos/east_reactor)
"eBm" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor/south)
"eBu" = (
/obj/structure/surface/table/almayer,
@@ -10188,27 +8324,20 @@
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"eBA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"eBH" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/prop/ice_colony/ground_wire{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"eCe" = (
/obj/effect/alien/resin/sticky,
@@ -10237,9 +8366,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"eDq" = (
/obj/structure/platform{
@@ -10270,16 +8397,11 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/reactor_garage)
"eDI" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"eDL" = (
/obj/structure/machinery/washing_machine,
@@ -10287,9 +8409,7 @@
pixel_y = 15
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"eDS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10298,17 +8418,13 @@
/turf/open/auto_turf/shale/layer2,
/area/lv522/outdoors/n_rockies)
"eEv" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"eEx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/north_command_centre)
"eEH" = (
/obj/structure/barricade/wooden{
@@ -10318,9 +8434,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/central_streets)
"eFb" = (
/obj/structure/machinery/light{
@@ -10337,10 +8451,7 @@
/obj/structure/bed/roller,
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"eFP" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -10356,15 +8467,11 @@
/area/lv522/outdoors/n_rockies)
"eGs" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"eGL" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"eGQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -10372,23 +8479,16 @@
/area/lv522/atmos/east_reactor/east)
"eHn" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"eHp" = (
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"eHu" = (
/obj/structure/closet/secure_closet/miner,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"eHy" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -10403,14 +8503,10 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"eHE" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/n_rockies)
"eHF" = (
/obj/structure/cargo_container/kelland/right,
@@ -10418,67 +8514,48 @@
/area/lv522/indoors/c_block/cargo)
"eHI" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"eHR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/west)
"eHS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/west)
"eHX" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"eIk" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms/glass)
"eIn" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/silver{
amount = 20
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"eIF" = (
/obj/structure/bed/alien,
/obj/item/pipe{
pixel_x = -6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"eIT" = (
/obj/structure/bed/chair/comfy,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"eJc" = (
/obj/structure/surface/table/almayer,
@@ -10502,9 +8579,7 @@
pixel_y = 21
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"eJm" = (
/obj/effect/decal/cleanable/dirt,
@@ -10520,9 +8595,7 @@
dir = 8;
pixel_y = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"eJw" = (
/obj/item/clothing/mask/rebreather{
@@ -10538,10 +8611,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor)
"eKc" = (
/obj/structure/closet/secure_closet/miner,
@@ -10549,20 +8619,14 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"eKe" = (
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/north_east_street)
"eKj" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"eKm" = (
/obj/structure/flora/bush/ausbushes/grassybush,
@@ -10577,9 +8641,7 @@
"eKK" = (
/obj/structure/blocker/forcefield/vehicles,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"eKL" = (
/obj/structure/bed/chair{
@@ -10588,9 +8650,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/b_block/hydro)
"eLf" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/landing_zone_2)
"eLl" = (
/obj/structure/machinery/door/airlock/almayer/medical{
@@ -10598,9 +8658,7 @@
name = "\improper A-Block - Colony Medical Centre Airlock"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/medical)
"eLx" = (
/obj/structure/machinery/prop/almayer/computer/PC{
@@ -10608,9 +8666,7 @@
pixel_y = 3
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"eLG" = (
/obj/item/lightstick/red/spoke/planted{
@@ -10635,10 +8691,7 @@
/area/lv522/indoors/a_block/corpo/glass)
"eLN" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"eLU" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -10656,9 +8709,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"eMj" = (
/obj/structure/stairs/perspective{
@@ -10668,19 +8719,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"eMl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/east_reactor)
"eMm" = (
/obj/structure/platform{
@@ -10699,9 +8744,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"eMD" = (
/obj/structure/machinery/light{
@@ -10712,15 +8755,11 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"eMY" = (
/obj/item/reagent_container/glass/bucket/janibucket,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"eNc" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -10730,9 +8769,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"eNf" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -10743,10 +8780,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor)
"eNW" = (
/obj/structure/barricade/deployable{
@@ -10759,9 +8793,7 @@
name = "????";
stat = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"eOe" = (
/obj/structure/bed/chair{
@@ -10777,32 +8809,24 @@
dir = 8
},
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"eOl" = (
/obj/item/shard{
icon_state = "medium"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"eOn" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/west_reactor)
"eOA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/north_command_centre)
"eOE" = (
/obj/effect/decal/warning_stripes{
@@ -10817,18 +8841,14 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"eOU" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"ePc" = (
/obj/structure/surface/table/almayer{
@@ -10839,9 +8859,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"ePl" = (
/obj/structure/prop/invuln/fire{
@@ -10860,31 +8878,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/north_command_centre)
"eQf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/west_reactor)
"eQu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/north_east_street)
"eQB" = (
/obj/structure/machinery/portable_atmospherics/canister/phoron,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/indoors/c_block/mining)
"eQV" = (
/obj/structure/surface/rack,
@@ -10898,9 +8908,7 @@
/obj/item/frame/table/almayer{
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"eQY" = (
/obj/structure/surface/table/almayer,
@@ -10908,15 +8916,11 @@
pixel_y = 3
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"eRg" = (
/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/sewer)
"eRI" = (
/obj/structure/barricade/deployable{
@@ -10928,18 +8932,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"eSf" = (
/obj/structure/barricade/wooden{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"eSx" = (
/obj/effect/spider/spiderling/nogrow,
@@ -10949,27 +8949,21 @@
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"eSO" = (
/obj/structure/largecrate/random,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"eSQ" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_2/ceiling)
"eSW" = (
/turf/open/gm/river,
@@ -10981,9 +8975,7 @@
/area/lv522/indoors/c_block/cargo)
"eTn" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"eTQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -10995,10 +8987,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/west_reactor)
"eUf" = (
/obj/item/ammo_magazine/m2c{
@@ -11024,9 +9013,7 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/west_reactor)
"eUt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -11044,14 +9031,10 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"eUO" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"eUS" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -11071,29 +9054,21 @@
name = "synthethic potted plant";
pixel_y = 28
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"eVg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"eVi" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/north)
"eVW" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"eWn" = (
/obj/structure/blocker/forcefield/vehicles,
@@ -11101,17 +9076,13 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"eWy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/east)
"eWF" = (
/obj/effect/decal/cleanable/dirt,
@@ -11124,24 +9095,17 @@
/obj/item/storage/firstaid/adv{
pixel_y = 14
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"eWK" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/east_reactor/east)
"eWR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_2)
"eWW" = (
/obj/structure/window_frame/strata,
@@ -11156,16 +9120,12 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"eXd" = (
/obj/effect/spawner/gibspawner/xeno,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"eXe" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
@@ -11209,10 +9169,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/west,
/area/lv522/indoors/a_block/medical/glass)
"eYA" = (
/obj/item/clothing/head/headband/tan{
@@ -11231,14 +9188,10 @@
/area/lv522/indoors/lone_buildings/storage_blocks)
"eZb" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/reactor_garage)
"eZe" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/south_east_street)
"eZq" = (
/obj/structure/transmitter/colony_net{
@@ -11249,31 +9202,23 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/prop/static_tank/water,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"eZv" = (
/obj/structure/fence,
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/n_rockies)
"eZF" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"eZK" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"eZM" = (
/obj/structure/bed/chair/wood/normal{
@@ -11303,9 +9248,7 @@
dir = 4
},
/obj/structure/prop/almayer/computers/sensor_computer2,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"fac" = (
/obj/structure/platform,
@@ -11313,9 +9256,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_east_street)
"faJ" = (
/obj/item/trash/uscm_mre{
@@ -11326,9 +9267,7 @@
/area/lv522/outdoors/colony_streets/north_street)
"faK" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/east)
"faQ" = (
/obj/structure/bed/chair/comfy{
@@ -11339,9 +9278,7 @@
/area/lv522/outdoors/colony_streets/central_streets)
"faZ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"fba" = (
/obj/structure/flora/bush/ausbushes/grassybush{
@@ -11357,9 +9294,7 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"fbC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor)
"fbE" = (
/obj/effect/decal/cleanable/dirt,
@@ -11368,54 +9303,40 @@
pixel_x = 9;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/damage)
"fbS" = (
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_east_street)
"fcd" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"fcv" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/computer/PC{
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"fcV" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"fcW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_east_street)
"fda" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_east_street)
"fdb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -11423,14 +9344,10 @@
name = "\improper C-Block - Casino Airlock";
welded = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/casino)
"fdf" = (
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/landing_zone_2)
"fdh" = (
/obj/item/lightstick/red/spoke/planted{
@@ -11448,25 +9365,19 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"fdE" = (
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"fdR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"fdS" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -11475,9 +9386,7 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"fdT" = (
/obj/structure/closet/crate,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"fdZ" = (
/obj/structure/window_frame/strata,
@@ -11485,43 +9394,31 @@
dir = 4;
id = "Sec-Kitchen-Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen/glass)
"feu" = (
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"feF" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/north_east_street)
"feS" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"feZ" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/east)
"ffb" = (
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"ffj" = (
/obj/item/prop/alien/hugger,
@@ -11538,17 +9435,12 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/outdoors/colony_streets/south_street)
"ffr" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/west)
"ffG" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -11574,10 +9466,7 @@
phone_id = "Colony Medical";
pixel_x = 16
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"fgf" = (
/obj/item/ammo_magazine/m2c{
@@ -11629,25 +9518,18 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"fhQ" = (
/obj/structure/machinery/colony_floodlight{
layer = 4.3
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"fhY" = (
/obj/structure/surface/rack,
/obj/item/tool/pickaxe,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"fib" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
@@ -11662,9 +9544,7 @@
/area/lv522/indoors/c_block/cargo)
"fiA" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/east)
"fiB" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -11681,9 +9561,7 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"fiS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -11710,16 +9588,11 @@
"fjt" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/hallway)
"fjF" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"fjP" = (
/obj/effect/decal/cleanable/dirt,
@@ -11729,17 +9602,13 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/north_command_centre)
"fki" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_street)
"fkj" = (
/turf/open/floor/grass,
@@ -11766,17 +9635,11 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"fkW" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor)
"fld" = (
/mob/living/simple_animal/mouse,
@@ -11789,10 +9652,7 @@
layer = 3.1;
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"flC" = (
/obj/structure/machinery/light/small,
@@ -11800,10 +9660,7 @@
dir = 1;
network = list("interrogation")
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"flI" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -11825,16 +9682,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/east)
"fmB" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor)
"fmH" = (
/obj/structure/pipes/vents/pump,
@@ -11842,9 +9694,7 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"fmL" = (
/obj/structure/surface/rack{
@@ -11858,10 +9708,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"fni" = (
/obj/effect/decal/warning_stripes{
@@ -11889,19 +9736,13 @@
pixel_x = 9;
pixel_y = 17
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"fol" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/filt)
"fop" = (
/turf/open/floor/corsat,
@@ -11915,10 +9756,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"foT" = (
/obj/effect/decal/warning_stripes{
@@ -11927,9 +9765,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"foX" = (
/obj/effect/decal/cleanable/dirt,
@@ -11939,22 +9775,15 @@
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"fpl" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"fpm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"fpn" = (
/obj/item/device/analyzer,
@@ -11962,18 +9791,13 @@
/area/lv522/atmos/east_reactor)
"fpr" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"fps" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"fpB" = (
/obj/structure/stairs/perspective{
@@ -11986,27 +9810,20 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/north_command_centre)
"fpW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
+/turf/open/floor/wood/wood_broken4,
/area/lv522/indoors/b_block/bar)
"fqD" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms/glass)
"fqU" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -12014,9 +9831,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"frH" = (
/obj/item/clothing/head/hardhat/dblue{
@@ -12031,34 +9846,26 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/west)
"frZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/west)
"fsf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/west_reactor)
"fsj" = (
/obj/structure/machinery/power/apc/weak{
dir = 1
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"fss" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -12081,9 +9888,7 @@
/area/lv522/indoors/c_block/garage)
"fsC" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/west)
"fsQ" = (
/obj/structure/machinery/iv_drip,
@@ -12092,9 +9897,7 @@
"fsV" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"ftd" = (
/obj/structure/bed/chair{
@@ -12134,17 +9937,13 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"ftD" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper A-Block Fitness Centre Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness/glass)
"ftK" = (
/obj/structure/bed/chair,
@@ -12162,9 +9961,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/east)
"ful" = (
/obj/structure/stairs/perspective{
@@ -12189,17 +9986,12 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"fvk" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"fvn" = (
/obj/structure/platform{
@@ -12212,9 +10004,7 @@
/area/lv522/landing_zone_1/tunnel/far)
"fvo" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/west_reactor)
"fvx" = (
/obj/structure/prop/vehicles/crawler{
@@ -12232,9 +10022,7 @@
/area/lv522/indoors/c_block/cargo)
"fvQ" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/sewer)
"fvV" = (
/obj/effect/decal/warning_stripes{
@@ -12248,9 +10036,7 @@
dir = 1;
name = "\improper Executive Suite"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/executive)
"fwh" = (
/obj/structure/barricade/deployable,
@@ -12258,9 +10044,7 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"fwj" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/west_reactor)
"fwo" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -12271,10 +10055,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"fwT" = (
/obj/item/tool/lighter/random{
@@ -12305,16 +10086,11 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"fwX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/north_command_centre)
"fxh" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -12324,22 +10100,16 @@
/area/lv522/atmos/east_reactor/south)
"fxl" = (
/obj/vehicle/train/cargo/engine,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"fxq" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/west)
"fyl" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/op_centre)
"fyC" = (
/obj/structure/surface/table/almayer,
@@ -12364,9 +10134,7 @@
"fyD" = (
/obj/structure/barricade/wooden,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"fzf" = (
/obj/structure/stairs/perspective{
@@ -12387,10 +10155,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"fzl" = (
/obj/structure/stairs/perspective{
@@ -12401,10 +10166,7 @@
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"fzp" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -12412,10 +10174,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/b_block/bridge)
"fzu" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/reactor_garage)
"fzC" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -12434,15 +10193,10 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"fzL" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/west_reactor)
"fzV" = (
/obj/structure/stairs/perspective{
@@ -12460,9 +10214,7 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"fAt" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"fAx" = (
/obj/structure/filingcabinet{
@@ -12475,23 +10227,17 @@
pixel_x = 6;
pixel_y = 20
},
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
+/turf/open/floor/strata/fake_wood,
/area/lv522/atmos/east_reactor/east)
"fAA" = (
/obj/structure/largecrate/random/barrel{
layer = 2.9
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/central_streets)
"fAG" = (
/obj/structure/cargo_container/arious/rightmid,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"fAH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -12500,36 +10246,24 @@
/obj/item/prop/colony/usedbandage{
dir = 9
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/lv522/indoors/a_block/admin)
"fAY" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper A-Block Fitness Centre Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness)
"fBg" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"fBp" = (
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/east_central_street)
"fBL" = (
/obj/structure/machinery/landinglight/ds1/delaytwo,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1)
"fBP" = (
/obj/structure/filingcabinet/chestdrawer{
@@ -12537,9 +10271,7 @@
pixel_x = -11;
pixel_y = 20
},
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
+/turf/open/floor/strata/fake_wood,
/area/lv522/atmos/east_reactor/east)
"fBR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -12552,15 +10284,11 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"fBY" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"fCb" = (
/obj/structure/platform{
@@ -12572,14 +10300,10 @@
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/kitchen/glass)
"fCE" = (
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
+/turf/open/floor/strata/fake_wood,
/area/lv522/atmos/east_reactor/east)
"fCN" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -12588,31 +10312,23 @@
pixel_y = 6
},
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
+/turf/open/floor/strata/fake_wood,
/area/lv522/atmos/east_reactor/east)
"fCP" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"fCU" = (
/obj/effect/decal/cleanable/blood{
desc = "Watch your step.";
icon_state = "gib6"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/central_streets)
"fCW" = (
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/lone_buildings/storage_blocks)
"fDg" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -12632,9 +10348,7 @@
pixel_y = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"fDj" = (
/obj/structure/surface/table/almayer,
@@ -12645,23 +10359,15 @@
/obj/item/tool/pen/blue/clicky,
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"fDn" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/east_reactor)
"fDv" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/south_street)
"fDz" = (
/obj/structure/surface/table/almayer,
@@ -12670,17 +10376,12 @@
pixel_y = 6
},
/obj/item/seeds/potatoseed,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"fDC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/prop/static_tank/water,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"fDF" = (
/obj/structure/surface/rack,
@@ -12690,17 +10391,11 @@
pixel_x = 5;
registered_name = "John Forklift"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"fDH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor)
"fDS" = (
/obj/structure/machinery/conveyor{
@@ -12711,9 +10406,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"fEe" = (
/obj/structure/platform,
@@ -12722,9 +10415,7 @@
/area/lv522/indoors/c_block/garage)
"fEF" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/op_centre)
"fEW" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -12734,16 +10425,12 @@
layer = 4.3;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"fEY" = (
/obj/structure/surface/rack,
/obj/item/explosive/plastic,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_east_street)
"fFp" = (
/obj/item/clothing/gloves/yellow,
@@ -12767,28 +10454,20 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor)
"fFS" = (
/obj/effect/landmark/monkey_spawn,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/west_reactor)
"fGh" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/west_reactor)
"fGv" = (
/obj/structure/window_frame/strata,
@@ -12798,9 +10477,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/hydro)
"fGw" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -12810,28 +10487,18 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/west_reactor)
"fGJ" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/west_reactor)
"fGN" = (
/obj/structure/cargo_container/arious/right,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"fGU" = (
/obj/structure/closet/crate,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"fHf" = (
/obj/structure/platform,
@@ -12839,29 +10506,21 @@
layer = 2.9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"fHy" = (
/obj/structure/barricade/wooden{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"fHC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/executive)
"fHH" = (
/obj/effect/decal/cleanable/dirt,
@@ -12869,9 +10528,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"fIa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -12881,21 +10538,15 @@
/area/lv522/indoors/b_block/bridge)
"fIe" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"fIr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"fIx" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"fII" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -12908,22 +10559,16 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"fIQ" = (
/obj/structure/blocker/forcefield/vehicles,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/west_reactor)
"fJe" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/north_command_centre)
"fJg" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -12946,22 +10591,15 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_east_street)
"fKt" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/west)
"fKu" = (
/obj/structure/largecrate,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/cargo_intake)
"fLa" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -12975,10 +10613,7 @@
/obj/effect/landmark/survivor_spawner/lv522_forecon_smartgunner,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/admin)
"fLi" = (
/obj/item/tool/warning_cone{
@@ -12986,9 +10621,7 @@
pixel_y = 11
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/west)
"fLz" = (
/obj/structure/machinery{
@@ -13013,9 +10646,7 @@
/area/lv522/oob)
"fLA" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"fLF" = (
/obj/structure/machinery/door/poddoor/almayer/closed{
@@ -13023,9 +10654,7 @@
id = "LZ1_Lockdown_Lo";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1)
"fLK" = (
/obj/structure/cryofeed,
@@ -13044,10 +10673,7 @@
/area/lv522/landing_zone_1/tunnel)
"fLP" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor)
"fLS" = (
/obj/structure/prop/dam/crane,
@@ -13059,9 +10685,7 @@
name = "\improper B-Block Bar"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bar)
"fMd" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
@@ -13071,9 +10695,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"fMx" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
@@ -13084,9 +10706,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"fMN" = (
/obj/structure/surface/table/almayer,
@@ -13129,26 +10749,19 @@
pixel_x = -9;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"fMT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"fNk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/reactor_garage)
"fNm" = (
/obj/effect/landmark/monkey_spawn,
@@ -13156,17 +10769,12 @@
/area/lv522/atmos/east_reactor/east)
"fNp" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"fNq" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"fOc" = (
/obj/structure/machinery/landinglight/ds1/delayone{
@@ -13178,17 +10786,12 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"fOy" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"fOM" = (
/obj/structure/bed/chair/comfy{
@@ -13198,9 +10801,7 @@
/area/lv522/atmos/east_reactor/east)
"fOX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"fPa" = (
/obj/structure/prop/server_equipment/yutani_server{
@@ -13214,9 +10815,7 @@
"fPB" = (
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/lv522/indoors/a_block/dorms)
"fPH" = (
/obj/structure/closet/crate/miningcar,
@@ -13233,18 +10832,14 @@
/obj/structure/machinery/prop/almayer/computer/PC{
dir = 8
},
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
+/turf/open/floor/strata/fake_wood,
/area/lv522/atmos/east_reactor/east)
"fQb" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/plate{
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"fQi" = (
/obj/item/prop/colony/canister{
@@ -13252,38 +10847,27 @@
layer = 3.1;
pixel_y = 16
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/reactor_garage)
"fQD" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"fRc" = (
/obj/structure/machinery/mill,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"fRd" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
+/turf/open/floor/strata/fake_wood,
/area/lv522/atmos/east_reactor/east)
"fRf" = (
/obj/structure/closet/bodybag,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"fRk" = (
/obj/structure/window/framed/strata/reinforced,
@@ -13291,9 +10875,7 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"fRP" = (
/obj/structure/prop/vehicles/crawler{
@@ -13317,9 +10899,7 @@
pixel_y = 6
},
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"fSf" = (
/obj/structure/blocker/invisible_wall,
@@ -13329,23 +10909,16 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"fSo" = (
/obj/structure/machinery/landinglight/ds1,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1)
"fSq" = (
/obj/structure/window_frame/strata,
/obj/item/stack/rods,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"fSv" = (
/obj/structure/surface/table/almayer,
@@ -13369,9 +10942,7 @@
pixel_y = 12
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"fSX" = (
/obj/structure/surface/table/almayer,
@@ -13380,9 +10951,7 @@
pixel_y = 6
},
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"fTi" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -13397,33 +10966,24 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/nw_rockies)
"fTs" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/west_reactor)
"fTN" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_west_street)
"fTO" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/west_reactor)
"fTP" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/prison,
/area/lv522/indoors/b_block/bridge)
"fTS" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"fUf" = (
/obj/effect/decal{
@@ -13433,9 +10993,7 @@
name = "weak acid"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"fUx" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -13452,16 +11010,12 @@
density = 0;
pixel_y = 16
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"fVB" = (
/obj/structure/closet,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"fVC" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -13483,9 +11037,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/central_streets)
"fWD" = (
/obj/item/stack/folding_barricade,
@@ -13493,9 +11045,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"fWG" = (
/turf/open/auto_turf/shale/layer1,
@@ -13510,9 +11060,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen)
"fWW" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -13531,9 +11079,7 @@
"fXa" = (
/obj/structure/machinery/vending/snack,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"fXn" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -13543,30 +11089,21 @@
"fXs" = (
/obj/structure/blocker/forcefield/vehicles,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"fXv" = (
/obj/structure/prop/ice_colony/ground_wire{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/command_centre)
"fXx" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/central_streets)
"fXy" = (
/obj/structure/curtain/medical,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"fXG" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -13580,15 +11117,10 @@
name = "\improper materials storage bin";
pixel_y = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/indoors/c_block/mining)
"fXS" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"fXU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -13599,10 +11131,7 @@
/area/lv522/atmos/east_reactor)
"fXZ" = (
/obj/structure/curtain/medical,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan4"
- },
+/turf/open/floor/strata/white_cyan4/east,
/area/lv522/indoors/a_block/medical)
"fYm" = (
/obj/effect/decal/cleanable/dirt,
@@ -13610,10 +11139,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"fYw" = (
/obj/structure/surface/table/almayer,
@@ -13623,9 +11149,7 @@
},
/obj/item/clothing/glasses/meson,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/mining)
"fYD" = (
/obj/structure/stairs/perspective{
@@ -13638,21 +11162,14 @@
/area/lv522/landing_zone_1/tunnel/far)
"fYP" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/west)
"fYZ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/lv522/indoors/a_block/admin)
"fZd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/t_comm)
"fZl" = (
/obj/structure/surface/table/almayer,
@@ -13664,10 +11181,7 @@
pixel_x = -3;
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"fZo" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -13694,17 +11208,11 @@
/area/lv522/indoors/c_block/mining)
"fZS" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/c_block/mining)
"gat" = (
/obj/structure/cargo_container/horizontal/blue/middle,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/cargo_intake)
"gaw" = (
/obj/structure/barricade/deployable{
@@ -13715,10 +11223,7 @@
"gaI" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"gaS" = (
/obj/item/bananapeel{
@@ -13741,9 +11246,7 @@
"gbh" = (
/obj/structure/machinery/recharge_station,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"gbk" = (
/obj/structure/surface/table/almayer,
@@ -13769,29 +11272,14 @@
/area/lv522/indoors/c_block/casino)
"gbo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/reactor_garage)
-"gbq" = (
-/obj/structure/stairs/perspective{
- icon_state = "p_stair_full"
- },
-/obj/structure/stairs/perspective{
- icon_state = "p_stair_full"
- },
-/turf/open/floor/plating,
-/area/lv522/indoors/c_block/cargo)
"gbz" = (
/obj/item/prop/colony/used_flare,
/obj/structure/barricade/deployable{
dir = 1
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/lv522/indoors/a_block/admin)
"gbB" = (
/obj/structure/machinery/colony_floodlight{
@@ -13812,10 +11300,7 @@
/area/lv522/atmos/east_reactor)
"gbR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical)
"gbW" = (
/obj/effect/decal{
@@ -13826,15 +11311,11 @@
pixel_x = -2;
pixel_y = 16
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"gck" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"gcn" = (
/obj/item/xeno_egg/alpha{
@@ -13846,22 +11327,16 @@
pixel_y = 7
},
/obj/structure/closet/crate,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"gcr" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"gcv" = (
/obj/structure/foamed_metal,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms/glass)
"gcO" = (
/obj/effect/decal/cleanable/dirt,
@@ -13873,9 +11348,7 @@
/area/lv522/indoors/a_block/executive)
"gcX" = (
/obj/structure/window_frame/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/engineering)
"gcY" = (
/obj/structure/cargo_container/ferret/left,
@@ -13886,10 +11359,7 @@
/obj/structure/machinery/prop/almayer/computer/PC{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"gdr" = (
/obj/structure/bed/chair/dropship/passenger{
@@ -13899,7 +11369,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"gdt" = (
/obj/item/tool/kitchen/knife,
@@ -13909,16 +11379,11 @@
"gdA" = (
/obj/structure/barricade/deployable,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_street)
"gdJ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/west)
"gdO" = (
/turf/closed/wall/strata_outpost,
@@ -13929,23 +11394,16 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"gdX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"gej" = (
/obj/structure/platform,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/landing_zone_1)
"gek" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -13958,16 +11416,12 @@
icon_state = "SE-out";
pixel_x = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/central_streets)
"gem" = (
/obj/structure/surface/rack,
/obj/item/clothing/head/welding,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"geq" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
@@ -13977,9 +11431,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"get" = (
/turf/open/floor/carpet,
@@ -13996,17 +11448,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"geB" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"geH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -14025,9 +11473,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"geT" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -14051,9 +11497,7 @@
dir = 2;
name = "\improper A-Block - Colony Operations Centre Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"gfs" = (
/obj/item/prop/alien/hugger,
@@ -14063,9 +11507,7 @@
"gfu" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
+/turf/open/floor/strata/fake_wood,
/area/lv522/atmos/east_reactor/east)
"gfL" = (
/obj/effect/decal/warning_stripes{
@@ -14079,10 +11521,7 @@
"gfU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/sofa/vert/white/top,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"gge" = (
/obj/item/storage/belt/medical/lifesaver,
@@ -14090,28 +11529,19 @@
/area/lv522/atmos/cargo_intake)
"ggj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"ggp" = (
/obj/structure/machinery/floodlight,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"ggH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"ggM" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
+/turf/open/floor/strata/fake_wood,
/area/lv522/atmos/east_reactor/east)
"ggO" = (
/obj/structure/surface/table/almayer,
@@ -14120,16 +11550,10 @@
pixel_y = 4
},
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"ggS" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"ggZ" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -14138,31 +11562,22 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/mining)
"gha" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/way_in_command_centre)
"ghr" = (
/obj/structure/machinery/door/airlock/almayer/engineering,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/east)
"ghu" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"ghw" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"ghy" = (
/obj/structure/surface/table/almayer,
@@ -14177,9 +11592,7 @@
pixel_y = 4
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"ghY" = (
/obj/structure/bed/chair/dropship/passenger{
@@ -14196,15 +11609,11 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"gif" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"gij" = (
/obj/item/tool/wirecutters,
@@ -14213,9 +11622,7 @@
/area/lv522/indoors/c_block/casino)
"giF" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/west_reactor)
"giV" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -14223,9 +11630,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"giX" = (
/obj/structure/curtain/red,
@@ -14233,9 +11638,7 @@
/area/lv522/indoors/a_block/executive)
"gjm" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/west_reactor)
"gjt" = (
/obj/structure/machinery/colony_floodlight{
@@ -14259,25 +11662,18 @@
dir = 1;
pixel_y = 2
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"gjF" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"gjQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/t_comm)
"gjV" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -14302,27 +11698,20 @@
/obj/structure/window{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv522/indoors/b_block/hydro/glass)
"gkl" = (
/obj/structure/barricade/wooden,
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"gkF" = (
/obj/structure/machinery/computer/arcade,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb2,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"gkH" = (
/obj/structure/tunnel/maint_tunnel{
@@ -14338,9 +11727,7 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"glj" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"gll" = (
/obj/structure/bed/chair{
@@ -14349,9 +11736,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"glO" = (
/obj/item/stack/sheet/wood,
@@ -14373,17 +11758,13 @@
icon_state = "p_stair_full"
},
/obj/item/stack/sheet/wood,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"gmb" = (
/obj/structure/prop/vehicles/crawler{
layer = 2.9
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"gme" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -14395,9 +11776,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/west_reactor)
"gmu" = (
/obj/structure/platform{
@@ -14407,9 +11786,7 @@
/area/lv522/outdoors/colony_streets/south_street)
"gnd" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"gnf" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
@@ -14419,40 +11796,29 @@
/area/lv522/landing_zone_1)
"gnk" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"gnl" = (
/obj/structure/surface/table/almayer,
/obj/item/circuitboard/airlock,
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"gnx" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"gny" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/bridges)
"gnA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/south)
"gok" = (
/obj/effect/decal/cleanable/dirt,
@@ -14466,25 +11832,19 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/outdoors/colony_streets/south_west_street)
"gou" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northwest,
/area/lv522/indoors/a_block/dorms)
"goC" = (
/obj/structure/bed/chair/dropship/passenger{
dir = 8
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"goK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/north_command_centre)
"goO" = (
/obj/structure/window/reinforced{
@@ -14512,9 +11872,7 @@
layer = 3.1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/mining)
"goT" = (
/obj/structure/stairs/perspective{
@@ -14530,33 +11888,25 @@
"gpi" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"gpp" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"gpr" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper C-Block - Cargo Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"gpB" = (
/obj/structure/machinery/power/port_gen/pacman/super,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_west_street)
"gpN" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -14572,17 +11922,11 @@
/area/lv522/indoors/a_block/security/glass)
"gqg" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor)
"gqh" = (
/obj/item/trash/uscm_mre,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/admin)
"gqG" = (
/obj/structure/platform,
@@ -14598,10 +11942,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"grq" = (
/obj/structure/barricade/wooden{
@@ -14658,10 +11999,7 @@
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/admin)
"gsP" = (
/obj/effect/decal/warning_stripes{
@@ -14684,10 +12022,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"gts" = (
/obj/structure/tunnel,
@@ -14704,18 +12039,14 @@
pixel_x = 8;
pixel_y = 20
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"gtH" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/disposal,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"gtS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -14730,15 +12061,11 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"gug" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"guh" = (
/obj/structure/largecrate/random,
@@ -14751,17 +12078,13 @@
name = "\improper Dormitories"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorm_north)
"gul" = (
/obj/structure/tunnel/maint_tunnel{
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"guB" = (
/obj/structure/bed/chair/comfy{
@@ -14773,9 +12096,7 @@
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"guE" = (
/obj/structure/platform{
@@ -14795,9 +12116,7 @@
},
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"guR" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -14816,17 +12135,12 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"gvr" = (
/obj/structure/closet/bodybag,
/obj/structure/curtain/medical,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"gvs" = (
/obj/structure/machinery/space_heater,
@@ -14834,9 +12148,7 @@
pixel_x = 5;
pixel_y = 9
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"gvG" = (
/obj/item/toy/beach_ball/holoball,
@@ -14847,9 +12159,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"gvT" = (
/obj/effect/decal/cleanable/dirt,
@@ -14861,9 +12171,7 @@
/area/lv522/indoors/a_block/bridges/corpo)
"gwk" = (
/obj/structure/prop/static_tank/water,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"gwt" = (
/obj/structure/cargo_container/wy/right,
@@ -14882,10 +12190,7 @@
/area/lv522/outdoors/colony_streets/north_street)
"gwK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/south)
"gwP" = (
/obj/structure/cargo_container/kelland/left,
@@ -14903,9 +12208,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"gxb" = (
/obj/structure/surface/table/almayer,
@@ -14914,23 +12217,17 @@
pixel_y = 3
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/reactor_garage)
"gxc" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/snacks/cheeseburger,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gxl" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/computer/PC,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gxp" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
@@ -14945,17 +12242,13 @@
pixel_y = 3
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"gxE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/south_east_street)
"gxM" = (
/obj/structure/surface/table/almayer,
@@ -14963,9 +12256,7 @@
pixel_y = 5
},
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gxN" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -14983,40 +12274,29 @@
/area/lv522/indoors/c_block/casino)
"gyn" = (
/obj/structure/prop/almayer/computers/sensor_computer1,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gyB" = (
/obj/item/prop/colony/used_flare,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"gyC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/east_reactor/south)
"gyK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/north_command_centre)
"gzk" = (
/obj/structure/prop/almayer/computers/sensor_computer2,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gzu" = (
/obj/structure/barricade/deployable{
@@ -15027,19 +12307,14 @@
/area/lv522/atmos/cargo_intake)
"gzD" = (
/obj/structure/prop/almayer/computers/sensor_computer3,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gzS" = (
/obj/structure/pipes/unary/freezer{
dir = 1;
icon_state = "freezer_1"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"gzT" = (
/obj/structure/cargo_container/kelland/right{
@@ -15049,15 +12324,11 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"gzY" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"gAa" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -15072,9 +12343,7 @@
"gAJ" = (
/obj/structure/surface/table/almayer,
/obj/structure/prop/server_equipment/laptop,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gAO" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -15085,9 +12354,7 @@
"gAS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"gAU" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -15097,10 +12364,7 @@
pixel_x = -37;
pixel_y = 17
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/lv522/indoors/a_block/hallway)
"gBe" = (
/obj/item/stack/sheet/metal,
@@ -15118,9 +12382,7 @@
/obj/item/seeds/riceseed,
/obj/structure/closet/crate,
/obj/item/seeds/riceseed,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_west_street)
"gBy" = (
/obj/effect/decal/warning_stripes{
@@ -15136,9 +12398,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"gCE" = (
/obj/structure/surface/table/reinforced/almayer_B,
@@ -15150,9 +12410,7 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"gCO" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -15175,24 +12433,18 @@
id = "cargo_container"
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"gDz" = (
/obj/structure/barricade/wooden{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/kitchen/glass)
"gDA" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/lv522/indoors/a_block/dorms)
"gDL" = (
/obj/structure/surface/table/reinforced/prison,
@@ -15215,9 +12467,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"gEx" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -15242,16 +12492,11 @@
pixel_y = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"gES" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"gFi" = (
/obj/structure/filingcabinet/seeds{
@@ -15264,10 +12509,7 @@
pixel_x = 7;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"gFp" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -15292,88 +12534,60 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"gFD" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/faxmachine,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gFG" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/west_reactor)
"gFM" = (
/obj/structure/machinery/colony_floodlight{
layer = 4.3
},
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/east_central_street)
"gGa" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 1;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/north,
/area/lv522/indoors/a_block/medical)
"gGe" = (
/obj/structure/largecrate/random,
/obj/structure/largecrate/random{
pixel_y = 18
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"gGg" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor/south)
"gGk" = (
/obj/structure/prop/server_equipment/yutani_server,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gGq" = (
/obj/structure/prop/server_equipment/yutani_server/broken,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gGx" = (
/obj/item/weapon/gun/pistol/m1911{
current_mag = null
},
/obj/effect/decal/cleanable/blood,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/n_rockies)
"gGM" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/south_street)
"gGP" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_west_street)
"gGW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -15395,31 +12609,22 @@
},
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"gHz" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/north_west_street)
"gHD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"gHF" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"gHN" = (
/obj/structure/prop/vehicles/crawler{
@@ -15430,9 +12635,7 @@
"gHX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"gIa" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -15450,15 +12653,11 @@
/area/lv522/outdoors/colony_streets/east_central_street)
"gIh" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_east_street)
"gIr" = (
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/south_east_street)
"gIv" = (
/obj/structure/cargo_container/ferret/left,
@@ -15468,19 +12667,14 @@
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/cargo_intake)
"gIZ" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"gJm" = (
/obj/structure/cargo_container/ferret/mid,
@@ -15502,23 +12696,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/nw_rockies)
"gJK" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"gJL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spider/spiderling/nogrow,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"gJM" = (
/obj/structure/reagent_dispensers/watertank,
@@ -15526,15 +12714,11 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"gKa" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/outdoors/colony_streets/south_east_street)
"gKg" = (
/obj/structure/platform,
@@ -15543,18 +12727,14 @@
id = "LZ1_Lockdown_Lo";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1)
"gKM" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor)
"gKO" = (
/obj/structure/machinery/colony_floodlight{
@@ -15575,9 +12755,7 @@
/obj/structure/prop/invuln/ice_prefab/standalone/trim{
icon_state = "white_trim"
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"gLd" = (
/obj/structure/machinery/power/apc/weak{
@@ -15599,10 +12777,7 @@
icon_state = "p_stair_full"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/cargo_intake)
"gLV" = (
/obj/structure/prop/server_equipment/yutani_server/broken{
@@ -15611,9 +12786,7 @@
pixel_y = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"gMb" = (
/obj/structure/bed/chair/comfy{
@@ -15632,48 +12805,35 @@
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/cargo_intake)
"gMG" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"gMQ" = (
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/south_west_street)
"gMV" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"gNb" = (
/obj/structure/machinery/light,
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"gNe" = (
/obj/structure/prop/server_equipment/yutani_server/off,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gNn" = (
/obj/structure/largecrate/supply/medicine/medkits{
@@ -15693,10 +12853,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/reactor_garage)
"gNJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -15711,10 +12868,7 @@
"gOb" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"gOj" = (
/obj/structure/cargo_container/horizontal/blue/middle,
@@ -15728,9 +12882,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
/obj/item/ammo_box/magazine/shotgun/beanbag/empty,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"gOE" = (
/obj/structure/surface/table/almayer,
@@ -15744,16 +12896,12 @@
pixel_y = 5
},
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"gOG" = (
/obj/structure/surface/table/almayer,
/obj/item/frame/fire_alarm,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"gOJ" = (
/obj/item/tool/wirecutters{
@@ -15782,18 +12930,13 @@
"gPp" = (
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"gPq" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/west)
"gPv" = (
/obj/structure/platform{
@@ -15811,10 +12954,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"gPQ" = (
/obj/structure/machinery/conveyor{
@@ -15822,10 +12962,7 @@
id = "cargo_container"
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/cargo_intake)
"gQu" = (
/mob/living/simple_animal/cat/kitten{
@@ -15839,10 +12976,7 @@
pixel_y = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"gQV" = (
/obj/structure/platform{
@@ -15863,9 +12997,7 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"gRp" = (
/obj/structure/machinery/floodlight/landing,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"gRs" = (
/obj/structure/cargo_container/watatsumi/leftmid,
@@ -15887,37 +13019,27 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"gRK" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"gRU" = (
/obj/item/paper_bin/uscm{
pixel_x = -7;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"gRV" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"gSn" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"gSw" = (
/obj/item/prop/colony/used_flare,
@@ -15929,23 +13051,16 @@
/obj/structure/foamed_metal{
layer = 3.1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"gTc" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"gTw" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/north_command_centre)
"gTM" = (
/obj/structure/girder,
@@ -15953,16 +13068,12 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"gTX" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
+/turf/open/floor/strata/fake_wood,
/area/lv522/atmos/east_reactor/east)
"gUe" = (
/obj/structure/ore_box,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"gUi" = (
/obj/structure/flora/jungle/planttop1,
@@ -15976,9 +13087,7 @@
/area/lv522/outdoors/colony_streets/south_street)
"gUm" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
+/turf/open/floor/strata/fake_wood,
/area/lv522/atmos/east_reactor/east)
"gUv" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -15994,31 +13103,21 @@
pixel_x = 9;
pixel_y = 2
},
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
+/turf/open/floor/strata/fake_wood,
/area/lv522/atmos/east_reactor/east)
"gUA" = (
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"gUQ" = (
/obj/structure/machinery/disposal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"gUY" = (
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"gVd" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim,
@@ -16047,9 +13146,7 @@
/area/lv522/landing_zone_1)
"gVr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3,
/area/lv522/indoors/a_block/medical)
"gVv" = (
/obj/item/lightstick/red/spoke/planted{
@@ -16062,10 +13159,7 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/north_west_street)
"gVA" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2/ceiling)
"gWb" = (
/obj/structure/surface/table/almayer,
@@ -16089,39 +13183,26 @@
"gWg" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/south)
"gWh" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/lv522/indoors/a_block/dorms)
"gWq" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"gWu" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/atmos/way_in_command_centre)
"gWx" = (
/obj/structure/closet/secure_closet/miner{
pixel_x = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"gWI" = (
/turf/open/asphalt/cement,
@@ -16132,9 +13213,7 @@
name = "Bathroom"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"gXb" = (
/obj/structure/machinery/light/small{
@@ -16157,10 +13236,7 @@
/area/lv522/indoors/a_block/kitchen/glass)
"gXA" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"gXB" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -16168,9 +13244,7 @@
/obj/item/clothing/mask/cigarette/pipe{
pixel_y = 5
},
-/turf/open/floor/strata{
- icon_state = "fake_wood"
- },
+/turf/open/floor/strata/fake_wood,
/area/lv522/atmos/east_reactor/east)
"gXE" = (
/obj/structure/prop/invuln/ice_prefab/roof_greeble{
@@ -16183,22 +13257,16 @@
"gXI" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/lv522/atmos/reactor_garage)
"gXL" = (
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"gXR" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"gXT" = (
/obj/item/shard{
@@ -16215,10 +13283,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"gYc" = (
/obj/structure/reagent_dispensers/watertank,
@@ -16232,24 +13297,18 @@
pixel_y = 3
},
/obj/item/paper/janitor,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gYF" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/lv522/indoors/a_block/dorms)
"gYH" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper A-Block Security Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges/op_centre)
"gYK" = (
/obj/effect/decal/cleanable/dirt,
@@ -16257,9 +13316,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"gYM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -16268,9 +13325,7 @@
/turf/closed/wall/strata_outpost/reinforced,
/area/lv522/atmos/cargo_intake)
"gYO" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"gYT" = (
/obj/structure/bed/chair/comfy{
@@ -16283,56 +13338,38 @@
flipped = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"gZd" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"gZg" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"gZh" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"gZp" = (
/obj/structure/machinery/seed_extractor,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"gZv" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper A-Block Shared Dorms Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorm_north)
"gZJ" = (
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"gZL" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -16345,10 +13382,7 @@
icon_state = "p_stair_full"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"haf" = (
/obj/structure/machinery/landinglight/ds1/delaytwo,
@@ -16357,24 +13391,17 @@
"hag" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"hai" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"ham" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/reactor_garage)
"han" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
@@ -16385,9 +13412,7 @@
/turf/open/floor/corsat,
/area/lv522/atmos/cargo_intake)
"haq" = (
-/turf/open/floor/strata{
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3,
/area/lv522/indoors/a_block/medical/glass)
"har" = (
/obj/effect/decal/cleanable/dirt,
@@ -16398,9 +13423,7 @@
dir = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"hau" = (
/obj/structure/sink{
@@ -16408,10 +13431,7 @@
pixel_x = 11
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"haF" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -16433,17 +13453,13 @@
icon_state = "xgib3"
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"haR" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"haY" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -16452,15 +13468,11 @@
/area/lv522/indoors/c_block/cargo)
"hbj" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"hbk" = (
/obj/effect/spawner/gibspawner/robot,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"hbp" = (
/obj/structure/surface/table/almayer,
@@ -16481,9 +13493,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"hbu" = (
/obj/item/clothing/mask/facehugger{
@@ -16493,10 +13503,7 @@
name = "????";
stat = 2
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"hbw" = (
/obj/item/explosive/grenade/high_explosive/m15{
@@ -16513,31 +13520,20 @@
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/command_centre)
"hbG" = (
/obj/structure/machinery/medical_pod/bodyscanner,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"hbH" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/command_centre)
"hbN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"hcd" = (
/obj/effect/decal/warning_stripes{
@@ -16547,9 +13543,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"hcv" = (
/obj/structure/fence,
@@ -16560,16 +13554,10 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/landing_zone_2/ceiling)
"hcx" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/command_centre)
"hcE" = (
/obj/item/stack/sheet/metal,
@@ -16582,38 +13570,26 @@
/area/lv522/indoors/c_block/mining)
"hcV" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/cargo_intake)
"hcZ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"hdd" = (
/obj/item/prop/alien/hugger,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"hdk" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/lv522/indoors/a_block/admin)
"hdq" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"hds" = (
/obj/structure/surface/table/woodentable,
@@ -16621,9 +13597,7 @@
pixel_x = 3;
pixel_y = 5
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"hdu" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -16644,30 +13618,21 @@
pixel_y = 24
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"hdQ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"hdR" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/cargo_intake)
"hef" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"heB" = (
/obj/structure/cargo_container/ferret/right,
@@ -16675,16 +13640,12 @@
/area/lv522/atmos/cargo_intake)
"heC" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"heF" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/belt/utility,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"heO" = (
/obj/structure/machinery/camera/autoname{
@@ -16693,10 +13654,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"heU" = (
/obj/structure/blocker/invisible_wall,
@@ -16716,10 +13674,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/op_centre)
"hfi" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -16727,10 +13682,7 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor)
"hft" = (
/obj/structure/largecrate/random,
@@ -16749,9 +13701,7 @@
dir = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"hfS" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -16769,10 +13719,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"hgo" = (
/obj/item/storage/backpack/marine/satchel{
@@ -16808,16 +13755,11 @@
dir = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/hallway)
"hgM" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/west)
"hgQ" = (
/obj/effect/decal/cleanable/dirt,
@@ -16830,9 +13772,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/landing_zone_2)
"hhu" = (
/obj/structure/machinery/conveyor{
@@ -16840,27 +13780,18 @@
id = "cargo_container"
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"hhD" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"hhI" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"hhJ" = (
/obj/structure/surface/rack,
/obj/item/tool/crowbar,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"hhK" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -16870,34 +13801,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"hhQ" = (
/obj/structure/closet/radiation,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"hig" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/east)
"hij" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/reactor_garage)
"hip" = (
/obj/structure/pipes/vents/pump,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"hix" = (
/obj/structure/platform{
@@ -16906,20 +13826,14 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_east_street)
"hiB" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"hiK" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/north_west_street)
"hiL" = (
/obj/structure/platform{
@@ -16935,10 +13849,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/command_centre)
"hiZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -16947,19 +13858,14 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Mining Control"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"hjB" = (
/obj/effect/landmark/monkey_spawn,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/command_centre)
"hjE" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -16993,15 +13899,11 @@
/obj/item/clothing/head/welding{
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"hkr" = (
/obj/structure/girder,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_street)
"hku" = (
/obj/structure/surface/table/almayer,
@@ -17022,9 +13924,7 @@
layer = 2.9;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"hkw" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -17034,9 +13934,7 @@
/obj/item/clothing/head/hardhat{
pixel_x = 17
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/command_centre)
"hky" = (
/obj/effect/landmark/monkey_spawn,
@@ -17044,10 +13942,7 @@
dir = 4
},
/obj/structure/prop/ice_colony/ground_wire,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/command_centre)
"hkC" = (
/obj/structure/surface/table/almayer,
@@ -17061,27 +13956,19 @@
/obj/item/tool/pen/red/clicky{
pixel_x = -6
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"hkD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/command_centre)
"hkE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/command_centre)
"hkO" = (
/obj/structure/surface/rack,
@@ -17092,18 +13979,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"hkY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/cargo_intake)
"hlf" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -17116,16 +13998,12 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"hll" = (
/obj/structure/surface/table/almayer,
/obj/item/device/binoculars,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"hlp" = (
/obj/structure/machinery/conveyor{
@@ -17135,9 +14013,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"hlH" = (
/obj/structure/surface/table/reinforced/prison,
@@ -17145,19 +14021,13 @@
/obj/item/restraint/adjustable/cable/white{
pixel_y = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"hlJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/command_centre)
"hmz" = (
/obj/structure/largecrate/random/barrel/white,
@@ -17168,10 +14038,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/command_centre)
"hmJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -17188,22 +14055,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"hmV" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/east_reactor/south)
"hna" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"hnk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -17217,15 +14076,10 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"hnD" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/west_reactor)
"hoq" = (
/obj/structure/prop/invuln/ice_prefab/roof_greeble{
@@ -17256,9 +14110,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"hoy" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -17275,9 +14127,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/cargo_intake)
"hoZ" = (
/obj/structure/surface/table/almayer,
@@ -17293,55 +14143,37 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"hpq" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_west_street)
"hpy" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/command_centre)
"hpH" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"hpI" = (
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"hqp" = (
/obj/structure/coatrack{
pixel_x = 11
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"hqB" = (
/obj/effect/spawner/gibspawner/xeno,
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"hqD" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/command_centre)
"hqZ" = (
/obj/structure/bed/chair/wheelchair,
@@ -17357,16 +14189,12 @@
/turf/open/organic/grass,
/area/lv522/indoors/a_block/garden)
"hrk" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/east_central_street)
"hrl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"hrw" = (
/obj/effect/decal/cleanable/dirt,
@@ -17374,9 +14202,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"hrx" = (
/obj/structure/surface/table/almayer,
@@ -17384,9 +14210,7 @@
dir = 4;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"hry" = (
/obj/structure/machinery/conveyor{
@@ -17394,25 +14218,18 @@
id = "cargo_container"
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/cargo_intake)
"hrH" = (
/obj/structure/platform_decoration,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"hrU" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"hsh" = (
/obj/structure/bed/chair{
@@ -17422,10 +14239,7 @@
/area/lv522/indoors/b_block/hydro)
"hsz" = (
/obj/structure/machinery/floodlight,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"hsA" = (
/obj/structure/prop/invuln/lattice_prop{
@@ -17439,10 +14253,7 @@
layer = 2;
name = "weak acid"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/lv522/indoors/a_block/admin)
"htu" = (
/obj/structure/prop/invuln/ice_prefab/roof_greeble{
@@ -17471,31 +14282,22 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"htX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/command_centre)
"hup" = (
/obj/item/tool/crowbar,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/command_centre)
"huq" = (
/obj/structure/barricade/wooden{
dir = 8
},
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/op_centre)
"huu" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -17503,16 +14305,11 @@
/area/lv522/indoors/b_block/bridge)
"huF" = (
/obj/structure/machinery/space_heater/radiator/red,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"huN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/hallway)
"huX" = (
/obj/structure/surface/table/almayer,
@@ -17524,9 +14321,7 @@
phone_id = "Colony Kitchen";
pixel_y = -6
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"hvh" = (
/obj/structure/platform,
@@ -17551,9 +14346,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/nw_rockies)
"hwa" = (
/obj/structure/platform/stair_cut{
@@ -17566,34 +14359,23 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"hwf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"hwr" = (
/obj/structure/prop/ice_colony/ground_wire{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/command_centre)
"hwt" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor)
"hwF" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -17612,9 +14394,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"hxn" = (
/obj/effect/decal/warning_stripes{
@@ -17634,9 +14414,7 @@
/area/lv522/outdoors/colony_streets/north_street)
"hxV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/command_centre)
"hxY" = (
/obj/item/storage/backpack/marine/satchel{
@@ -17650,24 +14428,17 @@
/turf/open/asphalt/cement,
/area/lv522/outdoors/colony_streets/east_central_street)
"hye" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/command_centre)
"hyf" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/b_block/bridge)
"hyA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"hyE" = (
/obj/effect/decal/cleanable/blood,
@@ -17676,9 +14447,7 @@
dir = 1;
pixel_y = 26
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"hyZ" = (
/obj/structure/fence{
@@ -17691,15 +14460,11 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"hzc" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"hzk" = (
/obj/effect/decal/cleanable/dirt,
@@ -17709,26 +14474,19 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/command_centre)
"hzu" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"hzw" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/barricade/deployable{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/way_in_command_centre)
"hzA" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -17747,9 +14505,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/cargo_intake)
"hzO" = (
/obj/structure/surface/rack,
@@ -17762,9 +14518,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/spider/spiderling/nogrow,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"hzV" = (
/obj/effect/decal/cleanable/dirt,
@@ -17776,9 +14530,7 @@
pixel_x = -1;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"hAd" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -17786,9 +14538,7 @@
name = "\improper A-Block Dorms And Office Airlock"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"hAg" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -17805,24 +14555,17 @@
pixel_y = 15
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"hAk" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/cargo_intake)
"hAr" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/prop/almayer/computers/sensor_computer1,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"hAs" = (
/obj/structure/bed/chair{
@@ -17834,9 +14577,7 @@
/obj/structure/prop/invuln/ice_prefab/standalone{
icon_state = "white"
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"hAy" = (
/obj/structure/machinery/light{
@@ -17849,17 +14590,11 @@
/obj/structure/bed/bedroll{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"hAD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/reactor_garage)
"hAE" = (
/obj/structure/fence{
@@ -17872,27 +14607,18 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"hAK" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/command_centre)
"hAX" = (
/obj/item/weapon/gun/boltaction,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"hBf" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/command_centre)
"hBg" = (
/obj/structure/cryofeed,
@@ -17902,54 +14628,37 @@
"hBp" = (
/obj/structure/dispenser/oxygen,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"hBB" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/command_centre)
"hBC" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/autopsy_scanner,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"hBD" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/command_centre)
"hCi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"hCq" = (
/obj/structure/bed/bedroll{
dir = 4
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/lv522/indoors/a_block/admin)
"hCv" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/command_centre)
"hCH" = (
/obj/structure/surface/table/almayer,
@@ -17958,15 +14667,11 @@
"hCU" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/east)
"hCV" = (
/obj/item/stool,
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"hDa" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -17979,15 +14684,11 @@
},
/obj/effect/spawner/gibspawner/xeno,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"hDh" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/command_centre)
"hDy" = (
/turf/closed/wall/strata_outpost,
@@ -18020,24 +14721,17 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"hEJ" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"hES" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"hFg" = (
/obj/structure/prop/almayer/computers/sensor_computer2,
@@ -18045,28 +14739,19 @@
pixel_x = -7;
pixel_y = 19
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"hFu" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/command_centre)
"hFA" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/sewer)
"hFG" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"hFL" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18075,15 +14760,10 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"hFS" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/command_centre)
"hFX" = (
/turf/open/auto_turf/shale/layer2,
@@ -18091,16 +14771,11 @@
"hGg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/sofa/vert/white,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"hGm" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"hGJ" = (
/obj/structure/platform_decoration/strata{
@@ -18110,9 +14785,7 @@
/area/lv522/oob)
"hGU" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"hGX" = (
/obj/structure/bed/chair/comfy{
@@ -18143,27 +14816,18 @@
/area/lv522/outdoors/colony_streets/central_streets)
"hHj" = (
/obj/structure/largecrate,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"hHN" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"hHY" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/command_centre)
"hIf" = (
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"hIp" = (
/obj/item/weapon/gun/rifle/m41a{
@@ -18189,25 +14853,19 @@
},
/obj/item/restraint/handcuffs,
/obj/item/weapon/classic_baton,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"hIA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb2,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"hID" = (
/obj/structure/machinery/light{
pixel_x = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3,
/area/lv522/indoors/a_block/medical)
"hIP" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -18230,9 +14888,7 @@
dir = 4
},
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"hJq" = (
/obj/structure/platform/strata,
@@ -18242,9 +14898,7 @@
/turf/closed/wall/strata_ice/dirty,
/area/lv522/oob)
"hJB" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/west)
"hJG" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -18256,9 +14910,7 @@
/obj/structure/surface/rack,
/obj/item/explosive/plastic,
/obj/item/explosive/plastic,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/lone_buildings/storage_blocks)
"hJZ" = (
/turf/open/auto_turf/sand_white/layer0,
@@ -18268,23 +14920,16 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"hKu" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/ceramic_plate,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"hKy" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"hKE" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -18298,15 +14943,10 @@
/area/lv522/outdoors/nw_rockies)
"hKI" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/sewer)
"hKJ" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/lv522/indoors/a_block/admin)
"hKK" = (
/obj/item/clothing/mask/facehugger{
@@ -18332,35 +14972,24 @@
pixel_x = -2;
pixel_y = 10
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/lv522/indoors/a_block/hallway)
"hKS" = (
/obj/structure/barricade/deployable{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"hLl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/indoors/lone_buildings/storage_blocks)
"hLm" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"hLo" = (
/turf/open/floor/wood,
@@ -18368,40 +14997,28 @@
"hLx" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"hLF" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"hLK" = (
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"hLR" = (
/turf/open/shuttle/dropship/can_surgery/light_grey_top_left,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"hLT" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"hLY" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"hMb" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18414,15 +15031,10 @@
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
/obj/item/clothing/glasses/kutjevo,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"hMz" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_east_street)
"hME" = (
/obj/effect/decal/warning_stripes{
@@ -18430,9 +15042,7 @@
pixel_x = 1;
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"hMI" = (
/obj/effect/decal/cleanable/dirt,
@@ -18451,10 +15061,7 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"hMR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"hMT" = (
/obj/structure/surface/table/gamblingtable,
@@ -18466,9 +15073,7 @@
"hNf" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"hNj" = (
/obj/structure/machinery/door_control{
@@ -18484,10 +15089,7 @@
name = "Weyland classified intelligence folder";
pixel_y = -2
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/oob/w_y_vault)
"hNk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18498,17 +15100,13 @@
"hNt" = (
/obj/item/trash/uscm_mre,
/obj/structure/surface/table/almayer,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"hNz" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/central_streets)
"hNF" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18519,9 +15117,7 @@
dir = 1;
name = "\improper Family Dormitories"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"hNP" = (
/obj/structure/platform{
@@ -18556,10 +15152,7 @@
/area/lv522/atmos/sewer)
"hNZ" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"hOl" = (
/obj/structure/bed/bedroll{
@@ -18567,10 +15160,7 @@
},
/obj/item/trash/uscm_mre,
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/admin)
"hOy" = (
/obj/effect/decal{
@@ -18583,54 +15173,38 @@
/area/lv522/oob)
"hOB" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"hOG" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/filt)
"hOH" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"hOI" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/blocker/forcefield/vehicles,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/command_centre)
"hOK" = (
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"hOL" = (
/obj/structure/prop/server_equipment/yutani_server,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"hON" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/computer/PC{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"hPd" = (
/obj/structure/prop/vehicles/crawler{
@@ -18648,21 +15222,15 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"hPz" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/command_centre)
"hPI" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"hPM" = (
/obj/item/stack/sheet/metal,
@@ -18695,9 +15263,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/nw_rockies)
"hQE" = (
/obj/structure/machinery/power/apc/weak{
@@ -18706,10 +15272,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"hQU" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -18719,19 +15282,13 @@
/area/lv522/outdoors/nw_rockies)
"hRd" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/command_centre)
"hRj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/cargo_intake)
"hRu" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18748,23 +15305,16 @@
"hRz" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"hRG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"hRW" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor)
"hSi" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18776,24 +15326,15 @@
/obj/structure/cargo_container/kelland/left{
layer = 4.13
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/outdoors/colony_streets/north_east_street)
"hSO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/command_centre)
"hSQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/way_in_command_centre)
"hTd" = (
/obj/structure/window/reinforced{
@@ -18801,36 +15342,26 @@
layer = 3
},
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/lv522/atmos/command_centre)
"hTe" = (
/turf/open/gm/river,
/area/lv522/landing_zone_1/tunnel)
"hTg" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"hTh" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/west_reactor)
"hTk" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"hTo" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/glasses/meson,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"hTA" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
@@ -18840,9 +15371,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"hTI" = (
/obj/effect/decal/warning_stripes{
@@ -18863,10 +15392,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"hTY" = (
/obj/structure/machinery/light{
@@ -18874,18 +15400,14 @@
},
/obj/structure/foamed_metal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"hUq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"hUM" = (
/obj/structure/surface/table/almayer,
@@ -18906,9 +15428,7 @@
"hUY" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/sewer)
"hUZ" = (
/obj/structure/barricade/deployable,
@@ -18923,25 +15443,18 @@
/area/lv522/atmos/sewer)
"hVu" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"hVw" = (
/obj/structure/window/framed/shiva,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/chunk)
"hWs" = (
/obj/structure/stairs/perspective{
dir = 10;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"hWz" = (
/obj/structure/platform,
@@ -18959,16 +15472,11 @@
/obj/structure/prop/almayer/computers/sensor_computer2{
layer = 2.0
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"hWD" = (
/obj/structure/barricade/deployable,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"hWI" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -18981,9 +15489,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/casino)
"hWV" = (
/obj/structure/barricade/deployable,
@@ -19005,9 +15511,7 @@
"hXA" = (
/obj/structure/closet/firecloset/full,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/sewer)
"hXO" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -19017,44 +15521,29 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/central_streets)
"hXP" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/lv522/oob/w_y_vault)
"hXW" = (
/obj/item/storage/firstaid/adv/empty,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/hallway)
"hXZ" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "w-y1"
- },
+/turf/open/floor/almayer/w_y1/north,
/area/lv522/oob/w_y_vault)
"hYf" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"hYg" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor/south)
"hYk" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "w-y2"
- },
+/turf/open/floor/almayer/w_y2/north,
/area/lv522/oob/w_y_vault)
"hYn" = (
/obj/item/tool/pen/blue/clicky{
@@ -19068,16 +15557,11 @@
pixel_y = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"hYL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/b_block/bridge)
"hYV" = (
/obj/effect/decal/cleanable/dirt,
@@ -19092,18 +15576,13 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/prop/server_equipment/laptop/closed,
/obj/structure/surface/table/almayer,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"hZn" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/oob/w_y_vault)
"hZC" = (
/obj/structure/closet/crate,
@@ -19134,17 +15613,12 @@
"hZO" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"hZR" = (
/obj/structure/closet/firecloset/full,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"hZZ" = (
/obj/structure/barricade/deployable,
@@ -19154,28 +15628,20 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"ial" = (
/obj/structure/filtration/machine_96x96/indestructible{
icon_state = "sedimentation"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/oob)
"iam" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"iaM" = (
/obj/effect/decal/cleanable/dirt,
@@ -19191,10 +15657,7 @@
/area/lv522/indoors/a_block/bridges)
"ibk" = (
/obj/structure/prop/almayer/computers/sensor_computer1,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"ibu" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -19208,9 +15671,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"ibE" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -19219,9 +15680,7 @@
/area/lv522/landing_zone_forecon/UD6_Tornado)
"ibT" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"ibW" = (
/obj/structure/window/framed/strata/reinforced,
@@ -19230,9 +15689,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/hydro)
"ica" = (
/obj/effect/decal/cleanable/dirt,
@@ -19246,17 +15703,11 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"ick" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/cargo_intake)
"icr" = (
/obj/structure/stairs/perspective{
@@ -19289,21 +15740,14 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"idk" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/reactor_garage)
"idn" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/west)
"idq" = (
/obj/structure/platform{
@@ -19319,10 +15763,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"idH" = (
/obj/item/device/flashlight/flare/on,
@@ -19348,9 +15789,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"iel" = (
/obj/structure/blocker/invisible_wall,
@@ -19365,9 +15804,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"ieE" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -19381,9 +15818,7 @@
pixel_x = -10;
pixel_y = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"ieW" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -19418,25 +15853,18 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/oob/w_y_vault)
"ifi" = (
/obj/structure/cargo_container/hd/left/alt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"ifw" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/computer/PC{
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"ifx" = (
/obj/structure/surface/rack,
@@ -19464,10 +15892,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/oob/w_y_vault)
"igv" = (
/obj/structure/desertdam/decals/road_edge{
@@ -19489,22 +15914,14 @@
pixel_x = -1;
pixel_y = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/oob/w_y_vault)
"igL" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"igT" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/east_central_street)
"iha" = (
/obj/structure/surface/table/almayer,
@@ -19516,30 +15933,20 @@
pixel_y = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"ihd" = (
/obj/item/stack/medical/bruise_pack,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/hallway)
"ihf" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/south)
"ihs" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"ihy" = (
/obj/structure/barricade/deployable,
@@ -19554,9 +15961,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"iiC" = (
/obj/structure/surface/table/almayer,
@@ -19576,9 +15981,7 @@
pixel_x = -7;
pixel_y = -2
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"iiE" = (
/obj/structure/stairs/perspective{
@@ -19591,9 +15994,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges)
"iiV" = (
/obj/effect/decal/warning_stripes{
@@ -19618,10 +16019,7 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"ijE" = (
/obj/structure/barricade/wooden{
@@ -19629,26 +16027,18 @@
pixel_y = 7
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"ijJ" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/disposal,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"ijO" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"ijR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -19669,23 +16059,17 @@
phone_id = "Colony Bar & Grill";
pixel_x = -16
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"ikr" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"ikw" = (
/obj/item/stack/sheet/metal,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"ikT" = (
/obj/structure/window_frame/strata,
@@ -19693,9 +16077,7 @@
icon_state = "medium"
},
/obj/structure/curtain/red,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/t_comm)
"ikZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -19715,9 +16097,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/hydro)
"ilK" = (
/obj/item/stack/sheet/metal,
@@ -19725,10 +16105,7 @@
/area/lv522/outdoors/nw_rockies)
"ilR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"ilU" = (
/obj/structure/prop/invuln{
@@ -19746,34 +16123,25 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"img" = (
/obj/effect/landmark/objective_landmark/medium,
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"imh" = (
/obj/structure/barricade/handrail/strata{
dir = 8
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"imJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/bridges/dorms_fitness)
"imT" = (
/obj/structure/stairs/perspective{
@@ -19789,10 +16157,7 @@
pixel_y = 6
},
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"inp" = (
/obj/item/prop/colony/used_flare,
@@ -19807,9 +16172,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/a_block/dorms)
"inU" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/n_rockies)
"iod" = (
/obj/structure/cargo_container/ferret/mid,
@@ -19825,24 +16188,17 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"ioT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"ipf" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/item/tool/weldingtool/simple,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"ipw" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -19874,20 +16230,14 @@
dir = 8
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/toilet)
"ipN" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/hallway)
"iqa" = (
/obj/structure/bed/chair/comfy{
@@ -19904,17 +16254,12 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges)
"iqt" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/admin)
"iqw" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -19926,9 +16271,7 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"iqQ" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -19950,16 +16293,12 @@
/area/lv522/landing_zone_2)
"iqZ" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"irs" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb2,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"irH" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -19969,9 +16308,7 @@
pixel_y = 17
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"irR" = (
/obj/structure/platform_decoration{
@@ -19988,16 +16325,11 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"iso" = (
/obj/structure/cargo_container/lockmart/left,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"iss" = (
/obj/item/prop/alien/hugger,
@@ -20009,18 +16341,14 @@
dir = 8;
id = "cargo_container"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"isA" = (
/obj/structure/window/framed/strata/reinforced,
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "Sec-Kitchen-Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen/glass)
"isF" = (
/obj/structure/machinery/conveyor{
@@ -20030,46 +16358,32 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"isL" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/oob/w_y_vault)
"iti" = (
/obj/structure/machinery/power/monitor{
name = "Main Power Grid Monitoring"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"itl" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"itp" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"its" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"itz" = (
/obj/structure/largecrate/random/barrel/white,
@@ -20081,9 +16395,7 @@
/area/lv522/atmos/cargo_intake)
"itE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3,
/area/lv522/indoors/a_block/medical/glass)
"itG" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -20105,18 +16417,14 @@
/obj/structure/machinery/microwave{
pixel_y = 18
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/lone_buildings/chunk)
"iup" = (
/obj/structure/machinery/space_heater/radiator/red{
dir = 4;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"iuv" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -20127,33 +16435,22 @@
"iuy" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/hallway)
"iuC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/reactor_garage)
"iuK" = (
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/lv522/indoors/a_block/admin)
"iuW" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"ivb" = (
/obj/structure/machinery/camera/autoname,
@@ -20167,9 +16464,7 @@
dir = 9;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"ivk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -20198,19 +16493,14 @@
/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"iwb" = (
/obj/structure/stairs/perspective{
dir = 6;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"iwt" = (
/obj/structure/barricade/deployable,
@@ -20232,9 +16522,7 @@
/area/lv522/indoors/c_block/cargo)
"iwJ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/command_centre)
"iwV" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -20249,16 +16537,12 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"ixf" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/command_centre)
"ixs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/corpo/glass)
"ixD" = (
/turf/open/floor/corsat,
@@ -20289,87 +16573,62 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"iyl" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/cargo_intake)
"iyq" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"iyt" = (
/obj/structure/stairs/perspective{
dir = 6;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/central_streets)
"iyx" = (
/obj/item/stack/rods,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"iyC" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"iyE" = (
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/reactor_garage)
"iyQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"iyS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/reactor_garage)
"iyT" = (
/obj/structure/platform_decoration,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"izb" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"izj" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -20378,17 +16637,12 @@
/obj/structure/flora/bush/ausbushes/reedbush{
pixel_y = 11
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"izn" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"izp" = (
/obj/structure/surface/table/almayer,
@@ -20398,10 +16652,7 @@
},
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"izr" = (
/obj/structure/platform/stair_cut,
@@ -20409,9 +16660,7 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/garage)
"izz" = (
/obj/effect/decal/cleanable/greenglow,
@@ -20423,16 +16672,11 @@
},
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"izY" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"iAv" = (
/turf/closed/wall/strata_outpost/reinforced,
@@ -20449,9 +16693,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"iAZ" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -20462,16 +16704,12 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"iBl" = (
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"iBo" = (
/obj/structure/surface/rack,
@@ -20479,9 +16717,7 @@
/obj/item/clothing/under/overalls,
/obj/item/clothing/under/overalls,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"iBr" = (
/obj/structure/bed/chair/comfy{
@@ -20492,25 +16728,19 @@
/area/lv522/indoors/a_block/admin)
"iBs" = (
/obj/structure/machinery/vending/snack/packaged,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"iBI" = (
/obj/structure/prop/server_equipment/yutani_server{
density = 0;
pixel_y = 16
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"iBQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/t_comm)
"iBY" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -20535,24 +16765,18 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"iCC" = (
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"iCR" = (
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"iCS" = (
/obj/item/stack/sheet/metal,
@@ -20563,15 +16787,11 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"iDg" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"iDC" = (
/obj/item/clothing/head/helmet/marine/grenadier{
@@ -20581,9 +16801,7 @@
pixel_x = 3;
pixel_y = 13
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"iDD" = (
/obj/item/stack/tile/plasteel{
@@ -20601,47 +16819,31 @@
/turf/open/floor/prison,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"iEn" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/reactor_garage)
"iEq" = (
/obj/structure/cargo_container/lockmart/mid,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"iFk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"iFB" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/computer/PC,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"iFN" = (
/obj/item/explosive/mine/active,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"iFO" = (
/obj/structure/surface/rack,
/obj/item/clothing/under/colonist,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"iFV" = (
/obj/structure/surface/table/almayer,
@@ -20652,18 +16854,14 @@
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/xeno_spawn,
/obj/effect/landmark/corpsespawner/colonist/burst,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"iGc" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"iGk" = (
/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right,
@@ -20680,10 +16878,7 @@
/obj/item/spacecash/c1000,
/obj/item/spacecash/c1000,
/obj/item/spacecash/c1000,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/oob/w_y_vault)
"iGn" = (
/obj/structure/largecrate/random/barrel{
@@ -20698,9 +16893,7 @@
/area/lv522/indoors/a_block/bridges/op_centre)
"iGr" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"iGD" = (
/obj/structure/tunnel/maint_tunnel{
@@ -20714,10 +16907,7 @@
dir = 8
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"iGK" = (
/obj/effect/decal/warning_stripes{
@@ -20727,19 +16917,14 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/cargo_intake)
"iGM" = (
/obj/structure/pipes/vents/pump,
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"iGQ" = (
/obj/structure/surface/table/almayer,
@@ -20747,15 +16932,11 @@
pixel_x = 7;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"iHg" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"iHl" = (
/obj/structure/surface/table/reinforced/prison,
@@ -20770,9 +16951,7 @@
icon_state = "alert:2";
name = "inventory computer"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"iHw" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -20781,9 +16960,7 @@
/obj/structure/prop/invuln/minecart_tracks/bumper{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/indoors/c_block/mining)
"iHD" = (
/obj/item/prop/alien/hugger,
@@ -20809,9 +16986,7 @@
/area/lv522/indoors/a_block/admin)
"iIt" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"iIw" = (
/obj/structure/stairs/perspective{
@@ -20825,10 +17000,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"iIK" = (
/obj/structure/foamed_metal,
@@ -20850,10 +17022,7 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"iJu" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -20867,15 +17036,11 @@
dir = 8;
req_one_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"iJA" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/west_reactor)
"iJE" = (
/obj/effect/decal/cleanable/dirt,
@@ -20896,17 +17061,11 @@
},
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"iJW" = (
/obj/structure/bed/sofa/vert/white/top,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"iJZ" = (
/obj/effect/decal/cleanable/blood,
@@ -20923,15 +17082,10 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/cargo_intake)
"iKC" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/command_centre)
"iKF" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -20940,15 +17094,10 @@
"iKJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"iKN" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/command_centre)
"iKY" = (
/obj/effect/decal/warning_stripes{
@@ -20962,9 +17111,7 @@
/area/lv522/outdoors/colony_streets/south_west_street)
"iLc" = (
/obj/structure/closet/secure_closet/freezer/fridge/full,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/lone_buildings/chunk)
"iLg" = (
/obj/structure/surface/table/reinforced/prison,
@@ -20972,28 +17119,20 @@
pixel_y = 8
},
/obj/item/tool/pen/clicky,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"iLn" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/reactor_garage)
"iLq" = (
/obj/structure/surface/table/almayer{
dir = 1;
flipped = 1
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"iLC" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21018,9 +17157,7 @@
/area/lv522/indoors/a_block/executive)
"iMx" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/west_reactor)
"iMC" = (
/obj/effect/decal/warning_stripes{
@@ -21035,26 +17172,18 @@
"iMQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"iMS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/cargo_intake)
"iMU" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/space_heater,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"iNb" = (
/obj/structure/barricade/wooden{
@@ -21066,23 +17195,15 @@
icon_state = "medium"
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"iNs" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/outdoors/colony_streets/north_east_street)
"iNX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/security/glass)
"iOi" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -21091,10 +17212,7 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/outdoors/nw_rockies)
"iOl" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/cargo_intake)
"iOt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21102,9 +17220,7 @@
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"iOw" = (
/obj/item/storage/toolbox/electrical{
@@ -21114,29 +17230,18 @@
pixel_x = -11;
pixel_y = 9
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"iOx" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/east_reactor)
"iOG" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/cargo_intake)
"iOO" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/cargo_intake)
"iOY" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -21160,10 +17265,7 @@
/area/lv522/outdoors/nw_rockies)
"iPb" = (
/obj/structure/cargo_container/lockmart/right,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"iPu" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -21178,18 +17280,14 @@
welded = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"iPD" = (
/obj/structure/machinery/door/poddoor/almayer/closed{
id = "West LZ Storage";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/storage_blocks)
"iPO" = (
/obj/structure/surface/table/almayer,
@@ -21198,35 +17296,23 @@
/turf/open/floor/plating,
/area/lv522/indoors/c_block/cargo)
"iPR" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/central_streets)
"iPV" = (
/obj/structure/machinery/shower{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/fitness)
"iPZ" = (
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"iQb" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/atmos/way_in_command_centre)
"iQe" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/east_reactor/south)
"iQo" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21242,10 +17328,7 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"iQL" = (
/obj/structure/bed/bedroll{
@@ -21258,17 +17341,12 @@
dir = 6;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_east_street)
"iRa" = (
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"iRl" = (
/obj/item/prop/colony/used_flare,
@@ -21287,24 +17365,17 @@
},
/obj/effect/spawner/gibspawner/xeno,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"iRY" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"iSc" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor/south)
"iSf" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -21319,10 +17390,7 @@
/obj/structure/machinery/prop/almayer/computer/PC{
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"iTf" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -21337,9 +17405,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"iTn" = (
/obj/structure/closet/crate/freezer{
@@ -21381,9 +17447,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"iTS" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -21405,23 +17469,16 @@
pixel_x = 1;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"iTY" = (
/obj/structure/surface/rack,
/obj/item/clothing/suit/storage/hazardvest,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/lone_buildings/storage_blocks)
"iUj" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"iUk" = (
/obj/structure/prop/dam/drill{
@@ -21433,10 +17490,7 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"iUo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/lv522/indoors/a_block/dorms)
"iUT" = (
/obj/structure/machinery/squeezer,
@@ -21452,18 +17506,13 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"iVk" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/south_street)
"iVm" = (
/obj/item/storage/backpack/marine/satchel{
@@ -21480,15 +17529,11 @@
/obj/structure/machinery/sensortower{
pixel_x = 6
},
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/lv522/indoors/a_block/admin)
"iVU" = (
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/south_street)
"iVY" = (
/obj/effect/decal/cleanable/dirt,
@@ -21498,32 +17543,23 @@
pixel_y = 26
},
/obj/effect/decal/cleanable/cobweb2,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"iWc" = (
/obj/structure/filtration/machine_64x96{
icon_state = "filtration_machine_A_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/oob)
"iWg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
/obj/structure/prop/server_equipment/laptop/on,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"iWh" = (
/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_street)
"iWo" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -21535,30 +17571,20 @@
},
/obj/structure/foamed_metal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"iWu" = (
/obj/structure/filtration/machine_64x96{
icon_state = "filtration_machine_B_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/oob)
"iWy" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"iWz" = (
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"iWN" = (
/obj/structure/platform_decoration{
@@ -21571,10 +17597,7 @@
dir = 8;
id = "cargo_container"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/cargo_intake)
"iXy" = (
/obj/structure/largecrate/random/mini/med{
@@ -21608,17 +17631,12 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"iYc" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"iYf" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -21627,9 +17645,7 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_west_street)
"iYm" = (
/obj/structure/barricade/deployable,
@@ -21640,10 +17656,7 @@
dir = 8;
id = "cargo_container"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/cargo_intake)
"iYt" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -21657,15 +17670,11 @@
dir = 8;
id = "cargo_container"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"iYG" = (
/obj/item/stack/sandbags_empty/small_stack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"iYL" = (
/obj/structure/machinery/conveyor{
@@ -21675,9 +17684,7 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"iYO" = (
/obj/structure/surface/table/almayer,
@@ -21691,17 +17698,13 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"iZg" = (
/obj/structure/machinery/power/monitor{
name = "Main Power Grid Monitoring"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"iZI" = (
/turf/open/floor/corsat,
@@ -21712,9 +17715,7 @@
/area/lv522/atmos/way_in_command_centre)
"jab" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/medical)
"jaq" = (
/obj/structure/platform_decoration{
@@ -21738,9 +17739,7 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"jaO" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -21774,9 +17773,7 @@
},
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/fitness)
"jba" = (
/obj/structure/stairs/perspective{
@@ -21793,15 +17790,11 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"jbm" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"jbn" = (
/obj/effect/decal/cleanable/dirt,
@@ -21812,10 +17805,7 @@
/area/lv522/atmos/way_in_command_centre)
"jbs" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/cargo_intake)
"jbv" = (
/obj/structure/fence{
@@ -21828,10 +17818,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/outdoors/colony_streets/central_streets)
"jbI" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -21848,35 +17835,24 @@
/obj/structure/pipes/standard/simple/visible{
dir = 6
},
-/turf/open/floor/strata{
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3,
/area/lv522/indoors/a_block/medical/glass)
"jci" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/cargo_intake)
"jcl" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"jcq" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jct" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges)
"jcH" = (
/obj/effect/spawner/gibspawner/human,
@@ -21884,25 +17860,17 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"jdf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/c_block/t_comm)
"jdl" = (
/obj/structure/surface/table/almayer,
/obj/item/prop/alien/hugger,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jdn" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -21912,61 +17880,43 @@
"jdo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/t_comm)
"jdq" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_east_street)
"jds" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jdv" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/outdoor)
"jdD" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jeb" = (
/obj/vehicle/powerloader{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"jef" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/east_reactor/south)
"jey" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"jeD" = (
/obj/structure/stairs/perspective{
@@ -21982,28 +17932,19 @@
/obj/structure/machinery/light,
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"jeI" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/east,
/area/lv522/indoors/a_block/medical/glass)
"jeJ" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"jft" = (
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"jfx" = (
/obj/structure/filingcabinet{
@@ -22019,9 +17960,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"jfG" = (
/obj/item/reagent_container/food/drinks/cans/waterbottle{
@@ -22032,9 +17971,7 @@
pixel_x = -4;
pixel_y = -7
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"jfH" = (
/obj/effect/decal/warning_stripes{
@@ -22044,9 +17981,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"jfK" = (
/obj/structure/stairs/perspective{
@@ -22081,25 +18016,18 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"jgI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/emcloset,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"jgV" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/accessory/poncho,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"jhe" = (
/obj/effect/decal/warning_stripes{
@@ -22111,9 +18039,7 @@
/obj/structure/foamed_metal,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"jhl" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -22128,10 +18054,7 @@
dir = 4
},
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"jhQ" = (
/obj/effect/decal/warning_stripes{
@@ -22143,10 +18066,7 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"jhS" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor)
"jhY" = (
/obj/structure/platform{
@@ -22171,28 +18091,20 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"jin" = (
/obj/structure/filtration/machine_96x96/indestructible{
icon_state = "sedimentation_A_1";
layer = 3.1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/oob)
"jis" = (
/obj/structure/filtration/machine_64x128{
icon_state = "filtration_1"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/oob)
"jix" = (
/obj/structure/platform_decoration{
@@ -22204,9 +18116,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_east_street)
"jiF" = (
/obj/structure/stairs/perspective{
@@ -22214,10 +18124,7 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"jiP" = (
/obj/structure/surface/table/almayer,
@@ -22245,10 +18152,7 @@
icon_state = "S"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/outdoors/nw_rockies)
"jiY" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -22259,27 +18163,19 @@
/area/lv522/atmos/cargo_intake)
"jjg" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"jjj" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "Reactor_garage_2"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"jjl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"jjo" = (
/obj/structure/surface/table/almayer,
@@ -22294,18 +18190,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jjq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"jjt" = (
/obj/structure/filingcabinet/chestdrawer{
@@ -22322,10 +18214,7 @@
icon_state = "medium"
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"jjG" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -22342,16 +18231,12 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jjV" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"jjW" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
@@ -22361,9 +18246,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"jkp" = (
/obj/structure/fence{
@@ -22376,10 +18259,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/outdoors/colony_streets/south_west_street)
"jkC" = (
/obj/structure/pipes/vents/pump,
@@ -22397,10 +18277,7 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"jlc" = (
/obj/structure/surface/rack,
@@ -22420,16 +18297,11 @@
pixel_y = -2
},
/obj/item/tool/wirecutters/clippers,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"jlh" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"jll" = (
/obj/structure/machinery/light{
@@ -22441,14 +18313,10 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"jlr" = (
-/turf/open/floor/coagulation{
- icon_state = "0,8"
- },
+/turf/open/floor/coagulation/icon0_8,
/area/lv522/oob)
"jlu" = (
/obj/structure/surface/table/almayer,
@@ -22456,31 +18324,21 @@
dir = 1;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"jmd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/rack,
/obj/item/weapon/gun/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"jmi" = (
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"jmv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"jmz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22507,9 +18365,7 @@
/area/lv522/outdoors/w_rockies)
"jmU" = (
/obj/structure/barricade/handrail,
-/turf/open/floor/coagulation{
- icon_state = "4,8"
- },
+/turf/open/floor/coagulation/icon4_8,
/area/lv522/oob)
"jmW" = (
/obj/item/prop/colony/used_flare,
@@ -22520,33 +18376,23 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/cargo_intake)
"jmX" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/reactor_garage)
"jnb" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"jnd" = (
/obj/structure/machinery/body_scanconsole,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"jnk" = (
/obj/structure/bed/chair{
@@ -22555,19 +18401,14 @@
/turf/open/floor/prison,
/area/lv522/indoors/a_block/dorms/glass)
"jnp" = (
-/turf/open/floor/coagulation{
- icon_state = "8,8"
- },
+/turf/open/floor/coagulation/icon8_8,
/area/lv522/oob)
"jnr" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/floodlight,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"jnB" = (
/obj/structure/barricade/handrail{
@@ -22582,9 +18423,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"jnF" = (
/obj/effect/decal/warning_stripes{
@@ -22596,10 +18435,7 @@
"joe" = (
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"jom" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -22613,9 +18449,7 @@
/area/lv522/outdoors/colony_streets/central_streets)
"joJ" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"joK" = (
/obj/structure/window/reinforced{
@@ -22634,10 +18468,7 @@
pixel_x = -8;
pixel_y = 16
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/oob)
"joL" = (
/obj/structure/platform{
@@ -22651,19 +18482,14 @@
phone_id = "Colony Garage";
pixel_x = -16
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"jpa" = (
/obj/structure/bedsheetbin{
pixel_y = 7
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"jpc" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -22672,9 +18498,7 @@
"jpm" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"jpx" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22687,35 +18511,24 @@
dir = 4
},
/mob/living/simple_animal/corgi/puppy,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"jqa" = (
/obj/structure/ore_box,
/turf/open/floor/prison,
/area/lv522/atmos/cargo_intake)
"jqr" = (
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/south_east_street)
"jqz" = (
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"jqF" = (
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/north_west_street)
"jqL" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"jqO" = (
/obj/structure/platform{
@@ -22732,16 +18545,12 @@
/area/lv522/outdoors/colony_streets/central_streets)
"jri" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/west)
"jrn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"jro" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -22756,9 +18565,7 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"jru" = (
/obj/structure/platform{
@@ -22772,9 +18579,7 @@
pixel_y = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"jrD" = (
/obj/structure/surface/table/almayer,
@@ -22784,9 +18589,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"jrE" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -22796,9 +18599,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/hydro)
"jrJ" = (
/obj/effect/decal/cleanable/dirt,
@@ -22811,10 +18612,7 @@
pixel_x = 3;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"jrL" = (
/obj/item/stack/sheet/metal,
@@ -22824,9 +18622,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"jrT" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -22837,9 +18633,7 @@
name = "\improper A-Block Dorms And Office Airlock"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"jsy" = (
/obj/structure/machinery/conveyor{
@@ -22847,9 +18641,7 @@
id = "cargo_container"
},
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"jsD" = (
/obj/effect/decal/warning_stripes{
@@ -22872,9 +18664,7 @@
/area/lv522/atmos/cargo_intake)
"jtf" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jtg" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -22883,10 +18673,7 @@
/turf/open/floor/plating,
/area/lv522/indoors/c_block/cargo)
"jth" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/west)
"jtu" = (
/obj/structure/barricade/deployable,
@@ -22897,25 +18684,18 @@
/area/lv522/atmos/cargo_intake)
"jtQ" = (
/obj/structure/prop/ice_colony/ground_wire,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jtZ" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"jud" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 1
},
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/lv522/indoors/a_block/admin)
"jue" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -22930,9 +18710,7 @@
pixel_x = -10;
pixel_y = 11
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/west)
"jus" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -22946,18 +18724,12 @@
/area/lv522/outdoors/nw_rockies)
"juw" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"juQ" = (
/obj/effect/decal/cleanable/blood/xeno,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"juY" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -22975,9 +18747,7 @@
/area/lv522/atmos/cargo_intake)
"jvh" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"jvk" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -23030,22 +18800,18 @@
pixel_x = -9;
pixel_y = 4
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"jvG" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"jwx" = (
/obj/structure/reagent_dispensers/fueltank/gas,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"jwM" = (
/obj/effect/decal/cleanable/dirt,
@@ -23058,15 +18824,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/garage)
"jwT" = (
/obj/item/tool/wet_sign,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jwV" = (
/obj/structure/filingcabinet{
@@ -23089,9 +18851,7 @@
/obj/item/tool/mop{
pixel_y = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jxz" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -23102,9 +18862,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"jxD" = (
/obj/structure/platform,
@@ -23134,9 +18892,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen)
"jyf" = (
/obj/structure/machinery/colony_floodlight{
@@ -23148,17 +18904,11 @@
"jyw" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"jyx" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"jyC" = (
/obj/structure/machinery/light{
@@ -23166,18 +18916,14 @@
},
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"jyF" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"jyM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -23194,9 +18940,7 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/central_streets)
"jzB" = (
/obj/effect/decal/cleanable/dirt,
@@ -23210,9 +18954,7 @@
pixel_x = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"jzC" = (
/obj/effect/decal/cleanable/dirt,
@@ -23297,14 +19039,11 @@
/obj/structure/bed/chair/dropship/passenger{
dir = 8
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"jBm" = (
/obj/structure/machinery/vending/hydronutrients,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"jBr" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -23316,28 +19055,20 @@
pixel_x = 1;
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"jBs" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"jBu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"jBw" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -23354,10 +19085,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/admin)
"jBR" = (
/obj/structure/bed/chair{
@@ -23376,9 +19104,7 @@
/area/lv522/outdoors/colony_streets/north_street)
"jBY" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/lv522/atmos/way_in_command_centre)
"jCb" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -23400,25 +19126,19 @@
/area/lv522/outdoors/nw_rockies)
"jCh" = (
/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/tunnel)
"jCq" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jCQ" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"jCS" = (
/obj/item/trash/wy_chips_pepper,
@@ -23426,10 +19146,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"jCU" = (
/obj/structure/stairs/perspective{
@@ -23444,17 +19161,12 @@
pixel_y = 8
},
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv522/indoors/a_block/admin)
"jCY" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"jDc" = (
/obj/structure/stairs/perspective{
@@ -23464,9 +19176,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"jDy" = (
/obj/structure/stairs/perspective{
@@ -23476,9 +19186,7 @@
/obj/structure/platform/stair_cut{
icon_state = "platform_stair_alt"
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_street)
"jDA" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -23513,9 +19221,7 @@
icon_state = "S";
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"jEk" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -23525,15 +19231,11 @@
},
/obj/effect/landmark/corpsespawner/colonist/burst,
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"jEq" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"jEu" = (
/obj/structure/sign/safety/rad_haz,
@@ -23550,9 +19252,7 @@
pixel_y = 26
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"jEW" = (
/obj/structure/bed/chair{
@@ -23575,9 +19275,7 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"jFc" = (
/obj/item/tool/wrench,
@@ -23599,17 +19297,11 @@
/obj/structure/morgue{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"jFC" = (
/obj/structure/machinery/space_heater,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"jFG" = (
/obj/structure/cargo_container/arious/right,
@@ -23645,18 +19337,13 @@
"jGj" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/maintenance_jack,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"jGm" = (
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/lv522/oob)
"jGp" = (
/obj/structure/platform{
@@ -23689,9 +19376,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"jHm" = (
/obj/structure/surface/table/reinforced/prison,
@@ -23700,10 +19385,7 @@
pixel_y = 6
},
/obj/item/clothing/suit/storage/jacket/marine/corporate,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"jHy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -23714,19 +19396,14 @@
dir = 8;
name = "\improper Dormitories"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"jHR" = (
/obj/structure/machinery/space_heater/radiator/red{
dir = 1;
pixel_y = 26
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"jIk" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
@@ -23738,9 +19415,7 @@
/obj/structure/surface/rack,
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/metal/medium_stack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"jIG" = (
/obj/item/tool/wet_sign{
@@ -23753,16 +19428,11 @@
pixel_y = 21
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"jII" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/n_rockies)
"jIQ" = (
/obj/structure/machinery/colony_floodlight{
@@ -23778,17 +19448,12 @@
/turf/open/gm/river,
/area/lv522/oob)
"jJa" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/north_command_centre)
"jJc" = (
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"jJh" = (
/obj/structure/surface/table/almayer,
@@ -23803,25 +19468,18 @@
/obj/item/reagent_container/food/snacks/grilledcheese{
pixel_y = 27
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"jJi" = (
/obj/structure/machinery/iv_drip,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"jJj" = (
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/lv522/oob)
"jJF" = (
/obj/effect/decal/cleanable/dirt,
@@ -23832,24 +19490,17 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"jJO" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/filt)
"jKa" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_east_street)
"jKb" = (
/obj/structure/platform{
@@ -23858,39 +19509,29 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/east_central_street)
"jKm" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/toolbox/mechanical,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"jKo" = (
/obj/vehicle/train/cargo/engine,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"jKu" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/north_command_centre)
"jKB" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/north_east_street)
"jLf" = (
/obj/item/shard{
@@ -23899,25 +19540,18 @@
/obj/item/stack/rods,
/obj/item/stack/sheet/metal,
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"jLk" = (
/obj/structure/cargo_container/wy/left,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"jLD" = (
/obj/item/stack/sheet/wood,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"jLF" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -23937,20 +19571,14 @@
name = "supply crate"
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/op_centre)
"jMr" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"jMv" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -23981,10 +19609,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/reactor_garage)
"jMZ" = (
/obj/structure/surface/table/almayer,
@@ -24000,10 +19625,7 @@
/area/lv522/indoors/a_block/dorms)
"jNv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"jNQ" = (
/obj/structure/machinery/space_heater/radiator/red{
@@ -24012,9 +19634,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"jNV" = (
/obj/structure/surface/table/almayer,
@@ -24026,10 +19646,7 @@
pixel_x = -2;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"jNY" = (
/obj/structure/surface/table/reinforced/prison,
@@ -24039,10 +19656,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"jOh" = (
/obj/structure/platform{
@@ -24061,9 +19675,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"jOw" = (
/obj/item/storage/backpack/marine/satchel{
@@ -24097,9 +19709,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"jOF" = (
/obj/effect/acid_hole,
@@ -24131,9 +19741,7 @@
pixel_x = 3
},
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"jPk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -24141,15 +19749,10 @@
},
/obj/structure/surface/table/reinforced/prison,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"jPv" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/central_streets)
"jPw" = (
/turf/open/floor/plating,
@@ -24159,9 +19762,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"jPC" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -24184,10 +19785,7 @@
"jQC" = (
/obj/structure/machinery/light,
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"jRc" = (
/obj/structure/machinery/disposal,
@@ -24203,9 +19801,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jRZ" = (
/obj/structure/largecrate/random,
@@ -24219,32 +19815,23 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"jSC" = (
/obj/structure/machinery/light,
/obj/structure/machinery/disposal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"jSR" = (
/obj/structure/machinery/conveyor,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"jSU" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/corpo/glass)
"jSW" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -24254,10 +19841,7 @@
icon_state = "fernybush_2";
pixel_y = 10
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"jTb" = (
/obj/structure/bed/chair/comfy{
@@ -24266,33 +19850,24 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jTi" = (
/obj/structure/prop/ice_colony/ground_wire,
/obj/structure/prop/ice_colony/ground_wire{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jTl" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/lv522/indoors/a_block/admin)
"jTr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"jTx" = (
/obj/structure/cable/heavyduty{
@@ -24304,9 +19879,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"jTH" = (
/obj/effect/decal/warning_stripes{
@@ -24321,17 +19894,13 @@
/area/lv522/outdoors/colony_streets/south_west_street)
"jTJ" = (
/obj/structure/cargo_container/watatsumi/leftmid,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"jTS" = (
/obj/structure/surface/table/almayer,
/obj/item/circuitboard/apc,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"jUc" = (
/obj/structure/largecrate/random,
@@ -24342,9 +19911,7 @@
/obj/structure/barricade/metal{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"jUe" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -24357,10 +19924,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/a_block/security)
"jUk" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"jUn" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -24373,32 +19937,23 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/n_rockies)
"jUy" = (
/obj/structure/machinery/power/port_gen/pacman/super,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"jUI" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"jUO" = (
/obj/structure/prop/ice_colony/flamingo{
dir = 5;
pixel_x = 15
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/east_central_street)
"jUW" = (
/obj/structure/surface/table/reinforced/almayer_B,
@@ -24411,9 +19966,7 @@
pixel_x = -10;
pixel_y = 8
},
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"jUY" = (
/obj/structure/machinery/door_control/brbutton{
@@ -24423,9 +19976,7 @@
/area/lv522/atmos/reactor_garage)
"jVa" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"jVq" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
@@ -24440,16 +19991,12 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"jVC" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/corpsespawner/colonist/burst,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"jVH" = (
/obj/item/paper{
@@ -24466,9 +20013,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"jVS" = (
/obj/structure/cargo_container/horizontal/blue/top,
@@ -24491,50 +20036,33 @@
"jWr" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/east_reactor/south)
"jWB" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/south)
"jWV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"jWX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/lv522/indoors/a_block/dorms)
"jWZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"jXc" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"jXp" = (
/obj/structure/prop/invuln/rope{
@@ -24560,9 +20088,7 @@
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"jYj" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -24573,9 +20099,7 @@
/obj/structure/tunnel/maint_tunnel{
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"jYr" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
@@ -24598,15 +20122,11 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"jYF" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/c_block/cargo)
"jYK" = (
/obj/structure/stairs/perspective{
@@ -24618,10 +20138,7 @@
"jYZ" = (
/obj/structure/filingcabinet,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"jZc" = (
/obj/structure/flora/jungle/thickbush,
@@ -24632,10 +20149,7 @@
dir = 8
},
/obj/structure/cargo_container/watatsumi/leftmid,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"jZo" = (
/obj/structure/desertdam/decals/road_edge{
@@ -24645,14 +20159,10 @@
/area/lv522/indoors/a_block/fitness/glass)
"jZA" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"jZD" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/landing_zone_1)
"jZE" = (
/obj/structure/platform_decoration{
@@ -24665,9 +20175,7 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"jZS" = (
/obj/structure/filtration/collector_pipes{
@@ -24676,23 +20184,15 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/lv522/oob)
"kaD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/west,
/area/lv522/indoors/a_block/medical/glass)
"kaQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"kaV" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -24705,9 +20205,7 @@
"kaX" = (
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"kba" = (
/obj/structure/filtration/collector_pipes{
@@ -24725,17 +20223,11 @@
"kbg" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/suit/storage/hazardvest,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/filt)
"kbn" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/outdoors/colony_streets/north_east_street)
"kbo" = (
/obj/structure/surface/rack,
@@ -24750,20 +20242,16 @@
dir = 8;
pixel_y = -5
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"kbu" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"kbF" = (
/obj/structure/surface/table/almayer,
/obj/item/cpr_dummy,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"kbH" = (
/obj/effect/decal/cleanable/dirt,
@@ -24774,10 +20262,7 @@
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"kbJ" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/filt)
"kbM" = (
/obj/structure/filtration/collector_pipes{
@@ -24788,9 +20273,7 @@
dir = 4
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/coagulation{
- icon_state = "0,5"
- },
+/turf/open/floor/coagulation/icon0_5,
/area/lv522/oob)
"kbS" = (
/obj/item/shard{
@@ -24799,14 +20282,10 @@
/turf/open/asphalt/cement,
/area/lv522/outdoors/colony_streets/south_west_street)
"kbV" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/west)
"kca" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/east)
"kcb" = (
/turf/closed/wall/mineral/bone_resin,
@@ -24825,9 +20304,7 @@
"kck" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"kco" = (
/obj/structure/platform{
@@ -24839,9 +20316,7 @@
"kcv" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/damage)
"kcw" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -24850,10 +20325,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"kcC" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -24883,9 +20355,7 @@
/turf/open/floor/plating,
/area/lv522/landing_zone_2)
"kcS" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"kcY" = (
/obj/structure/surface/table/almayer,
@@ -24893,10 +20363,7 @@
/area/lv522/indoors/a_block/admin)
"kda" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/south)
"kdf" = (
/obj/structure/stairs/perspective{
@@ -24916,9 +20383,7 @@
dir = 5;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"kdm" = (
/obj/structure/cargo_container/wy/right,
@@ -24942,9 +20407,7 @@
pixel_y = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"kdw" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -24956,9 +20419,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo)
"kdx" = (
/obj/structure/largecrate/random/barrel/green,
@@ -24988,9 +20449,7 @@
dir = 8
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/coagulation{
- icon_state = "8,3"
- },
+/turf/open/floor/coagulation/icon8_3,
/area/lv522/oob)
"keq" = (
/obj/structure/platform_decoration{
@@ -25008,10 +20467,7 @@
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"kfq" = (
/obj/item/lightstick/red/spoke/planted{
@@ -25025,9 +20481,7 @@
dir = 9;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"kfu" = (
/obj/structure/machinery/conveyor{
@@ -25035,17 +20489,12 @@
id = "cargo_container"
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/cargo_intake)
"kfv" = (
/obj/structure/largecrate/random/secure,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"kfw" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -25054,29 +20503,20 @@
/obj/structure/flora/bush{
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"kfA" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/cargo_intake)
"kfD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/kitchen)
"kfF" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kfG" = (
/obj/structure/prop/dam/crane/cargo{
@@ -25091,9 +20531,7 @@
/area/lv522/landing_zone_2)
"kgb" = (
/obj/item/weapon/twohanded/folded_metal_chair,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kgm" = (
/obj/structure/surface/table/almayer,
@@ -25102,9 +20540,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"kgC" = (
/obj/structure/machinery/conveyor{
@@ -25115,56 +20551,39 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"kgQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"kgR" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"khf" = (
/obj/structure/prop/server_equipment,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"khm" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"kho" = (
/obj/structure/dispenser,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"khx" = (
/obj/item/prop/alien/hugger,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"khz" = (
/obj/item/trash/uscm_mre,
@@ -25196,9 +20615,7 @@
pixel_x = -1;
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"kib" = (
/obj/item/clothing/head/hardhat/white,
@@ -25206,9 +20623,7 @@
pixel_x = 11;
pixel_y = -9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kie" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -25220,9 +20635,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"kih" = (
/obj/structure/machinery/conveyor{
@@ -25232,10 +20645,7 @@
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/cargo_intake)
"kiD" = (
/obj/structure/machinery/conveyor{
@@ -25243,10 +20653,7 @@
id = "cargo_container"
},
/obj/structure/largecrate/random,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/cargo_intake)
"kiE" = (
/obj/structure/barricade/wooden{
@@ -25255,23 +20662,16 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"kiG" = (
/obj/structure/closet/bodybag,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical)
"kiO" = (
/obj/structure/machinery/deployable/barrier,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"kiQ" = (
/obj/structure/bed{
@@ -25283,9 +20683,7 @@
pixel_y = 25
},
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"kiT" = (
/obj/item/stack/medical/bruise_pack,
@@ -25300,10 +20698,7 @@
pixel_x = -11;
pixel_y = 23
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"kjj" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -25332,37 +20727,27 @@
dir = 1
},
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"kjU" = (
/obj/item/reagent_container/food/snacks/donut,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kkc" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/west_reactor)
"kkq" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_west_street)
"kkr" = (
/obj/structure/prop/ice_colony/ground_wire{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kky" = (
/obj/structure/cable/heavyduty{
@@ -25380,43 +20765,29 @@
pixel_y = 14
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"kkP" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"kkR" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"kkS" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/prop/cash_register/off/open{
pixel_y = 8
},
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"kkZ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/north_command_centre)
"klj" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/atmos/outdoor)
"kll" = (
/obj/structure/cable/heavyduty{
@@ -25429,25 +20800,18 @@
dir = 8
},
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"klx" = (
/obj/structure/prop/ice_colony/ground_wire{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"klz" = (
/obj/structure/curtain/medical,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"klL" = (
/obj/structure/machinery/microwave,
@@ -25457,9 +20821,7 @@
/obj/item/trash/ceramic_plate{
pixel_y = 21
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"klW" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -25475,9 +20837,7 @@
/area/lv522/atmos/west_reactor)
"kmg" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kmq" = (
/obj/structure/machinery/colony_floodlight{
@@ -25488,10 +20848,7 @@
"kms" = (
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/lv522/indoors/a_block/admin)
"kmw" = (
/obj/effect/decal/warning_stripes{
@@ -25502,16 +20859,11 @@
pixel_x = -12;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"kmz" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/north_command_centre)
"kmE" = (
/obj/structure/desertdam/decals/road_edge{
@@ -25534,25 +20886,19 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/garden)
"kmH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"kmP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"kmY" = (
/obj/structure/surface/table/almayer,
@@ -25570,32 +20916,23 @@
pixel_x = -7
},
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"kne" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"kni" = (
/obj/structure/machinery/bioprinter,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"knt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"knN" = (
/obj/structure/stairs/perspective{
@@ -25603,18 +20940,13 @@
icon_state = "p_stair_full"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"knS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/south)
"knT" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{
@@ -25632,10 +20964,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"koj" = (
/obj/structure/pipes/vents/pump,
@@ -25657,17 +20986,13 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"koG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/bridges/corpo)
"koM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -25676,19 +21001,13 @@
/turf/open/floor/prison,
/area/lv522/indoors/a_block/admin)
"kpo" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/east_reactor/south)
"kpu" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"kpB" = (
/obj/structure/barricade/handrail{
@@ -25706,16 +21025,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"kpG" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/east_reactor/south)
"kpN" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -25729,18 +21043,13 @@
"kqa" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/pouch/tools/full,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/filt)
"kqb" = (
/turf/closed/wall/strata_outpost,
/area/lv522/indoors/a_block/kitchen)
"kqp" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/north_east_street)
"kqJ" = (
/obj/structure/barricade/wooden{
@@ -25757,18 +21066,13 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"kqX" = (
/obj/item/clipboard,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kri" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/atmos/reactor_garage)
"krj" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -25777,9 +21081,7 @@
/obj/structure/prop/ice_colony/ground_wire{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"krm" = (
/obj/structure/surface/table/almayer{
@@ -25797,10 +21099,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/atmos/east_reactor/south)
"krH" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/outdoors/colony_streets/north_east_street)
"krK" = (
/obj/effect/decal/cleanable/dirt,
@@ -25809,16 +21108,11 @@
/area/lv522/indoors/a_block/admin)
"krN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"krP" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 5;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/northeast,
/area/lv522/indoors/a_block/medical/glass)
"ksa" = (
/obj/structure/surface/table/almayer,
@@ -25826,9 +21120,7 @@
pixel_y = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"ksf" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -25844,23 +21136,16 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"ksm" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/north_command_centre)
"kss" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"ksA" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/indoors/c_block/mining)
"ksO" = (
/obj/effect/decal/warning_stripes{
@@ -25877,9 +21162,7 @@
/obj/structure/barricade/metal{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"kti" = (
/obj/structure/platform,
@@ -25906,9 +21189,7 @@
/obj/effect/landmark/objective_landmark/close,
/obj/structure/closet/crate,
/obj/item/stack/sheet/plasteel/large_stack,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"kug" = (
/obj/structure/closet/crate/trashcart,
@@ -25931,24 +21212,16 @@
pixel_y = -3
},
/obj/item/reagent_container/glass/bucket,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"kun" = (
/obj/structure/surface/table/almayer,
/obj/item/device/camera,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"kup" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/admin)
"kuD" = (
/obj/effect/decal/cleanable/blood,
@@ -25960,9 +21233,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"kvc" = (
/obj/structure/cargo_container/horizontal/blue/middle,
@@ -25978,9 +21249,7 @@
"kvq" = (
/obj/structure/window_frame/strata/reinforced,
/obj/item/stack/rods,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/engineering)
"kvJ" = (
/obj/structure/surface/table/almayer,
@@ -25991,26 +21260,19 @@
pixel_x = 3;
pixel_y = 11
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"kvM" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"kwc" = (
/obj/structure/stairs/perspective{
dir = 6;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"kwg" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -26021,9 +21283,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/mining)
"kwo" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"kwt" = (
/obj/structure/platform,
@@ -26052,15 +21312,11 @@
pixel_x = 1;
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"kxm" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/cargo_intake)
"kxq" = (
/obj/structure/surface/table/reinforced/prison,
@@ -26075,28 +21331,18 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"kxH" = (
/obj/item/prop/colony/used_flare,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_street)
"kxW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/lv522/indoors/a_block/dorms)
"kyb" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/cargo_intake)
"kyo" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26110,9 +21356,7 @@
pixel_x = -14;
pixel_y = -2
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kyB" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26136,40 +21380,28 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"kyK" = (
/obj/structure/prop/ice_colony/ground_wire{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/cargo_intake)
"kzc" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kzd" = (
/obj/effect/decal/warning_stripes{
icon_state = "S";
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"kze" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/admin)
"kzk" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -26198,18 +21430,13 @@
/area/lv522/outdoors/colony_streets/east_central_street)
"kzG" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"kzR" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "Bathroom"
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"kzT" = (
/turf/open/floor/prison,
@@ -26217,9 +21444,7 @@
"kAf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"kAj" = (
/obj/structure/bed/chair/comfy,
@@ -26230,22 +21455,16 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"kAG" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/bridge)
"kAI" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/cargo_intake)
"kBj" = (
/obj/structure/cargo_container/horizontal/blue/top,
@@ -26261,10 +21480,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/east_reactor/south)
"kBq" = (
/obj/structure/girder,
@@ -26299,9 +21515,7 @@
/area/lv522/outdoors/w_rockies)
"kBJ" = (
/obj/item/prop/colony/canister,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kBK" = (
/obj/structure/stairs/perspective{
@@ -26313,9 +21527,7 @@
"kBL" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/head/hardhat,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kBT" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
@@ -26326,9 +21538,7 @@
/obj/item/tool/pen/blue/clicky,
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"kCf" = (
/obj/item/prop/colony/proptag{
@@ -26337,10 +21547,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"kCC" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26350,17 +21557,13 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"kCD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_west_street)
"kCF" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -26372,16 +21575,12 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"kCJ" = (
/obj/structure/cargo_container/ferret/left,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/north_west_street)
"kCM" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kCN" = (
/obj/structure/surface/table/almayer,
@@ -26393,32 +21592,23 @@
pixel_y = 3
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"kDH" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"kDQ" = (
/obj/item/prop/colony/usedbandage{
dir = 9
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/admin)
"kDU" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"kDY" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26442,9 +21632,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"kEj" = (
/obj/effect/decal/cleanable/dirt,
@@ -26460,30 +21648,22 @@
/obj/structure/machinery/colony_floodlight{
layer = 4.3
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/east_central_street)
"kEx" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_ew_full_cap"
},
/obj/structure/platform/stair_cut/alt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"kEA" = (
/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"kEL" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"kEN" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -26505,29 +21685,20 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"kEQ" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/c_block/bridge)
"kEW" = (
/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"kEZ" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/central_streets)
"kFd" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -26547,10 +21718,7 @@
/area/lv522/oob)
"kFx" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 6;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/southeast,
/area/lv522/indoors/a_block/medical)
"kFB" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
@@ -26560,9 +21728,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/north_street)
"kFP" = (
/obj/structure/platform/strata{
@@ -26589,10 +21755,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"kGX" = (
/obj/structure/tunnel,
@@ -26602,10 +21765,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "w-y0"
- },
+/turf/open/floor/almayer/w_y0/north,
/area/lv522/atmos/way_in_command_centre)
"kHy" = (
/obj/structure/surface/table/almayer,
@@ -26613,9 +21773,7 @@
pixel_x = -5;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"kHP" = (
/obj/effect/decal/cleanable/dirt,
@@ -26627,9 +21785,7 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"kHW" = (
/obj/structure/stairs/perspective{
@@ -26644,9 +21800,7 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_street)
"kHZ" = (
/obj/structure/surface/table/almayer,
@@ -26660,18 +21814,13 @@
layer = 3.1
},
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"kId" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"kIj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26684,10 +21833,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"kIs" = (
/obj/effect/decal/warning_stripes{
@@ -26701,10 +21847,7 @@
/obj/item/ammo_magazine/rifle/m4ra/ap{
current_rounds = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/lv522/indoors/a_block/admin)
"kIV" = (
/obj/effect/decal/warning_stripes{
@@ -26719,9 +21862,7 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"kJb" = (
/obj/structure/surface/table/almayer,
@@ -26733,9 +21874,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"kJc" = (
/obj/structure/surface/table/almayer,
@@ -26744,22 +21883,16 @@
pixel_y = 3
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"kJh" = (
/obj/item/stack/rods,
/obj/structure/platform,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"kJv" = (
/obj/structure/largecrate/random/mini,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/central_streets)
"kJO" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -26769,10 +21902,7 @@
/obj/structure/filtration/machine_96x96{
icon_state = "disinfection"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/oob)
"kKc" = (
/obj/structure/toilet{
@@ -26783,50 +21913,35 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"kKh" = (
/obj/structure/barricade/handrail{
dir = 1
},
-/turf/open/floor/coagulation{
- icon_state = "2,0"
- },
+/turf/open/floor/coagulation/icon2_0,
/area/lv522/oob)
"kKj" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/outdoors/colony_streets/north_east_street)
"kKD" = (
/obj/effect/landmark/monkey_spawn,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"kKR" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv522/indoors/a_block/dorms)
"kLc" = (
/obj/item/clothing/head/hardhat,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"kLe" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"kLs" = (
/obj/item/clothing/mask/facehugger{
@@ -26836,17 +21951,13 @@
name = "????";
stat = 2
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"kLO" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_west_street)
"kMi" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26877,10 +21988,7 @@
pixel_x = 8;
pixel_y = 11
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"kMN" = (
/obj/item/reagent_container/food/drinks/flask/marine,
@@ -26888,10 +21996,7 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"kNe" = (
/obj/item/shard{
@@ -26904,24 +22009,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/security)
"kNL" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/gloves/yellow,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"kNR" = (
/obj/structure/closet/crate/explosives,
/obj/item/storage/box/explosive_mines,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"kNY" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -26929,9 +22027,7 @@
name = "\improper A-Block Dorms And Office Airlock";
welded = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"kOa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26945,16 +22041,12 @@
pixel_x = -13;
pixel_y = -9
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/t_comm)
"kOz" = (
/obj/structure/machinery/vending/cigarette/colony,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"kOE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -26967,9 +22059,7 @@
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib3"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"kOJ" = (
/obj/structure/machinery/conveyor{
@@ -26979,9 +22069,7 @@
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"kOQ" = (
/obj/structure/machinery/conveyor{
@@ -27003,18 +22091,13 @@
/area/lv522/atmos/cargo_intake)
"kOV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"kPG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"kPJ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -27024,9 +22107,7 @@
id = "LZ1_Lockdown_Lo";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/ceiling)
"kPO" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -27040,29 +22121,21 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"kPV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"kQc" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"kQw" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/cargo_intake)
"kQJ" = (
/obj/item/explosive/mine/active{
@@ -27080,10 +22153,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/cargo_intake)
"kQS" = (
/obj/item/stack/tile/plasteel{
@@ -27104,10 +22174,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/cargo_intake)
"kRb" = (
/obj/item/weapon/telebaton,
@@ -27134,25 +22201,19 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"kRp" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"kRw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/cargo_intake)
"kRB" = (
/obj/structure/machinery/light,
@@ -27160,20 +22221,14 @@
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"kRJ" = (
/obj/effect/landmark/monkey_spawn,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/cargo_intake)
"kRQ" = (
/turf/open/floor/wood,
@@ -27188,9 +22243,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"kRZ" = (
/obj/structure/bed/chair/comfy{
@@ -27206,9 +22259,7 @@
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"kSm" = (
/obj/structure/machinery/light{
@@ -27255,18 +22306,14 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"kSZ" = (
/obj/structure/reagent_dispensers/water_cooler/stacks{
pixel_y = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"kTd" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -27274,9 +22321,7 @@
},
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"kTm" = (
/obj/structure/barricade/wooden{
@@ -27285,9 +22330,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/security/glass)
"kTn" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -27303,9 +22346,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"kTF" = (
/obj/structure/surface/table/almayer,
@@ -27314,25 +22355,17 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"kTJ" = (
/obj/structure/prop/invuln/ice_prefab/standalone{
icon_state = "white"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"kUf" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"kUo" = (
/obj/structure/machinery/vending/snack,
@@ -27342,9 +22375,7 @@
/obj/structure/prop/ice_colony/ground_wire{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/cargo_intake)
"kUF" = (
/obj/effect/decal/cleanable/dirt,
@@ -27353,15 +22384,11 @@
pixel_x = -1;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"kUH" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"kUJ" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -27376,27 +22403,21 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper A-Block Corporate Office Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"kUP" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"kVa" = (
/obj/effect/spawner/gibspawner/xeno,
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib3"
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"kVh" = (
/obj/item/prop/colony/used_flare,
@@ -27411,9 +22432,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"kVG" = (
/obj/structure/cargo_container/kelland/left,
@@ -27430,17 +22449,11 @@
dir = 1;
pixel_y = 26
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/hallway)
"kVT" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"kVV" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -27453,33 +22466,24 @@
/obj/structure/machinery/computer/emails{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/cargo_intake)
"kWi" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"kWH" = (
/obj/structure/stairs/perspective{
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"kWZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"kXa" = (
/obj/structure/window/reinforced{
@@ -27487,9 +22491,7 @@
layer = 3
},
/obj/structure/machinery/computer3/server/rack,
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/lv522/atmos/east_reactor/south)
"kXc" = (
/turf/closed/wall/solaris/reinforced/hull/lv522,
@@ -27503,9 +22505,7 @@
"kXf" = (
/obj/item/stack/sheet/wood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"kXg" = (
/obj/structure/machinery/door/airlock/almayer/medical{
@@ -27516,9 +22516,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/medical)
"kXk" = (
/obj/structure/bed,
@@ -27528,9 +22526,7 @@
/obj/item/clothing/under/suit_jacket/stowaway,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"kXo" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -27540,9 +22536,7 @@
/area/lv522/outdoors/w_rockies)
"kXB" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/cargo_intake)
"kXY" = (
/turf/open/floor/prison,
@@ -27558,10 +22552,7 @@
dir = 8;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/lv522/indoors/a_block/admin)
"kYH" = (
/obj/structure/barricade/wooden{
@@ -27576,25 +22567,19 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"kYM" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"kZe" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"kZj" = (
/obj/item/ammo_magazine/rifle/m4ra/ap{
@@ -27628,36 +22613,27 @@
pixel_x = 23;
pixel_y = 21
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/damage)
"lag" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"lao" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/sewer)
"lau" = (
/obj/item/stack/sheet/metal,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/admin)
"laX" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -27683,24 +22659,18 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"lbo" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"lbt" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "Reactor_entry_1"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"lbA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -27716,9 +22686,7 @@
/area/lv522/indoors/a_block/admin)
"lbH" = (
/obj/structure/largecrate/random,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"lbI" = (
/obj/structure/surface/table/almayer,
@@ -27730,51 +22698,36 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"lbK" = (
/obj/structure/barricade/deployable{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"lbX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/atmos/outdoor)
"lcK" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"lcM" = (
/obj/item/prop/alien/hugger,
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"lcP" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/west_reactor)
"lcT" = (
/obj/structure/surface/table/almayer,
@@ -27784,23 +22737,17 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"ldg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"ldi" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"ldr" = (
/obj/effect/decal/cleanable/blood/xeno{
@@ -27821,9 +22768,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/lv522/atmos/reactor_garage)
"ldC" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -27836,30 +22781,20 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/north_west_street)
"leg" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness/glass)
"leh" = (
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"lek" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/lv522/indoors/a_block/dorms)
"lel" = (
/obj/structure/machinery/floodlight,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"lep" = (
/obj/effect/decal/cleanable/dirt,
@@ -27874,9 +22809,7 @@
dir = 4;
id = "Reactor_entry_2"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"leH" = (
/obj/structure/barricade/deployable{
@@ -27885,37 +22818,28 @@
/obj/item/clothing/suit/storage/marine/medium/rto,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/south)
"leI" = (
/obj/structure/barricade/wooden{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"leO" = (
/obj/structure/machinery/portable_atmospherics/hydroponics{
icon_state = "hydrotray4"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv522/indoors/b_block/hydro/glass)
"leP" = (
/obj/item/reagent_container/glass/bucket/janibucket{
pixel_x = 7;
pixel_y = -12
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"leV" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -27925,39 +22849,27 @@
/area/lv522/indoors/a_block/admin)
"lfe" = (
/obj/structure/window_frame/strata,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"lfj" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"lfA" = (
/obj/structure/closet/crate,
/obj/item/weapon/classic_baton,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"lfS" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/nw_rockies)
"lfU" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"lgf" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"lgY" = (
/obj/structure/platform_decoration{
@@ -27978,9 +22890,7 @@
"lhd" = (
/obj/effect/decal/cleanable/blood/xeno,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"lhp" = (
/obj/effect/decal/warning_stripes{
@@ -27990,33 +22900,24 @@
/obj/item/weapon/gun/rifle/m41a{
current_mag = null
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"lhD" = (
/obj/structure/barricade/handrail{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"lhE" = (
/obj/structure/cargo_container/hd/left/alt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"lhI" = (
/obj/structure/closet/secure_closet/miner,
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"lhK" = (
/obj/structure/closet/secure_closet{
@@ -28027,35 +22928,23 @@
/area/lv522/indoors/a_block/security/glass)
"lhP" = (
/obj/structure/curtain/medical,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical)
"lhT" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/security)
"lit" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/cargo_intake)
"liD" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/cargo_intake)
"liK" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"liN" = (
/obj/structure/pipes/vents/pump,
@@ -28067,9 +22956,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"ljm" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
@@ -28077,9 +22964,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"ljq" = (
/obj/structure/girder/displaced,
@@ -28103,16 +22988,11 @@
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/corpsespawner/colonist/burst,
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/south)
"ljW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"lkj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -28125,9 +23005,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"lko" = (
/obj/item/stack/sheet/metal,
@@ -28138,10 +23016,7 @@
pixel_x = -8;
pixel_y = -2
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor)
"lkH" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -28152,31 +23027,22 @@
"llA" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/kitchen)
"llG" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/south)
"llJ" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"llM" = (
/obj/item/tool/kitchen/knife/butcher,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"llU" = (
/obj/structure/prop/invuln/ice_prefab,
@@ -28200,45 +23066,33 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"lmp" = (
/obj/structure/bed,
/obj/item/bedsheet/brown{
layer = 3.1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"lmu" = (
/obj/structure/barricade/deployable{
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/south)
"lmz" = (
/obj/item/weapon/gun/rifle/m41a{
current_mag = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"lmA" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"lmF" = (
/obj/effect/decal/cleanable/dirt,
@@ -28255,18 +23109,14 @@
pixel_y = -6;
stat = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"lmI" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper A-Block Dorms And Office Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"lmJ" = (
/obj/structure/prop/dam/crane/cargo,
@@ -28283,9 +23133,7 @@
icon_state = "W"
},
/obj/item/stack/folding_barricade,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"lmY" = (
/turf/closed/wall/strata_outpost,
@@ -28295,39 +23143,28 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/lv522/atmos/east_reactor/south)
"lnj" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"lnC" = (
/obj/structure/largecrate/supply/supplies/water,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"lnF" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/filt)
"lnH" = (
/obj/structure/surface/table/almayer,
/obj/item/ore/gold,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"lnK" = (
/obj/structure/stairs/perspective{
@@ -28337,9 +23174,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"lnL" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -28357,18 +23192,13 @@
/turf/open/floor/prison,
/area/lv522/indoors/a_block/dorms)
"lnU" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/filt)
"lot" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/bridge)
"loB" = (
/obj/structure/surface/table/almayer,
@@ -28377,36 +23207,27 @@
pixel_x = -4;
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"loD" = (
/obj/structure/machinery/conveyor{
dir = 5;
id = "cargo_container"
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/cargo_intake)
"loS" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/item/prop/alien/hugger,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"lpi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/east_central_street)
"lpq" = (
/obj/structure/bed/stool,
@@ -28415,10 +23236,7 @@
/area/lv522/indoors/b_block/bar)
"lpt" = (
/obj/structure/cargo_container/watatsumi/right,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"lpy" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
@@ -28455,32 +23273,23 @@
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/barricade/wooden,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"lqY" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/metal,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"lrd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor/south)
"lrh" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/cargo_intake)
"lrm" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -28496,53 +23305,37 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"lrt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/security)
"lrG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"lrJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"lrM" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/reactor_garage)
"lrQ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"lsf" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/lv522/indoors/a_block/admin)
"lsD" = (
/obj/structure/bed/chair/comfy{
@@ -28569,9 +23362,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"ltf" = (
/obj/structure/platform{
@@ -28589,9 +23380,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_east_street)
"ltC" = (
/obj/structure/bed/chair/comfy,
@@ -28609,9 +23398,7 @@
/area/lv522/indoors/a_block/security)
"lul" = (
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_west_street)
"lum" = (
/obj/structure/platform,
@@ -28637,16 +23424,11 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_west_street)
"lvF" = (
/obj/item/tool/surgery/circular_saw,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"lvH" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -28661,50 +23443,36 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/nw_rockies)
"lvX" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"lwc" = (
/obj/structure/prop/vehicles{
icon_state = "truck_damaged"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"lwm" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/east_reactor/south)
"lwr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"lwv" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/central_streets)
"lwH" = (
/obj/structure/surface/rack,
@@ -28718,9 +23486,7 @@
/obj/item/frame/table/almayer{
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"lwW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -28739,23 +23505,16 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"lxG" = (
/obj/structure/surface/table/almayer,
/obj/effect/spider/spiderling/nogrow,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"lxI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/admin)
"lxL" = (
/turf/open/floor/prison,
@@ -28766,9 +23525,7 @@
/area/lv522/indoors/a_block/corpo/glass)
"lxW" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"lxZ" = (
/obj/structure/bed/chair/comfy{
@@ -28785,24 +23542,17 @@
"lyu" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"lyD" = (
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/south_street)
"lyP" = (
/turf/open/auto_turf/shale/layer2,
/area/lv522/outdoors/colony_streets/north_east_street)
"lyQ" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/admin)
"lzb" = (
/obj/effect/decal/cleanable/dirt,
@@ -28810,18 +23560,14 @@
dir = 8
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"lze" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"lzk" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -28829,9 +23575,7 @@
name = "\improper Post Office"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"lzw" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -28848,9 +23592,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb2/dynamic,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"lzB" = (
/obj/structure/surface/rack,
@@ -28863,10 +23605,7 @@
},
/obj/structure/machinery/faxmachine,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"lzU" = (
/obj/structure/platform{
@@ -28883,9 +23622,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_east_street)
"lAa" = (
/obj/effect/decal/cleanable/dirt,
@@ -28897,19 +23634,14 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"lAk" = (
/obj/structure/machinery/power/apc/weak{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"lAm" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -28917,57 +23649,41 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/a_block/fitness/glass)
"lAn" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"lAA" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/cargo_intake)
"lAD" = (
/obj/structure/foamed_metal,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"lAK" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"lAS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"lBd" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"lBj" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"lBu" = (
/obj/structure/machinery/light{
@@ -28975,10 +23691,7 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/hallway)
"lBw" = (
/obj/structure/stairs/perspective{
@@ -28991,9 +23704,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"lBE" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -29012,16 +23723,11 @@
"lCj" = (
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"lCx" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"lCD" = (
/obj/effect/decal/cleanable/dirt,
@@ -29029,10 +23735,7 @@
pixel_y = 30
},
/obj/structure/machinery/iv_drip,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/hallway)
"lCH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -29044,10 +23747,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"lDc" = (
/obj/structure/barricade/deployable{
@@ -29056,50 +23756,37 @@
/obj/structure/machinery/m56d_hmg{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"lDk" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"lDr" = (
/obj/item/prop/colony/proptag{
desc = "A fallen marine's information dog tag. It reads, Sergeant Douglas 'Bedwetter' Smith"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/south)
"lDC" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"lDE" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/east_central_street)
"lDN" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/computer/PC{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/east_reactor/south)
"lDU" = (
/obj/structure/surface/table/almayer,
@@ -29109,9 +23796,7 @@
pixel_x = 26
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"lEb" = (
/obj/structure/pipes/vents/pump,
@@ -29121,17 +23806,12 @@
pixel_x = -16;
req_access = null
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/filt)
"lEd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"lEk" = (
/obj/structure/surface/table/almayer,
@@ -29143,56 +23823,37 @@
pixel_x = 3;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"lEF" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/bridges/dorms_fitness)
"lER" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"lEZ" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/reactor_garage)
"lFa" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/reactor_garage)
"lFd" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"lFk" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"lFt" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/filt)
"lFO" = (
/obj/item/storage/backpack/marine/satchel{
@@ -29219,20 +23880,14 @@
/obj/item/stack/sheet/mineral/uranium/small_stack{
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"lGx" = (
/obj/item/trash/uscm_mre,
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"lGA" = (
/obj/effect/decal/cleanable/dirt,
@@ -29242,24 +23897,16 @@
layer = 3.1;
pixel_y = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"lGW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/c_block/bridge)
"lHa" = (
/obj/structure/prop/almayer/computers/sensor_computer2,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"lHd" = (
/obj/structure/reagent_dispensers/watertank,
@@ -29279,18 +23926,13 @@
pixel_y = 7
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"lHh" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/c_block/cargo)
"lHk" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -29310,9 +23952,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"lHu" = (
/obj/effect/decal/cleanable/dirt,
@@ -29329,9 +23969,7 @@
/area/lv522/indoors/lone_buildings/engineering)
"lHH" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_2/ceiling)
"lHL" = (
/obj/structure/bed/chair{
@@ -29343,9 +23981,7 @@
/turf/open/floor/carpet,
/area/lv522/indoors/c_block/garage)
"lHS" = (
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"lHV" = (
/obj/item/stack/sheet/metal,
@@ -29359,9 +23995,7 @@
/area/lv522/indoors/a_block/admin)
"lId" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"lIy" = (
/obj/effect/decal/cleanable/dirt,
@@ -29372,19 +24006,14 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/hydro)
"lIB" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"lIR" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -29410,10 +24039,7 @@
pixel_y = 6
},
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"lKi" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -29425,15 +24051,11 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"lKl" = (
/obj/structure/machinery/vending/snack/packaged,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"lKu" = (
/obj/structure/machinery/power/smes/buildable{
@@ -29448,20 +24070,14 @@
/area/lv522/indoors/lone_buildings/engineering)
"lKC" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/filt)
"lKF" = (
/obj/structure/barricade/deployable{
dir = 4
},
/obj/effect/landmark/survivor_spawner/lv522_forecon_marksman,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/lv522/indoors/a_block/admin)
"lLl" = (
/obj/structure/foamed_metal,
@@ -29476,17 +24092,11 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"lMF" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor/south)
"lMH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -29496,10 +24106,7 @@
/area/lv522/outdoors/nw_rockies)
"lML" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"lMN" = (
/obj/structure/barricade/deployable{
@@ -29508,25 +24115,18 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"lMT" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"lMZ" = (
/obj/effect/decal/cleanable/mucus,
-/turf/open/floor/strata{
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3,
/area/lv522/indoors/a_block/medical/glass)
"lNb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -29535,9 +24135,7 @@
panel_open = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"lNf" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -29555,10 +24153,7 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"lNs" = (
/obj/structure/surface/table/almayer,
@@ -29579,24 +24174,18 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"lNT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/indoors/c_block/mining)
"lNU" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/central_streets)
"lOi" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -29607,10 +24196,7 @@
/area/lv522/indoors/a_block/dorms/glass)
"lOk" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/admin)
"lOq" = (
/obj/structure/bed/chair/comfy{
@@ -29626,10 +24212,7 @@
},
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"lPf" = (
/obj/structure/stairs/perspective{
@@ -29653,24 +24236,18 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_street)
"lPM" = (
/obj/structure/girder,
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/north_street)
"lPT" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"lPY" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -29708,9 +24285,7 @@
layer = 2.9;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"lRF" = (
/obj/structure/girder,
@@ -29735,25 +24310,17 @@
"lSl" = (
/obj/structure/barricade/wooden,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"lSq" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/central_streets)
"lSs" = (
/obj/structure/machinery/conveyor,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/cargo_intake)
"lSF" = (
/obj/structure/stairs/perspective{
@@ -29787,9 +24354,7 @@
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/indoors/c_block/mining)
"lTl" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -29798,10 +24363,7 @@
/obj/structure/flora/bush/ausbushes/reedbush{
pixel_y = 11
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/dorms)
"lTQ" = (
/obj/effect/decal/cleanable/blood/gibs/xeno,
@@ -29818,10 +24380,7 @@
"lUf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"lUh" = (
/obj/effect/decal/warning_stripes{
@@ -29859,9 +24418,7 @@
/obj/structure/machinery/prop/almayer/computer/PC{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"lUU" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -29869,9 +24426,7 @@
name = "\improper A-Block Corporate Office Airlock";
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo)
"lUV" = (
/obj/effect/decal/warning_stripes{
@@ -29903,32 +24458,23 @@
/area/lv522/landing_zone_2/ceiling)
"lVD" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges/corpo)
"lVK" = (
/obj/structure/closet/bodybag,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"lVV" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"lVY" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"lVZ" = (
/obj/structure/stairs/perspective{
@@ -29938,17 +24484,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_east_street)
"lWa" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"lWf" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -29960,9 +24502,7 @@
pixel_y = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"lWj" = (
/obj/structure/platform,
@@ -29971,9 +24511,7 @@
"lWm" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"lWW" = (
/obj/item/trash/crushed_cup{
@@ -29983,9 +24521,7 @@
/turf/open/asphalt/cement,
/area/lv522/outdoors/colony_streets/east_central_street)
"lXC" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"lXO" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -29995,9 +24531,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"lXY" = (
/obj/structure/bed/chair/comfy{
@@ -30013,9 +24547,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_east_street)
"lYG" = (
/obj/structure/platform_decoration{
@@ -30037,9 +24569,7 @@
"lYL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"lYR" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -30057,16 +24587,12 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"lZq" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"lZI" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/prop/colony/used_flare,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/op_centre)
"lZO" = (
/obj/structure/coatrack{
@@ -30081,27 +24607,18 @@
pixel_x = -7;
pixel_y = 5
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"lZY" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"mad" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"maj" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/east_reactor/south)
"mam" = (
/obj/effect/decal/warning_stripes{
@@ -30112,10 +24629,7 @@
pixel_y = 1
},
/obj/structure/fence,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/landing_zone_2/ceiling)
"max" = (
/turf/open/auto_turf/sand_white/layer0,
@@ -30126,20 +24640,14 @@
pixel_x = -11
},
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"maE" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"maF" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -30152,9 +24660,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"mbr" = (
/obj/effect/decal/cleanable/dirt,
@@ -30176,10 +24682,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/south)
"mbw" = (
/obj/effect/decal/cleanable/blood,
@@ -30190,9 +24693,7 @@
phone_id = "Colony Dining";
pixel_y = 26
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"mbx" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -30202,15 +24703,11 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"mbG" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"mbH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -30220,9 +24717,7 @@
/area/lv522/indoors/a_block/dorms)
"mbM" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"mbO" = (
/obj/structure/cargo_container/horizontal/blue/bottom{
@@ -30240,9 +24735,7 @@
"mcf" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"mco" = (
/obj/structure/machinery/space_heater/radiator/red{
@@ -30254,27 +24747,20 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"mcE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"mcG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/cargo_intake)
"mcO" = (
/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen{
@@ -30282,9 +24768,7 @@
pixel_x = 13;
pixel_y = 19
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/south_street)
"mdp" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -30297,9 +24781,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"mdD" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -30318,29 +24800,21 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/atmos/filt)
"men" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/atmos/way_in_command_centre)
"meq" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms/glass)
"mev" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/corpo)
"meK" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper C-Block - Cargo Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/bridge)
"meM" = (
/obj/item/clothing/accessory/red,
@@ -30359,10 +24833,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/hallway)
"mfF" = (
/obj/effect/decal/cleanable/dirt,
@@ -30375,18 +24846,13 @@
pixel_x = 5;
pixel_y = -6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"mfV" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"mgb" = (
/obj/structure/largecrate/random/mini{
@@ -30399,9 +24865,7 @@
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"mgB" = (
/obj/structure/surface/table/almayer,
@@ -30418,17 +24882,12 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"mhs" = (
/obj/item/prop/colony/used_flare,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/hallway)
"mhT" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -30451,30 +24910,21 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"mis" = (
/obj/effect/alien/resin/sticky,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/east_reactor/south)
"miz" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_street)
"miH" = (
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/lv522/atmos/east_reactor/south)
"miW" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"miZ" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -30485,10 +24935,7 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"mjq" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/west_reactor)
"mjs" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -30502,19 +24949,14 @@
/area/lv522/outdoors/colony_streets/south_street)
"mjC" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"mjE" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"mjF" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -30522,26 +24964,18 @@
/area/lv522/atmos/reactor_garage)
"mjR" = (
/obj/item/stack/sheet/metal,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/n_rockies)
"mjT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/lv522/indoors/a_block/admin)
"mjW" = (
/obj/structure/machinery/vending/walkman{
density = 0;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"mjY" = (
/obj/item/shard{
@@ -30550,36 +24984,26 @@
pixel_y = -8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"mkb" = (
/obj/structure/prop/server_equipment/yutani_server{
density = 0;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/east_reactor/south)
"mkd" = (
/obj/item/stack/folding_barricade,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"mkh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"mkm" = (
/obj/structure/closet/crate,
@@ -30591,9 +25015,7 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"mkJ" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"mkW" = (
/obj/structure/bed/chair{
@@ -30615,10 +25037,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/east_reactor/south)
"mlv" = (
/obj/structure/largecrate/random/secure,
@@ -30633,9 +25052,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"mlE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -30660,25 +25077,18 @@
pixel_x = 2;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"mlQ" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/belt/gun/smartgunner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"mlR" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"mlZ" = (
/obj/structure/surface/table/almayer,
@@ -30687,10 +25097,7 @@
pixel_y = 4
},
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"mmh" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -30700,18 +25107,14 @@
icon_state = "SE-out";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"mmj" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"mmv" = (
/obj/structure/machinery/light{
@@ -30719,9 +25122,7 @@
},
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"mmw" = (
/obj/structure/machinery/camera/autoname{
@@ -30730,9 +25131,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_west_street)
"mmE" = (
/obj/structure/machinery/colony_floodlight{
@@ -30741,14 +25140,10 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"mnb" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_street)
"mnr" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -30763,10 +25158,7 @@
dir = 8;
pixel_x = -11
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"mnw" = (
/obj/item/clothing/suit/storage/marine/M3S,
@@ -30776,9 +25168,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"mnz" = (
/obj/structure/platform_decoration{
@@ -30790,24 +25180,18 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/garden)
"mnN" = (
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"mnQ" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/n_rockies)
"mnU" = (
/obj/effect/decal/cleanable/dirt,
@@ -30821,9 +25205,7 @@
dir = 9
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"moe" = (
/obj/structure/stairs/perspective{
@@ -30838,10 +25220,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"moI" = (
/obj/effect/decal/cleanable/dirt,
@@ -30855,10 +25234,7 @@
pixel_x = 8;
pixel_y = 20
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"moO" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -30870,22 +25246,15 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper A-Block Shared Dorms Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"moZ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/west)
"mpr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"mpF" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -30897,25 +25266,19 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"mpI" = (
/obj/structure/prop/server_equipment/yutani_server{
density = 0;
pixel_y = 16
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"mpL" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"mpN" = (
/obj/structure/prop/vehicles/crawler{
@@ -30929,17 +25292,12 @@
dir = 1;
pixel_y = 3
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"mpU" = (
/obj/structure/surface/rack,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"mqc" = (
/obj/effect/decal/cleanable/blood,
@@ -30947,9 +25305,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"mqi" = (
/obj/structure/surface/table/almayer{
@@ -30957,10 +25313,7 @@
flipped = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"mqk" = (
/obj/structure/desertdam/decals/road_edge{
@@ -30977,26 +25330,19 @@
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"mqu" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"mqv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/admin)
"mqx" = (
/turf/open/gm/river,
@@ -31021,22 +25367,15 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"mrD" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"mrL" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"mrM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -31049,10 +25388,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/south)
"mse" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -31060,10 +25396,7 @@
/area/lv522/outdoors/colony_streets/south_west_street)
"msf" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/east_reactor)
"msj" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -31078,15 +25411,11 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"msr" = (
/obj/structure/barricade/deployable,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"msB" = (
/obj/item/reagent_container/food/snacks/stewedsoymeat{
@@ -31105,15 +25434,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/n_rockies)
"mto" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"mtt" = (
/obj/effect/decal/cleanable/vomit{
@@ -31152,9 +25477,7 @@
/area/lv522/indoors/a_block/dorms)
"muB" = (
/obj/structure/girder,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"muO" = (
/obj/structure/surface/table/almayer,
@@ -31181,15 +25504,10 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
/obj/effect/spider/spiderling/nogrow,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"muV" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"mvd" = (
/obj/structure/stairs/perspective{
@@ -31200,10 +25518,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"mvB" = (
/obj/item/prop/alien/hugger,
@@ -31211,33 +25526,23 @@
/area/lv522/indoors/a_block/security)
"mvI" = (
/obj/structure/bed/chair,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"mvP" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/landing_zone_1/ceiling)
"mvR" = (
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"mwf" = (
/obj/structure/machinery/conveyor,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/cargo_intake)
"mwh" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/cheesie,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"mwk" = (
/obj/effect/decal/warning_stripes{
@@ -31248,9 +25553,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"mwp" = (
/obj/effect/spawner/random/tool,
@@ -31269,9 +25572,7 @@
dir = 1;
name = "\improper A-Block Corporate Office Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo/glass)
"mwT" = (
/obj/structure/prop/dam/truck,
@@ -31280,9 +25581,7 @@
pixel_x = -1;
pixel_y = 16
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"mwX" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -31292,9 +25591,7 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"mxg" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/garden)
"mxo" = (
/obj/structure/surface/rack,
@@ -31302,32 +25599,22 @@
/obj/item/clothing/head/hardhat,
/obj/item/tool/pickaxe,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"mxp" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/corpsespawner/colonist/burst,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor/south)
"mxt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/indoors/c_block/cargo)
"mxz" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"mxD" = (
/obj/structure/bed/chair{
@@ -31346,25 +25633,18 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen/glass)
"myf" = (
/obj/effect/decal/cleanable/cobweb2,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"myz" = (
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/atmos/reactor_garage)
"myC" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"myE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -31381,10 +25661,7 @@
/obj/structure/machinery/atm{
pixel_y = 11
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"myQ" = (
/obj/structure/surface/table/almayer,
@@ -31392,10 +25669,7 @@
dir = 8;
pixel_y = 5
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"myV" = (
/obj/item/clothing/suit/storage/marine/light,
@@ -31411,10 +25685,7 @@
/obj/item/device/flashlight/lamp{
pixel_x = 6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"mzi" = (
/obj/structure/largecrate/random/secure,
@@ -31428,9 +25699,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"mzX" = (
/obj/structure/bed/chair{
@@ -31444,17 +25713,13 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"mAA" = (
/obj/structure/machinery/light,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/c_block/cargo)
"mAC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"mAD" = (
/obj/structure/closet/secure_closet/detective,
@@ -31494,19 +25759,14 @@
},
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"mBy" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/atmos/reactor_garage)
"mBF" = (
/turf/closed/wall/strata_outpost,
@@ -31516,20 +25776,14 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "w-y2"
- },
+/turf/open/floor/almayer/w_y2/north,
/area/lv522/atmos/way_in_command_centre)
"mCm" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness/glass)
"mCq" = (
/obj/item/storage/beer_pack,
@@ -31540,10 +25794,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/reactor_garage)
"mCA" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -31553,9 +25804,7 @@
"mCQ" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"mDw" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -31571,49 +25820,34 @@
pixel_y = 11
},
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"mDT" = (
/obj/structure/largecrate/random/mini,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"mDX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"mEg" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/filt)
"mEi" = (
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"mEp" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/reactor_garage)
"mEx" = (
/obj/item/stack/rods,
@@ -31625,16 +25859,11 @@
/area/lv522/indoors/a_block/admin)
"mEB" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"mEG" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/n_rockies)
"mFg" = (
/obj/structure/surface/table/almayer,
@@ -31643,9 +25872,7 @@
pixel_y = 14
},
/obj/item/clothing/accessory/armband/engine,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"mFm" = (
/obj/structure/surface/table/almayer,
@@ -31660,10 +25887,7 @@
},
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"mFA" = (
/obj/structure/stairs/perspective{
@@ -31677,9 +25901,7 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper C-Block - Radio Tower Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/t_comm)
"mFZ" = (
/obj/structure/barricade/handrail/strata{
@@ -31701,36 +25923,25 @@
/obj/structure/machinery/prop/almayer/computer/PC{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"mGH" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/nw_rockies)
"mGN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"mGY" = (
/obj/structure/window/framed/shiva,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"mHa" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms/glass)
"mHo" = (
/obj/structure/bed/chair/comfy{
@@ -31749,9 +25960,7 @@
/area/lv522/indoors/a_block/bridges/garden_bridge)
"mHP" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"mHU" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -31759,27 +25968,21 @@
/area/lv522/indoors/a_block/garden)
"mHZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/corpo/glass)
"mIa" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"mIq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"mIO" = (
/obj/structure/machinery/vending/coffee,
@@ -31787,9 +25990,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"mIU" = (
/obj/item/clothing/mask/facehugger{
@@ -31800,18 +26001,12 @@
stat = 2
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"mIV" = (
/obj/structure/platform_decoration,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"mJs" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -31829,10 +26024,7 @@
},
/obj/structure/platform,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"mJF" = (
/obj/structure/cargo_container/kelland/left{
@@ -31842,18 +26034,14 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"mJG" = (
/obj/structure/surface/rack,
/obj/item/device/analyzer,
/obj/effect/landmark/objective_landmark/close,
/obj/item/stack/sheet/cardboard/full_stack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"mJQ" = (
/obj/item/storage/backpack/marine/satchel{
@@ -31880,16 +26068,11 @@
"mJZ" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/suit/chef/classic,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"mKu" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2/ceiling)
"mKA" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -31897,21 +26080,15 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"mKN" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"mKQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"mKZ" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -31927,14 +26104,10 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"mLp" = (
-/turf/open/floor/coagulation{
- icon_state = "8,0"
- },
+/turf/open/floor/coagulation/icon8_0,
/area/lv522/oob)
"mLI" = (
/obj/structure/barricade/deployable{
@@ -31944,9 +26117,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"mLO" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -31979,24 +26150,17 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"mLX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/south)
"mMj" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/corpsespawner/colonist/burst,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"mMr" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/faxmachine/corporate,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"mMv" = (
/obj/structure/bed/chair/comfy{
@@ -32010,21 +26174,14 @@
/area/lv522/indoors/a_block/dorms)
"mMI" = (
/obj/structure/machinery/cm_vending/sorted/boozeomat,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"mMQ" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"mMU" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/filt)
"mMX" = (
/obj/structure/powerloader_wreckage,
@@ -32043,9 +26200,7 @@
pixel_y = 12
},
/obj/item/clothing/mask/cigarette,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"mNm" = (
/turf/open/floor/corsat,
@@ -32061,18 +26216,13 @@
pixel_x = -3;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"mNy" = (
/obj/structure/closet/bodybag,
/obj/structure/curtain/medical,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"mNz" = (
/obj/structure/barricade/deployable,
@@ -32084,10 +26234,7 @@
icon_state = "S";
pixel_y = -1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/oob/w_y_vault)
"mNR" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -32096,9 +26243,7 @@
/obj/structure/flora/bush/ausbushes/var3/ywflowers{
layer = 3
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"mNX" = (
/obj/structure/pipes/vents/pump,
@@ -32115,32 +26260,23 @@
/obj/item/device/flashlight/lamp{
pixel_x = -8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"mOh" = (
/obj/structure/machinery/space_heater/radiator/red{
pixel_y = 16
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/reactor_garage)
"mOl" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"mOs" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv522/indoors/a_block/security)
"mOy" = (
/obj/vehicle/train/cargo/trolley,
@@ -32159,9 +26295,7 @@
pixel_y = 14
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"mOI" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32177,10 +26311,7 @@
pixel_y = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"mOO" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -32200,10 +26331,7 @@
name = "remote door-control";
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"mOQ" = (
/obj/structure/surface/table/almayer,
@@ -32211,9 +26339,7 @@
dir = 8
},
/obj/structure/foamed_metal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"mPc" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32226,9 +26352,7 @@
id = "Reactor_garage_2"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"mPj" = (
/turf/closed/wall/strata_outpost,
@@ -32241,20 +26365,14 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"mPy" = (
/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"mPz" = (
-/turf/open/floor/coagulation{
- icon_state = "0,0"
- },
+/turf/open/floor/coagulation/icon0_0,
/area/lv522/oob)
"mPB" = (
/obj/effect/decal/cleanable/dirt,
@@ -32265,9 +26383,7 @@
/area/lv522/indoors/a_block/dorms/glass)
"mPL" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"mPR" = (
/obj/structure/machinery/light{
@@ -32295,18 +26411,14 @@
/obj/item/reagent_container/food/snacks/donut{
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"mQm" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras/wooden_tv{
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"mQq" = (
/obj/structure/machinery/space_heater/radiator/red{
@@ -32316,18 +26428,12 @@
/area/lv522/indoors/a_block/dorms/glass)
"mQt" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/reactor_garage)
"mQv" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/lv522/indoors/a_block/dorms)
"mQw" = (
/obj/structure/stairs/perspective{
@@ -32358,9 +26464,7 @@
},
/obj/item/reagent_container/food/snacks/sliceable/bread,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"mRh" = (
/obj/structure/stairs/perspective{
@@ -32392,9 +26496,7 @@
/area/lv522/indoors/a_block/executive)
"mSc" = (
/obj/item/tool/wet_sign,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"mSe" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -32422,21 +26524,14 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"mTd" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/west_reactor)
"mTo" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/outdoor)
"mTx" = (
/obj/structure/machinery/light{
@@ -32444,10 +26539,7 @@
},
/obj/item/cpr_dummy,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"mTE" = (
/obj/structure/platform/strata{
@@ -32492,10 +26584,7 @@
network = list("interrogation")
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"mUl" = (
/obj/structure/stairs/perspective{
@@ -32518,9 +26607,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/garden)
"mUS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32531,9 +26618,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen)
"mVi" = (
/obj/structure/platform,
@@ -32541,9 +26626,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/garden)
"mVj" = (
/obj/structure/machinery/light,
@@ -32551,10 +26634,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/op_centre)
"mVm" = (
/obj/effect/decal/cleanable/dirt,
@@ -32576,9 +26656,7 @@
dir = 1;
pixel_y = 26
},
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
+/turf/open/floor/wood/wood_broken2,
/area/lv522/indoors/b_block/bar)
"mVE" = (
/obj/structure/stairs/perspective{
@@ -32591,14 +26669,10 @@
/area/lv522/atmos/filt)
"mVH" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"mWc" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/nw_rockies)
"mWd" = (
/obj/structure/largecrate/random/secure,
@@ -32622,16 +26696,11 @@
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"mXn" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/cargo_intake)
"mXy" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -32639,16 +26708,11 @@
pixel_x = 6;
pixel_y = 7
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"mXA" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/cargo_intake)
"mYo" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -32656,10 +26720,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"mYS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32673,9 +26734,7 @@
/area/lv522/indoors/c_block/mining)
"mZj" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"mZs" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -32688,9 +26747,7 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"mZE" = (
/obj/structure/foamed_metal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"mZJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32700,9 +26757,7 @@
dir = 1;
name = "\improper Family Dormitories"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"mZK" = (
/obj/structure/surface/table/almayer,
@@ -32721,9 +26776,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"mZQ" = (
/obj/structure/barricade/deployable,
@@ -32733,9 +26786,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"mZW" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
@@ -32752,17 +26803,13 @@
/obj/structure/machinery/prop/almayer/computer/PC{
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"naw" = (
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"nax" = (
/turf/open/auto_turf/sand_white/layer0,
@@ -32777,9 +26824,7 @@
icon_state = "flammable_pipe_3";
pixel_x = -3
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/west_reactor)
"naH" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -32793,10 +26838,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/hallway)
"naS" = (
/obj/structure/machinery/landinglight/ds1/delaythree,
@@ -32810,9 +26852,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"nbj" = (
/obj/structure/platform{
@@ -32824,10 +26864,7 @@
/obj/structure/barricade/deployable{
dir = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/lv522/indoors/a_block/admin)
"nbn" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -32853,15 +26890,11 @@
pixel_y = 22
},
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"nbD" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"nbE" = (
/obj/structure/cargo_container/kelland/right,
@@ -32874,37 +26907,28 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"nbT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/cargo_intake)
"ncg" = (
/obj/structure/stairs/perspective{
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_street)
"ncp" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper B-Block Bar"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bar)
"ncv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"ncz" = (
/obj/structure/platform,
@@ -32912,9 +26936,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"ncA" = (
/obj/item/clothing/suit/storage/marine/medium,
@@ -32930,9 +26952,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/nw_rockies)
"ndb" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -32946,10 +26966,7 @@
icon_state = "medium"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"ndP" = (
/obj/structure/platform{
@@ -32966,16 +26983,12 @@
icon_state = "NW-out";
pixel_y = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_west_street)
"nee" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"nel" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -32991,27 +27004,19 @@
pixel_y = 26
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"nez" = (
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"neI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/atmos/way_in_command_centre)
"neO" = (
/obj/structure/machinery/light{
@@ -33019,9 +27024,7 @@
},
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"neX" = (
/obj/structure/bed/chair/comfy{
@@ -33029,9 +27032,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"nfe" = (
/obj/structure/window_frame/strata,
@@ -33055,9 +27056,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"nfk" = (
/obj/item/lightstick/red/spoke/planted{
@@ -33074,10 +27073,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"nfq" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -33117,7 +27113,7 @@
/obj/structure/bed/chair/dropship/passenger{
dir = 8
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"ngK" = (
/obj/structure/platform{
@@ -33126,17 +27122,13 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/garden)
"ngL" = (
/obj/structure/cargo_container/horizontal/blue/bottom{
pixel_x = 6
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"ngY" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -33162,9 +27154,7 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"nia" = (
/obj/structure/reagent_dispensers/beerkeg{
@@ -33181,9 +27171,7 @@
},
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"niu" = (
/obj/structure/platform_decoration{
@@ -33193,15 +27181,11 @@
/area/lv522/atmos/filt)
"niA" = (
/obj/structure/largecrate/random/barrel/green,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/landing_zone_1)
"niE" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"niL" = (
/obj/structure/machinery/chem_dispenser/soda{
@@ -33209,15 +27193,11 @@
pixel_y = 32
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv522/indoors/b_block/bar)
"niT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"niU" = (
/obj/structure/foamed_metal,
@@ -33228,9 +27208,7 @@
/area/lv522/atmos/cargo_intake)
"njd" = (
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_west_street)
"njm" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -33247,27 +27225,20 @@
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib3"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"njF" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor)
"njH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"njW" = (
/obj/structure/machinery/camera/autoname{
@@ -33275,10 +27246,7 @@
network = list("interrogation")
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"nkt" = (
/obj/structure/surface/table/almayer,
@@ -33286,10 +27254,7 @@
/obj/structure/machinery/prop/almayer/computer/PC{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"nku" = (
/obj/structure/prop/invuln/lattice_prop{
@@ -33301,39 +27266,27 @@
pixel_x = 4;
pixel_y = -6
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv522/indoors/a_block/admin)
"nkv" = (
/obj/item/prop/colony/used_flare,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/nw_rockies)
"nky" = (
/obj/structure/machinery/power/apc/weak,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"nkX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_street)
"nly" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"nlz" = (
/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{
@@ -33370,9 +27323,7 @@
layer = 3.1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"nlV" = (
/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{
@@ -33391,9 +27342,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_street)
"nmh" = (
/obj/structure/surface/table/reinforced/prison,
@@ -33408,19 +27357,14 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"nmB" = (
/obj/structure/surface/table/almayer{
dir = 8;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"nmK" = (
/obj/item/prop/alien/hugger,
@@ -33430,9 +27374,7 @@
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"nnj" = (
/obj/structure/barricade/handrail/strata{
@@ -33441,15 +27383,11 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"nno" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"nnv" = (
/obj/item/reagent_container/food/drinks/coffeecup/wy{
@@ -33485,9 +27423,7 @@
name = "\improper Secure Blast Door";
unacidable = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/storage_blocks)
"nnW" = (
/obj/item/weapon/twohanded/folded_metal_chair,
@@ -33496,17 +27432,13 @@
/turf/open/floor/prison,
/area/lv522/landing_zone_1/ceiling)
"noD" = (
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor/south)
"noH" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper C-Block - Casino Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/casino)
"noL" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33527,25 +27459,18 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"noV" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"npb" = (
/obj/effect/spawner/gibspawner/xeno,
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib3"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"npd" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/east_reactor)
"npp" = (
/obj/structure/girder,
@@ -33554,9 +27479,7 @@
pixel_x = 11;
pixel_y = -8
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv522/indoors/a_block/dorms)
"npx" = (
/obj/structure/filtration/machine_96x96/indestructible{
@@ -33570,9 +27493,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"npD" = (
/obj/effect/decal/warning_stripes{
@@ -33608,9 +27529,7 @@
/obj/item/bedsheet/brown{
layer = 3.1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"npT" = (
/obj/structure/surface/table/almayer,
@@ -33620,9 +27539,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"nqj" = (
/obj/structure/surface/table/gamblingtable,
@@ -33641,18 +27558,14 @@
/area/lv522/indoors/a_block/dorms)
"nqw" = (
/obj/structure/girder,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"nqy" = (
/obj/structure/machinery/camera/autoname,
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/corpo_fitness)
"nqB" = (
/obj/structure/filtration/machine_96x96/indestructible{
@@ -33663,10 +27576,7 @@
/area/lv522/oob)
"nqE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/cargo_intake)
"nqN" = (
/obj/structure/machinery/camera/autoname{
@@ -33675,16 +27585,11 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"nqQ" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"nqY" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33699,17 +27604,12 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"nrh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/outdoor)
"nri" = (
/obj/structure/platform_decoration,
@@ -33720,9 +27620,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"nru" = (
/obj/effect/decal/warning_stripes{
@@ -33737,9 +27635,7 @@
"nrA" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/metal/medium_stack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/lone_buildings/storage_blocks)
"nrJ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -33749,10 +27645,7 @@
},
/obj/item/storage/firstaid/regular,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"nrL" = (
/obj/structure/surface/table/almayer{
@@ -33762,10 +27655,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"nrP" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -33778,16 +27668,11 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/corpo/glass)
"nsd" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"nsr" = (
/obj/structure/surface/table/almayer,
@@ -33809,24 +27694,17 @@
dir = 8;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"nti" = (
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"ntk" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper C-Block - Garage Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/garage)
"ntq" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -33838,10 +27716,7 @@
/area/lv522/atmos/east_reactor/south)
"ntK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"ntL" = (
/obj/item/stack/sheet/metal,
@@ -33862,9 +27737,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"ntS" = (
/obj/effect/decal/cleanable/dirt,
@@ -33872,9 +27745,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/c_block/bridge)
"ntT" = (
/obj/effect/decal/cleanable/dirt,
@@ -33889,9 +27760,7 @@
/area/lv522/indoors/a_block/security)
"nuo" = (
/obj/structure/machinery/light,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"nuG" = (
/obj/structure/platform{
@@ -33920,10 +27789,7 @@
},
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"nuU" = (
/obj/structure/surface/table/almayer,
@@ -33931,10 +27797,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"nvd" = (
/obj/structure/girder/reinforced,
@@ -33943,9 +27806,7 @@
"nvt" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/op_centre)
"nvB" = (
/obj/structure/cargo_container/kelland/right,
@@ -33965,38 +27826,27 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"nwR" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/east_reactor/south)
"nwZ" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"nxb" = (
/obj/structure/platform_decoration,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/lv522/indoors/a_block/dorms)
"nxj" = (
/obj/structure/girder,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"nxF" = (
/obj/structure/machinery/light/small,
@@ -34011,9 +27861,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/hydro)
"nxO" = (
/obj/structure/barricade/wooden{
@@ -34024,10 +27872,7 @@
/obj/structure/machinery/vending/cola{
layer = 3.1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"nxQ" = (
/obj/structure/bed/chair/comfy{
@@ -34037,17 +27882,13 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/east_reactor/south)
"nye" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"nyv" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -34067,23 +27908,15 @@
},
/obj/structure/surface/table/almayer,
/obj/item/device/radio,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"nzt" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"nzK" = (
/obj/item/storage/backpack/marine/satchel/rto,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/oob)
"nzR" = (
/obj/item/stack/sheet/metal,
@@ -34091,9 +27924,7 @@
/area/lv522/atmos/cargo_intake)
"nzU" = (
/obj/structure/barricade/deployable,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"nzZ" = (
/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{
@@ -34114,9 +27945,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"nAC" = (
/obj/structure/stairs/perspective{
@@ -34141,16 +27970,14 @@
pixel_x = 1;
pixel_y = 4
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"nBo" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/machinery/door/airlock/almayer/generic/glass,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"nBs" = (
/obj/structure/largecrate/random/barrel/green,
@@ -34190,29 +28017,19 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/oob/w_y_vault)
"nCX" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"nCZ" = (
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"nDl" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"nDn" = (
/obj/structure/bed/chair{
@@ -34232,10 +28049,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/west_reactor)
"nDI" = (
/obj/structure/closet/crate/trashcart,
@@ -34275,9 +28089,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/east_reactor/south)
"nEq" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -34305,17 +28117,12 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"nFM" = (
/obj/effect/landmark/objective_landmark/science,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 10;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/southwest,
/area/lv522/indoors/a_block/medical)
"nFN" = (
/obj/item/tool/weldingtool{
@@ -34342,19 +28149,14 @@
/area/lv522/landing_zone_1)
"nGq" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"nGx" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/lv522/indoors/a_block/admin)
"nGB" = (
/obj/structure/cargo_container/kelland/right,
@@ -34381,32 +28183,21 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"nHg" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/atmos/way_in_command_centre)
"nHi" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"nHl" = (
/obj/structure/barricade/sandbags,
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/north_street)
"nHA" = (
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"nHF" = (
/obj/item/clothing/mask/facehugger{
@@ -34424,9 +28215,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"nIa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -34445,9 +28234,7 @@
layer = 2.9
},
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"nIJ" = (
/obj/structure/surface/rack,
@@ -34455,9 +28242,7 @@
dir = 4
},
/obj/structure/machinery/light/double,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"nJr" = (
/obj/structure/barricade/wooden{
@@ -34478,9 +28263,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"nJV" = (
/obj/structure/noticeboard,
@@ -34500,9 +28283,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"nKj" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -34514,9 +28295,7 @@
dir = 1
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"nKm" = (
/obj/structure/platform_decoration,
@@ -34544,24 +28323,17 @@
"nKS" = (
/obj/structure/closet/secure_closet/marshal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"nLe" = (
/obj/structure/machinery/vending/cola,
/obj/effect/decal/cleanable/cobweb2,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"nLi" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/soap,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"nLm" = (
/turf/closed/wall/strata_outpost,
@@ -34590,17 +28362,13 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"nLW" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"nMc" = (
/obj/structure/largecrate,
@@ -34608,10 +28376,7 @@
/area/lv522/landing_zone_1)
"nMd" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"nMl" = (
/obj/effect/decal/cleanable/dirt,
@@ -34621,18 +28386,14 @@
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
/obj/item/ammo_box/magazine/l42a,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"nMw" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/atmos/way_in_command_centre)
"nMz" = (
/obj/item/prop/alien/hugger,
@@ -34640,9 +28401,7 @@
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"nMB" = (
/obj/structure/bed/chair{
@@ -34658,18 +28417,14 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"nMT" = (
/obj/structure/machinery/colony_floodlight{
layer = 4.3;
pixel_y = 9
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/outdoors/colony_streets/north_street)
"nMX" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -34683,9 +28438,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"nNh" = (
/obj/effect/decal/cleanable/dirt,
@@ -34695,10 +28448,7 @@
/obj/structure/toilet{
pixel_y = 16
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"nNi" = (
/obj/structure/platform_decoration{
@@ -34710,28 +28460,21 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"nNA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"nNH" = (
/obj/structure/machinery/camera/autoname,
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"nNL" = (
/obj/item/ammo_magazine/rifle,
@@ -34761,9 +28504,7 @@
pixel_x = -6;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"nOg" = (
/obj/structure/platform{
@@ -34772,9 +28513,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"nOl" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -34785,9 +28524,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"nOB" = (
/obj/effect/decal/cleanable/dirt,
@@ -34796,9 +28533,7 @@
"nOI" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"nOS" = (
/obj/structure/platform_decoration{
@@ -34811,9 +28546,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"nOT" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -34823,9 +28556,7 @@
dir = 8;
name = "\improper Dormitories"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"nPb" = (
/obj/structure/platform,
@@ -34865,9 +28596,7 @@
name = "synthethic potted plant";
pixel_y = 14
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"nPL" = (
/obj/structure/stairs/perspective{
@@ -34875,10 +28604,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"nPN" = (
/turf/closed/shuttle/dropship2/tornado,
@@ -34891,9 +28617,7 @@
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/north_east_street)
"nQk" = (
/obj/structure/barricade/deployable{
@@ -34902,9 +28626,7 @@
/obj/structure/barricade/deployable{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/north_street)
"nQn" = (
/obj/item/stack/rods,
@@ -34912,10 +28634,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"nQu" = (
/turf/open/floor/plating,
@@ -34946,16 +28665,11 @@
/area/lv522/outdoors/colony_streets/north_street)
"nQM" = (
/obj/structure/cargo_container/watatsumi/leftmid,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"nQO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/reactor_garage)
"nQQ" = (
/obj/item/storage/backpack/marine/satchel{
@@ -34981,9 +28695,7 @@
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"nRs" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -35006,18 +28718,13 @@
current_rounds = 0
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"nRJ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/faxmachine,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"nRK" = (
/obj/structure/stairs/perspective{
@@ -35030,9 +28737,7 @@
"nRQ" = (
/obj/structure/window_frame/strata,
/obj/structure/curtain/red,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/t_comm)
"nRY" = (
/obj/structure/largecrate/random/secure,
@@ -35044,10 +28749,7 @@
/obj/item/trash/plate,
/obj/effect/decal/cleanable/dirt,
/obj/item/clothing/accessory/poncho,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"nSq" = (
/obj/effect/decal/cleanable/dirt,
@@ -35067,17 +28769,13 @@
pixel_y = -13
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"nSC" = (
/obj/structure/machinery/shower{
pixel_y = 16
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/fitness)
"nSF" = (
/obj/structure/barricade/deployable{
@@ -35118,10 +28816,7 @@
/turf/closed/wall/strata_outpost,
/area/lv522/indoors/a_block/bridges/dorms_fitness)
"nTx" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"nTD" = (
/obj/structure/platform,
@@ -35139,9 +28834,7 @@
/area/lv522/atmos/cargo_intake)
"nTX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/corpo)
"nUd" = (
/obj/structure/cargo_container/wy/left,
@@ -35151,10 +28844,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/filt)
"nUO" = (
/obj/structure/closet/crate/trashcart,
@@ -35162,9 +28852,7 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"nUV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"nVc" = (
/obj/structure/powerloader_wreckage,
@@ -35175,10 +28863,7 @@
density = 0;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"nVh" = (
/obj/structure/machinery/conveyor{
@@ -35192,10 +28877,7 @@
pixel_x = -9;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"nVr" = (
/obj/effect/decal/cleanable/dirt,
@@ -35218,9 +28900,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_east_street)
"nVW" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -35228,33 +28908,25 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/outdoor)
"nVX" = (
/obj/structure/barricade/deployable{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"nWl" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/cargo_intake)
"nWn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"nWp" = (
/obj/structure/surface/table/almayer,
@@ -35270,10 +28942,7 @@
pixel_x = 5;
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"nWq" = (
/obj/item/storage/backpack/marine/satchel{
@@ -35294,9 +28963,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/executive)
"nWG" = (
/obj/structure/machinery/vending/coffee{
@@ -35305,18 +28972,13 @@
pixel_y = 16
},
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"nWI" = (
/obj/effect/decal/cleanable/vomit{
icon_state = "vomit_2"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/east,
/area/lv522/indoors/a_block/medical/glass)
"nWK" = (
/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{
@@ -35326,9 +28988,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"nXi" = (
/obj/effect/decal/warning_stripes{
@@ -35339,9 +28999,7 @@
icon_state = "W"
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"nXl" = (
/obj/item/clothing/shoes/jackboots{
@@ -35352,10 +29010,7 @@
pixel_x = -5;
pixel_y = -1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"nXC" = (
/obj/item/tool/wrench,
@@ -35374,9 +29029,7 @@
pixel_y = 25
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"nXM" = (
/obj/structure/barricade/sandbags{
@@ -35386,9 +29039,7 @@
pixel_x = 13;
pixel_y = -5
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"nXO" = (
/obj/item/ammo_box/magazine/misc/flares,
@@ -35400,9 +29051,7 @@
pixel_x = 6;
pixel_y = 4
},
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"nXX" = (
/obj/effect/decal/warning_stripes{
@@ -35413,19 +29062,13 @@
/area/lv522/outdoors/colony_streets/south_street)
"nXY" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/indoors/c_block/cargo)
"nYv" = (
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/lv522/indoors/a_block/hallway)
"nYF" = (
/obj/item/weapon/twohanded/folded_metal_chair,
@@ -35449,9 +29092,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_east_street)
"nYU" = (
/obj/effect/acid_hole,
@@ -35478,23 +29119,16 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"nZF" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/cargo_intake)
"nZP" = (
/turf/open/floor/plating,
/area/lv522/landing_zone_1/tunnel/far)
"oaa" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/n_rockies)
"oaj" = (
/obj/effect/decal/warning_stripes{
@@ -35508,10 +29142,7 @@
pixel_x = 1;
pixel_y = -1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/oob/w_y_vault)
"oaq" = (
/obj/item/storage/backpack/marine/satchel{
@@ -35529,10 +29160,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"oaH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -35545,9 +29173,7 @@
/obj/structure/cargo_container/kelland/left{
layer = 2.9
},
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/south_street)
"oaN" = (
/obj/structure/cargo_container/kelland/right{
@@ -35561,10 +29187,7 @@
dir = 1
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"obe" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -35574,10 +29197,7 @@
"obt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/telecomms/bus/preset_one,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"oce" = (
/obj/item/stack/sheet/metal,
@@ -35591,10 +29211,7 @@
/area/lv522/indoors/a_block/bridges)
"ocw" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"oda" = (
/obj/structure/prop/invuln/minecart_tracks,
@@ -35618,9 +29235,7 @@
},
/obj/item/reagent_container/food/snacks/plaincakeslice,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"odt" = (
/obj/structure/window_frame/strata,
@@ -35629,9 +29244,7 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"odQ" = (
/obj/structure/machinery/light{
@@ -35642,9 +29255,7 @@
/obj/item/weapon/baseballbat/metal{
pixel_x = 5
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"odT" = (
/obj/effect/decal/cleanable/dirt,
@@ -35654,31 +29265,22 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/corpo)
"odX" = (
/obj/structure/prop/invuln/minecart_tracks,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"odZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/bridges/dorms_fitness)
"oem" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/atmos/east_reactor/south)
"oet" = (
/obj/structure/prop/dam/crane/cargo{
@@ -35698,10 +29300,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"oeL" = (
/obj/structure/bed/chair{
@@ -35721,9 +29320,7 @@
pixel_y = 6
},
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"oeN" = (
/obj/structure/stairs/perspective{
@@ -35740,10 +29337,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"oeU" = (
/obj/structure/bed/chair/comfy{
@@ -35760,9 +29354,7 @@
/area/lv522/outdoors/n_rockies)
"ofd" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges)
"ofi" = (
/turf/open/auto_turf/shale/layer1,
@@ -35776,10 +29368,7 @@
/area/lv522/outdoors/colony_streets/central_streets)
"ofS" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"ofX" = (
/obj/structure/surface/table/almayer,
@@ -35798,22 +29387,16 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"oga" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"ogf" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/security)
"ogA" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -35842,9 +29425,7 @@
},
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"ogK" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -35854,15 +29435,11 @@
icon_state = "fernybush_2";
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"ogT" = (
/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"ogX" = (
/obj/structure/platform{
@@ -35873,31 +29450,21 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"ogZ" = (
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"oht" = (
/obj/effect/decal/cleanable/blood/xeno,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"ohw" = (
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"ohL" = (
/obj/effect/decal/cleanable/dirt,
@@ -35905,17 +29472,12 @@
dir = 1;
pixel_y = 26
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"ohP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"ohX" = (
/obj/structure/prop/invuln/lattice_prop{
@@ -35923,9 +29485,7 @@
pixel_x = 9;
pixel_y = 3
},
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv522/indoors/a_block/kitchen/damage)
"oig" = (
/obj/structure/barricade/wooden{
@@ -35967,9 +29527,7 @@
pixel_x = 10;
pixel_y = 13
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/indoors/c_block/mining)
"oiP" = (
/obj/structure/platform_decoration{
@@ -35983,24 +29541,17 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"oiW" = (
/obj/structure/foamed_metal,
/turf/open/floor/plating,
/area/lv522/atmos/cargo_intake)
"oiY" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/landing_zone_1)
"oiZ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"ojb" = (
/obj/structure/coatrack{
@@ -36010,16 +29561,11 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"ojn" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"ojp" = (
/turf/closed/wall/strata_outpost,
@@ -36035,9 +29581,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"ojx" = (
/obj/item/prop/alien/hugger,
@@ -36045,9 +29589,7 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"ojy" = (
/obj/structure/closet/crate/trashcart{
@@ -36060,16 +29602,12 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper C-Block - Cargo Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/bridge)
"ojW" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"okA" = (
/obj/structure/surface/rack,
@@ -36086,10 +29624,7 @@
pixel_y = 29
},
/obj/structure/machinery/iv_drip,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"ols" = (
/obj/structure/bed/chair/comfy{
@@ -36097,17 +29632,12 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"olz" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"olI" = (
/obj/item/prop/colony/usedbandage{
@@ -36116,10 +29646,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/a_block/admin)
"oml" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"omG" = (
/obj/structure/surface/table/almayer,
@@ -36131,10 +29658,7 @@
pixel_x = 9;
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"omT" = (
/obj/structure/sign/safety/radio_rad{
@@ -36153,25 +29677,18 @@
/area/lv522/indoors/c_block/garage)
"onj" = (
/obj/structure/platform,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"onM" = (
/obj/structure/barricade/deployable{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/atmos/way_in_command_centre)
"onT" = (
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"onX" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -36187,15 +29704,10 @@
name = "\improper Generator Room";
welded = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/engineering)
"oot" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"oox" = (
/obj/structure/stairs/perspective{
@@ -36209,9 +29721,7 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges)
"opl" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -36243,10 +29753,7 @@
},
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"opO" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -36266,9 +29773,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"oqp" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -36288,10 +29793,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/outdoors/colony_streets/central_streets)
"oqD" = (
/obj/structure/coatrack{
@@ -36312,9 +29814,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"oqQ" = (
/obj/structure/fence,
@@ -36325,9 +29825,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"ora" = (
/obj/structure/flora/pottedplant{
@@ -36344,7 +29842,7 @@
/obj/structure/barricade/deployable{
dir = 4
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"orm" = (
/obj/structure/platform/strata{
@@ -36354,16 +29852,11 @@
/area/lv522/oob)
"ort" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"ory" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/hallway)
"orA" = (
/obj/structure/platform_decoration{
@@ -36381,10 +29874,7 @@
dir = 8;
pixel_y = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"orP" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -36398,10 +29888,7 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"orS" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"orU" = (
/obj/structure/machinery/landinglight/ds1/delayone{
@@ -36421,64 +29908,45 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"osE" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper A-Block Corporate Office Airlock";
req_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo/glass)
"osN" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_west_street)
"osU" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"osV" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"ote" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/north_command_centre)
"otj" = (
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges)
"otq" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/medical)
"otx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"otH" = (
/obj/structure/surface/table/almayer,
@@ -36486,48 +29954,33 @@
desc = "A fallen marine's information dog tag. It reads, Sergeant Robert 'Boab' Macdonald"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"otM" = (
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"otQ" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"otS" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_east_street)
"otT" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"otY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical/glass)
"oud" = (
/obj/structure/platform{
@@ -36551,9 +30004,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"ouG" = (
/obj/structure/barricade/deployable{
@@ -36570,9 +30021,7 @@
/area/lv522/indoors/a_block/kitchen)
"ouI" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"ouO" = (
/obj/structure/reagent_dispensers/fueltank{
@@ -36605,9 +30054,7 @@
icon_state = "W"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"ovT" = (
/obj/structure/stairs/perspective{
@@ -36621,9 +30068,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_street)
"owg" = (
/obj/effect/decal/cleanable/dirt,
@@ -36638,14 +30083,10 @@
unacidable = 1
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/oob)
"owQ" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/garage)
"owX" = (
/obj/structure/machinery/light{
@@ -36677,18 +30118,13 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/outdoors/colony_streets/north_street)
"oxH" = (
/obj/structure/barricade/handrail/strata{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"oxT" = (
/obj/structure/platform{
@@ -36698,9 +30134,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"oyf" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
@@ -36715,40 +30149,28 @@
/turf/open/floor/prison,
/area/lv522/indoors/a_block/hallway)
"oyB" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/hallway)
"oyC" = (
/obj/structure/machinery/camera/autoname,
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"oyK" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"oyM" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"oyN" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"oyY" = (
/obj/structure/largecrate,
@@ -36759,10 +30181,7 @@
icon_state = "lattice3";
pixel_x = -5
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/hallway)
"ozn" = (
/turf/open/floor/prison,
@@ -36772,16 +30191,11 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"ozw" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"ozF" = (
/obj/item/shard{
@@ -36793,9 +30207,7 @@
"ozJ" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"ozQ" = (
/obj/structure/stairs/perspective{
@@ -36805,16 +30217,11 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"ozR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/hallway)
"oAd" = (
/obj/structure/surface/table/almayer,
@@ -36824,10 +30231,7 @@
"oAp" = (
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"oAu" = (
/obj/structure/platform{
@@ -36848,9 +30252,7 @@
pixel_y = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"oAY" = (
/obj/effect/decal/cleanable/dirt,
@@ -36867,9 +30269,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"oBf" = (
/obj/structure/bed/chair/wheelchair,
@@ -36901,9 +30301,7 @@
pixel_x = -1;
pixel_y = 5
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"oCn" = (
/obj/structure/blocker/invisible_wall,
@@ -36919,9 +30317,7 @@
/obj/item/tank/emergency_oxygen/double,
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"oCt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -36934,55 +30330,39 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/strata{
- icon_state = "white_cyan4"
- },
+/turf/open/floor/strata/white_cyan4,
/area/lv522/indoors/a_block/medical)
"oDj" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"oDu" = (
/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"oDU" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"oDZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"oEc" = (
/obj/structure/largecrate/random/secure,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2/ceiling)
"oEw" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/north_command_centre)
"oFr" = (
/obj/structure/machinery/light{
@@ -37000,10 +30380,7 @@
dir = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"oFG" = (
/obj/item/reagent_container/food/drinks/drinkingglass{
@@ -37019,31 +30396,22 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges)
"oFU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"oGl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/liquid_fuel,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/lv522/indoors/a_block/kitchen/damage)
"oGp" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/security)
"oGE" = (
/obj/item/prop/alien/hugger,
@@ -37063,18 +30431,14 @@
pixel_x = 7;
pixel_y = -7
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"oGY" = (
/obj/structure/machinery/space_heater/radiator/red{
dir = 1;
pixel_y = 26
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"oGZ" = (
/obj/item/stack/sheet/wood,
@@ -37087,9 +30451,7 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"oHl" = (
/obj/structure/filingcabinet{
@@ -37106,9 +30468,7 @@
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"oHB" = (
/obj/structure/machinery/optable{
@@ -37116,16 +30476,10 @@
pixel_x = 16;
pixel_y = -6
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical)
"oHQ" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/admin)
"oHR" = (
/obj/structure/transmitter/colony_net{
@@ -37135,27 +30489,19 @@
phone_id = "Colony Security";
pixel_x = -16
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"oHW" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/metal/large_stack,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"oIr" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms/glass)
"oIu" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_street)
"oIE" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -37164,15 +30510,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"oIP" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"oJj" = (
/obj/effect/decal/cleanable/dirt,
@@ -37206,9 +30548,7 @@
pixel_x = 4;
pixel_y = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"oJQ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -37218,9 +30558,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"oJS" = (
/turf/closed/wall/mineral/bone_resin,
@@ -37253,9 +30591,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"oKG" = (
/obj/structure/platform,
@@ -37274,15 +30610,10 @@
},
/obj/effect/decal/cleanable/blood/drip,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"oKK" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/atmos/east_reactor/south)
"oKN" = (
/obj/structure/transmitter/colony_net{
@@ -37291,24 +30622,17 @@
phone_id = "Reactor Central Office";
pixel_y = 26
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"oKP" = (
/obj/structure/machinery/autolathe,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"oKQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spider/spiderling/nogrow,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"oLa" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -37330,10 +30654,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/outdoors/colony_streets/east_central_street)
"oLo" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -37352,10 +30673,7 @@
"oLu" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"oLz" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -37366,29 +30684,20 @@
pixel_x = 6;
pixel_y = -1
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"oLG" = (
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical)
"oLK" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/reactor_garage)
"oLW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"oMi" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -37401,9 +30710,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/op_centre)
"oMo" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -37422,14 +30729,10 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"oML" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/north_command_centre)
"oMX" = (
/obj/item/storage/belt/grenade,
@@ -37443,10 +30746,7 @@
dir = 1;
pixel_y = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"oNe" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -37465,20 +30765,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/storage/firstaid/adv/empty,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"oNM" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"oNQ" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"oOe" = (
/obj/effect/decal/cleanable/dirt,
@@ -37490,9 +30784,7 @@
name = "Emergency Lockdown"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/storage_blocks)
"oOD" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -37519,9 +30811,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"oPu" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -37532,39 +30822,27 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bar)
"oPR" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"oPW" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"oQs" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/cargo_intake)
"oQt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/athletic_mixed,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"oQC" = (
/obj/structure/platform_decoration,
@@ -37579,15 +30857,11 @@
dir = 8
},
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"oRr" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"oRt" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -37596,15 +30870,10 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
/obj/structure/machinery/space_heater/radiator/red,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"oRG" = (
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan4"
- },
+/turf/open/floor/strata/white_cyan4/west,
/area/lv522/indoors/a_block/medical/glass)
"oRS" = (
/obj/structure/surface/table/almayer,
@@ -37612,10 +30881,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"oRU" = (
/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{
@@ -37645,16 +30911,12 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/south_street)
"oSH" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/bridges)
"oSX" = (
/obj/structure/blocker/forcefield/vehicles,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"oTc" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -37669,22 +30931,16 @@
/area/lv522/indoors/a_block/bridges/dorms_fitness)
"oTd" = (
/obj/structure/cargo_container/ferret/mid,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"oTg" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"oTl" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/cobweb2/dynamic,
/obj/item/stack/sheet/metal/medium_stack,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"oTp" = (
/obj/structure/surface/table/almayer,
@@ -37713,30 +30969,21 @@
"oTG" = (
/obj/structure/largecrate/random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"oTI" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/hydro)
"oTJ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"oTL" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"oTX" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -37751,9 +30998,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"oUq" = (
/turf/closed/wall/strata_outpost/reinforced,
@@ -37764,22 +31009,16 @@
pixel_x = -1;
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"oUZ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"oVb" = (
/obj/vehicle/train/cargo/trolley,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"oVk" = (
/obj/structure/largecrate/random{
@@ -37796,9 +31035,7 @@
"oVA" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/reagent_container/food/drinks/coffee,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/lone_buildings/chunk)
"oVD" = (
/obj/structure/pipes/vents/pump,
@@ -37812,10 +31049,7 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"oVL" = (
/obj/structure/surface/table/reinforced/prison,
@@ -37828,9 +31062,7 @@
pixel_y = 17
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"oVO" = (
/obj/structure/fence{
@@ -37844,30 +31076,21 @@
icon_state = "S"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/outdoors/colony_streets/north_street)
"oVS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"oWq" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"oWy" = (
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"oWK" = (
/obj/structure/machinery/door/airlock/almayer/maint,
@@ -37877,24 +31100,18 @@
name = "High Pressure Door";
unacidable = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/tunnel)
"oWS" = (
/obj/item/prop/colony/used_flare,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"oWV" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges)
"oXa" = (
/obj/item/shard{
@@ -37904,17 +31121,12 @@
/area/lv522/indoors/a_block/kitchen/glass)
"oXd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"oXk" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/atmos/reactor_garage)
"oXp" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -37924,19 +31136,14 @@
/area/lv522/outdoors/colony_streets/central_streets)
"oXB" = (
/obj/item/trash/uscm_mre,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/lv522/indoors/a_block/admin)
"oXF" = (
/obj/effect/spawner/gibspawner/xeno,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges)
"oXQ" = (
/obj/structure/machinery/light{
@@ -37959,9 +31166,7 @@
id = "East_Lock";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"oXZ" = (
/obj/structure/cargo_container/kelland/left,
@@ -37981,9 +31186,7 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"oYO" = (
/obj/structure/platform{
@@ -37997,17 +31200,12 @@
/area/lv522/landing_zone_2)
"oYZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/op_centre)
"oZC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"oZN" = (
/obj/structure/platform,
@@ -38032,15 +31230,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"paK" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"paT" = (
/obj/structure/cargo_container/kelland/right,
@@ -38062,10 +31256,7 @@
/area/lv522/indoors/a_block/hallway)
"pbO" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"pco" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -38083,17 +31274,11 @@
pixel_y = 16
},
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"pcz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"pcH" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -38104,10 +31289,7 @@
dir = 5;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"pcQ" = (
/obj/effect/decal/cleanable/blood,
@@ -38145,9 +31327,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/hydro)
"pdr" = (
/obj/structure/curtain/red,
@@ -38159,9 +31339,7 @@
name = "????";
stat = 2
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"pdv" = (
/obj/structure/platform_decoration{
@@ -38173,18 +31351,14 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"pdB" = (
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"pdF" = (
/obj/effect/decal/cleanable/dirt,
@@ -38192,9 +31366,7 @@
dir = 1
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"pdO" = (
/obj/structure/pipes/vents/pump,
@@ -38202,10 +31374,7 @@
/obj/structure/machinery/shower{
pixel_y = 16
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"pdR" = (
/obj/effect/landmark/objective_landmark/close,
@@ -38232,10 +31401,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/way_in_command_centre)
"pez" = (
/obj/structure/cargo_container/horizontal/blue/top,
@@ -38253,10 +31419,7 @@
flipped = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"pfe" = (
/obj/structure/bed/chair{
@@ -38278,15 +31441,10 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"pfj" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/east_reactor/south)
"pfq" = (
/obj/structure/machinery/camera/autoname{
@@ -38294,10 +31452,7 @@
network = list("interrogation")
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"pfv" = (
/obj/structure/surface/table/almayer,
@@ -38316,14 +31471,10 @@
pixel_x = -4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"pfD" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/b_block/bridge)
"pfE" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -38332,10 +31483,7 @@
flipped = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"pfN" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -38348,16 +31496,12 @@
dir = 4;
id = "Reactor_e_entry_3"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"pfV" = (
/obj/item/prop/alien/hugger,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"pfX" = (
/obj/effect/landmark/survivor_spawner,
@@ -38367,10 +31511,7 @@
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"pgm" = (
/obj/item/lightstick/red/spoke/planted{
@@ -38384,10 +31525,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"pgp" = (
/obj/structure/platform{
@@ -38396,9 +31534,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"pgs" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -38406,22 +31542,16 @@
dir = 1
},
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/lv522/indoors/a_block/dorms)
"pgt" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"pgy" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/west_reactor)
"pgG" = (
/obj/structure/platform_decoration{
@@ -38434,9 +31564,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"pha" = (
/obj/structure/bed/chair{
@@ -38458,25 +31586,18 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"phn" = (
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/b_block/hydro)
"phq" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"phu" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"phZ" = (
/obj/structure/surface/table/almayer,
@@ -38510,9 +31631,7 @@
pixel_y = 7
},
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/east_reactor/south)
"piY" = (
/obj/structure/platform{
@@ -38534,10 +31653,7 @@
/area/lv522/outdoors/n_rockies)
"pjM" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"pjT" = (
/obj/structure/surface/table/almayer,
@@ -38564,15 +31680,11 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"pka" = (
/obj/structure/platform_decoration,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"pkB" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -38585,9 +31697,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/reactor_garage)
"plb" = (
/obj/structure/machinery/door_display/research_cell{
@@ -38596,10 +31706,7 @@
pixel_x = -16;
req_access = null
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/filt)
"pli" = (
/obj/effect/decal/cleanable/dirt,
@@ -38612,36 +31719,26 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/east_central_street)
"pme" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"pmg" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"png" = (
/obj/structure/cargo_container/wy/mid{
health = 5000
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"pni" = (
/obj/item/weapon/gun/revolver/cmb,
@@ -38649,22 +31746,14 @@
/area/lv522/indoors/a_block/kitchen/glass)
"pnj" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"pnx" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness)
"pnz" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/lv522/indoors/a_block/hallway)
"pnE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38688,9 +31777,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"poQ" = (
/obj/effect/decal/cleanable/dirt,
@@ -38710,9 +31797,7 @@
dir = 1;
flipped = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"ppD" = (
/obj/effect/decal/warning_stripes{
@@ -38741,38 +31826,28 @@
dir = 1;
req_one_access_txt = "100"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"ppX" = (
/obj/item/prop/colony/used_flare,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"pqj" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/spacecash/c1000,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"pqA" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"pqB" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/newspaper,
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"pqI" = (
/obj/structure/surface/table/reinforced/prison,
@@ -38788,10 +31863,7 @@
pixel_y = 15
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"pqQ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -38804,9 +31876,7 @@
/turf/open/asphalt/cement,
/area/lv522/outdoors/colony_streets/south_street)
"pqU" = (
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/hallway)
"pqZ" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -38846,9 +31916,7 @@
current_rounds = 4
},
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"prW" = (
/obj/structure/surface/table/almayer,
@@ -38883,10 +31951,7 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"psq" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/filt)
"psF" = (
/obj/effect/decal/cleanable/dirt,
@@ -38902,30 +31967,21 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/south_east_street)
"psT" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"ptc" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/filt)
"ptp" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"ptU" = (
/obj/structure/machinery/light,
/obj/structure/machinery/disposal,
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"pul" = (
/obj/item/ammo_magazine/pistol/m1911{
@@ -38933,33 +31989,22 @@
pixel_y = 12
},
/obj/structure/platform,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"puu" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/west,
/area/lv522/indoors/a_block/medical/glass)
"puC" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"puJ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"puV" = (
/obj/structure/cargo_container/kelland/right,
@@ -38975,9 +32020,7 @@
"pvz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"pvW" = (
/obj/item/lightstick/red/spoke/planted{
@@ -38994,10 +32037,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"pwu" = (
/obj/structure/platform_decoration{
@@ -39015,9 +32055,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"pwB" = (
/obj/effect/decal/warning_stripes{
@@ -39025,9 +32063,7 @@
pixel_x = -1;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"pwC" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
@@ -39045,19 +32081,14 @@
/area/lv522/landing_zone_1/tunnel/far)
"pwJ" = (
/obj/structure/prop/dam/crane/damaged,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/indoors/lone_buildings/storage_blocks)
"pwR" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/weldpack{
pixel_y = 2
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"pwT" = (
/obj/effect/decal/cleanable/dirt,
@@ -39068,10 +32099,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"pwX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
@@ -39086,15 +32114,11 @@
/area/lv522/outdoors/colony_streets/central_streets)
"pxN" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/east_reactor/south)
"pxS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"pxY" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -39103,19 +32127,14 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"pyc" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/way_in_command_centre)
"pyo" = (
/obj/structure/machinery/conveyor{
dir = 10;
id = "cargo_container"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"pys" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -39124,10 +32143,7 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"pyA" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"pyO" = (
/obj/structure/prop/invuln/fire{
@@ -39180,9 +32196,7 @@
pixel_x = -8;
pixel_y = 15
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"pzo" = (
/obj/item/weapon/twohanded/folded_metal_chair,
@@ -39191,16 +32205,11 @@
"pzs" = (
/obj/structure/barricade/wooden,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"pzH" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"pAd" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -39208,9 +32217,7 @@
},
/area/lv522/landing_zone_forecon/UD6_Tornado)
"pAj" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/south_west_street)
"pAp" = (
/obj/structure/largecrate,
@@ -39221,10 +32228,7 @@
/turf/open/floor/corsat,
/area/lv522/atmos/east_reactor/south)
"pAN" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/east_reactor/south)
"pAW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -39237,30 +32241,23 @@
/obj/structure/machinery/cm_vending/sorted/medical/blood,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"pBn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/secure_closet/miner,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"pBz" = (
/obj/structure/machinery/door/airlock/hatch/cockpit/two,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"pBF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"pBK" = (
/obj/structure/surface/table/gamblingtable,
@@ -39279,15 +32276,10 @@
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"pBT" = (
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southeast,
/area/lv522/indoors/a_block/dorms)
"pCb" = (
/obj/structure/filingcabinet/seeds{
@@ -39303,10 +32295,7 @@
/obj/structure/pipes/vents/pump,
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"pCg" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -39334,9 +32323,7 @@
dir = 5;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/central_streets)
"pCv" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -39350,10 +32337,7 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"pCP" = (
/obj/item/tool/hatchet,
@@ -39371,58 +32355,40 @@
/obj/item/ammo_magazine/smg/nailgun{
current_rounds = 0
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"pCW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"pCZ" = (
/obj/structure/machinery/vending/cola,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"pDe" = (
/obj/structure/machinery/squeezer,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"pDh" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"pDA" = (
/obj/structure/machinery/light,
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"pDM" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/east_reactor/south)
"pDU" = (
/obj/structure/barricade/wooden{
@@ -39445,24 +32411,18 @@
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"pEk" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"pEm" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"pEp" = (
/obj/structure/surface/table/almayer,
@@ -39470,9 +32430,7 @@
dir = 8;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/east_reactor/south)
"pEs" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -39482,26 +32440,19 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"pEv" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 4;
id = "Reactor_e_entry_4"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"pEw" = (
/obj/structure/blocker/forcefield/vehicles,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/command_centre)
"pEA" = (
/obj/item/lightstick/red/spoke/planted{
@@ -39536,9 +32487,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/garden)
"pFH" = (
/obj/structure/stairs/perspective{
@@ -39550,9 +32499,7 @@
"pFQ" = (
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"pGe" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -39562,9 +32509,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"pGg" = (
/obj/structure/bed/chair{
@@ -39604,9 +32549,7 @@
pixel_x = -9;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"pGQ" = (
/obj/item/prop/alien/hugger,
@@ -39643,9 +32586,7 @@
"pIa" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/bridges/dorms_fitness)
"pIu" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -39654,26 +32595,19 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"pIx" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"pJb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper A-Block Fitness Centre Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness)
"pJd" = (
/obj/effect/decal/cleanable/cobweb2,
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"pJh" = (
/obj/structure/surface/table/almayer{
@@ -39683,17 +32617,11 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"pJj" = (
/obj/structure/closet/crate/hydroponics/prespawned,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"pJt" = (
/obj/structure/largecrate/random/mini{
@@ -39709,26 +32637,19 @@
pixel_x = -6;
pixel_y = 4
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/op_centre)
"pJG" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"pJV" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"pJW" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -39749,10 +32670,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/op_centre)
"pKo" = (
/obj/effect/decal/cleanable/dirt,
@@ -39763,19 +32681,14 @@
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"pKv" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 4;
id = "Reactor_e_entry_3"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"pKX" = (
/turf/closed/wall/strata_outpost,
@@ -39809,9 +32722,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"pLT" = (
/obj/item/reagent_container/glass/bucket/janibucket{
@@ -39824,15 +32735,11 @@
/area/lv522/indoors/a_block/security)
"pMd" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"pMg" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"pMs" = (
/obj/structure/surface/table/gamblingtable,
@@ -39868,18 +32775,14 @@
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/tunnel)
"pNc" = (
/obj/structure/prop/server_equipment/yutani_server/broken,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"pNf" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -39889,16 +32792,12 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/a_block/dorms)
"pNo" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/filt)
"pNq" = (
/obj/structure/window/framed/strata/reinforced,
/obj/structure/curtain/medical,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/medical)
"pNs" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -39908,16 +32807,12 @@
/area/lv522/indoors/a_block/kitchen)
"pNv" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/cargo_intake)
"pNF" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/reactor_garage)
"pNJ" = (
/obj/structure/stairs/perspective{
@@ -39928,10 +32823,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"pNY" = (
/obj/effect/decal/cleanable/dirt,
@@ -39939,9 +32831,7 @@
/area/lv522/indoors/c_block/t_comm)
"pOa" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/outdoors/colony_streets/east_central_street)
"pOb" = (
/obj/item/prop/colony/used_flare,
@@ -39963,9 +32853,7 @@
pixel_x = 4;
pixel_y = 21
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_east_street)
"pOs" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -39987,9 +32875,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"pOK" = (
/obj/structure/platform/strata{
@@ -40011,16 +32897,11 @@
pixel_x = 7;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"pPm" = (
/obj/structure/largecrate,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"pPt" = (
/obj/structure/largecrate/random,
@@ -40037,9 +32918,7 @@
/obj/item/weapon/gun/rifle/m41a{
current_mag = null
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"pPC" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -40050,10 +32929,7 @@
},
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"pQq" = (
/obj/effect/decal/cleanable/dirt,
@@ -40062,9 +32938,7 @@
/area/lv522/landing_zone_1/tunnel/far)
"pQx" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"pQA" = (
/obj/item/prop/alien/hugger,
@@ -40080,10 +32954,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"pQN" = (
/obj/item/cell/apc{
@@ -40094,37 +32965,27 @@
pixel_y = -2
},
/obj/structure/surface/table/almayer,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"pQQ" = (
/obj/structure/prop/ice_colony/dense/planter_box{
dir = 9
},
/obj/structure/flora/bush/ausbushes/ppflowers,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"pQR" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor)
"pRf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/cargo_intake)
"pRg" = (
/obj/structure/machinery/camera/autoname/lz_camera,
@@ -40136,10 +32997,7 @@
"pRi" = (
/obj/structure/machinery/seed_extractor,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"pRv" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -40165,15 +33023,10 @@
"pRR" = (
/obj/effect/spawner/gibspawner/xeno,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/security)
"pRT" = (
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/cargo_intake)
"pSs" = (
/obj/structure/machinery/light{
@@ -40183,46 +33036,32 @@
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"pSK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "w-y1"
- },
+/turf/open/floor/almayer/w_y1/north,
/area/lv522/atmos/way_in_command_centre)
"pTa" = (
/obj/structure/prop/vehicles/crawler{
layer = 3.1
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/central_streets)
"pTj" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"pTl" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/op_centre)
"pTB" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/plate,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"pTO" = (
/obj/effect/decal/cleanable/dirt,
@@ -40251,9 +33090,7 @@
pixel_y = 13
},
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"pTW" = (
/obj/item/explosive/mine/active{
@@ -40273,15 +33110,11 @@
"pUd" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"pUf" = (
/obj/structure/tent/big,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"pUo" = (
/obj/structure/pipes/vents/pump,
@@ -40289,9 +33122,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/casino)
"pUv" = (
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/central_streets)
"pUR" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -40302,9 +33133,7 @@
/area/lv522/outdoors/w_rockies)
"pVb" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"pVn" = (
/obj/structure/platform_decoration,
@@ -40329,16 +33158,10 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"pVx" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"pVy" = (
/obj/structure/closet/crate,
@@ -40346,9 +33169,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"pVA" = (
/obj/structure/bed/chair{
@@ -40361,10 +33182,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/way_in_command_centre)
"pVX" = (
/obj/structure/machinery/light{
@@ -40375,17 +33193,12 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"pWk" = (
/obj/structure/surface/table/almayer,
/obj/item/ammo_box/magazine/shotgun,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"pWx" = (
/obj/structure/machinery/power/apc/weak{
@@ -40395,9 +33208,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"pWR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -40410,17 +33221,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"pWX" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"pXh" = (
/obj/effect/decal/cleanable/dirt,
@@ -40431,28 +33236,20 @@
icon_state = "N";
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"pXk" = (
/obj/structure/machinery/power/monitor{
name = "Main Power Grid Monitoring"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"pXq" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"pXu" = (
/obj/structure/cargo_container/kelland/right,
@@ -40466,10 +33263,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/strata{
- dir = 1;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/north,
/area/lv522/indoors/a_block/medical)
"pXz" = (
/obj/structure/platform{
@@ -40481,10 +33275,7 @@
/obj/structure/flora/bush/ausbushes/grassybush{
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"pXR" = (
/obj/structure/barricade/sandbags,
@@ -40499,10 +33290,7 @@
dir = 8
},
/obj/vehicle/train/cargo/engine,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"pYj" = (
/obj/effect/decal/cleanable/dirt,
@@ -40518,10 +33306,7 @@
"pYG" = (
/obj/effect/decal/cleanable/blood/gibs/xeno,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"pYN" = (
/obj/structure/platform_decoration{
@@ -40537,17 +33322,12 @@
/turf/open/floor/plating,
/area/lv522/indoors/c_block/mining)
"pYP" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/oob)
"pYY" = (
/obj/vehicle/train/cargo/trolley,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"pZb" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -40556,9 +33336,7 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"pZi" = (
/obj/structure/prop/invuln/ice_prefab,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"pZo" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -40577,9 +33355,7 @@
name = "\improper UA Prepared Meal (cornbread)";
pixel_y = 9
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"pZA" = (
/obj/item/storage/secure/safe{
@@ -40608,16 +33384,12 @@
pixel_x = 8;
pixel_y = 3
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"qal" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qaT" = (
/obj/structure/stairs/perspective{
@@ -40635,15 +33407,11 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_street)
"qbu" = (
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/north_street)
"qbB" = (
/obj/effect/decal/cleanable/dirt,
@@ -40653,17 +33421,13 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"qbD" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/north_east_street)
"qbG" = (
/obj/effect/decal{
@@ -40699,7 +33463,7 @@
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"qbW" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -40723,10 +33487,7 @@
/area/lv522/outdoors/colony_streets/central_streets)
"qcd" = (
/obj/item/tool/wirecutters,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"qce" = (
/obj/structure/pipes/vents/pump,
@@ -40743,39 +33504,28 @@
pixel_x = -7;
pixel_y = 7
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"qcw" = (
/obj/effect/spawner/gibspawner/human,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"qcy" = (
/obj/effect/spawner/gibspawner/xeno,
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/a_block/dorms)
"qcA" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"qcO" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"qda" = (
/obj/structure/largecrate/random/barrel/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"qdc" = (
/obj/structure/desertdam/decals/road_edge{
@@ -40794,9 +33544,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_west_street)
"qdS" = (
/obj/structure/bed/sofa/south/grey/left,
@@ -40808,23 +33556,17 @@
layer = 2.6
},
/obj/structure/machinery/door/airlock/multi_tile/elevator/freight,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/indoors/c_block/mining)
"qeJ" = (
/obj/structure/prop/vehicles/crawler,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"qeK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qfm" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -40850,16 +33592,11 @@
/area/lv522/indoors/a_block/dorms/glass)
"qfz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"qfD" = (
/obj/structure/window/reinforced,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"qfK" = (
/obj/structure/machinery/light{
@@ -40882,9 +33619,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen)
"qgj" = (
/obj/structure/barricade/wooden{
@@ -40910,9 +33645,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/lone_buildings/chunk)
"qhO" = (
/obj/structure/bed/chair/comfy{
@@ -40936,10 +33669,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 1;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/north,
/area/lv522/indoors/a_block/medical)
"qiw" = (
/obj/effect/decal/cleanable/dirt,
@@ -40950,17 +33680,12 @@
},
/obj/structure/machinery/light,
/obj/structure/machinery/recharger,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"qix" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"qiC" = (
/obj/structure/machinery/camera/autoname{
@@ -40969,24 +33694,18 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges)
"qiG" = (
/obj/structure/window/framed/strata/reinforced,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorm_north)
"qiJ" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qiN" = (
/obj/effect/decal/cleanable/dirt,
@@ -40996,18 +33715,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"qjq" = (
/obj/structure/machinery/portable_atmospherics/hydroponics{
icon_state = "hydrotray4"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"qjr" = (
/obj/item/prop/alien/hugger,
@@ -41027,9 +33741,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv522/indoors/a_block/dorms)
"qjC" = (
/obj/item/stack/rods,
@@ -41042,9 +33754,7 @@
/obj/structure/prop/vehicles/crawler{
icon_state = "crawler_crate"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_street)
"qjO" = (
/obj/effect/decal/warning_stripes{
@@ -41069,9 +33779,7 @@
"qlr" = (
/obj/item/trash/barcardine,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/hallway)
"qly" = (
/obj/structure/surface/table/almayer,
@@ -41116,18 +33824,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"qmp" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger{
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qmr" = (
/obj/structure/surface/table/almayer,
@@ -41136,10 +33840,7 @@
pixel_y = 15
},
/obj/item/trash/plate,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"qmA" = (
/turf/open/floor/plating,
@@ -41153,9 +33854,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/cargo_intake)
"qmM" = (
/obj/structure/prop/invuln/fire{
@@ -41195,10 +33894,7 @@
/obj/item/clothing/head/headset{
pixel_x = 4
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"qnn" = (
/obj/structure/surface/table/almayer,
@@ -41210,9 +33906,7 @@
pixel_x = -7;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"qnG" = (
/obj/structure/surface/table/almayer,
@@ -41228,9 +33922,7 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"qnM" = (
/obj/effect/decal/cleanable/dirt,
@@ -41247,33 +33939,24 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"qnU" = (
/obj/structure/closet/firecloset/full,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"qnY" = (
/obj/structure/surface/table/almayer,
/obj/item/prop/alien/hugger,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qoj" = (
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"qot" = (
/obj/structure/surface/table/almayer,
@@ -41285,16 +33968,10 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/north_east_street)
"qpc" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/indoors/lone_buildings/storage_blocks)
"qpd" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/north,
/area/lv522/atmos/sewer)
"qpq" = (
/obj/structure/surface/table/almayer,
@@ -41313,9 +33990,7 @@
pixel_x = -1;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"qpz" = (
/obj/structure/cable/heavyduty{
@@ -41342,10 +34017,7 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"qpE" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2/ceiling)
"qpJ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -41357,30 +34029,19 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen/glass)
"qqc" = (
/obj/structure/filingcabinet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"qqk" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor/strata{
- dir = 1;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/north,
/area/lv522/indoors/a_block/medical)
"qqq" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/filt)
"qqx" = (
/obj/structure/barricade/wooden{
@@ -41407,9 +34068,7 @@
pixel_x = 9;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"qqG" = (
/obj/structure/platform,
@@ -41437,9 +34096,7 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/garage)
"qqW" = (
/obj/structure/surface/rack,
@@ -41450,10 +34107,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"qrf" = (
/obj/structure/prop/almayer/computers/sensor_computer3,
@@ -41462,22 +34116,15 @@
health = 80;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"qrj" = (
/obj/structure/machinery/optable,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/outdoors/w_rockies)
"qro" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"qrG" = (
/obj/structure/surface/table/almayer,
@@ -41489,9 +34136,7 @@
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3,
/area/lv522/indoors/a_block/medical/glass)
"qsi" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -41525,10 +34170,7 @@
/obj/structure/flora/bush/ausbushes/var3/ywflowers{
layer = 3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"qsN" = (
/obj/structure/window_frame/strata,
@@ -41539,9 +34181,7 @@
dir = 1
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/lv522/indoors/a_block/dorms)
"qsU" = (
/obj/structure/platform{
@@ -41551,9 +34191,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/garden)
"qsW" = (
/obj/structure/platform{
@@ -41576,9 +34214,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/east_central_street)
"qts" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -41619,10 +34255,7 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"qtN" = (
/obj/effect/decal/warning_stripes{
@@ -41654,10 +34287,7 @@
/area/lv522/indoors/c_block/cargo)
"quL" = (
/obj/structure/largecrate,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"qvb" = (
/obj/structure/stairs/perspective{
@@ -41665,15 +34295,10 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"qvA" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"qvJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -41698,9 +34323,7 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"qvY" = (
/obj/structure/pipes/vents/pump,
@@ -41725,9 +34348,7 @@
pixel_x = -7;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qxf" = (
/obj/effect/decal/cleanable/dirt,
@@ -41750,10 +34371,7 @@
},
/obj/item/toy/deck,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"qxk" = (
/obj/structure/platform_decoration{
@@ -41767,10 +34385,7 @@
/area/lv522/indoors/c_block/cargo)
"qxp" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"qxB" = (
/obj/item/ammo_magazine/sniper{
@@ -41788,26 +34403,18 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"qxD" = (
/obj/structure/machinery/microwave,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"qxF" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Bedroom"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bar)
"qxL" = (
/obj/structure/closet/secure_closet/medical2,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"qxO" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -41839,9 +34446,7 @@
pixel_y = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qyG" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -41850,19 +34455,13 @@
"qyI" = (
/obj/structure/closet/firecloset/full,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"qyM" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"qyS" = (
/obj/structure/desertdam/decals/road_edge{
@@ -41882,9 +34481,7 @@
id = "sh_dropship2";
name = "\improper Typhoon crew hatch"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"qzw" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -41917,19 +34514,14 @@
pixel_x = -11;
pixel_y = 16
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"qzD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 1;
- icon_state = "white_cyan4"
- },
+/turf/open/floor/strata/white_cyan4/north,
/area/lv522/indoors/a_block/medical)
"qzE" = (
/obj/structure/platform{
@@ -41959,33 +34551,25 @@
/area/lv522/indoors/c_block/casino)
"qAy" = (
/obj/item/toy/beach_ball,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/bridges/dorms_fitness)
"qAF" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"qAS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/reactor_garage)
"qAX" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"qBb" = (
/obj/structure/barricade/wooden,
@@ -42020,9 +34604,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"qBE" = (
/obj/structure/surface/table/almayer,
@@ -42045,15 +34627,11 @@
name = "\improper Northlock"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges/corpo)
"qBW" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"qCd" = (
/obj/structure/machinery/power/apc/weak{
@@ -42063,14 +34641,10 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/op_centre)
"qCe" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges/corpo)
"qCB" = (
/obj/structure/surface/rack,
@@ -42088,9 +34662,7 @@
name = "blue slippers";
pixel_y = -8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"qCE" = (
/obj/item/clothing/mask/facehugger{
@@ -42100,18 +34672,13 @@
name = "????";
stat = 2
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/east_reactor/south)
"qCL" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"qCY" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -42132,10 +34699,7 @@
name = "Suit Storage Unit";
pixel_x = 3
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"qDl" = (
/obj/effect/decal/warning_stripes{
@@ -42211,18 +34775,14 @@
name = "\improper C-Block - Casino Airlock"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/casino)
"qEu" = (
/obj/structure/stairs/perspective{
dir = 10;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qEQ" = (
/obj/effect/decal/cleanable/dirt,
@@ -42233,18 +34793,14 @@
/area/lv522/atmos/sewer)
"qET" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"qEU" = (
/obj/structure/window/framed/strata/reinforced,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"qFc" = (
/obj/effect/decal/warning_stripes{
@@ -42257,9 +34813,7 @@
/obj/structure/barricade/metal{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"qFs" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -42267,15 +34821,11 @@
},
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"qFE" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_west_street)
"qFW" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"qGf" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -42288,19 +34838,14 @@
phone_id = "Colony Fitness";
pixel_y = 26
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"qGq" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qGC" = (
/turf/open/floor/prison,
@@ -42310,9 +34855,7 @@
/obj/structure/machinery/portable_atmospherics/hydroponics{
icon_state = "hydrotray4"
},
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv522/indoors/b_block/hydro/glass)
"qGI" = (
/obj/structure/ore_box{
@@ -42330,9 +34873,7 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"qHa" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qHg" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -42353,9 +34894,7 @@
dir = 4;
id = "Sec-Kitchen-Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen/glass)
"qHr" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -42378,10 +34917,7 @@
pixel_x = 5;
pixel_y = 6
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"qHD" = (
/obj/effect/decal/cleanable/dirt,
@@ -42413,32 +34949,24 @@
/area/lv522/oob)
"qIy" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo/glass)
"qIE" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"qIJ" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"qJl" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"qJp" = (
/obj/structure/pipes/vents/pump,
@@ -42446,10 +34974,7 @@
dir = 1;
pixel_y = 26
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"qJv" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -42458,10 +34983,7 @@
/obj/structure/flora/bush/ausbushes/pointybush{
pixel_y = 12
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"qJy" = (
/obj/structure/largecrate/random,
@@ -42469,15 +34991,10 @@
/area/lv522/outdoors/colony_streets/south_west_street)
"qJE" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"qJH" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"qJK" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -42502,9 +35019,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_east_street)
"qKk" = (
/obj/effect/landmark/survivor_spawner,
@@ -42530,9 +35045,7 @@
/area/lv522/outdoors/colony_streets/central_streets)
"qKO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"qKV" = (
/obj/structure/platform_decoration{
@@ -42545,10 +35058,7 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"qLd" = (
/obj/structure/surface/table/almayer,
@@ -42558,10 +35068,7 @@
pixel_y = -5
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/outdoors/w_rockies)
"qLk" = (
/obj/structure/closet/firecloset/full,
@@ -42573,9 +35080,7 @@
/area/lv522/outdoors/colony_streets/south_west_street)
"qLy" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/lv522/indoors/a_block/dorms)
"qLz" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -42587,9 +35092,7 @@
pixel_y = 26
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"qLQ" = (
/obj/item/storage/backpack/marine/satchel{
@@ -42637,9 +35140,7 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Bedroom"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"qNh" = (
/obj/effect/landmark/yautja_teleport,
@@ -42660,23 +35161,16 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"qNG" = (
/obj/structure/bed/stool,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"qNI" = (
/obj/structure/cargo_container/grant/right,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"qNK" = (
/obj/structure/surface/table/almayer,
@@ -42708,10 +35202,7 @@
pixel_y = 7
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"qNQ" = (
/obj/structure/surface/table/almayer,
@@ -42721,10 +35212,7 @@
},
/obj/item/seeds/potatoseed,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"qNR" = (
/obj/structure/barricade/handrail/strata{
@@ -42738,15 +35226,10 @@
name = "blue slippers"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"qOa" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"qOi" = (
/obj/structure/prop/invuln/fire{
@@ -42763,51 +35246,35 @@
},
/obj/structure/surface/table/almayer,
/obj/item/prop/colony/game,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness/glass)
"qOQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"qOS" = (
/obj/structure/curtain/medical,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/strata{
- dir = 1;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/north,
/area/lv522/indoors/a_block/medical)
"qPm" = (
/obj/item/ammo_box/magazine/misc/mre/empty,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"qPq" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/command_centre)
"qPu" = (
/obj/item/weapon/gun/revolver/cmb,
/obj/item/clothing/head/soft/sec,
/obj/structure/curtain/medical,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/east,
/area/lv522/indoors/a_block/medical/glass)
"qPA" = (
/obj/structure/barricade/handrail/strata{
@@ -42841,10 +35308,7 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"qPU" = (
/obj/structure/bed/chair{
@@ -42860,9 +35324,7 @@
/area/lv522/indoors/c_block/garage)
"qQh" = (
/obj/structure/cargo_container/watatsumi/right,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"qQi" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -42872,9 +35334,7 @@
/area/lv522/outdoors/colony_streets/central_streets)
"qQo" = (
/obj/structure/closet/bodybag,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/hallway)
"qQp" = (
/obj/structure/bed/chair{
@@ -42884,10 +35344,7 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"qQr" = (
/obj/item/trash/candle{
@@ -42901,9 +35358,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"qQB" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -42915,9 +35370,7 @@
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/central_streets)
"qQN" = (
/obj/structure/machinery/light{
@@ -42926,10 +35379,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"qQQ" = (
/obj/structure/largecrate/random,
@@ -42947,18 +35397,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/lv522/indoors/a_block/dorms)
"qRw" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/reactor_garage)
"qRB" = (
/obj/structure/closet/crate,
@@ -42977,10 +35422,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"qRH" = (
/obj/structure/platform{
@@ -42993,28 +35435,20 @@
/obj/structure/barricade/deployable{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"qSj" = (
/obj/structure/surface/rack,
/obj/structure/machinery/light,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"qSk" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges)
"qSu" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"qSw" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -43038,9 +35472,7 @@
pixel_y = 10
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"qSP" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -43054,10 +35486,7 @@
/obj/structure/flora/bush/ausbushes/var3/stalkybush{
pixel_y = 13
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"qSW" = (
/obj/structure/platform{
@@ -43067,9 +35496,7 @@
dir = 8
},
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"qTh" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -43084,17 +35511,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"qTu" = (
/obj/structure/girder,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/admin)
"qTx" = (
/obj/structure/window/framed/strata/reinforced,
@@ -43103,15 +35524,11 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"qTE" = (
/obj/item/clothing/suit/storage/marine/medium,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/east_reactor/south)
"qTG" = (
/obj/structure/window/framed/strata/reinforced,
@@ -43119,19 +35536,14 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen)
"qTH" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/command_centre)
"qTI" = (
/obj/item/lightstick/red/spoke/planted{
@@ -43167,9 +35579,7 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"qUh" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -43179,32 +35589,24 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"qUq" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"qUs" = (
/obj/structure/window/framed/strata/reinforced,
/obj/structure/curtain/red,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/t_comm)
"qUz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"qUL" = (
/turf/open/floor/plating,
/area/lv522/outdoors/colony_streets/north_east_street)
"qUQ" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/west)
"qVb" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -43215,18 +35617,14 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen/glass)
"qVf" = (
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qVl" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -43237,9 +35635,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Electronics Storage"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"qVN" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -43249,9 +35645,7 @@
dir = 4;
id = "Reactor_e_entry_4"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"qVQ" = (
/obj/structure/machinery/camera/autoname{
@@ -43281,7 +35675,7 @@
layer = 3.1;
pixel_y = -15
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"qWt" = (
/obj/structure/window/framed/strata/reinforced,
@@ -43289,9 +35683,7 @@
dir = 4;
id = "Sec-Kitchen-Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen)
"qWX" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -43299,9 +35691,7 @@
name = "\improper Human Resources Office"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"qWZ" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -43324,9 +35714,7 @@
dir = 1
},
/obj/structure/closet,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qXY" = (
/obj/structure/platform{
@@ -43337,26 +35725,20 @@
"qYc" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/door/window/eastleft,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness/glass)
"qYk" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"qYl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"qYo" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -43365,18 +35747,14 @@
"qYp" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/ceramic_plate,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"qYq" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"qYt" = (
/obj/item/stack/sheet/metal,
@@ -43387,16 +35765,11 @@
dir = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"qYv" = (
/obj/structure/closet/basketball,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"qYy" = (
/obj/structure/stairs/perspective{
@@ -43406,9 +35779,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"qYG" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -43419,9 +35790,7 @@
/area/lv522/indoors/b_block/hydro)
"qYM" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/reactor_garage)
"qYP" = (
/obj/structure/platform{
@@ -43438,18 +35807,14 @@
"qYX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/flour,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"qZd" = (
/obj/structure/machinery/light{
pixel_x = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"qZf" = (
/obj/item/storage/belt/marine{
@@ -43463,26 +35828,18 @@
/obj/item/storage/fancy/egg_box,
/obj/effect/landmark/objective_landmark/medium,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qZu" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"qZB" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor)
"qZC" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"qZJ" = (
/obj/structure/machinery/light{
@@ -43492,10 +35849,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"qZT" = (
/obj/item/prop/colony/usedbandage{
@@ -43510,9 +35864,7 @@
pixel_y = 4
},
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"qZY" = (
/obj/item/weapon/gun/rifle/m41a{
@@ -43528,37 +35880,26 @@
icon_state = "W"
},
/obj/item/trash/uscm_mre,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"raj" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"ran" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"rar" = (
/obj/structure/machinery/disposal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"ras" = (
/obj/structure/powerloader_wreckage/jd,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/op_centre)
"raH" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -43574,10 +35915,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"raS" = (
/obj/structure/desertdam/decals/road_edge{
@@ -43657,9 +35995,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"rbV" = (
/obj/structure/prop/vehicles/crawler{
@@ -43673,9 +36009,7 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor)
"rbX" = (
/obj/effect/landmark/yautja_teleport,
@@ -43740,26 +36074,18 @@
"rcV" = (
/obj/structure/machinery/bioprinter,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"rdc" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"rdf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/atmos/reactor_garage)
"rdq" = (
/obj/structure/prop/invuln/ice_prefab/roof_greeble{
@@ -43778,10 +36104,7 @@
/obj/item/tool/wrench{
pixel_y = -6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"rdF" = (
/obj/structure/closet/crate/medical,
@@ -43803,19 +36126,14 @@
icon_state = "crawler_crate_alt2";
layer = 3.1
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_east_street)
"rdT" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/a_block/hallway/damage)
"rej" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"reo" = (
/turf/open/floor/carpet,
@@ -43830,15 +36148,10 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_2/ceiling)
"rex" = (
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"reB" = (
/obj/item/tool/surgery/WYautopsy,
@@ -43847,10 +36160,7 @@
dir = 4;
pixel_x = 11
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"reQ" = (
/obj/structure/bed/chair{
@@ -43859,9 +36169,7 @@
/turf/open/floor/carpet,
/area/lv522/indoors/a_block/dorm_north)
"rfe" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/bridges/corpo)
"rfg" = (
/obj/structure/platform{
@@ -43870,9 +36178,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/east_central_street)
"rfi" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -43895,10 +36201,7 @@
pixel_y = 5
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"rfB" = (
/obj/structure/prop/ice_colony/flamingo{
@@ -43907,9 +36210,7 @@
pixel_x = -7;
pixel_y = 10
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/east_central_street)
"rfK" = (
/obj/structure/surface/table/almayer,
@@ -43924,9 +36225,7 @@
registered_name = "John Forklift"
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"rfW" = (
/obj/structure/surface/table/reinforced/prison,
@@ -43937,18 +36236,14 @@
"rge" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"rgk" = (
/obj/structure/machinery/power/port_gen/pacman/mrs,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"rgn" = (
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"rgA" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -43975,48 +36270,32 @@
"rhh" = (
/obj/structure/bed/chair/wheelchair,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"rhk" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1)
"rhz" = (
/obj/structure/pipes/standard/tank/oxygen{
dir = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"rhB" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"rhF" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"rie" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/op_centre)
"rii" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -44038,9 +36317,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"riZ" = (
/obj/structure/platform{
@@ -44052,10 +36329,7 @@
/obj/structure/flora/bush/ausbushes/var3/sunnybush{
pixel_y = 15
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"rjl" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -44067,9 +36341,7 @@
pixel_y = 26
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"rjn" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -44092,52 +36364,37 @@
/obj/structure/largecrate/random/barrel/green{
pixel_x = -2
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/central_streets)
"rjJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/east_central_street)
"rjP" = (
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"rkd" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/medium,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"rkV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/op_centre)
"rla" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/filt)
"rls" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"rlB" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -44145,9 +36402,7 @@
"rlI" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"rlV" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -44161,10 +36416,7 @@
/obj/item/tool/surgery/scalpel,
/obj/structure/surface/table/reinforced/prison,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"rmi" = (
/obj/structure/machinery/camera/autoname{
@@ -44173,9 +36425,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges)
"rmp" = (
/obj/structure/largecrate/random/barrel/red,
@@ -44198,10 +36448,7 @@
/area/lv522/landing_zone_1/tunnel)
"rmD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/lv522/indoors/a_block/hallway)
"rmM" = (
/obj/structure/bed,
@@ -44209,16 +36456,11 @@
layer = 3.1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"rmV" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/east_reactor/south)
"rmX" = (
/obj/effect/decal/warning_stripes{
@@ -44232,18 +36474,14 @@
dir = 1
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/hallway)
"rnp" = (
/obj/structure/largecrate/random,
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/n_rockies)
"rnq" = (
/turf/closed/wall/solaris/reinforced/hull/lv522,
@@ -44259,9 +36497,7 @@
/obj/structure/prop/invuln/ice_prefab{
dir = 5
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"rnB" = (
/turf/open/auto_turf/sand_white/layer0,
@@ -44273,17 +36509,12 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/north_west_street)
"rnT" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/landing_zone_1)
"rod" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"rot" = (
/obj/structure/cargo_container/kelland/right,
@@ -44301,9 +36532,7 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"rox" = (
/obj/structure/bed/chair/comfy{
@@ -44317,32 +36546,21 @@
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "Sec-Kitchen-Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen/glass)
"roM" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/west)
"roN" = (
/obj/structure/machinery/smartfridge/seeds,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"roT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"rpe" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -44353,9 +36571,7 @@
dir = 4
},
/obj/effect/spawner/random/toy,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness/glass)
"rpm" = (
/obj/item/ammo_magazine/rifle/heap{
@@ -44369,35 +36585,23 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/a_block/fitness/glass)
"rpG" = (
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northeast,
/area/lv522/indoors/a_block/hallway)
"rqd" = (
/obj/structure/pipes/vents/pump,
/obj/structure/closet/firecloset/full,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"rqn" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_2)
"rqs" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges)
"rqA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"rqE" = (
/obj/structure/surface/table/reinforced/almayer_B,
@@ -44419,9 +36623,7 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"rrf" = (
/obj/structure/platform,
@@ -44435,27 +36637,19 @@
"rro" = (
/obj/structure/machinery/disposal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"rrI" = (
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"rrN" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"rrV" = (
/obj/structure/window_frame/strata,
@@ -44465,9 +36659,7 @@
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "Sec-Kitchen-Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen/glass)
"rsa" = (
/obj/effect/decal/cleanable/dirt,
@@ -44479,9 +36671,7 @@
"rsl" = (
/obj/structure/surface/rack,
/obj/item/tool/crowbar,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"rsq" = (
/obj/item/toy/beach_ball,
@@ -44527,9 +36717,7 @@
pixel_x = -4;
pixel_y = 24
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"rtr" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -44543,16 +36731,10 @@
dir = 4
},
/obj/structure/medical_supply_link/green,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/east,
/area/lv522/indoors/a_block/medical/glass)
"rtw" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/reactor_garage)
"rtz" = (
/obj/item/stack/sheet/wood,
@@ -44577,9 +36759,7 @@
/area/lv522/outdoors/nw_rockies)
"rtX" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"ruc" = (
/obj/structure/cargo_container/kelland/left{
@@ -44601,9 +36781,7 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"rus" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"ruv" = (
/obj/structure/blocker/invisible_wall,
@@ -44631,9 +36809,7 @@
},
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"ruY" = (
/obj/structure/machinery/optable,
@@ -44642,17 +36818,12 @@
},
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"rvg" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/reactor_garage)
"rvh" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/body,
@@ -44669,10 +36840,7 @@
/obj/structure/flora/bush/ausbushes/var3/stalkybush{
pixel_y = 12
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"rvv" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
@@ -44682,15 +36850,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"rvw" = (
/obj/structure/machinery/space_heater/radiator/red,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"rvx" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -44699,9 +36863,7 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/north_street)
"rvI" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_west_street)
"rwo" = (
/obj/structure/surface/table/almayer,
@@ -44720,9 +36882,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"rwx" = (
/obj/structure/desertdam/decals/road_edge{
@@ -44771,9 +36931,7 @@
/turf/open/floor/wood,
/area/lv522/indoors/a_block/fitness/glass)
"rwM" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/engineering)
"rwR" = (
/obj/structure/desertdam/decals/road_edge{
@@ -44793,25 +36951,18 @@
"rxl" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/snacks/tofukabob,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"rxo" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"rxu" = (
/obj/structure/stairs/perspective{
dir = 5;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"rxI" = (
/turf/open/auto_turf/shale/layer2,
@@ -44822,25 +36973,18 @@
/obj/item/tool/surgery/retractor,
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"rxT" = (
/obj/structure/machinery/door/poddoor/almayer/closed{
id = "East_Lock";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"ryj" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/corpo/glass)
"rys" = (
/obj/structure/stairs/perspective{
@@ -44857,49 +37001,33 @@
/obj/item/ore/silver,
/obj/item/ore/silver,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"ryv" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"ryI" = (
/obj/structure/largecrate/random,
/obj/item/explosive/plastic/breaching_charge{
pixel_y = -2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"ryO" = (
/obj/structure/window/framed/strata/reinforced,
/obj/structure/curtain/red,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/executive)
"ryT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/corpo/glass)
"ryU" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1)
"rza" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/filt)
"rzq" = (
/obj/structure/cargo_container/kelland/left,
@@ -44907,17 +37035,12 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"rzz" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"rzG" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/beer_pack,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"rzR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -44938,44 +37061,32 @@
/area/lv522/indoors/b_block/bar)
"rAg" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"rAu" = (
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/landing_zone_1)
"rAK" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/bridges)
"rAL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"rAM" = (
/obj/structure/largecrate/random/case,
/turf/open/floor/plating,
/area/lv522/landing_zone_1/tunnel/far)
"rAX" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"rBd" = (
/obj/structure/platform{
@@ -45006,10 +37117,7 @@
/area/lv522/landing_zone_forecon/UD6_Tornado)
"rCa" = (
/obj/structure/closet/secure_closet/atmos_personal,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"rCi" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -45017,28 +37125,20 @@
},
/area/lv522/landing_zone_forecon/UD6_Tornado)
"rCu" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/outdoors/n_rockies)
"rCz" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"rCE" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"rCI" = (
/obj/structure/prop/invuln/fire{
@@ -45053,9 +37153,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/south_east_street)
"rCV" = (
/obj/item/prop/colony/used_flare,
@@ -45074,9 +37172,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"rEc" = (
/obj/structure/surface/table/almayer{
@@ -45086,28 +37182,21 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"rEj" = (
/obj/structure/machinery/door/airlock/almayer/medical{
dir = 2;
name = "\improper A-Block - Colony Medical Centre Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/medical)
"rEm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/t_comm)
"rEP" = (
/obj/effect/spawner/gibspawner/human,
@@ -45115,9 +37204,7 @@
/area/lv522/outdoors/w_rockies)
"rEV" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"rFh" = (
/obj/structure/platform_decoration{
@@ -45131,9 +37218,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/east_central_street)
"rFp" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -45155,9 +37240,7 @@
/area/lv522/outdoors/w_rockies)
"rGm" = (
/obj/item/tool/weldingtool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"rGD" = (
/obj/effect/decal/cleanable/dirt,
@@ -45173,27 +37256,21 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"rHl" = (
/obj/structure/window/framed/strata/reinforced,
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "Sec-Kitchen-Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen)
"rHu" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/ceramic_plate{
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"rHX" = (
/obj/structure/closet/crate/trashcart,
@@ -45205,10 +37282,7 @@
/obj/structure/fence{
layer = 2.9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/outdoors/colony_streets/south_west_street)
"rIn" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -45222,16 +37296,11 @@
},
/obj/structure/machinery/disposal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"rIB" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"rIH" = (
/obj/structure/prop/invuln/lattice_prop{
@@ -45239,9 +37308,7 @@
pixel_x = 11;
pixel_y = 24
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"rIM" = (
/obj/structure/window/framed/strata/reinforced,
@@ -45250,30 +37317,21 @@
id = "LZ1_Lockdown_Lo";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/ceiling)
"rIZ" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"rJf" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorm_north)
"rJr" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"rJB" = (
/obj/effect/decal/cleanable/blood/xeno{
@@ -45298,17 +37356,12 @@
/area/lv522/indoors/a_block/dorms)
"rJI" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/nw_rockies)
"rKa" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/alien/resin/sticky,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"rKe" = (
/obj/structure/platform{
@@ -45318,9 +37371,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/east_central_street)
"rKg" = (
/obj/structure/surface/table/almayer,
@@ -45332,19 +37383,13 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"rKt" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"rKz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -45352,18 +37397,14 @@
},
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"rKS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/reactor_garage)
"rKW" = (
/obj/effect/decal/cleanable/blood,
@@ -45381,9 +37422,7 @@
pixel_x = -8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"rLg" = (
/obj/structure/window/framed/strata/reinforced,
@@ -45391,15 +37430,11 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/hydro)
"rLk" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_street)
"rLq" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -45408,10 +37443,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"rLt" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -45421,10 +37453,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"rLx" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -45442,10 +37471,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"rLB" = (
/obj/effect/decal/warning_stripes{
@@ -45456,17 +37482,13 @@
icon_state = "W"
},
/obj/structure/fence,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/nw_rockies)
"rMb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness)
"rMd" = (
/obj/item/weapon/gun/boltaction{
@@ -45478,18 +37500,12 @@
/area/lv522/indoors/c_block/t_comm)
"rMg" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"rMi" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"rMr" = (
/obj/effect/decal/cleanable/dirt,
@@ -45497,9 +37513,7 @@
dir = 1
},
/obj/structure/machinery/light/small,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/hallway)
"rMz" = (
/obj/item/storage/backpack/marine/satchel{
@@ -45514,9 +37528,7 @@
/area/lv522/outdoors/colony_streets/east_central_street)
"rMD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"rME" = (
/turf/closed/wall/solaris/reinforced/hull/lv522,
@@ -45534,9 +37546,7 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"rNs" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"rNv" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -45554,9 +37564,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/c_block/mining)
"rNF" = (
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/lone_buildings/chunk)
"rNO" = (
/obj/structure/surface/table/almayer,
@@ -45564,9 +37572,7 @@
/turf/open/floor/plating,
/area/lv522/indoors/c_block/cargo)
"rOb" = (
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"rOf" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -45617,10 +37623,7 @@
pixel_y = 15
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"rOO" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -45631,9 +37634,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/central_streets)
"rPu" = (
/obj/structure/machinery/light,
@@ -45642,9 +37643,7 @@
/area/lv522/indoors/c_block/t_comm)
"rQd" = (
/obj/structure/closet/secure_closet/quartermaster,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"rQg" = (
/obj/structure/window/framed/strata/reinforced,
@@ -45652,9 +37651,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"rQB" = (
/obj/structure/closet/crate/miningcar/yellow,
@@ -45678,9 +37675,7 @@
pixel_y = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"rRm" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -45688,9 +37683,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"rRr" = (
/obj/structure/filingcabinet/filingcabinet{
@@ -45703,10 +37696,7 @@
pixel_x = -8;
pixel_y = 16
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"rRy" = (
/obj/structure/prop/server_equipment/yutani_server{
@@ -45715,16 +37705,12 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"rRA" = (
/obj/structure/pipes/vents/pump,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"rRJ" = (
/obj/effect/decal/cleanable/dirt,
@@ -45740,9 +37726,7 @@
/obj/item/reagent_container/food/snacks/packaged_hdogs{
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/t_comm)
"rRP" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -45759,10 +37743,7 @@
/area/lv522/indoors/a_block/kitchen/damage)
"rRY" = (
/obj/structure/closet,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"rSd" = (
/obj/structure/desertdam/decals/road_edge{
@@ -45790,26 +37771,18 @@
"rSe" = (
/obj/structure/machinery/light,
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"rSh" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"rSs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"rSG" = (
/obj/item/clothing/shoes/jackboots{
@@ -45822,9 +37795,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"rSW" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -45833,34 +37804,24 @@
/obj/structure/flora/bush/ausbushes/var3/fernybush{
pixel_y = 12
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"rTf" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/south_east_street)
"rTh" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/cargo_intake)
"rUe" = (
/obj/structure/largecrate/supply{
pixel_x = -4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/op_centre)
"rUg" = (
/obj/structure/platform_decoration{
@@ -45873,18 +37834,14 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/east_central_street)
"rUl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"rUr" = (
/obj/structure/machinery/prop/almayer/computer/PC{
@@ -45900,7 +37857,7 @@
/obj/structure/bed/chair/dropship/passenger{
dir = 8
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"rUX" = (
/obj/structure/shuttle/engine/heater{
@@ -45928,41 +37885,29 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/central_streets)
"rVB" = (
/obj/effect/spawner/gibspawner/xeno,
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib3"
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor/south)
"rVO" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/lv522/indoors/a_block/admin)
"rVR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"rVW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"rWu" = (
/obj/effect/decal/cleanable/dirt,
@@ -45973,9 +37918,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"rWP" = (
/obj/structure/window/framed/strata/reinforced,
@@ -45989,16 +37932,12 @@
dir = 1
},
/obj/structure/ore_box,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"rXa" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"rXb" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -46010,9 +37949,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"rXr" = (
/obj/structure/fence{
@@ -46025,16 +37962,11 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/outdoors/nw_rockies)
"rXE" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"rXH" = (
/obj/effect/decal/cleanable/blood,
@@ -46043,9 +37975,7 @@
/area/lv522/indoors/b_block/hydro)
"rYg" = (
/obj/structure/machinery/vending/dinnerware,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"rYi" = (
/obj/structure/platform{
@@ -46070,19 +38000,14 @@
/obj/structure/barricade/deployable{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"rYD" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 1;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/north,
/area/lv522/indoors/a_block/medical)
"rYE" = (
/obj/effect/decal/cleanable/vomit{
@@ -46121,24 +38046,16 @@
"rZi" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/bridges/dorms_fitness)
"rZE" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"rZF" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/bridges/dorms_fitness)
"rZK" = (
/obj/structure/stairs/perspective{
@@ -46150,9 +38067,7 @@
/turf/open/asphalt/cement,
/area/lv522/outdoors/colony_streets/south_street)
"rZL" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_2/ceiling)
"sag" = (
/obj/structure/ore_box,
@@ -46167,9 +38082,7 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"say" = (
/obj/structure/pipes/vents/pump,
@@ -46185,9 +38098,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"saz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -46213,26 +38124,19 @@
icon_state = "flammable_pipe_3";
pixel_x = 2
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/west_reactor)
"saS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"saV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"saY" = (
/obj/structure/prop/invuln/ice_prefab/roof_greeble{
@@ -46249,9 +38153,7 @@
dir = 1;
name = "\improper Mining Overseers Office"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"sbh" = (
/obj/structure/platform_decoration,
@@ -46262,7 +38164,7 @@
/area/lv522/landing_zone_2/ceiling)
"sbj" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"sbm" = (
/obj/effect/decal/warning_stripes{
@@ -46273,9 +38175,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/n_rockies)
"sbx" = (
/obj/structure/machinery/camera/autoname{
@@ -46284,9 +38184,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"sbG" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -46295,10 +38193,7 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"sbJ" = (
/obj/structure/closet/wardrobe/medic_white,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"sbV" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -46312,9 +38207,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/t_comm)
"scd" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv522/indoors/a_block/kitchen/damage)
"sci" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -46330,17 +38223,13 @@
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"scM" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/snacks/cheeseburger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"sdC" = (
/obj/structure/largecrate/random/secure{
@@ -46357,9 +38246,7 @@
"sdM" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"sdN" = (
/obj/structure/largecrate,
@@ -46369,9 +38256,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"sec" = (
/obj/structure/prop/invuln/fire{
@@ -46397,9 +38282,7 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"seA" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"seF" = (
/obj/structure/window/framed/corsat,
@@ -46409,10 +38292,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/lv522/indoors/a_block/dorms)
"seJ" = (
/obj/structure/surface/table/almayer,
@@ -46422,32 +38302,21 @@
/obj/item/toy/crossbow_ammo,
/obj/item/toy/crossbow_ammo,
/obj/item/toy/crossbow_ammo,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"seX" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/south_west_street)
"sfc" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/atmos/way_in_command_centre)
"sfm" = (
/obj/structure/surface/table/almayer,
/obj/item/toy/bikehorn,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"sfI" = (
/obj/structure/platform{
@@ -46462,9 +38331,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"sfO" = (
/obj/structure/platform_decoration{
@@ -46489,9 +38356,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"sgG" = (
/obj/structure/surface/table/almayer,
@@ -46502,9 +38367,7 @@
/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita{
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"sgT" = (
/turf/closed/wall/strata_outpost/reinforced/hull,
@@ -46520,26 +38383,19 @@
/area/lv522/indoors/a_block/executive)
"sha" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"shc" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"she" = (
/obj/structure/machinery/floodlight,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/indoors/lone_buildings/storage_blocks)
"shh" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{
@@ -46547,17 +38403,12 @@
id = "sh_dropship2";
name = "\improper Typhoon crew hatch"
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"shm" = (
/obj/structure/machinery/vending/cola,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"shq" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -46572,18 +38423,13 @@
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/toy,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"shZ" = (
/obj/structure/machinery/colony_floodlight{
layer = 4.3
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/east_central_street)
"sid" = (
/obj/structure/stairs/perspective{
@@ -46595,32 +38441,22 @@
"sil" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"six" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"siB" = (
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"siT" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"siX" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -46634,9 +38470,7 @@
/area/lv522/outdoors/colony_streets/south_street)
"sjb" = (
/obj/item/stack/sandbags/small_stack,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_street)
"sjd" = (
/obj/effect/decal/cleanable/dirt,
@@ -46644,10 +38478,7 @@
/obj/item/key/cargo_train{
icon_state = "keys"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"sje" = (
/obj/structure/bed/chair{
@@ -46655,10 +38486,7 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"sjp" = (
/obj/structure/bed/chair{
@@ -46666,20 +38494,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"sjx" = (
/obj/item/prop/colony/canister{
layer = 3.1;
pixel_y = 16
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/reactor_garage)
"sjy" = (
/turf/closed/wall/strata_outpost,
@@ -46709,9 +38531,7 @@
/obj/item/bedsheet/brown{
layer = 3.1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/mining)
"sjQ" = (
/obj/effect/decal/cleanable/dirt,
@@ -46722,9 +38542,7 @@
/obj/structure/closet/crate/green,
/obj/item/device/sentry_computer,
/obj/item/defenses/handheld/sentry,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"sjY" = (
/turf/open/auto_turf/shale/layer2,
@@ -46737,24 +38555,17 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"skk" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"skC" = (
/obj/structure/closet/secure_closet/engineering_welding,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"skE" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -46767,19 +38578,14 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"skU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"slq" = (
/obj/structure/platform_decoration{
@@ -46798,9 +38604,7 @@
phone_id = "Reactor Control";
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"slD" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -46829,9 +38633,7 @@
pixel_x = -9;
pixel_y = 4
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"slO" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -46847,10 +38649,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/a_block/dorms)
"smr" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/atmos/reactor_garage)
"sms" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -46858,25 +38657,17 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"smF" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical/glass)
"smK" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/oob)
"smR" = (
/obj/structure/machinery/door/poddoor/almayer/closed{
@@ -46884,18 +38675,14 @@
id = "West LZ Storage";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/storage_blocks)
"smY" = (
/obj/structure/stairs/perspective{
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"snb" = (
/obj/effect/decal/cleanable/blood/gibs,
@@ -46908,9 +38695,7 @@
pixel_y = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"sno" = (
/obj/structure/prop/invuln/ice_prefab,
@@ -46921,26 +38706,19 @@
dir = 8
},
/obj/structure/prop/almayer/computers/sensor_computer1,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"snP" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"snR" = (
/obj/structure/surface/rack,
/obj/item/tank/oxygen,
/obj/item/tank/oxygen,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"snX" = (
/turf/closed/wall/strata_outpost,
@@ -46962,10 +38740,7 @@
dir = 1;
pixel_y = 26
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"spe" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -46986,15 +38761,10 @@
pixel_y = -1
},
/obj/effect/landmark/corpsespawner/wy/manager,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/oob/w_y_vault)
"spo" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/central_streets)
"sps" = (
/obj/effect/decal/warning_stripes{
@@ -47012,9 +38782,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"spz" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -47022,24 +38790,17 @@
dir = 1;
name = "\improper Mining Control"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"spB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"spI" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/north)
"spJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -47050,9 +38811,7 @@
/area/lv522/indoors/b_block/bridge)
"spM" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"spW" = (
/obj/structure/platform{
@@ -47061,19 +38820,13 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_east_street)
"sqd" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bridge)
"sql" = (
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/central_streets)
"sqH" = (
/obj/structure/machinery/door_display/research_cell{
@@ -47090,9 +38843,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"sqQ" = (
/obj/effect/decal/cleanable/dirt,
@@ -47101,9 +38852,7 @@
"srf" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"srk" = (
/obj/effect/decal/cleanable/dirt,
@@ -47112,9 +38861,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"srm" = (
/obj/structure/filingcabinet{
@@ -47123,9 +38870,7 @@
/obj/structure/filingcabinet{
pixel_x = 7
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"srE" = (
/obj/structure/stairs/perspective{
@@ -47140,16 +38885,11 @@
/area/lv522/indoors/a_block/kitchen)
"srM" = (
/obj/structure/machinery/vending/hydroseeds,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"srQ" = (
/obj/structure/cargo_container/ferret/right,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"srS" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
@@ -47164,9 +38904,7 @@
pixel_x = -1;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"ssh" = (
/obj/structure/closet/crate/trashcart,
@@ -47184,24 +38922,17 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"ssl" = (
/obj/structure/barricade/wooden{
dir = 4;
layer = 5.3
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/central_streets)
"ssn" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/west_reactor)
"ssU" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -47211,10 +38942,7 @@
"stG" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"suh" = (
/obj/effect/decal/cleanable/dirt,
@@ -47227,16 +38955,12 @@
},
/obj/item/storage/toolbox/mechanical,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"sus" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/toolbox/mechanical/green,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"suF" = (
/obj/structure/bed/chair{
@@ -47247,9 +38971,7 @@
"suG" = (
/obj/item/prop/colony/used_flare,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"suS" = (
/obj/effect/decal/cleanable/dirt,
@@ -47262,9 +38984,7 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"suV" = (
/obj/structure/machinery/computer/cameras/wooden_tv{
@@ -47284,9 +39004,7 @@
pixel_y = -6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv522/indoors/b_block/bar)
"svf" = (
/obj/structure/window_frame/strata,
@@ -47294,9 +39012,7 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"svo" = (
/obj/structure/surface/table/almayer,
@@ -47333,15 +39049,11 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/north_west_street)
"swu" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor)
"swD" = (
/obj/structure/largecrate/supply/supplies/metal,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"swF" = (
/obj/structure/stairs/perspective{
@@ -47357,25 +39069,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"swY" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/roller,
/obj/item/stack/medical/bruise_pack,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"sxg" = (
/obj/item/stack/rods,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"sxp" = (
/obj/structure/surface/table/almayer,
@@ -47387,15 +39091,11 @@
/area/lv522/indoors/a_block/security/glass)
"sxU" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/west)
"syg" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"syl" = (
/obj/structure/bed/chair/comfy{
@@ -47403,25 +39103,19 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/generic,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"syt" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"syy" = (
/obj/structure/machinery/power/apc/weak{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"syB" = (
/obj/structure/ore_box,
@@ -47442,15 +39136,11 @@
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/ceiling)
"syV" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"syW" = (
/obj/item/explosive/mine/active{
@@ -47466,30 +39156,21 @@
icon_state = "W"
},
/obj/structure/barricade/deployable,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"szo" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_west_street)
"szJ" = (
/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"szT" = (
/obj/structure/ore_box,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_east_street)
"szY" = (
/obj/structure/bed/chair/comfy{
@@ -47504,9 +39185,7 @@
layer = 3.1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"sAp" = (
/obj/structure/barricade/wooden{
@@ -47539,16 +39218,11 @@
name = "synthethic potted plant";
pixel_y = 14
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"sAT" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"sAU" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -47562,19 +39236,14 @@
"sBy" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"sBH" = (
/obj/structure/reagent_dispensers/water_cooler/stacks{
density = 0;
pixel_y = 16
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"sBX" = (
/obj/structure/girder,
@@ -47588,9 +39257,7 @@
dir = 9;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/landing_zone_1)
"sCi" = (
/obj/item/clothing/shoes/jackboots{
@@ -47602,9 +39269,7 @@
pixel_y = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"sCp" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -47624,9 +39289,7 @@
pixel_y = 3
},
/obj/structure/closet/crate,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/north)
"sCP" = (
/obj/structure/machinery/light{
@@ -47635,10 +39298,7 @@
/obj/structure/closet/crate,
/obj/effect/decal/cleanable/dirt,
/obj/item/storage/pouch/medkit/full_advanced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"sDa" = (
/obj/structure/machinery/light/small{
@@ -47650,15 +39310,10 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/lone_buildings/chunk)
"sDf" = (
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor/south)
"sDq" = (
/obj/structure/barricade/wooden{
@@ -47675,10 +39330,7 @@
/obj/structure/largecrate/random{
layer = 2.9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"sDS" = (
/turf/open/floor/prison,
@@ -47694,28 +39346,21 @@
dir = 8
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/admin)
"sEk" = (
/obj/structure/barricade/wooden{
dir = 1
},
/obj/item/tool/weldingtool,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/kitchen/glass)
"sED" = (
/obj/effect/landmark/objective_landmark/close,
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"sES" = (
/obj/item/fuel_cell{
@@ -47734,17 +39379,12 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/reactor_garage)
"sFf" = (
/obj/item/trash/burger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"sFp" = (
/obj/structure/machinery/colony_floodlight{
@@ -47752,18 +39392,14 @@
layer = 4.3;
pixel_y = 17
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/central_streets)
"sFF" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/hydro)
"sFG" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -47790,15 +39426,11 @@
/obj/structure/closet/crate,
/obj/item/tool/pickaxe/silver,
/obj/item/tool/pickaxe/silver,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"sGt" = (
/obj/structure/largecrate/random,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/nw_rockies)
"sGv" = (
/obj/effect/decal/warning_stripes{
@@ -47808,19 +39440,14 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"sGD" = (
/obj/item/shard{
icon_state = "medium"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"sGF" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -47837,10 +39464,7 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"sHd" = (
/obj/structure/stairs/perspective{
@@ -47854,16 +39478,12 @@
/area/lv522/landing_zone_1/tunnel/far)
"sHk" = (
/obj/structure/curtain/red,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/casino)
"sHy" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/west_reactor)
"sHS" = (
/obj/structure/stairs/perspective{
@@ -47871,9 +39491,7 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"sHY" = (
/obj/structure/platform{
@@ -47893,9 +39511,7 @@
"sIq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"sIr" = (
/obj/structure/surface/rack,
@@ -47917,10 +39533,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"sIK" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -47932,9 +39545,7 @@
icon_state = "NW-out";
pixel_y = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/central_streets)
"sIS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -47949,17 +39560,13 @@
/area/lv522/indoors/c_block/cargo)
"sKa" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"sKc" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/central_streets)
"sKi" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -47982,10 +39589,7 @@
pixel_x = -1;
pixel_y = 29
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/toilet)
"sKu" = (
/obj/structure/barricade/handrail/strata,
@@ -47993,9 +39597,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"sKx" = (
/obj/item/clothing/mask/facehugger{
@@ -48030,9 +39632,7 @@
dir = 8;
name = "\improper Dormitories"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"sKJ" = (
/turf/open/auto_turf/shale/layer2,
@@ -48040,25 +39640,18 @@
"sKL" = (
/obj/item/prop/alien/hugger,
/obj/effect/spider/spiderling/nogrow,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"sKS" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/item/prop/colony/canister{
pixel_y = 11
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"sKU" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"sLa" = (
/obj/structure/showcase{
@@ -48079,9 +39672,7 @@
/obj/structure/machinery/faxmachine{
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"sLk" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -48112,9 +39703,7 @@
/obj/item/bedsheet/brown{
layer = 3.1
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"sLn" = (
/obj/effect/decal/cleanable/greenglow,
@@ -48137,9 +39726,7 @@
/area/lv522/indoors/c_block/cargo)
"sLQ" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"sLR" = (
/obj/structure/prop/dam/van/damaged{
@@ -48163,9 +39750,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/nw_rockies)
"sMa" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -48190,17 +39775,13 @@
dir = 1
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"sML" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/east_central_street)
"sMN" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -48234,10 +39815,7 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"sNQ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
@@ -48256,9 +39834,7 @@
pixel_x = -2;
pixel_y = 27
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"sNU" = (
/obj/structure/machinery/light{
@@ -48269,10 +39845,7 @@
pixel_x = 3;
pixel_y = 13
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"sOe" = (
/obj/structure/filingcabinet{
@@ -48285,18 +39858,12 @@
pixel_x = 8;
pixel_y = 16
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"sOm" = (
/obj/item/stack/sheet/metal/large_stack,
/obj/structure/closet/crate,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"sOA" = (
/obj/item/clothing/head/welding{
@@ -48315,9 +39882,7 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/south_west_street)
"sOL" = (
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"sOM" = (
/obj/structure/platform{
@@ -48332,9 +39897,7 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/landing_zone_1)
"sON" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"sOR" = (
/obj/effect/decal/cleanable/dirt,
@@ -48350,33 +39913,24 @@
/obj/effect/decal/cleanable/blood,
/obj/structure/curtain/medical,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"sPa" = (
/obj/structure/machinery/vending/cola,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"sPb" = (
/obj/structure/barricade/wooden,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"sPh" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"sPk" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -48398,9 +39952,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"sPs" = (
/obj/item/stack/rods,
@@ -48417,29 +39969,20 @@
name = "Vault Lockdown"
},
/obj/effect/landmark/lv624/fog_blocker/short,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/oob/w_y_vault)
"sPS" = (
/obj/structure/surface/table/almayer,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"sPU" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"sQb" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/lv522/indoors/a_block/admin)
"sQr" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -48448,14 +39991,10 @@
pixel_x = 12;
pixel_y = 17
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"sQu" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/n_rockies)
"sQA" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -48469,9 +40008,7 @@
/area/lv522/indoors/lone_buildings/engineering)
"sQI" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"sQL" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -48479,9 +40016,7 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_street)
"sQN" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -48492,17 +40027,12 @@
"sQQ" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black_random,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"sQR" = (
/obj/item/stack/sheet/wood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"sQS" = (
/obj/item/prop/alien/hugger,
@@ -48510,18 +40040,14 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"sQT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv522/indoors/a_block/bridges/op_centre)
"sQY" = (
/obj/structure/machinery/door/airlock/almayer/maint{
@@ -48529,22 +40055,15 @@
req_one_access_txt = "100";
welded = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"sQZ" = (
/obj/item/weapon/twohanded/folded_metal_chair,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"sRd" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/north_west_street)
"sRu" = (
/obj/structure/platform,
@@ -48558,9 +40077,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"sRA" = (
/turf/open/auto_turf/shale/layer1,
@@ -48588,10 +40105,7 @@
/area/lv522/outdoors/colony_streets/east_central_street)
"sSi" = (
/obj/structure/cargo_container/wy/right,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"sSk" = (
/obj/effect/decal/cleanable/dirt,
@@ -48599,56 +40113,40 @@
dir = 1
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"sSl" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"sSn" = (
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/north_street)
"sSv" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"sSG" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"sSQ" = (
/obj/structure/machinery/door/poddoor/almayer/closed{
id = "LZ1_Lockdown_Lo";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1)
"sSW" = (
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"sSZ" = (
/obj/structure/machinery/light{
@@ -48659,26 +40157,20 @@
/obj/item/ore/silver,
/obj/item/ore/silver,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"sTr" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 4;
id = "Reactor_garage_3"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"sTy" = (
/obj/structure/window_frame/strata,
/obj/item/stack/rods,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bar)
"sTA" = (
/obj/structure/desertdam/decals/road_edge{
@@ -48717,10 +40209,7 @@
/area/lv522/indoors/c_block/garage)
"sUI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/indoors/c_block/cargo)
"sVJ" = (
/obj/structure/barricade/handrail{
@@ -48731,10 +40220,7 @@
"sVM" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"sWn" = (
/obj/effect/decal/cleanable/dirt,
@@ -48760,47 +40246,34 @@
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"sWT" = (
/obj/item/shard{
icon_state = "medium"
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"sXm" = (
/obj/structure/surface/table/almayer,
/obj/item/newspaper,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"sXo" = (
/obj/structure/largecrate/random,
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"sXM" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/random/powercell,
/obj/structure/machinery/cell_charger,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"sXQ" = (
/obj/structure/bed/chair/comfy,
@@ -48812,9 +40285,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"sXZ" = (
/obj/structure/platform{
@@ -48824,9 +40295,7 @@
/area/lv522/indoors/c_block/garage)
"sYh" = (
/obj/structure/machinery/door/airlock/hatch/cockpit/two,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"sYl" = (
/obj/item/stack/sheet/metal,
@@ -48846,9 +40315,7 @@
"sYM" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"sZq" = (
/turf/open/gm/river,
@@ -48858,9 +40325,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"sZz" = (
/obj/structure/largecrate/random/case/small,
@@ -48869,9 +40334,7 @@
/area/lv522/indoors/c_block/mining)
"taj" = (
/obj/structure/closet/crate,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/central_streets)
"taw" = (
/obj/structure/platform_decoration,
@@ -48900,10 +40363,7 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"taO" = (
/obj/effect/spider/spiderling/nogrow,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"taP" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -48913,9 +40373,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_east_street)
"taW" = (
/obj/structure/platform{
@@ -48938,7 +40396,7 @@
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"tby" = (
/obj/structure/bed/chair/comfy{
@@ -48958,9 +40416,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"tbK" = (
/obj/structure/filingcabinet{
@@ -48973,25 +40429,17 @@
pixel_x = 8;
pixel_y = 16
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/oob/w_y_vault)
"tcj" = (
/obj/structure/machinery/light,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/b_block/bridge)
"tco" = (
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"tcu" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -49000,10 +40448,7 @@
/area/lv522/landing_zone_forecon/UD6_Tornado)
"tcv" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"tcz" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -49017,10 +40462,7 @@
/obj/structure/flora/bush/ausbushes/reedbush{
pixel_y = 11
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"tcJ" = (
/turf/closed/shuttle/elevator{
@@ -49036,9 +40478,7 @@
/area/lv522/indoors/c_block/mining)
"tcX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"tdi" = (
/obj/structure/prop/dam/crane,
@@ -49066,9 +40506,7 @@
/obj/effect/decal/cleanable/blood/splatter{
icon_state = "gib4"
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/corpo)
"tdE" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -49095,29 +40533,19 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"tdT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/lv522/indoors/a_block/hallway)
"tdV" = (
/obj/structure/girder,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"teh" = (
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/lv522/indoors/a_block/dorms)
"tek" = (
/obj/structure/surface/table/almayer,
@@ -49126,9 +40554,7 @@
pixel_y = 4
},
/obj/item/tool/pen/blue/clicky,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"tew" = (
/obj/structure/machinery/portable_atmospherics/hydroponics{
@@ -49139,9 +40565,7 @@
pixel_x = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv522/indoors/b_block/hydro/glass)
"tex" = (
/obj/structure/barricade/wooden{
@@ -49158,9 +40582,7 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"teE" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"teL" = (
/obj/structure/stairs/perspective{
@@ -49169,18 +40591,14 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"teO" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper C-Block - Cargo Airlock";
welded = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"tfb" = (
/obj/structure/stairs/perspective{
@@ -49188,9 +40606,7 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/landing_zone_1)
"tfi" = (
/obj/structure/platform_decoration{
@@ -49201,16 +40617,12 @@
"tfl" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/railgun_camera_pos,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_1/ceiling)
"tfK" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"tfO" = (
/obj/item/prop/colony/usedbandage{
@@ -49229,16 +40641,11 @@
},
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"tfW" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/atmos/reactor_garage)
"tfZ" = (
/obj/effect/spider/spiderling/nogrow,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"tgj" = (
/obj/structure/surface/table/almayer,
@@ -49249,16 +40656,11 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper A-Block Dorms And Office Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"tgq" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"tgM" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -49272,17 +40674,13 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"thd" = (
/obj/structure/surface/table/almayer,
/obj/structure/foamed_metal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"the" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -49294,17 +40692,13 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"thI" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/central_streets)
"thU" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -49318,16 +40712,11 @@
/obj/structure/bed/roller,
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical)
"tiC" = (
/obj/item/weapon/twohanded/folded_metal_chair,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/central_streets)
"tiJ" = (
/obj/item/explosive/grenade/incendiary/molotov,
@@ -49337,9 +40726,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"tiQ" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -49364,22 +40751,15 @@
/turf/open/gm/river,
/area/lv522/indoors/a_block/kitchen/damage)
"tjg" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/west)
"tjh" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"tjx" = (
/obj/structure/largecrate/random/barrel,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2/ceiling)
"tjM" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -49388,10 +40768,7 @@
"tjQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"tjR" = (
/obj/structure/largecrate/random,
@@ -49420,9 +40797,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/hydro)
"tkx" = (
/obj/structure/machinery/light{
@@ -49432,15 +40807,10 @@
/obj/structure/machinery/power/port_gen/pacman{
layer = 2.9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"tkA" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/landing_zone_2)
"tkL" = (
/obj/structure/prop/server_equipment/yutani_server{
@@ -49455,10 +40825,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"tkN" = (
/obj/structure/stairs/perspective{
@@ -49475,9 +40842,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"tlr" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -49487,9 +40852,7 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"tlv" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"tlz" = (
/obj/structure/bed/chair{
@@ -49497,10 +40860,7 @@
},
/obj/structure/machinery/light/double,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"tlB" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -49516,45 +40876,32 @@
/obj/structure/machinery/faxmachine{
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"tlX" = (
/obj/structure/bed/chair{
dir = 1
},
/obj/structure/machinery/light/double,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"tlZ" = (
/obj/structure/machinery/light/double,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"tmy" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/b_block/bridge)
"tmC" = (
/obj/structure/platform{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"tmL" = (
/obj/structure/surface/table/almayer,
@@ -49566,20 +40913,14 @@
pixel_x = -1;
pixel_y = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"tmX" = (
/obj/structure/platform{
dir = 1
},
/obj/item/stack/rods,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"tna" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
@@ -49588,31 +40929,24 @@
/obj/structure/bed/chair/dropship/passenger{
dir = 8
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"tne" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"tnh" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"tni" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_east_street)
"tns" = (
/obj/structure/machinery/landinglight/ds1{
@@ -49624,16 +40958,11 @@
/obj/structure/platform{
dir = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"tnL" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"tnM" = (
/obj/structure/cargo_container/horizontal/blue/top,
@@ -49644,10 +40973,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"tnU" = (
/obj/effect/decal/warning_stripes{
@@ -49655,17 +40981,12 @@
pixel_x = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"tog" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"tos" = (
/obj/structure/stairs/perspective{
@@ -49692,10 +41013,7 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/east,
/area/lv522/indoors/a_block/medical/glass)
"toY" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -49712,10 +41030,7 @@
desc = "Some sort of fancy...toy? You're not sure..";
pixel_x = -12
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"tpa" = (
/obj/structure/window/framed/strata/reinforced,
@@ -49730,16 +41045,11 @@
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"tpz" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"tpD" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -49748,10 +41058,7 @@
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/central_streets)
"tpN" = (
-/turf/open/floor/strata{
- dir = 1;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/north,
/area/lv522/indoors/a_block/medical/glass)
"tpV" = (
/obj/structure/surface/table/almayer,
@@ -49764,33 +41071,21 @@
/area/lv522/indoors/a_block/dorms)
"tqb" = (
/obj/structure/barricade/deployable,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"tqh" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"tqU" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness/glass)
"tra" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor)
"trj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -49818,9 +41113,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"trW" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -49842,9 +41135,7 @@
flipped = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"tsx" = (
/obj/structure/window/reinforced{
@@ -49873,16 +41164,11 @@
},
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"tsM" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"tsV" = (
/obj/structure/toilet{
@@ -49893,20 +41179,14 @@
pixel_x = -11
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"ttd" = (
/obj/structure/stairs/perspective{
dir = 6;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"ttf" = (
/obj/effect/landmark/corpsespawner/forecon_spotter,
@@ -49919,9 +41199,7 @@
/area/lv522/outdoors/nw_rockies)
"ttp" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"ttC" = (
/obj/item/weapon/gun/smg/nailgun,
@@ -49933,9 +41211,7 @@
name = "\improper Electronics Storage"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"ttT" = (
/obj/structure/stairs/perspective{
@@ -49946,10 +41222,7 @@
/area/lv522/landing_zone_1)
"tue" = (
/obj/structure/machinery/cryo_cell,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"tum" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -49957,10 +41230,7 @@
/area/lv522/indoors/c_block/garage)
"tur" = (
/obj/structure/cargo_container/hd/right/alt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"tuJ" = (
/obj/effect/decal/cleanable/dirt,
@@ -49978,33 +41248,25 @@
/area/lv522/indoors/b_block/hydro)
"tuK" = (
/obj/structure/ore_box,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"tvi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/admin)
"tvk" = (
/obj/structure/prop/turbine_extras/border,
/obj/structure/prop/turbine,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"tvn" = (
/obj/item/stack/sheet/metal,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/central_streets)
"tvq" = (
/obj/structure/prop/vehicles/crawler{
@@ -50019,17 +41281,12 @@
"tvx" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/chair,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"tvz" = (
/obj/structure/surface/table/almayer,
/obj/structure/foamed_metal,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"tvL" = (
/obj/structure/bed/chair/dropship/passenger{
@@ -50039,9 +41296,7 @@
/turf/open/shuttle/dropship/can_surgery/light_grey_top_left,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"tvO" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_street)
"tvP" = (
/obj/structure/stairs/perspective{
@@ -50049,10 +41304,7 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"tvZ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -50065,25 +41317,16 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"twq" = (
/obj/structure/platform_decoration,
/obj/item/reagent_container/food/drinks/flask/marine,
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"tww" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/admin)
"twB" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -50092,10 +41335,7 @@
/area/lv522/landing_zone_forecon/UD6_Tornado)
"twQ" = (
/obj/structure/closet/secure_closet/medical1,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"twT" = (
/obj/structure/cargo_container/grant/right,
@@ -50110,16 +41350,10 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/east_reactor/south)
"txs" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/cargo_intake)
"txK" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -50160,17 +41394,12 @@
},
/obj/item/stack/sheet/metal/large_stack,
/obj/structure/closet/crate,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"typ" = (
/obj/item/storage/backpack/marine/engineerpack/satchel,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"tyy" = (
/obj/structure/desertdam/decals/road_edge{
@@ -50189,9 +41418,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"tzd" = (
/turf/closed/shuttle/elevator{
@@ -50214,17 +41441,13 @@
/obj/item/weapon/gun/rifle/lmg{
current_mag = null
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"tzF" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"tzM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -50242,28 +41465,21 @@
layer = 2.6;
pixel_y = 25
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"tAh" = (
/obj/structure/surface/table/almayer{
dir = 4;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"tAn" = (
/obj/item/shard{
icon_state = "medium"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/c_block/cargo)
"tAr" = (
/obj/item/weapon/twohanded/folded_metal_chair,
@@ -50276,9 +41492,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/garden)
"tBb" = (
/obj/structure/prop/dam/drill,
@@ -50291,10 +41505,7 @@
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"tBC" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -50317,10 +41528,7 @@
/area/lv522/outdoors/colony_streets/central_streets)
"tBS" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"tCa" = (
/obj/item/trash/uscm_mre{
@@ -50337,9 +41545,7 @@
dir = 1;
name = "\improper Emergency Engineering"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/engineering)
"tCh" = (
/obj/effect/decal/warning_stripes{
@@ -50378,20 +41584,14 @@
/obj/structure/machinery/computer/operating,
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"tDB" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/admin)
"tDQ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -50399,15 +41599,10 @@
pixel_y = 6
},
/obj/item/storage/briefcase,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"tDR" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/north)
"tDS" = (
/turf/closed/wall/strata_outpost,
@@ -50415,9 +41610,7 @@
"tEc" = (
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"tEk" = (
/obj/structure/surface/table/almayer,
@@ -50425,21 +41618,15 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"tEu" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/south_street)
"tEC" = (
/obj/item/stool,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/lone_buildings/chunk)
"tEJ" = (
/obj/structure/machinery/colony_floodlight{
@@ -50447,35 +41634,24 @@
layer = 4.3;
pixel_y = 17
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_street)
"tEM" = (
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"tEQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"tEW" = (
/obj/structure/machinery/vending/cigarette/colony,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"tEY" = (
/obj/structure/safe{
@@ -50485,20 +41661,14 @@
/obj/item/clothing/head/helmet/marine/veteran/pmc,
/obj/item/m_gift,
/obj/item/coin/diamond,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"tFf" = (
/obj/structure/bed/chair/comfy/beige{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"tFk" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -50509,18 +41679,13 @@
pixel_y = 4
},
/obj/item/folder/red,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"tFu" = (
/obj/structure/surface/rack,
/obj/item/storage/bag/ore,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"tFx" = (
/turf/closed/wall/strata_outpost,
@@ -50562,25 +41727,17 @@
/turf/open/floor/wood,
/area/lv522/indoors/c_block/casino)
"tGw" = (
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/landing_zone_2)
"tGy" = (
/obj/structure/bed/chair/comfy,
/obj/item/stack/sheet/wood,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"tGI" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"tGP" = (
/obj/structure/window/reinforced{
@@ -50607,30 +41764,21 @@
/obj/item/bedsheet/brown{
layer = 3.1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"tGY" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/structure/bed/chair/comfy/beige,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"tHo" = (
/obj/structure/machinery/portable_atmospherics/canister/phoron,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/indoors/c_block/mining)
"tHC" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"tHJ" = (
/obj/structure/platform{
@@ -50642,10 +41790,7 @@
/area/lv522/indoors/a_block/dorms)
"tIy" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"tID" = (
/obj/effect/decal/cleanable/dirt,
@@ -50657,19 +41802,14 @@
icon_state = "crawler_crate_alt2";
layer = 3.2
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/east_central_street)
"tIS" = (
/obj/structure/barricade/handrail{
dir = 8
},
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/indoors/lone_buildings/storage_blocks)
"tIT" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -50677,9 +41817,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"tJa" = (
/obj/vehicle/train/cargo/trolley,
@@ -50700,18 +41838,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_east_street)
"tJG" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_east_street)
"tJM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -50723,10 +41857,7 @@
/obj/structure/machinery/camera/autoname{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"tJN" = (
/obj/structure/bed/chair,
@@ -50734,9 +41865,7 @@
/area/lv522/indoors/c_block/mining)
"tKb" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"tKe" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -50751,9 +41880,7 @@
pixel_y = 15
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"tKo" = (
/obj/structure/prop/invuln/overhead/flammable_pipe/fly{
@@ -50789,15 +41916,11 @@
dir = 8;
pixel_y = 3
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/reactor_garage)
"tKS" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_1/ceiling)
"tLl" = (
/obj/structure/machinery/light/double/blue{
@@ -50811,9 +41934,7 @@
/obj/structure/prop/invuln/minecart_tracks/bumper{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/indoors/c_block/mining)
"tLr" = (
/obj/structure/surface/table/almayer,
@@ -50844,29 +41965,19 @@
/area/lv522/indoors/a_block/security)
"tLJ" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"tLL" = (
/obj/structure/curtain/medical,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3,
/area/lv522/indoors/a_block/medical)
"tLQ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"tLX" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "w-y0"
- },
+/turf/open/floor/almayer/w_y0/north,
/area/lv522/oob/w_y_vault)
"tMk" = (
/turf/open/floor/prison,
@@ -50874,19 +41985,14 @@
"tMl" = (
/obj/structure/machinery/iv_drip,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical)
"tMp" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/prison,
/area/lv522/indoors/a_block/dorm_north)
"tMq" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/landing_zone_1)
"tMt" = (
/obj/structure/platform_decoration,
@@ -50894,9 +42000,7 @@
dir = 10;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/landing_zone_1)
"tMD" = (
/obj/item/prop/alien/hugger,
@@ -50904,10 +42008,7 @@
/area/lv522/indoors/c_block/garage)
"tML" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"tMS" = (
/obj/structure/window/framed/strata/reinforced,
@@ -50916,9 +42017,7 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"tMT" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -50931,9 +42030,7 @@
/turf/open/floor/wood,
/area/lv522/indoors/c_block/casino)
"tMV" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"tNc" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -50944,9 +42041,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/mining)
"tNr" = (
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/outdoors/colony_streets/north_street)
"tNC" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -50968,9 +42063,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_east_street)
"tOo" = (
/turf/open/asphalt/cement,
@@ -50989,9 +42082,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_street)
"tOx" = (
/obj/effect/decal/cleanable/blood,
@@ -51004,16 +42095,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/east_reactor/south)
"tOV" = (
/obj/structure/cargo_container/watatsumi/leftmid,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"tPa" = (
/obj/structure/stairs/perspective{
@@ -51024,10 +42110,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"tPb" = (
/obj/structure/prop/structure_lattice,
@@ -51041,9 +42124,7 @@
/area/lv522/landing_zone_1)
"tPr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_west_street)
"tPs" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -51059,9 +42140,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_street)
"tPB" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -51073,10 +42152,7 @@
dir = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/medical/glass)
"tQb" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -51090,37 +42166,27 @@
name = "\improper A-Block Corporate Office Airlock"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo)
"tQi" = (
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/a_block/bridges/corpo)
"tQp" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"tQw" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/west)
"tQF" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "Sec-Corpo-Bridge-Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"tRd" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges)
"tRs" = (
/obj/structure/stairs/perspective{
@@ -51140,16 +42206,11 @@
pixel_y = 4
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"tRS" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"tSb" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -51167,9 +42228,7 @@
/area/lv522/outdoors/colony_streets/east_central_street)
"tSn" = (
/obj/structure/girder,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"tSo" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -51181,9 +42240,7 @@
dir = 8;
pixel_y = -5
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"tSL" = (
/turf/closed/wall/strata_outpost,
@@ -51198,9 +42255,7 @@
dir = 4;
pixel_y = -5
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"tTb" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -51216,9 +42271,7 @@
pixel_y = -7;
req_access = null
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"tTr" = (
/obj/item/lightstick/red/spoke/planted{
@@ -51238,10 +42291,7 @@
"tTN" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/bodybag,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/hallway)
"tTR" = (
/obj/effect/decal/cleanable/dirt,
@@ -51252,17 +42302,13 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"tTZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"tUe" = (
/obj/effect/decal/cleanable/dirt,
@@ -51270,25 +42316,17 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"tUg" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"tUB" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/plate,
/obj/item/reagent_container/food/snacks/mushroompizzaslice,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"tUL" = (
/obj/item/lightstick/red/spoke/planted{
@@ -51305,16 +42343,11 @@
/area/lv522/indoors/a_block/dorms)
"tVa" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"tVj" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1/ceiling)
"tVv" = (
/obj/structure/barricade/wooden{
@@ -51326,30 +42359,21 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
/obj/structure/prop/server_equipment/laptop/on,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"tVN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"tVP" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/east_central_street)
"tWt" = (
/obj/structure/platform_decoration,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"tWv" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -51366,10 +42390,7 @@
/area/lv522/indoors/c_block/mining)
"tWC" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"tWE" = (
/obj/structure/pipes/standard/manifold/hidden/green,
@@ -51377,10 +42398,7 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"tWX" = (
/obj/item/storage/backpack,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"tXa" = (
/obj/structure/surface/table/almayer,
@@ -51402,10 +42420,7 @@
},
/obj/item/reagent_container/glass/rag,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"tXc" = (
/obj/structure/stairs/perspective{
@@ -51427,23 +42442,16 @@
layer = 2;
name = "weak acid"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv522/indoors/a_block/admin)
"tXg" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"tXp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/east_reactor/south)
"tXG" = (
/obj/structure/bed/chair{
@@ -51451,9 +42459,7 @@
},
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_1/ceiling)
"tXW" = (
/turf/open/auto_turf/shale/layer2,
@@ -51463,17 +42469,12 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"tYs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"tYt" = (
/obj/structure/platform{
@@ -51484,25 +42485,17 @@
layer = 2.9
},
/obj/structure/flora/bush/ausbushes/var3/brflowers,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"tYx" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"tYL" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"tYZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -51512,9 +42505,7 @@
/area/lv522/indoors/a_block/bridges/dorms_fitness)
"tZc" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bridge)
"tZh" = (
/turf/open/auto_turf/shale/layer2,
@@ -51524,15 +42515,11 @@
flipped = 1
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"tZs" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"tZF" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -51550,39 +42537,26 @@
pixel_y = 12
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"tZP" = (
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_2/ceiling)
"tZR" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/hallway)
"uad" = (
/obj/structure/closet/boxinggloves,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"uam" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo/glass)
"uar" = (
/obj/effect/decal/cleanable/dirt,
@@ -51593,18 +42567,14 @@
/obj/structure/surface/table/almayer{
flipped = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"uaI" = (
/turf/open/floor/prison,
/area/lv522/indoors/c_block/garage)
"uaT" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms/glass)
"uaY" = (
/obj/effect/decal/cleanable/dirt,
@@ -51612,34 +42582,24 @@
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"ubd" = (
/obj/structure/closet/boxinggloves,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"ubv" = (
/obj/structure/target{
name = "punching bag"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"ubw" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue,
/area/lv522/indoors/a_block/hallway)
"ubz" = (
/obj/structure/machinery/shower{
pixel_y = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/fitness)
"ubF" = (
/obj/effect/decal/cleanable/dirt,
@@ -51658,9 +42618,7 @@
/area/lv522/indoors/c_block/cargo)
"uco" = (
/obj/structure/curtain/red,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/fitness)
"ucs" = (
/obj/structure/bed/chair/dropship/passenger{
@@ -51670,13 +42628,11 @@
dir = 4;
pixel_y = -5
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"ucx" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/fitness)
"ucD" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -51701,16 +42657,11 @@
pixel_x = -6;
pixel_y = 7
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"ucY" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"udi" = (
/obj/structure/platform{
@@ -51724,10 +42675,7 @@
/obj/item/reagent_container/food/drinks/golden_cup{
pixel_y = 9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"udA" = (
/obj/structure/machinery/landinglight/ds2/delayone{
@@ -51742,9 +42690,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"udM" = (
/obj/effect/decal/cleanable/dirt,
@@ -51758,19 +42704,14 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/lone_buildings/engineering)
"udR" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/cargo_intake)
"udU" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"uea" = (
/obj/structure/surface/table/almayer,
@@ -51783,10 +42724,7 @@
pixel_x = 6;
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"ueg" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -51794,9 +42732,7 @@
/area/lv522/indoors/c_block/mining)
"uep" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges/corpo_fitness)
"uet" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -51818,9 +42754,7 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"ueR" = (
/obj/effect/decal/cleanable/blood/oil/streak,
@@ -51829,26 +42763,17 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"ueT" = (
/obj/structure/bed/sofa/vert/white,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"ueW" = (
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"ueX" = (
/obj/effect/decal{
@@ -51863,9 +42788,7 @@
id = "Sec-Kitchen-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"ueY" = (
/obj/structure/machinery/door/airlock/almayer/maint{
@@ -51876,15 +42799,11 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"ufs" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"ufu" = (
/obj/item/tool/wrench{
@@ -51902,10 +42821,7 @@
density = 0;
icon_state = "book-5"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"ufR" = (
/obj/structure/machinery/landinglight/ds2/delayone{
@@ -51920,16 +42836,11 @@
pixel_y = 6
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"ufU" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/hallway)
"ugi" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -51937,10 +42848,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/cargo_intake)
"ugn" = (
/obj/structure/prop/invuln/ice_prefab/roof_greeble{
@@ -51948,18 +42856,13 @@
pixel_x = 4;
pixel_y = 2
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"ugo" = (
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"ugu" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -51970,17 +42873,12 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/cargo_intake)
"ugG" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"ugN" = (
/obj/item/storage/backpack/marine/satchel/scout_cloak,
@@ -52002,17 +42900,11 @@
"ugY" = (
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"uhf" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/north,
/area/lv522/indoors/a_block/dorms)
"uhv" = (
/obj/structure/bed/chair{
@@ -52031,10 +42923,7 @@
/obj/structure/surface/table/woodentable/fancy,
/obj/item/weapon/pole/fancy_cane,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"uhP" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -52045,10 +42934,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"uhV" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -52059,9 +42945,7 @@
dir = 1;
pixel_y = 26
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"uic" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -52072,9 +42956,7 @@
dir = 1;
pixel_y = 26
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"uie" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -52090,27 +42972,18 @@
pixel_x = 8;
pixel_y = -2
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"uii" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"uiu" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/plate,
/obj/item/trash/eat,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"uiK" = (
/turf/open/auto_turf/sand_white/layer0,
@@ -52122,10 +42995,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/folder/black_random,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"uiQ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -52140,10 +43010,7 @@
pixel_y = 12
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"uiS" = (
/obj/structure/window_frame/strata,
@@ -52174,9 +43041,7 @@
pixel_y = -5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"ujy" = (
/obj/effect/decal/warning_stripes{
@@ -52192,10 +43057,7 @@
pixel_x = 4;
pixel_y = 3
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"ukp" = (
/obj/structure/surface/table/almayer,
@@ -52212,18 +43074,13 @@
},
/obj/item/tool/surgery/scalpel/manager,
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"ukB" = (
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"ukK" = (
/obj/effect/decal/cleanable/blood,
@@ -52236,9 +43093,7 @@
"ukT" = (
/obj/structure/closet/crate,
/obj/item/storage/pouch/pressurized_reagent_canister/revival,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"ulh" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -52246,10 +43101,7 @@
},
/area/lv522/landing_zone_forecon/UD6_Tornado)
"ulL" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/lv522/indoors/a_block/dorms)
"ulZ" = (
/turf/open/organic/grass,
@@ -52271,9 +43123,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/landing_zone_1)
"umR" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -52304,9 +43154,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"unS" = (
/obj/structure/pipes/vents/pump,
@@ -52314,18 +43162,14 @@
/area/lv522/indoors/c_block/cargo)
"unU" = (
/obj/structure/prop/dam/crane/damaged,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"unX" = (
/obj/item/weapon/twohanded/folded_metal_chair,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"uog" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -52343,10 +43187,7 @@
pixel_x = -8;
pixel_y = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"uok" = (
/obj/structure/prop/invuln{
@@ -52364,10 +43205,7 @@
/area/lv522/landing_zone_1/ceiling)
"uom" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"uoA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -52379,16 +43217,11 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"upa" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/south)
"upc" = (
/obj/structure/machinery/suit_storage_unit{
@@ -52397,9 +43230,7 @@
/obj/structure/machinery/suit_storage_unit{
pixel_x = 16
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"upl" = (
/obj/structure/surface/table/almayer,
@@ -52415,10 +43246,7 @@
pixel_x = 6;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"upr" = (
/obj/effect/spawner/random/technology_scanner,
@@ -52466,9 +43294,7 @@
/area/lv522/indoors/a_block/admin)
"uqt" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"uqx" = (
/obj/structure/window/framed/strata/reinforced,
@@ -52476,9 +43302,7 @@
dir = 4;
id = "Sec-Armoury-Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"uqP" = (
/obj/structure/cargo_container/horizontal/blue/top{
@@ -52530,38 +43354,27 @@
/turf/open/floor/prison,
/area/lv522/indoors/a_block/security)
"urY" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"usn" = (
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/engineering)
"usy" = (
/obj/structure/machinery/shower{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/fitness)
"usz" = (
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/fitness)
"usJ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/wood/wood_broken3,
/area/lv522/indoors/b_block/bar)
"usP" = (
/obj/effect/decal/cleanable/dirt,
@@ -52577,15 +43390,10 @@
pixel_x = -3;
pixel_y = -3
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"utd" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/corpo_fitness)
"utm" = (
/obj/structure/surface/table/almayer,
@@ -52598,10 +43406,7 @@
pixel_y = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"utq" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -52621,10 +43426,7 @@
/obj/item/trash/cigbutt{
pixel_x = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"utH" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -52636,9 +43438,7 @@
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib3"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"utR" = (
/obj/structure/machinery/power/apc/weak{
@@ -52647,17 +43447,12 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/tool/pen/blue,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"uue" = (
/obj/structure/machinery/light,
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"uug" = (
/obj/structure/stairs/perspective{
@@ -52675,26 +43470,18 @@
/area/lv522/landing_zone_1/tunnel)
"uul" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner,
/area/lv522/atmos/east_reactor/south)
"uur" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"uuA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"uuB" = (
/obj/structure/bed/chair/comfy{
@@ -52717,19 +43504,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"uuW" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"uvg" = (
/obj/effect/decal/warning_stripes{
@@ -52743,19 +43524,14 @@
pixel_x = -5;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"uvt" = (
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"uvC" = (
/obj/structure/closet/crate/trashcart,
@@ -52764,16 +43540,11 @@
/area/lv522/outdoors/colony_streets/east_central_street)
"uvF" = (
/obj/structure/curtain/medical,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/east,
/area/lv522/indoors/a_block/medical/glass)
"uwb" = (
/obj/structure/machinery/light/double,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"uwe" = (
/obj/effect/decal/cleanable/blood,
@@ -52781,19 +43552,14 @@
/area/lv522/landing_zone_1/tunnel/far)
"uwk" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness)
"uwn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"uwF" = (
/turf/closed/wall/strata_ice/dirty,
@@ -52810,10 +43576,7 @@
/obj/item/stack/rods,
/obj/item/shard,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"uxb" = (
/obj/structure/surface/table/reinforced/prison,
@@ -52823,10 +43586,7 @@
},
/obj/item/storage/firstaid/fire,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"uxd" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -52834,33 +43594,23 @@
/area/lv522/outdoors/nw_rockies)
"uxf" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/cargo_intake)
"uxi" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/cargo_intake)
"uxn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"uya" = (
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"uyt" = (
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/corpo)
"uyB" = (
/obj/structure/machinery/light{
@@ -52868,9 +43618,7 @@
},
/obj/structure/machinery/disposal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"uyM" = (
/obj/structure/surface/table/reinforced/prison,
@@ -52886,9 +43634,7 @@
icon_state = "ashtray_small_bl_full";
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"uyN" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -52923,19 +43669,14 @@
pixel_x = 4;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"uzI" = (
/turf/closed/wall/solaris/reinforced/hull/lv522,
/area/space)
"uzK" = (
/obj/item/stack/rods,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"uzR" = (
/obj/structure/barricade/wooden{
@@ -52944,10 +43685,7 @@
pixel_y = 17
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"uAa" = (
/turf/open/floor/prison,
@@ -52960,10 +43698,7 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/outdoors/colony_streets/north_west_street)
"uAd" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/north_command_centre)
"uAm" = (
/turf/open/floor/corsat,
@@ -52981,9 +43716,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper A-Block - Colony Operations Centre Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"uBm" = (
/obj/structure/girder,
@@ -53004,10 +43737,7 @@
pixel_x = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 1;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/north,
/area/lv522/indoors/a_block/medical/glass)
"uCo" = (
/obj/structure/stairs/perspective{
@@ -53033,9 +43763,7 @@
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"uDb" = (
/turf/open/floor/prison,
@@ -53056,9 +43784,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"uDT" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -53071,10 +43797,7 @@
dir = 10;
id = "cargo_container"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/cargo_intake)
"uEr" = (
/obj/structure/stairs/perspective{
@@ -53113,10 +43836,7 @@
/turf/open/floor/plating,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"uEC" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"uEE" = (
/obj/structure/bed/chair/comfy,
@@ -53126,25 +43846,18 @@
/obj/item/explosive/mine/active{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"uEH" = (
/obj/structure/machinery/landinglight/ds1/delayone{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1)
"uEP" = (
/obj/structure/machinery/disposal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"uEV" = (
/obj/effect/decal/cleanable/dirt,
@@ -53165,10 +43878,7 @@
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"uFe" = (
/obj/structure/bed/sofa/vert/white/bot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"uFo" = (
/obj/effect/decal/cleanable/dirt,
@@ -53177,18 +43887,13 @@
/obj/structure/barricade/deployable{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"uFp" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement14"
- },
+/turf/open/asphalt/cement/cement14,
/area/lv522/landing_zone_1)
"uFz" = (
/obj/item/clipboard,
@@ -53200,9 +43905,7 @@
pixel_x = -7;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"uFB" = (
/obj/structure/prop/invuln/ice_prefab{
@@ -53213,34 +43916,23 @@
/area/lv522/outdoors/colony_streets/central_streets)
"uFF" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"uFG" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/command_centre)
"uFL" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"uFO" = (
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Mining Equipment"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"uFT" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/reactor_garage)
"uGa" = (
/obj/effect/decal/cleanable/dirt,
@@ -53248,10 +43940,7 @@
layer = 2.9;
pill_type_to_fill = null
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"uGd" = (
/obj/effect/decal/warning_stripes{
@@ -53264,21 +43953,15 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"uGl" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"uGK" = (
/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"uGO" = (
/obj/structure/coatrack{
@@ -53289,9 +43972,7 @@
pixel_x = 9;
pixel_y = 9
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"uGT" = (
/obj/item/explosive/mine/active,
@@ -53310,18 +43991,13 @@
name = "weak acid"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/east,
/area/lv522/indoors/a_block/dorms)
"uHn" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"uHq" = (
/obj/structure/surface/table/almayer,
@@ -53332,21 +44008,15 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"uHE" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/central_streets)
"uHN" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo)
"uIa" = (
/obj/effect/decal/cleanable/dirt,
@@ -53354,9 +44024,7 @@
dir = 1
},
/obj/structure/machinery/light/small,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"uIe" = (
/obj/structure/ore_box,
@@ -53370,25 +44038,17 @@
/area/lv522/indoors/b_block/bridge)
"uIn" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"uIo" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"uIr" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/central_streets)
"uIB" = (
/obj/structure/sign/nosmoking_2{
@@ -53396,9 +44056,7 @@
},
/obj/structure/surface/rack,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"uIF" = (
/obj/structure/barricade/handrail,
@@ -53418,15 +44076,10 @@
/area/lv522/indoors/a_block/fitness/glass)
"uIO" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"uIW" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/west_reactor)
"uIY" = (
/obj/structure/platform_decoration,
@@ -53444,7 +44097,7 @@
/obj/structure/bed/chair/dropship/passenger{
dir = 4
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"uJl" = (
/obj/structure/filingcabinet{
@@ -53458,22 +44111,15 @@
pixel_y = 19
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"uJr" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/west,
/area/lv522/indoors/a_block/dorms)
"uJY" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"uKa" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -53487,9 +44133,7 @@
dir = 4;
id = "Sec-Kitchen-Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/kitchen/glass)
"uKw" = (
/obj/structure/bed/chair{
@@ -53499,17 +44143,13 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/garage)
"uKy" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges/op_centre)
"uKD" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"uKE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -53544,20 +44184,14 @@
/area/lv522/landing_zone_1)
"uLk" = (
/obj/structure/machinery/conveyor,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/cargo_intake)
"uLp" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/bridges/corpo_fitness)
"uLw" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -53609,9 +44243,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/mining)
"uMq" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/kitchen)
"uMr" = (
/obj/effect/decal/cleanable/dirt,
@@ -53626,16 +44258,12 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/a_block/bridges)
"uMP" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/east)
"uMV" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"uNd" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -53663,37 +44291,25 @@
/area/lv522/indoors/b_block/bridge)
"uNB" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges/op_centre)
"uNJ" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"uNS" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"uNW" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/ceramic_plate{
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"uOd" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_west_street)
"uOj" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -53745,16 +44361,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/bridges/corpo_fitness)
"uOP" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/north_street)
"uPc" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -53763,32 +44374,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo/glass)
"uPn" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"uPo" = (
/obj/structure/largecrate/guns/russian,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1/ceiling)
"uPv" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/computer/PC{
pixel_y = 3
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"uPy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -53801,16 +44403,12 @@
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/t_comm)
"uPS" = (
/obj/structure/surface/table/almayer,
/obj/item/paper/janitor,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/mining)
"uQf" = (
/obj/structure/platform{
@@ -53826,16 +44424,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"uQi" = (
/obj/item/clothing/suit/storage/marine/medium/smooth,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"uQn" = (
/obj/structure/platform{
@@ -53863,19 +44456,13 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"uQF" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"uQI" = (
/obj/effect/decal/warning_stripes{
@@ -53888,26 +44475,18 @@
/turf/open/floor/corsat,
/area/lv522/atmos/cargo_intake)
"uRb" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"uRt" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"uRx" = (
/obj/item/reagent_container/glass/rag,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"uRB" = (
/obj/structure/bed{
@@ -53919,9 +44498,7 @@
pixel_y = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"uRL" = (
/obj/structure/fence,
@@ -53936,9 +44513,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_street)
"uRR" = (
/obj/structure/platform{
@@ -53947,9 +44522,7 @@
/turf/open/gm/river,
/area/lv522/landing_zone_1/tunnel)
"uSn" = (
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/north_west_street)
"uSo" = (
/obj/item/storage/backpack/marine/satchel{
@@ -53969,9 +44542,7 @@
"uSw" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"uSB" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -54013,10 +44584,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/cargo)
"uTj" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/north_command_centre)
"uTv" = (
/obj/structure/window_frame/strata,
@@ -54024,10 +44592,7 @@
/area/lv522/indoors/a_block/corpo)
"uTy" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/south)
"uTI" = (
/obj/structure/machinery/light{
@@ -54035,17 +44600,13 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/corpo)
"uTK" = (
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_west_street)
"uTS" = (
/obj/structure/pipes/vents/pump,
@@ -54053,17 +44614,12 @@
pixel_y = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/executive)
"uTV" = (
/obj/structure/surface/table/almayer,
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"uTY" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -54096,9 +44652,7 @@
pixel_y = 7
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"uUB" = (
/obj/structure/foamed_metal,
@@ -54109,24 +44663,17 @@
"uVa" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"uVj" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"uVw" = (
/obj/structure/barricade/handrail{
layer = 3.7
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/c_block/mining)
"uVy" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -54134,9 +44681,7 @@
/area/lv522/indoors/a_block/kitchen/damage)
"uVH" = (
/obj/item/stool,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/lone_buildings/chunk)
"uVI" = (
/obj/structure/machinery/light{
@@ -54148,10 +44693,7 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"uVU" = (
/obj/structure/surface/table/almayer,
@@ -54160,9 +44702,7 @@
pixel_y = 7
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"uVZ" = (
/obj/structure/surface/table/almayer,
@@ -54173,33 +44713,24 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"uWh" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"uWx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"uWz" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"uWD" = (
/obj/effect/decal/warning_stripes{
@@ -54211,9 +44742,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper B-Block Bar"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bar)
"uWO" = (
/turf/open/auto_turf/sand_white/layer0,
@@ -54222,16 +44751,11 @@
/obj/structure/machinery/portable_atmospherics/hydroponics{
icon_state = "hydrotray4"
},
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv522/indoors/b_block/hydro/glass)
"uXa" = (
/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2/ceiling)
"uXp" = (
/obj/item/weapon/twohanded/folded_metal_chair,
@@ -54263,17 +44787,12 @@
pixel_y = 5
},
/obj/item/toy/plush/farwa,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"uYi" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"uYk" = (
/obj/structure/largecrate/random,
@@ -54282,23 +44801,15 @@
/area/lv522/indoors/c_block/mining)
"uYq" = (
/obj/structure/cargo_container/grant/left,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"uZc" = (
/obj/structure/machinery/floodlight/landing,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1)
"uZf" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- dir = 6;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southeast,
/area/lv522/atmos/west_reactor)
"uZC" = (
/obj/structure/surface/table/almayer,
@@ -54309,23 +44820,15 @@
pixel_y = 20
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"uZO" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"uZV" = (
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/atmos/way_in_command_centre)
"vae" = (
/obj/item/prop/colony/used_flare,
@@ -54344,10 +44847,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/rods,
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"vaA" = (
/obj/structure/surface/table/almayer,
@@ -54359,9 +44859,7 @@
pixel_x = 7
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"vaZ" = (
/obj/item/lightstick/red/spoke/planted{
@@ -54381,10 +44879,7 @@
name = "????";
stat = 2
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/south)
"vbu" = (
/turf/open/floor/prison,
@@ -54419,18 +44914,14 @@
layer = 3.1
},
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"vbV" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"vbX" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -54454,23 +44945,17 @@
/obj/structure/platform{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"vcH" = (
/obj/structure/barricade/wooden,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"vcJ" = (
/obj/structure/closet/secure_closet/miner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"vcR" = (
/obj/structure/largecrate/random/mini/med,
@@ -54497,9 +44982,7 @@
/obj/structure/stairs/perspective{
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"vdx" = (
/obj/structure/surface/table/almayer,
@@ -54514,27 +44997,21 @@
},
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"vdz" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper C-Block - Garage Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/bridge)
"vdH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"vdP" = (
/obj/structure/platform_decoration{
@@ -54549,9 +45026,7 @@
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
/obj/item/reagent_container/food/snacks/cheesyfries,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"vdZ" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -54565,28 +45040,21 @@
dir = 8
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"veD" = (
/obj/structure/surface/rack,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"veP" = (
/obj/structure/pipes/standard/simple/hidden/green,
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/a_block/kitchen)
"veQ" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_west_street)
"veT" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -54600,9 +45068,7 @@
},
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/corpo)
"vfj" = (
/obj/structure/bed/stool{
@@ -54640,19 +45106,14 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/op_centre)
"vfN" = (
/obj/structure/surface/rack,
/obj/item/hardpoint/locomotion/van_wheels,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"vga" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -54679,9 +45140,7 @@
pixel_y = -12
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"vgw" = (
/obj/structure/platform,
@@ -54694,9 +45153,7 @@
/area/lv522/indoors/a_block/admin)
"vgI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/corpo_fitness)
"vgM" = (
/obj/structure/platform_decoration{
@@ -54714,23 +45171,16 @@
"vhr" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"vht" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"vhA" = (
/obj/item/prop/colony/used_flare,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"vhC" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -54752,10 +45202,7 @@
icon_state = "SW-out"
},
/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"viA" = (
/obj/item/lightstick/red/spoke/planted{
@@ -54781,10 +45228,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"viE" = (
/obj/structure/platform/strata{
@@ -54800,17 +45244,12 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/east_reactor/south)
"viI" = (
/obj/structure/pipes/vents/pump,
/obj/vehicle/powerloader,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"viN" = (
/obj/effect/decal/cleanable/blood/oil/streak,
@@ -54828,9 +45267,7 @@
/area/lv522/atmos/east_reactor/south)
"vjn" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"vjr" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -54840,9 +45277,7 @@
/area/lv522/indoors/c_block/mining)
"vju" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/reactor_garage)
"vjv" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -54865,9 +45300,7 @@
pixel_x = 10;
pixel_y = 27
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"vjB" = (
/obj/structure/machinery/light{
@@ -54880,9 +45313,7 @@
/area/lv522/landing_zone_1/ceiling)
"vjF" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"vjG" = (
/obj/structure/largecrate/random{
@@ -54915,10 +45346,7 @@
/area/lv522/indoors/a_block/admin)
"vkC" = (
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/fitness)
"vkD" = (
/obj/effect/decal/cleanable/dirt,
@@ -54927,10 +45355,7 @@
/area/lv522/indoors/c_block/casino)
"vkG" = (
/obj/structure/window/reinforced,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"vlp" = (
/obj/item/pipe,
@@ -54947,20 +45372,13 @@
pixel_y = 7
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"vlN" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/bridges/corpo_fitness)
"vlT" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/east_central_street)
"vlX" = (
/obj/effect/decal/cleanable/dirt,
@@ -54971,18 +45389,13 @@
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"vmo" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"vmG" = (
/obj/structure/surface/table/gamblingtable,
@@ -54997,9 +45410,7 @@
/obj/structure/surface/rack,
/obj/item/stack/sheet/cardboard/full_stack,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"vmQ" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -55011,9 +45422,7 @@
"vmT" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"vne" = (
/obj/structure/fence{
@@ -55026,38 +45435,24 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/outdoors/colony_streets/north_west_street)
"vni" = (
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/bridges/corpo_fitness)
"vnp" = (
/obj/structure/curtain/medical,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/west,
/area/lv522/indoors/a_block/medical/glass)
"vnq" = (
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/op_centre)
"vnX" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"voi" = (
/obj/effect/decal/cleanable/blood,
@@ -55071,14 +45466,10 @@
phone_id = "Colony Casino";
pixel_x = 16
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"vou" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"vov" = (
/obj/item/prop/alien/hugger{
@@ -55100,18 +45491,13 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/outdoors/colony_streets/central_streets)
"voL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/central_streets)
"voX" = (
/obj/effect/decal/cleanable/dirt,
@@ -55121,9 +45507,7 @@
pixel_x = -1;
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"vpa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -55142,15 +45526,10 @@
/obj/structure/flora/bush{
pixel_y = 9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/dorms)
"vpk" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo)
"vpp" = (
/obj/structure/window/framed/strata/reinforced,
@@ -55161,9 +45540,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"vpB" = (
/obj/effect/decal/cleanable/dirt,
@@ -55171,10 +45548,7 @@
dir = 1;
pixel_y = 26
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"vpD" = (
/obj/effect/decal/cleanable/dirt,
@@ -55182,9 +45556,7 @@
/area/lv522/indoors/c_block/garage)
"vpO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo)
"vpU" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -55205,17 +45577,12 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/oob/w_y_vault)
"vqk" = (
/obj/vehicle/train/cargo/trolley,
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"vqm" = (
/obj/item/prop/alien/hugger,
@@ -55236,24 +45603,17 @@
current_rounds = 0
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"vqH" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"vqW" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"vra" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -55263,10 +45623,7 @@
/area/lv522/indoors/a_block/dorms/glass)
"vrd" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/outdoors/colony_streets/north_east_street)
"vrf" = (
/obj/structure/machinery/light{
@@ -55278,10 +45635,7 @@
"vrg" = (
/obj/structure/barricade/wooden,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"vrE" = (
/obj/structure/surface/table/almayer,
@@ -55293,16 +45647,11 @@
amount = 60;
pixel_y = 12
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/oob/w_y_vault)
"vrV" = (
/obj/structure/window/framed/corsat/hull,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/oob)
"vrW" = (
/obj/structure/stairs/perspective{
@@ -55320,17 +45669,13 @@
pixel_y = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"vsh" = (
/obj/structure/fence{
layer = 2.9
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"vsj" = (
/obj/structure/reagent_dispensers/fueltank/gas,
@@ -55340,9 +45685,7 @@
pixel_y = 13
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"vsk" = (
/obj/structure/coatrack{
@@ -55351,24 +45694,17 @@
},
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/multi_tiles,
/area/lv522/indoors/c_block/mining)
"vso" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1/ceiling)
"vss" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_east_street)
"vsy" = (
/obj/structure/stairs/perspective{
@@ -55378,18 +45714,13 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"vsG" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"vsI" = (
/obj/structure/surface/rack,
@@ -55398,18 +45729,14 @@
/obj/structure/barricade/handrail/strata{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"vsZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"vtc" = (
/turf/open/auto_turf/shale/layer1,
@@ -55418,19 +45745,14 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/bridges/corpo)
"vtp" = (
/obj/structure/toilet{
pixel_y = 16
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/executive)
"vtA" = (
/obj/structure/surface/table/almayer,
@@ -55438,14 +45760,10 @@
pixel_x = -2;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"vtN" = (
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/landing_zone_1)
"vtP" = (
/obj/structure/machinery/portable_atmospherics/hydroponics{
@@ -55455,9 +45773,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv522/indoors/b_block/hydro/glass)
"vuc" = (
/obj/structure/bed/chair/comfy{
@@ -55473,25 +45789,17 @@
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/ceiling)
"vuH" = (
/obj/structure/largecrate,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1/ceiling)
"vuS" = (
/obj/item/ammo_magazine/rifle/heap{
current_rounds = 0
},
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/south)
"vuY" = (
/obj/item/clothing/mask/facehugger{
@@ -55501,19 +45809,14 @@
name = "????";
stat = 2
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"vvi" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"vwi" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -55536,10 +45839,7 @@
"vwQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/firecloset/full,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"vxa" = (
/obj/structure/closet/crate,
@@ -55556,10 +45856,7 @@
/area/lv522/indoors/c_block/mining)
"vxe" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/lv522/indoors/a_block/admin)
"vxf" = (
/obj/item/pipe{
@@ -55575,10 +45872,7 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor/south)
"vxv" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -55590,9 +45884,7 @@
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib3"
},
-/turf/open/floor/prison{
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe,
/area/lv522/atmos/way_in_command_centre)
"vxG" = (
/obj/structure/stairs/perspective{
@@ -55602,9 +45894,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_east_street)
"vxM" = (
/obj/structure/barricade/wooden,
@@ -55618,10 +45908,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "cyan2"
- },
+/turf/open/floor/strata/cyan2/east,
/area/lv522/indoors/a_block/medical)
"vyz" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -55636,19 +45923,14 @@
/area/lv522/indoors/b_block/bar)
"vyH" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"vzd" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/west)
"vzg" = (
/obj/item/stack/rods{
@@ -55663,10 +45945,7 @@
pixel_x = 13;
pixel_y = 25
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"vzn" = (
/obj/item/clothing/shoes/jackboots{
@@ -55686,9 +45965,7 @@
/area/lv522/indoors/a_block/dorms)
"vzu" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"vzw" = (
/obj/structure/machinery/light{
@@ -55697,10 +45974,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"vzy" = (
/obj/structure/prop/invuln/ice_prefab/trim{
@@ -55726,21 +46000,14 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"vzZ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan4"
- },
+/turf/open/floor/strata/white_cyan4/west,
/area/lv522/indoors/a_block/medical)
"vAi" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/west_reactor)
"vAn" = (
/obj/item/prop/alien/hugger,
@@ -55751,43 +46018,29 @@
pixel_x = 6;
pixel_y = 4
},
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor)
"vAW" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1/ceiling)
"vAX" = (
/obj/structure/bed/chair/comfy,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"vBa" = (
/obj/structure/girder/displaced,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/central_streets)
"vBb" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"vBd" = (
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"vBm" = (
/obj/structure/platform{
@@ -55810,9 +46063,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"vBB" = (
/obj/structure/surface/table/gamblingtable,
@@ -55824,10 +46075,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"vBK" = (
/obj/structure/platform_decoration{
@@ -55838,18 +46086,13 @@
/area/lv522/indoors/c_block/garage)
"vBL" = (
/obj/effect/spawner/gibspawner/xeno,
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/north_street)
"vBM" = (
/obj/structure/barricade/handrail{
dir = 8
},
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/west,
/area/lv522/indoors/lone_buildings/storage_blocks)
"vBN" = (
/obj/structure/bed/chair,
@@ -55862,18 +46105,14 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/uscm_mre,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"vCy" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"vCz" = (
/obj/item/pipe{
@@ -55918,9 +46157,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/a_block/hallway)
"vDo" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_2/ceiling)
"vDp" = (
/obj/structure/surface/table/almayer,
@@ -55928,9 +46165,7 @@
pixel_y = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"vDr" = (
/obj/structure/largecrate/random,
@@ -55952,10 +46187,7 @@
/obj/structure/flora/bush{
pixel_y = 9
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"vDT" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -55968,17 +46200,13 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"vDV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"vEf" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -55997,34 +46225,23 @@
pixel_x = 7;
pixel_y = 20
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor/east)
"vEB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/roller,
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"vEK" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/hydro)
"vER" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1)
"vEW" = (
/obj/structure/barricade/wooden,
@@ -56058,9 +46275,7 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"vFJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_west_street)
"vFQ" = (
/obj/structure/machinery/light{
@@ -56068,9 +46283,7 @@
},
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"vGb" = (
/obj/structure/machinery/colony_floodlight{
@@ -56099,19 +46312,14 @@
/area/lv522/outdoors/colony_streets/north_east_street)
"vGB" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"vGG" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/a_block/dorms)
"vGP" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/engineering)
"vHd" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56127,10 +46335,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"vHw" = (
/obj/structure/barricade/wooden{
@@ -56152,10 +46357,7 @@
pixel_x = -8;
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"vHG" = (
/obj/effect/decal/cleanable/dirt,
@@ -56184,9 +46386,7 @@
layer = 3.1
},
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"vHN" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -56200,36 +46400,25 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"vIb" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/gloves/boxing,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"vId" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 5;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/northeast,
/area/lv522/indoors/a_block/dorms)
"vIe" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"vIg" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -56237,33 +46426,23 @@
name = "\improper Community Office"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"vIy" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/prison,
/area/lv522/indoors/lone_buildings/engineering)
"vIS" = (
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/west,
/area/lv522/atmos/east_reactor/south)
"vIU" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"vJb" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/fitness)
"vJj" = (
/obj/structure/machinery/landinglight/ds1{
@@ -56274,17 +46453,13 @@
"vJn" = (
/obj/structure/surface/table/almayer,
/obj/item/newspaper,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"vJo" = (
/obj/structure/barricade/deployable{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_east_street)
"vJr" = (
/obj/structure/machinery/landinglight/ds2/delaythree,
@@ -56296,17 +46471,11 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"vJw" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/atmos/sewer)
"vJD" = (
/obj/structure/window/framed/strata/reinforced,
@@ -56321,9 +46490,7 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"vJT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"vKe" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -56334,24 +46501,17 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/casino)
"vKA" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/under/redpyjamas,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"vKF" = (
/obj/structure/surface/table/almayer,
/obj/item/toy/beach_ball/holoball,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"vKJ" = (
/obj/structure/machinery/door/airlock/almayer/security/glass{
@@ -56364,9 +46524,7 @@
dir = 4;
id = "Sec-Armoury-Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"vKO" = (
/obj/effect/decal/warning_stripes{
@@ -56395,25 +46553,18 @@
pixel_y = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"vLu" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/gloves/boxing/yellow,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"vLA" = (
/obj/structure/pipes/standard/manifold/visible{
dir = 1
},
-/turf/open/floor/strata{
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3,
/area/lv522/indoors/a_block/medical/glass)
"vLI" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -56421,16 +46572,12 @@
id = "LV_522_Hydro-Lockdown";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bridge)
"vLO" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/hardpoint/locomotion/van_wheels,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"vLQ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -56438,22 +46585,16 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"vLR" = (
/obj/item/stack/sheet/wood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"vMg" = (
/obj/structure/safe,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"vMu" = (
/obj/item/weapon/gun/boltaction,
@@ -56470,9 +46611,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/central_streets)
"vMJ" = (
/obj/structure/surface/table/gamblingtable,
@@ -56484,10 +46623,7 @@
/area/lv522/indoors/c_block/casino)
"vMM" = (
/obj/structure/machinery/light/small,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"vMX" = (
/obj/structure/surface/rack,
@@ -56497,9 +46633,7 @@
pixel_y = 11
},
/obj/item/ammo_box/magazine/misc/flares,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/lone_buildings/storage_blocks)
"vNi" = (
/obj/item/prop/alien/hugger,
@@ -56519,10 +46653,7 @@
"vNy" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/bed/roller,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"vNO" = (
/obj/structure/barricade/wooden{
@@ -56539,17 +46670,12 @@
id = "LZ1_Lockdown_Lo";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/ceiling)
"vNY" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"vOb" = (
/obj/structure/machinery/door_control{
@@ -56562,67 +46688,48 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"vOt" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_street)
"vOA" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"vOP" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
/obj/item/prop/alien/hugger,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/command_centre)
"vOT" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/c_block/bridge)
"vOY" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"vOZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"vPb" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 2
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_2/ceiling)
"vPk" = (
/obj/effect/decal/warning_stripes{
@@ -56637,15 +46744,11 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"vPm" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_street)
"vPs" = (
/obj/structure/prop/dam/crane/damaged,
@@ -56668,37 +46771,27 @@
/area/lv522/outdoors/colony_streets/central_streets)
"vQn" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor)
"vQL" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"vQO" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"vQT" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges/corpo)
"vQX" = (
/obj/effect/decal/cleanable/dirt,
@@ -56710,10 +46803,7 @@
/obj/structure/barricade/handrail{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"vRh" = (
/obj/structure/surface/table/almayer,
@@ -56726,24 +46816,17 @@
pixel_y = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"vRv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/largecrate/random/mini/wooden,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"vRQ" = (
/obj/structure/surface/table/almayer,
/obj/item/stack/sheet/metal/medium_stack,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"vSc" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -56752,9 +46835,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/executive)
"vSC" = (
/obj/structure/surface/table/almayer,
@@ -56765,16 +46846,12 @@
pixel_x = -2;
pixel_y = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/mining)
"vSJ" = (
/obj/structure/blocker/forcefield/vehicles,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/north_command_centre)
"vSM" = (
/obj/structure/tunnel,
@@ -56793,10 +46870,7 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"vSU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56809,10 +46883,7 @@
/obj/structure/tunnel/maint_tunnel{
pixel_y = 6
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"vTn" = (
/obj/structure/barricade/wooden{
@@ -56829,18 +46900,13 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/outdoors/colony_streets/central_streets)
"vTx" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_east_street)
"vTK" = (
/obj/structure/prop/vehicles{
icon_state = "van_damaged"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/reactor_garage)
"vTO" = (
/obj/structure/machinery/landinglight/ds1{
@@ -56854,28 +46920,20 @@
/turf/open/floor/plating,
/area/lv522/landing_zone_1/tunnel)
"vTT" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/ceiling)
"vTW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"vUb" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/table/almayer,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"vUe" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -56893,10 +46951,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"vUn" = (
/obj/structure/surface/table/reinforced/prison,
@@ -56916,16 +46971,11 @@
dir = 8
},
/obj/item/stack/sheet/metal,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"vUX" = (
/obj/structure/powerloader_wreckage/ft,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_1/ceiling)
"vVd" = (
/obj/structure/cargo_container/kelland/left,
@@ -56944,38 +46994,27 @@
},
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"vVi" = (
/obj/structure/largecrate,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"vVp" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"vVs" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bar)
"vVx" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"vVS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -56990,10 +47029,7 @@
layer = 3.1;
pixel_y = 17
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/hallway)
"vWl" = (
/obj/item/prop/alien/hugger,
@@ -57010,9 +47046,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_west_street)
"vWI" = (
/obj/structure/largecrate/random,
@@ -57027,9 +47061,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"vXc" = (
/turf/open/auto_turf/shale/layer1,
@@ -57039,9 +47071,7 @@
dir = 8
},
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"vXY" = (
/obj/structure/barricade/handrail/strata{
@@ -57053,18 +47083,14 @@
/area/lv522/indoors/c_block/cargo)
"vYb" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_east_street)
"vYJ" = (
/obj/structure/barricade/wooden{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"vYK" = (
/obj/structure/platform_decoration{
@@ -57087,9 +47113,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"vYY" = (
/obj/structure/surface/table/almayer,
@@ -57105,10 +47129,7 @@
},
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"vZn" = (
/obj/structure/toilet{
@@ -57121,17 +47142,11 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/toilet)
"vZv" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"vZy" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -57141,10 +47156,7 @@
/area/lv522/indoors/a_block/security)
"vZI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/west,
/area/lv522/indoors/a_block/admin)
"vZP" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -57161,16 +47173,11 @@
/area/lv522/indoors/c_block/mining)
"wac" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/east,
/area/lv522/indoors/a_block/hallway)
"wan" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wao" = (
/obj/structure/window/framed/strata/reinforced,
@@ -57178,10 +47185,7 @@
/area/lv522/indoors/c_block/garage)
"way" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"waz" = (
/obj/structure/machinery/light/small{
@@ -57195,9 +47199,7 @@
dir = 1;
name = "Bathroom"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/toilet)
"waQ" = (
/obj/structure/platform,
@@ -57220,9 +47222,7 @@
id = "West LZ Storage";
name = "Emergency Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/storage_blocks)
"wbj" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
@@ -57256,18 +47256,14 @@
pixel_x = 8;
pixel_y = 22
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"wbE" = (
/obj/structure/platform_decoration{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"wbL" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
@@ -57276,9 +47272,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo)
"wbP" = (
/obj/structure/surface/table/reinforced/almayer_B,
@@ -57287,9 +47281,7 @@
pixel_x = -11;
pixel_y = 10
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/lone_buildings/chunk)
"wbR" = (
/turf/open/floor/plating,
@@ -57297,28 +47289,19 @@
"wbX" = (
/obj/structure/curtain/medical,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/west,
/area/lv522/indoors/a_block/medical/glass)
"wcp" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"wcq" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"wcM" = (
/obj/structure/largecrate/random/secure,
@@ -57333,31 +47316,21 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"wcR" = (
/obj/item/tool/crowbar,
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/north_west_street)
"wcT" = (
/obj/item/storage/firstaid/toxin/empty,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo/glass)
"wcX" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wcY" = (
/obj/effect/decal/cleanable/dirt,
@@ -57373,29 +47346,20 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"wdi" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/security/glass)
"wdj" = (
/turf/open/floor/prison,
/area/lv522/indoors/lone_buildings/engineering)
"wdy" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/central_streets)
"wdI" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1/ceiling)
"wdY" = (
/obj/structure/platform{
@@ -57405,24 +47369,17 @@
/area/lv522/landing_zone_1)
"wea" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"wee" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"weh" = (
/obj/structure/closet/secure_closet/freezer/fridge/full,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"wes" = (
/obj/structure/platform_decoration{
@@ -57472,23 +47429,15 @@
pixel_y = 24
},
/obj/structure/girder/reinforced,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wfe" = (
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/lv522/indoors/a_block/admin)
"wfh" = (
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/east,
/area/lv522/indoors/a_block/medical/glass)
"wfi" = (
/obj/structure/machinery/light{
@@ -57497,10 +47446,7 @@
/obj/item/prop/colony/usedbandage{
dir = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"wfl" = (
/obj/structure/surface/table/almayer,
@@ -57536,16 +47482,11 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/central_streets)
"wfK" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"wfP" = (
/turf/open/floor/plating,
@@ -57559,9 +47500,7 @@
/obj/structure/largecrate/random{
pixel_y = 16
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"wgn" = (
/obj/structure/largecrate/random,
@@ -57587,9 +47526,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"whn" = (
/obj/structure/surface/table/almayer,
@@ -57597,16 +47534,12 @@
dir = 8;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"whs" = (
/obj/structure/surface/rack,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"whz" = (
/obj/structure/filingcabinet{
@@ -57620,17 +47553,13 @@
pixel_y = 22
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"whD" = (
/obj/structure/platform{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_east_street)
"whE" = (
/obj/structure/cargo_container/horizontal/blue/top{
@@ -57645,39 +47574,29 @@
/area/lv522/indoors/c_block/cargo)
"whG" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2)
"whK" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"whR" = (
/obj/item/newspaper,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"whW" = (
/obj/structure/machinery/vending/coffee,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"whZ" = (
/obj/structure/machinery/conveyor{
dir = 8;
id = "cargo_container"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"wiz" = (
/obj/structure/desertdam/decals/road_edge{
@@ -57724,9 +47643,7 @@
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"wjE" = (
/obj/structure/platform_decoration{
@@ -57756,10 +47673,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/oob/w_y_vault)
"wke" = (
/obj/structure/stairs/perspective{
@@ -57770,10 +47684,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"wko" = (
/obj/effect/decal/warning_stripes{
@@ -57795,15 +47706,11 @@
pixel_y = 16
},
/obj/effect/spider/spiderling/nogrow,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"wky" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"wkC" = (
/obj/structure/prop/invuln/lattice_prop{
@@ -57811,15 +47718,10 @@
pixel_x = 6;
pixel_y = 19
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/lv522/indoors/a_block/kitchen/damage)
"wkO" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/c_block/cargo)
"wlw" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -57841,10 +47743,7 @@
/area/lv522/indoors/c_block/cargo)
"wlY" = (
/obj/structure/largecrate/random/secure,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1/ceiling)
"wmk" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -57857,17 +47756,13 @@
/obj/structure/bed/chair/comfy{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"wng" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/engineering)
"wnu" = (
/obj/structure/cargo_container/wy/right,
@@ -57879,9 +47774,7 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"wnM" = (
/obj/effect/decal/cleanable/dirt,
@@ -57892,10 +47785,7 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"wob" = (
/obj/effect/decal/cleanable/dirt,
@@ -57903,15 +47793,11 @@
/area/lv522/indoors/a_block/kitchen)
"wog" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"woi" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"woq" = (
/obj/structure/cargo_container/horizontal/blue/bottom,
@@ -57957,10 +47843,7 @@
/obj/structure/prop/server_equipment{
icon_state = "rackframe_broken"
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"wpd" = (
/obj/structure/surface/table/gamblingtable,
@@ -57973,10 +47856,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan3"
- },
+/turf/open/floor/strata/white_cyan3/west,
/area/lv522/indoors/a_block/medical/glass)
"wpn" = (
/obj/structure/window/framed/strata/reinforced,
@@ -57994,15 +47874,10 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"wpF" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/indoors/c_block/mining)
"wpH" = (
/obj/structure/window_frame/strata,
@@ -58015,9 +47890,7 @@
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/medium,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wqt" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -58033,10 +47906,7 @@
/area/lv522/indoors/c_block/garage)
"wqV" = (
/obj/structure/machinery/vending/hydroseeds,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"wrc" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -58057,17 +47927,13 @@
pixel_x = -6;
pixel_y = -6
},
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"wrz" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/cargo)
"wrC" = (
/turf/closed/wall/strata_outpost,
@@ -58077,9 +47943,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wsz" = (
/obj/structure/machinery/light{
@@ -58087,9 +47951,7 @@
},
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"wsC" = (
/obj/structure/platform{
@@ -58130,70 +47992,48 @@
density = 0;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"wtH" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"wtI" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/corpo)
"wtK" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/computer/PC{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"wtT" = (
/obj/structure/cargo_container/grant/rightmid,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"wua" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/accessory/storage/black_vest,
/obj/item/clothing/head/helmet/riot,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"wud" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
+/turf/open/floor/wood/wood_broken7,
/area/lv522/indoors/b_block/bar)
"wue" = (
/obj/effect/spawner/gibspawner/xeno,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"wuK" = (
/obj/structure/closet/crate,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"wuQ" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"wuX" = (
/obj/structure/bed/chair/wood/normal{
@@ -58211,9 +48051,7 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"wvq" = (
/obj/structure/machinery/seed_extractor,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv522/indoors/b_block/hydro/glass)
"wvt" = (
/obj/effect/decal/cleanable/dirt,
@@ -58223,32 +48061,23 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/east_reactor/south)
"wvO" = (
/obj/structure/filingcabinet,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"wvV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"wvX" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper A-Block Shared Dorms Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"wvY" = (
/obj/structure/window/framed/strata/reinforced,
@@ -58268,9 +48097,7 @@
"wwi" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/west)
"wwn" = (
/obj/structure/surface/table/reinforced/prison,
@@ -58280,10 +48107,7 @@
pixel_y = 13
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"wwy" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -58302,9 +48126,7 @@
unacidable = 1;
use_power = 0
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/oob)
"wwG" = (
/obj/structure/surface/table/almayer,
@@ -58315,19 +48137,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/central_streets)
"wwM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/space_heater/radiator/red{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"wwO" = (
/obj/effect/decal/cleanable/dirt,
@@ -58335,9 +48152,7 @@
dir = 1;
name = "\improper Family Dormitories"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"wwU" = (
/obj/effect/decal/cleanable/dirt,
@@ -58348,33 +48163,23 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"wwX" = (
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges)
"wxa" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"wxb" = (
/obj/structure/machinery/disposal,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wxg" = (
/obj/effect/decal/warning_stripes{
@@ -58384,17 +48189,13 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"wxB" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/central_streets)
"wxZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -58404,24 +48205,15 @@
/area/lv522/indoors/a_block/admin)
"wyn" = (
/obj/item/ammo_magazine/rifle/boltaction,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"wyv" = (
-/turf/open/floor/corsat{
- dir = 10;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/southwest,
/area/lv522/atmos/command_centre)
"wyy" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"wyA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -58430,9 +48222,7 @@
/obj/item/weapon/gun/rifle/m41a{
current_mag = null
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"wyE" = (
/obj/structure/surface/table/almayer,
@@ -58445,16 +48235,12 @@
pixel_x = -7;
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wyI" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges)
"wyM" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -58494,9 +48280,7 @@
/area/lv522/outdoors/colony_streets/south_west_street)
"wzJ" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wzS" = (
/obj/structure/platform_decoration,
@@ -58507,9 +48291,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/east_central_street)
"wAf" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -58519,17 +48301,12 @@
"wAB" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"wAE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"wAM" = (
/obj/structure/cargo_container/horizontal/blue/middle,
@@ -58537,18 +48314,13 @@
layer = 3.1;
pixel_y = 9
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"wBp" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/executive)
"wBx" = (
/obj/structure/machinery/landinglight/ds2/delayone{
@@ -58574,9 +48346,7 @@
/area/lv522/atmos/west_reactor)
"wBR" = (
/obj/structure/powerloader_wreckage,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"wCr" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -58591,31 +48361,21 @@
dir = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 8;
- icon_state = "white_cyan2"
- },
+/turf/open/floor/strata/white_cyan2/west,
/area/lv522/indoors/a_block/dorms)
"wCy" = (
/obj/structure/machinery/computer/arcade{
density = 0;
pixel_y = 16
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"wCC" = (
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/north_street)
"wCJ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"wCM" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -58631,9 +48391,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/central_streets)
"wCS" = (
/obj/structure/surface/table/almayer,
@@ -58644,9 +48402,7 @@
name = "synthethic potted plant";
pixel_y = 14
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wCW" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -58656,28 +48412,20 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"wDa" = (
/turf/open/floor/prison,
/area/lv522/landing_zone_2)
"wDh" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/northwest,
/area/lv522/indoors/a_block/admin)
"wDj" = (
/turf/closed/wall/strata_outpost,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"wDk" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southwest,
/area/lv522/indoors/a_block/admin)
"wDu" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -58688,22 +48436,15 @@
phone_id = "Colony Botany";
pixel_x = 16
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"wDy" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv522/indoors/b_block/bar)
"wDO" = (
/obj/structure/machinery/door/airlock/almayer/generic,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/b_block/bar)
"wDZ" = (
/obj/structure/surface/table/almayer,
@@ -58721,28 +48462,20 @@
dir = 1
},
/obj/structure/bed/roller,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/hallway)
"wEo" = (
/obj/structure/cargo_container/wy/mid{
health = 5000
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2)
"wEz" = (
/obj/structure/prop/server_equipment/yutani_server{
density = 0;
pixel_y = 16
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/nw_rockies)
"wEE" = (
/obj/effect/decal/cleanable/dirt,
@@ -58752,10 +48485,7 @@
pixel_y = 8
},
/obj/item/seeds/bananaseed,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"wEP" = (
/obj/structure/prop/invuln/ice_prefab/standalone/trim{
@@ -58769,9 +48499,7 @@
"wEQ" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wEW" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -58785,45 +48513,30 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"wFA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/outdoor)
"wFB" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/cargo)
"wFP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"wFT" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"wFU" = (
/obj/structure/bed/chair/comfy,
-/turf/open/floor/prison{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/southeast,
/area/lv522/indoors/a_block/admin)
"wGc" = (
/obj/item/device/m56d_post,
@@ -58839,9 +48552,7 @@
icon_state = "S";
pixel_y = -1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"wGE" = (
/obj/structure/surface/table/almayer,
@@ -58849,9 +48560,7 @@
pixel_y = 5
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"wGG" = (
/obj/structure/surface/table/almayer{
@@ -58859,9 +48568,7 @@
flipped = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"wGH" = (
/obj/item/prop/colony/usedbandage{
@@ -58881,9 +48588,7 @@
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wGY" = (
/obj/effect/decal/cleanable/dirt,
@@ -58891,17 +48596,13 @@
/area/lv522/indoors/a_block/admin)
"wHi" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"wHj" = (
/obj/structure/surface/rack,
/obj/structure/machinery/light,
/obj/item/clothing/mask/gas,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/lone_buildings/storage_blocks)
"wHo" = (
/obj/structure/surface/table/almayer,
@@ -58911,10 +48612,7 @@
},
/obj/item/clothing/head/hardhat/white,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"wHw" = (
/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right,
@@ -58925,9 +48623,7 @@
},
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"wHF" = (
/turf/open/floor/prison,
@@ -58937,9 +48633,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"wHU" = (
/obj/structure/cargo_container/horizontal/blue/middle,
@@ -58959,9 +48653,7 @@
dir = 1;
name = "\improper A-Block - Colony Operations Centre Airlock"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"wIi" = (
/obj/structure/machinery/colony_floodlight{
@@ -58987,9 +48679,7 @@
/obj/effect/decal/cleanable/blood/xeno{
icon_state = "xgib3"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"wIE" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -59003,24 +48693,18 @@
layer = 3
},
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"wJb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wJk" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"wJq" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -59040,9 +48724,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"wKH" = (
/obj/structure/stairs/perspective{
@@ -59057,17 +48739,12 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_west_street)
"wKV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"wLd" = (
/obj/structure/machinery/light,
@@ -59100,9 +48777,7 @@
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/drinks/coffee,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wLU" = (
/obj/structure/machinery/light{
@@ -59115,9 +48790,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_west_street)
"wMq" = (
/obj/structure/surface/table/reinforced/prison,
@@ -59126,9 +48799,7 @@
pixel_y = 10
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"wMF" = (
/obj/structure/machinery/camera/autoname{
@@ -59137,9 +48808,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"wNl" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -59155,23 +48824,16 @@
/obj/structure/platform_decoration{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"wNp" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/casino)
"wNF" = (
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"wNX" = (
/obj/structure/bed/chair,
@@ -59180,40 +48842,27 @@
/area/lv522/indoors/c_block/mining)
"wOo" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"wOu" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/n_rockies)
"wOC" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"wOU" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"wPt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"wPL" = (
/obj/structure/platform_decoration/strata{
@@ -59229,16 +48878,12 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/landing_zone_2)
"wPR" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv522/indoors/b_block/bar)
"wPV" = (
/obj/structure/closet/crate,
/obj/item/storage/xeno_tag_case,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/lone_buildings/storage_blocks)
"wQa" = (
/turf/open/auto_turf/shale/layer1,
@@ -59247,41 +48892,27 @@
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 5;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northeast,
/area/lv522/atmos/east_reactor/south)
"wQy" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/c_block/mining)
"wRa" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"wRd" = (
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2/southwest,
/area/lv522/indoors/a_block/dorms)
"wRf" = (
/obj/structure/machinery/door/airlock/almayer/maint,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/sewer)
"wRk" = (
/obj/effect/decal/warning_stripes{
@@ -59292,9 +48923,7 @@
"wRl" = (
/obj/structure/closet/firecloset/full,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"wRp" = (
/obj/structure/surface/rack,
@@ -59309,10 +48938,7 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"wRC" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"wRJ" = (
/obj/item/hardpoint/locomotion/van_wheels{
@@ -59320,10 +48946,7 @@
name = "Lifting weights"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"wRL" = (
/turf/closed/shuttle/dropship2/tornado{
@@ -59332,25 +48955,18 @@
/area/lv522/landing_zone_forecon/UD6_Tornado)
"wRZ" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"wSb" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor)
"wSr" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"wSt" = (
/obj/effect/decal/cleanable/blood/gibs,
@@ -59374,21 +48990,14 @@
pixel_x = 6;
pixel_y = 19
},
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"wTn" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo)
"wTq" = (
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/south)
"wTr" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -59399,10 +49008,7 @@
pixel_x = 11
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"wTv" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
@@ -59410,9 +49016,7 @@
/area/lv522/atmos/west_reactor)
"wTx" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"wTy" = (
/obj/structure/surface/table/reinforced/prison,
@@ -59439,17 +49043,12 @@
/area/lv522/indoors/c_block/garage)
"wTJ" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"wTV" = (
/obj/structure/prop/vehicles,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/reactor_garage)
"wUj" = (
/obj/structure/closet/crate/miningcar/yellow,
@@ -59459,26 +49058,20 @@
/obj/item/ore/diamond,
/obj/item/ore/diamond,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"wUp" = (
/obj/structure/stairs/perspective{
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"wUx" = (
/obj/structure/barricade/deployable{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"wUL" = (
/obj/structure/closet/toolcloset,
@@ -59520,20 +49113,14 @@
"wWc" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- dir = 8;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/west,
/area/lv522/atmos/east_reactor/south)
"wWe" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/carpet,
/area/lv522/indoors/a_block/executive)
"wWV" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"wWX" = (
/obj/effect/decal/cleanable/blood/gibs/xeno/body,
@@ -59553,22 +49140,14 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"wXA" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"wXQ" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"wYa" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -59593,9 +49172,7 @@
pixel_x = 1;
pixel_y = 6
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"wYE" = (
/obj/structure/surface/table/almayer,
@@ -59616,10 +49193,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"wZl" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -59660,9 +49234,7 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"wZH" = (
/obj/structure/surface/table/almayer,
@@ -59670,9 +49242,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"wZI" = (
/obj/effect/decal/cleanable/dirt,
@@ -59680,9 +49250,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"xaj" = (
/obj/structure/barricade/deployable{
@@ -59691,9 +49259,7 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"xay" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -59702,15 +49268,11 @@
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"xaD" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"xaM" = (
/obj/item/shard{
@@ -59719,18 +49281,14 @@
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen/glass)
"xaN" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"xaQ" = (
/obj/structure/surface/table/almayer,
@@ -59746,18 +49304,14 @@
pixel_x = 11;
pixel_y = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/c_block/mining)
"xbj" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"xbk" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -59774,17 +49328,12 @@
"xbN" = (
/obj/structure/machinery/sleep_console,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical)
"xbX" = (
/obj/structure/pipes/vents/pump,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"xce" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
@@ -59801,10 +49350,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/c_block/mining)
"xcE" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -59829,9 +49375,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/mining)
"xcU" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/oob)
"xcX" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -59839,9 +49383,7 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/indoors/c_block/mining)
"xcY" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_1)
"xdb" = (
/obj/structure/prop/ice_colony/ground_wire,
@@ -59861,10 +49403,7 @@
pixel_x = -13;
pixel_y = 2
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"xdt" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -59888,10 +49427,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/command_centre)
"xdX" = (
/obj/item/lightstick/red/spoke/planted{
@@ -59930,10 +49466,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/a_block/dorms)
"xeG" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/cargo_intake)
"xfp" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -59958,10 +49491,7 @@
/area/lv522/indoors/c_block/casino)
"xfW" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"xfX" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -59971,9 +49501,7 @@
/area/lv522/indoors/a_block/dorms)
"xgl" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"xgA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -59985,9 +49513,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"xgH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -60004,17 +49530,13 @@
/obj/structure/prop/invuln/minecart_tracks{
dir = 8
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/indoors/c_block/mining)
"xgW" = (
/obj/structure/prop/vehicles/crawler{
icon_state = "crawler_crate_alt"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/south_east_street)
"xgX" = (
/obj/structure/surface/rack,
@@ -60035,35 +49557,25 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/north_street)
"xho" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/north_command_centre)
"xhq" = (
/obj/structure/closet,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"xhu" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger{
pixel_y = 2
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"xhB" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"xhD" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -60074,9 +49586,7 @@
/area/lv522/indoors/c_block/bridge)
"xhL" = (
/obj/structure/largecrate/random,
-/turf/open/asphalt/cement{
- icon_state = "cement9"
- },
+/turf/open/asphalt/cement/cement9,
/area/lv522/outdoors/colony_streets/north_street)
"xhT" = (
/obj/effect/decal/cleanable/generic,
@@ -60084,10 +49594,7 @@
/area/lv522/indoors/c_block/casino)
"xhW" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/indoors/lone_buildings/storage_blocks)
"xic" = (
/turf/closed/shuttle/dropship2/tornado/typhoon{
@@ -60102,32 +49609,24 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/casino)
"xiG" = (
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"xiU" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"xiY" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/west)
"xje" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"xju" = (
/obj/structure/machinery/light{
@@ -60140,40 +49639,29 @@
/area/lv522/indoors/c_block/cargo)
"xjz" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"xjC" = (
/obj/structure/pipes/vents/pump,
/obj/structure/closet,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"xjF" = (
/turf/closed/wall/strata_outpost,
/area/lv522/indoors/a_block/executive)
"xjO" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/garage)
"xjS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"xjU" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"xjY" = (
/obj/structure/machinery/light{
@@ -60183,9 +49671,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/bridge)
"xka" = (
/obj/structure/surface/table/almayer,
@@ -60194,9 +49680,7 @@
pixel_y = 7
},
/obj/item/paper/wy,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"xkr" = (
/obj/effect/landmark/objective_landmark/medium,
@@ -60208,16 +49692,10 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/op_centre)
"xkB" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/atmos/outdoor)
"xkO" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
@@ -60225,26 +49703,20 @@
"xln" = (
/obj/structure/closet/crate,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"xlq" = (
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurple2"
- },
+/turf/open/floor/prison/darkpurple2,
/area/lv522/indoors/a_block/dorms)
"xly" = (
/obj/structure/cargo_container/grant/rightmid,
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/central_streets)
"xlI" = (
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/corpo)
"xlL" = (
/obj/structure/reagent_dispensers/fueltank{
@@ -60255,9 +49727,7 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_street)
"xlN" = (
/obj/structure/surface/rack,
@@ -60282,26 +49752,20 @@
"xlV" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"xlY" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"xmj" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/nw_rockies)
"xmk" = (
/obj/structure/pipes/vents/pump,
@@ -60309,25 +49773,17 @@
/obj/item/pipe{
pixel_x = -6
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"xmD" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"xmN" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"xmT" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
@@ -60337,19 +49793,14 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_1/ceiling)
"xnk" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv522/indoors/a_block/corpo)
"xno" = (
/obj/item/weapon/gun/smartgun{
@@ -60365,10 +49816,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/bridge)
"xnu" = (
/obj/structure/surface/table/reinforced/almayer_B,
@@ -60379,22 +49827,15 @@
name = "menu";
pixel_y = 26
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/lone_buildings/chunk)
"xnG" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"xnI" = (
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/bridges/op_centre)
"xnJ" = (
/obj/structure/surface/table/almayer,
@@ -60405,9 +49846,7 @@
/obj/item/device/flash{
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"xnP" = (
/obj/structure/surface/table/reinforced/prison,
@@ -60418,10 +49857,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo)
"xnX" = (
/obj/effect/decal/cleanable/dirt,
@@ -60431,9 +49867,7 @@
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"xoj" = (
/obj/effect/decal/cleanable/dirt,
@@ -60445,18 +49879,14 @@
name = "\improper A-Block - Colony Operations Centre Airlock"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/hallway)
"xpg" = (
/turf/closed/wall/strata_outpost/reinforced,
/area/lv522/outdoors/nw_rockies)
"xpu" = (
/obj/structure/platform,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"xpH" = (
/obj/structure/platform{
@@ -60472,17 +49902,11 @@
/obj/structure/barricade/deployable{
dir = 8
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_east_street)
"xqd" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"xqj" = (
/obj/effect/landmark/yautja_teleport,
@@ -60499,44 +49923,31 @@
dir = 4;
pixel_y = -5
},
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"xqV" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"xqY" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_1)
"xrr" = (
/obj/structure/barricade/deployable,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"xrA" = (
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/cargo_intake)
"xrB" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/c_block/cargo)
"xrF" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown,
/area/lv522/atmos/cargo_intake)
"xrH" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -60583,19 +49994,13 @@
/obj/item/storage/pouch/cassette{
pixel_y = 5
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/c_block/t_comm)
"xtk" = (
/obj/item/prop/colony/usedbandage{
dir = 5
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"xtH" = (
/obj/effect/spawner/gibspawner/human,
@@ -60616,9 +50021,7 @@
/obj/structure/window{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv522/indoors/b_block/hydro/glass)
"xuk" = (
/obj/structure/surface/table/almayer,
@@ -60629,9 +50032,7 @@
/area/lv522/indoors/a_block/admin)
"xuB" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"xuD" = (
/obj/structure/surface/table/almayer,
@@ -60644,29 +50045,19 @@
pixel_y = 10
},
/obj/item/tool/pen,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"xuQ" = (
/obj/structure/largecrate/random/secure,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"xuU" = (
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/cargo_intake)
"xva" = (
/obj/structure/cargo_container/watatsumi/right,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"xvj" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -60677,9 +50068,7 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"xvl" = (
/turf/closed/wall/strata_outpost,
@@ -60691,45 +50080,23 @@
/area/lv522/indoors/c_block/t_comm)
"xvB" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/bridge)
"xvG" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"xvQ" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/engineering)
"xvW" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/bridges)
-"xwv" = (
-/obj/structure/stairs/perspective{
- icon_state = "p_stair_full"
- },
-/obj/structure/stairs/perspective{
- icon_state = "p_stair_full"
- },
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
-/area/lv522/outdoors/colony_streets/south_east_street)
"xwD" = (
/obj/structure/machinery/space_heater/radiator/red{
dir = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"xwK" = (
/obj/effect/decal/warning_stripes{
@@ -60737,9 +50104,7 @@
pixel_x = 1
},
/obj/item/stack/sandbags/small_stack,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/outdoors/colony_streets/north_street)
"xwO" = (
/obj/structure/cargo_container/seegson/left,
@@ -60747,9 +50112,7 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"xwZ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"xxk" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -60766,9 +50129,7 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/outdoors/colony_streets/south_east_street)
"xxq" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/south_east_street)
"xxs" = (
/obj/effect/decal/cleanable/dirt,
@@ -60789,9 +50150,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"xxU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -60801,34 +50160,25 @@
/area/lv522/indoors/a_block/admin)
"xxV" = (
/obj/structure/cargo_container/seegson/right,
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_west_street)
"xxW" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"xyi" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"xym" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"xyu" = (
-/turf/open/shuttle/dropship/can_surgery/dark_grey,
+/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"xyC" = (
/obj/structure/machinery/landinglight/ds2/delaythree,
@@ -60837,24 +50187,17 @@
/area/lv522/landing_zone_2)
"xyL" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness)
"xyN" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/central_streets)
"xzj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"xzn" = (
/turf/open/floor/prison,
@@ -60866,17 +50209,12 @@
pixel_y = 9
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"xzu" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest,
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"xzK" = (
/turf/open/asphalt/cement,
@@ -60892,9 +50230,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/c_block/mining)
"xAF" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -60920,9 +50256,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"xAO" = (
/turf/open/gm/river,
@@ -60932,9 +50266,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/mining)
"xAR" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_street)
"xAS" = (
/obj/structure/fence{
@@ -60947,9 +50279,7 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"xAZ" = (
/obj/effect/decal/cleanable/dirt,
@@ -60960,9 +50290,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"xBi" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -60973,9 +50301,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo/glass)
"xBo" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -60992,9 +50318,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/n_rockies)
"xBS" = (
/obj/structure/stairs/perspective{
@@ -61006,10 +50330,7 @@
/obj/structure/bed/chair/comfy{
dir = 8
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/corpo/glass)
"xCN" = (
/obj/item/clothing/under/shorts/blue{
@@ -61020,18 +50341,14 @@
/area/lv522/indoors/a_block/executive)
"xCS" = (
/obj/structure/machinery/light,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"xCT" = (
/turf/open/floor/prison,
/area/lv522/indoors/a_block/dorm_north)
"xCY" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"xDl" = (
/obj/effect/decal/cleanable/blood,
@@ -61072,9 +50389,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/south_west_street)
"xDJ" = (
/obj/effect/decal/cleanable/dirt,
@@ -61083,10 +50398,7 @@
/area/lv522/indoors/a_block/kitchen)
"xDL" = (
/obj/structure/cargo_container/kelland/left,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"xDM" = (
/obj/structure/surface/table/almayer{
@@ -61104,10 +50416,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"xDR" = (
/obj/structure/machinery/conveyor{
@@ -61124,17 +50433,11 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"xEk" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/cargo_intake)
"xEp" = (
/obj/structure/cargo_container/kelland/right,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"xEB" = (
/obj/structure/bed/chair/comfy{
@@ -61147,36 +50450,26 @@
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "Reactor_entry_1"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"xEH" = (
/obj/structure/machinery/landinglight/ds1{
dir = 1
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1)
"xFg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"xFp" = (
/turf/open/asphalt/cement,
/area/lv522/outdoors/colony_streets/north_east_street)
"xFt" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/north,
/area/lv522/atmos/east_reactor/south)
"xFv" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -61190,9 +50483,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/admin)
"xFG" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -61204,9 +50495,7 @@
name = "\improper A-Block Fitness Centre Airlock"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness)
"xGa" = (
/obj/effect/decal/cleanable/blood/xeno{
@@ -61228,9 +50517,7 @@
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "Sec-Corpo-Bridge-Lockdown"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/security)
"xGf" = (
/obj/effect/decal/cleanable/dirt,
@@ -61246,25 +50533,19 @@
"xGC" = (
/obj/item/reagent_container/glass/bucket/janibucket,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"xGR" = (
/obj/structure/machinery/door/airlock/almayer/maint,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"xGX" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"xHr" = (
/obj/structure/pipes/vents/pump,
@@ -61278,24 +50559,18 @@
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Corporate Liaison Office "
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/corpo)
"xHO" = (
/obj/structure/girder,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_street)
"xIr" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/spider/spiderling/nogrow,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/dorms)
"xIv" = (
/turf/open/floor/prison,
@@ -61321,15 +50596,11 @@
/area/lv522/indoors/c_block/cargo)
"xJg" = (
/obj/structure/machinery/light,
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"xJt" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/way_in_command_centre)
"xJB" = (
/obj/structure/largecrate/random/barrel/red,
@@ -61342,16 +50613,11 @@
id = "LV522CIC_1";
name = "\improper Storm Shutters"
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/admin)
"xJI" = (
/obj/effect/decal/cleanable/generic,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"xJK" = (
/obj/structure/prop/ice_colony/dense/planter_box{
@@ -61360,10 +50626,7 @@
/obj/structure/flora/bush/ausbushes/ausbush{
pixel_y = 8
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"xJL" = (
/obj/effect/decal/cleanable/dirt,
@@ -61377,10 +50640,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"xKc" = (
/obj/structure/barricade/handrail{
@@ -61393,9 +50653,7 @@
/obj/item/ammo_magazine/m56d,
/obj/item/ammo_magazine/m56d,
/obj/item/device/m56d_gun,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
+/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Typhoon)
"xKk" = (
/turf/closed/wall/strata_outpost_ribbed,
@@ -61408,9 +50666,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms)
"xLg" = (
/obj/effect/decal/cleanable/dirt,
@@ -61424,14 +50680,10 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"xLm" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/north)
"xLn" = (
/obj/structure/surface/table/almayer,
@@ -61448,9 +50700,7 @@
pixel_y = -5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/b_block/bar)
"xLq" = (
/obj/item/prop/alien/hugger,
@@ -61461,9 +50711,7 @@
dir = 1
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/sewer)
"xLU" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -61488,28 +50736,19 @@
pixel_x = 8;
pixel_y = 16
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/cargo)
"xMu" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/lone_buildings/chunk)
"xMz" = (
/obj/structure/machinery/disposal,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"xME" = (
/obj/structure/surface/table/almayer,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "browncorner"
- },
+/turf/open/floor/corsat/browncorner/east,
/area/lv522/atmos/east_reactor/south)
"xMO" = (
/obj/effect/decal/cleanable/dirt,
@@ -61546,33 +50785,22 @@
/area/lv522/indoors/b_block/hydro)
"xNt" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/north,
/area/lv522/atmos/east_reactor/south)
"xNG" = (
/obj/structure/machinery/computer/crew/colony{
density = 0;
pixel_y = 16
},
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"xNR" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"xOb" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness/glass)
"xOw" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -61592,9 +50820,7 @@
"xOQ" = (
/obj/structure/window/framed/strata/reinforced,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/fitness)
"xPa" = (
/obj/structure/machinery/conveyor,
@@ -61608,9 +50834,7 @@
/area/lv522/indoors/c_block/mining)
"xPj" = (
/obj/structure/largecrate/random,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"xPo" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -61648,9 +50872,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"xPW" = (
/obj/effect/decal/cleanable/dirt,
@@ -61674,18 +50896,14 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/outdoor)
"xQc" = (
/turf/closed/wall/r_wall/biodome/biodome_unmeltable,
/area/lv522/atmos/east_reactor/south)
"xQi" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"xQj" = (
/obj/effect/decal/cleanable/dirt,
@@ -61695,9 +50913,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/medical)
"xQq" = (
/obj/effect/decal/cleanable/dirt,
@@ -61712,25 +50928,18 @@
/obj/item/tool/pen/blue/clicky,
/obj/effect/landmark/objective_landmark/science,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"xRg" = (
/obj/structure/bed/chair/comfy{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"xRk" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/north_street)
"xRn" = (
/obj/item/clothing/head/hardhat,
@@ -61741,9 +50950,7 @@
dir = 1;
pixel_y = 26
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/prison/kitchen,
/area/lv522/indoors/a_block/kitchen)
"xRq" = (
/obj/structure/surface/table/reinforced/almayer_B,
@@ -61767,9 +50974,7 @@
dir = 8;
pixel_y = 17
},
-/turf/open/floor/strata{
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1,
/area/lv522/indoors/lone_buildings/chunk)
"xRw" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -61782,30 +50987,20 @@
/obj/structure/bed/roller,
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"xRE" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"xRG" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/computer/PC{
pixel_y = 7
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"xRK" = (
-/turf/open/asphalt/cement{
- icon_state = "cement2"
- },
+/turf/open/asphalt/cement/cement2,
/area/lv522/outdoors/colony_streets/north_street)
"xRM" = (
/obj/structure/machinery/door/airlock/dropship_hatch/two{
@@ -61816,9 +51011,7 @@
id = "UD6 East";
indestructible = 1
},
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
+/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down,
/area/lv522/landing_zone_forecon/UD6_Tornado)
"xRQ" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -61841,10 +51034,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"xSD" = (
/obj/structure/largecrate/random/barrel/green,
@@ -61854,24 +51044,16 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "cell_stripe"
- },
+/turf/open/floor/prison/cell_stripe/east,
/area/lv522/atmos/way_in_command_centre)
"xSL" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
-/turf/open/floor/corsat{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/northwest,
/area/lv522/atmos/east_reactor/south)
"xSN" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/filt)
"xSP" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -61902,16 +51084,11 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"xTs" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/indoors/a_block/fitness)
"xTJ" = (
/obj/item/tool/kitchen/utensil/pknife{
@@ -61945,18 +51122,14 @@
pixel_y = 7
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"xUq" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/corsat,
/area/lv522/atmos/reactor_garage)
"xUx" = (
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"xUJ" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -61965,18 +51138,14 @@
/area/lv522/indoors/a_block/security)
"xUQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/op_centre)
"xVd" = (
/turf/closed/wall/strata_outpost_ribbed,
/area/lv522/indoors/lone_buildings/engineering)
"xVq" = (
/obj/structure/blocker/forcefield/vehicles,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"xVz" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -61986,9 +51155,7 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"xVB" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/atmos/way_in_command_centre)
"xVG" = (
/obj/structure/largecrate/random,
@@ -62010,15 +51177,10 @@
"xVI" = (
/obj/effect/spawner/gibspawner/xeno,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/prison/blue/north,
/area/lv522/indoors/a_block/admin)
"xVV" = (
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/colony_streets/south_west_street)
"xWb" = (
/obj/structure/bed/chair{
@@ -62031,26 +51193,18 @@
/area/lv522/outdoors/colony_streets/north_west_street)
"xWc" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"xWf" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/bridges/dorms_fitness)
"xWx" = (
/obj/structure/machinery/door/airlock/almayer/generic,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/toilet)
"xWz" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/filt)
"xWA" = (
/obj/structure/stairs/perspective{
@@ -62061,9 +51215,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"xWF" = (
/obj/structure/prop/server_equipment/yutani_server{
@@ -62074,34 +51226,25 @@
pixel_y = 11
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"xWL" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/item/stack/rods,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_street)
"xWO" = (
/obj/structure/stairs/perspective{
dir = 10;
icon_state = "p_stair_full"
},
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/colony_streets/south_east_street)
"xWP" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/asphalt/cement{
- icon_state = "cement4"
- },
+/turf/open/asphalt/cement/cement4,
/area/lv522/outdoors/colony_streets/north_street)
"xXg" = (
/turf/open/asphalt/cement,
@@ -62117,16 +51260,12 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"xXz" = (
/obj/structure/foamed_metal,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"xXN" = (
/obj/effect/decal/cleanable/dirt,
@@ -62134,17 +51273,13 @@
/area/lv522/indoors/a_block/dorms)
"xXO" = (
/obj/structure/machinery/door/airlock/almayer/generic,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/ceiling)
"xXQ" = (
/obj/structure/platform_decoration{
dir = 1
},
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/north_street)
"xXR" = (
/obj/structure/machinery/colony_floodlight{
@@ -62155,19 +51290,14 @@
/turf/open/asphalt/cement,
/area/lv522/outdoors/colony_streets/north_street)
"xXV" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/nw_rockies)
"xXX" = (
/obj/structure/target{
name = "punching bag"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/a_block/fitness)
"xYn" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -62189,16 +51319,12 @@
/turf/open/floor/plating/plating_catwalk/prison,
/area/lv522/atmos/east_reactor/south)
"xZw" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/cargo_intake)
"xZy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/indoors/c_block/mining)
"xZz" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -62216,9 +51342,7 @@
dir = 5;
id = "cargo_container"
},
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/cargo_intake)
"xZP" = (
/obj/structure/stairs/perspective{
@@ -62232,10 +51356,7 @@
/obj/structure/machinery/space_heater/radiator/red{
pixel_y = 26
},
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/engineering)
"yae" = (
/obj/structure/surface/table/almayer,
@@ -62245,9 +51366,7 @@
},
/obj/item/tool/pen/blue/clicky,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/hallway)
"yaf" = (
/obj/structure/surface/rack,
@@ -62261,9 +51380,7 @@
"yai" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "plate"
- },
+/turf/open/floor/corsat/plate,
/area/lv522/atmos/east_reactor/south)
"yaj" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -62276,9 +51393,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/mining)
"yar" = (
/obj/structure/fence,
@@ -62289,28 +51404,21 @@
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "floor3"
- },
+/turf/open/floor/strata/floor3/east,
/area/lv522/landing_zone_2/ceiling)
"yaw" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/reactor_garage)
"yaC" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
pixel_y = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/way_in_command_centre)
"yaF" = (
/obj/effect/spawner/gibspawner/xeno,
@@ -62330,9 +51438,7 @@
/obj/structure/largecrate/random{
layer = 2.9
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"ybd" = (
/obj/structure/blocker/forcefield/vehicles,
@@ -62342,9 +51448,7 @@
unacidable = 1
},
/obj/structure/blocker/invisible_wall,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/oob)
"ybj" = (
/obj/item/prop/alien/hugger,
@@ -62356,9 +51460,7 @@
pixel_y = 2
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security/glass)
"ybz" = (
/turf/open/asphalt/cement,
@@ -62367,9 +51469,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/effect/spawner/random/toolbox,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/indoors/c_block/garage)
"yca" = (
/obj/effect/decal/cleanable/dirt,
@@ -62377,16 +51477,12 @@
/area/lv522/indoors/a_block/kitchen/glass)
"ycb" = (
/obj/structure/machinery/door/airlock/almayer/generic,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/lone_buildings/storage_blocks)
"ycc" = (
/obj/structure/largecrate/random/barrel,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"yct" = (
/obj/structure/surface/rack,
@@ -62394,15 +51490,11 @@
/obj/structure/machinery/power/apc/weak{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"ycv" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"ycw" = (
/obj/structure/girder/reinforced,
@@ -62428,18 +51520,13 @@
/area/lv522/outdoors/colony_streets/south_east_street)
"ycO" = (
/obj/structure/machinery/light,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/bridge)
"ycV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/asphalt/cement{
- icon_state = "cement15"
- },
+/turf/open/asphalt/cement/cement15,
/area/lv522/outdoors/n_rockies)
"ydb" = (
/obj/effect/decal/cleanable/dirt,
@@ -62457,46 +51544,33 @@
"ydz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/recharge_station,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/kitchen)
"ydA" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/north_west_street)
"ydD" = (
/obj/structure/surface/table/almayer,
/obj/item/ammo_box/magazine/shotgun/buckshot/empty,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/security)
"ydS" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges/op_centre)
"ydU" = (
/obj/structure/bed/chair/comfy{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/b_block/bar)
"ydV" = (
/obj/structure/surface/table/almayer{
dir = 1;
flipped = 1
},
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"yeD" = (
/obj/item/ammo_magazine/pistol/m1911{
@@ -62507,10 +51581,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/outdoors/colony_streets/north_west_street)
"yeH" = (
/obj/effect/decal/cleanable/dirt,
@@ -62529,14 +51600,10 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"yeS" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/north_command_centre)
"yfu" = (
/turf/open/floor/prison,
@@ -62544,10 +51611,7 @@
"yfz" = (
/obj/structure/largecrate/random/mini,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "floor_marked"
- },
+/turf/open/floor/prison/floor_marked/southwest,
/area/lv522/landing_zone_2/ceiling)
"yfH" = (
/obj/structure/window/framed/strata/reinforced,
@@ -62560,21 +51624,13 @@
/turf/open/floor/plating,
/area/lv522/landing_zone_2)
"yfP" = (
-/turf/open/floor/strata{
- icon_state = "blue1"
- },
+/turf/open/floor/strata/blue1,
/area/lv522/indoors/a_block/dorm_north)
"yfR" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/indoors/b_block/hydro)
"yfS" = (
-/turf/open/floor/prison{
- dir = 9;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/northwest,
/area/lv522/indoors/b_block/hydro)
"yfX" = (
/obj/item/weapon/gun/boltaction{
@@ -62598,22 +51654,15 @@
/area/lv522/indoors/c_block/casino)
"ygu" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/corsat{
- dir = 4;
- icon_state = "brown"
- },
+/turf/open/floor/corsat/brown/east,
/area/lv522/atmos/east_reactor/west)
"ygw" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/indoors/a_block/security)
"ygD" = (
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/outdoors/colony_streets/windbreaker/observation)
"yhi" = (
/obj/effect/decal/cleanable/dirt,
@@ -62637,10 +51686,7 @@
/obj/item/storage/firstaid/adv,
/obj/structure/pipes/vents/pump,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- dir = 4;
- icon_state = "white_cyan1"
- },
+/turf/open/floor/strata/white_cyan1/east,
/area/lv522/indoors/a_block/medical/glass)
"yhz" = (
/obj/structure/window_frame/corsat,
@@ -62654,29 +51700,21 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/garden_bridge)
"yhK" = (
/obj/structure/pipes/standard/simple/hidden/green,
/turf/open/auto_turf/shale/layer1,
/area/lv522/outdoors/colony_streets/north_west_street)
"yhR" = (
-/turf/open/asphalt/cement{
- icon_state = "cement3"
- },
+/turf/open/asphalt/cement/cement3,
/area/lv522/outdoors/colony_streets/south_street)
"yhU" = (
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/landing_zone_1/ceiling)
"yif" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"yim" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -62685,17 +51723,13 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/outdoors/n_rockies)
"yiu" = (
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"yiH" = (
/obj/structure/window_frame/strata,
/obj/effect/spawner/gibspawner/xeno,
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/dorms)
"yiM" = (
/turf/open/auto_turf/sand_white/layer0,
@@ -62715,24 +51749,18 @@
name = "\improper A-Block Security Airlock";
welded = 1
},
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/indoors/a_block/bridges/op_centre)
"yje" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/atmos/sewer)
"yjg" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/atmos/east_reactor/south)
"yjm" = (
/obj/structure/largecrate/random,
@@ -62756,9 +51784,7 @@
pixel_y = 25
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/lv522/indoors/a_block/bridges/corpo)
"yjr" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -62790,9 +51816,7 @@
pixel_x = -11;
pixel_y = -8
},
-/turf/open/floor/shiva{
- icon_state = "radiator_tile2"
- },
+/turf/open/floor/shiva/radiator_tile2,
/area/lv522/indoors/a_block/bridges/corpo)
"yjK" = (
/obj/structure/prop/ice_colony/ground_wire{
@@ -62802,10 +51826,7 @@
/turf/open/auto_turf/sand_white/layer0,
/area/lv522/outdoors/colony_streets/south_east_street)
"yjL" = (
-/turf/open/floor/prison{
- dir = 10;
- icon_state = "whitegreenfull"
- },
+/turf/open/floor/prison/whitegreenfull/southwest,
/area/lv522/oob)
"yjP" = (
/obj/structure/surface/table/almayer,
@@ -62816,9 +51837,7 @@
},
/obj/item/tool/screwdriver,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- icon_state = "darkbrownfull2"
- },
+/turf/open/floor/prison/darkbrownfull2,
/area/lv522/landing_zone_2/ceiling)
"yjT" = (
/obj/effect/decal/warning_stripes{
@@ -62828,9 +51847,7 @@
/area/lv522/outdoors/colony_streets/south_west_street)
"yjU" = (
/obj/structure/cargo_container/horizontal/blue/middle,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv522/indoors/c_block/cargo)
"yjW" = (
/obj/structure/surface/table/almayer,
@@ -62840,22 +51857,14 @@
},
/obj/item/tank/emergency_oxygen/engi,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/prison{
- icon_state = "darkpurplefull2"
- },
+/turf/open/floor/prison/darkpurplefull2,
/area/lv522/indoors/a_block/dorms/glass)
"ykc" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3/west,
/area/lv522/indoors/a_block/bridges/op_centre)
"yke" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/a_block/admin)
"ykj" = (
/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right,
@@ -62866,16 +51875,10 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 1;
- icon_state = "blue_plate"
- },
+/turf/open/floor/prison/blue_plate/north,
/area/lv522/indoors/c_block/mining)
"ykL" = (
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "darkyellowfull2"
- },
+/turf/open/floor/prison/darkyellowfull2/east,
/area/lv522/indoors/lone_buildings/outdoor_bot)
"ykR" = (
/obj/structure/bed/chair/comfy,
@@ -62884,9 +51887,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor/prison{
- icon_state = "floor_plate"
- },
+/turf/open/floor/prison/floor_plate,
/area/lv522/outdoors/colony_streets/north_west_street)
"ykT" = (
/turf/open/floor/plating/plating_catwalk/prison,
@@ -62909,24 +51910,17 @@
pixel_x = -7
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/prison{
- dir = 4;
- icon_state = "greenfull"
- },
+/turf/open/floor/prison/greenfull/east,
/area/lv522/landing_zone_1/ceiling)
"yld" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/alien/resin/sticky,
-/turf/open/floor/corsat{
- icon_state = "squares"
- },
+/turf/open/floor/corsat/squares,
/area/lv522/atmos/east_reactor/south)
"ylm" = (
-/turf/open/asphalt/cement{
- icon_state = "cement12"
- },
+/turf/open/asphalt/cement/cement12,
/area/lv522/outdoors/n_rockies)
"ylo" = (
/turf/closed/wall/shiva/prefabricated/reinforced,
@@ -62939,9 +51933,7 @@
/turf/open/floor/prison,
/area/lv522/indoors/c_block/t_comm)
"ylr" = (
-/turf/open/asphalt/cement{
- icon_state = "cement1"
- },
+/turf/open/asphalt/cement/cement1,
/area/lv522/outdoors/colony_streets/east_central_street)
"ylC" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -62956,9 +51948,7 @@
/area/lv522/indoors/a_block/admin)
"ymc" = (
/obj/structure/window/framed/strata/reinforced,
-/turf/open/floor/corsat{
- icon_state = "marked"
- },
+/turf/open/floor/corsat/marked,
/area/lv522/landing_zone_1/ceiling)
"ymf" = (
/obj/structure/platform_decoration,
@@ -88335,7 +77325,7 @@ yhi
yhi
fxl
six
-gbq
+jCU
jwM
jwM
ild
@@ -93100,7 +82090,7 @@ icW
eHI
xvl
xvl
-xwv
+otS
hMz
gBy
mUr
@@ -94008,7 +82998,7 @@ icW
oPW
xvl
xvl
-xwv
+otS
hMz
fWG
uwT
diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm
index ba8e782344ca..98c56dde6098 100644
--- a/maps/map_files/LV624/LV624.dmm
+++ b/maps/map_files/LV624/LV624.dmm
@@ -119,15 +119,11 @@
/turf/closed/wall/cult,
/area/lv624/ground/caves/east_caves)
"aaR" = (
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/east_caves)
"aaS" = (
/obj/effect/decal/remains/xeno,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/east_caves)
"aaT" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east,
@@ -153,9 +149,7 @@
/area/lv624/ground/caves/north_central_caves)
"aba" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/east_caves)
"abb" = (
/turf/open/gm/river,
@@ -206,9 +200,7 @@
/obj/structure/largecrate/supply/ammo/shotgun{
pixel_y = 8
},
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv624/ground/caves/north_central_caves)
"abo" = (
/obj/effect/landmark/hunter_primary,
@@ -225,10 +217,7 @@
"abt" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/rifle/lmg,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"abv" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -246,9 +235,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/west_caves)
"abz" = (
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/lv624/ground/barrens/south_eastern_barrens)
"abA" = (
/obj/structure/closet/crate/freezer/rations,
@@ -277,9 +264,7 @@
unacidable = 1
},
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/west_caves)
"abH" = (
/obj/effect/landmark/good_item,
@@ -310,17 +295,13 @@
/turf/closed/wall/rock/brown,
/area/lv624/ground/caves/south_central_caves)
"abU" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/wood/wood_broken3,
/area/lv624/ground/caves/north_central_caves)
"abV" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"abW" = (
/obj/effect/landmark/hunter_primary,
@@ -331,9 +312,7 @@
/turf/open/floor/plating,
/area/lv624/lazarus/quartstorage)
"abZ" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv624/ground/caves/north_central_caves)
"aca" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -342,9 +321,7 @@
/area/lv624/ground/caves/west_caves)
"acb" = (
/obj/structure/window/framed/colony,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage)
"acc" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
@@ -375,9 +352,7 @@
},
/obj/item/tool/kitchen/knife/butcher,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
+/turf/open/floor/wood/wood_broken4,
/area/lv624/ground/caves/north_central_caves)
"acl" = (
/obj/structure/window/framed/colony,
@@ -385,18 +360,14 @@
/area/lv624/lazarus/chapel)
"acm" = (
/obj/structure/window/framed/colony,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"acn" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Nexus Dome Canteen";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aco" = (
/obj/effect/landmark/crap_item,
@@ -423,20 +394,14 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"act" = (
/obj/structure/window/framed/colony,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/kitchen)
"acu" = (
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/west_caves)
"acv" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -444,29 +409,21 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/kitchen)
"acw" = (
/obj/structure/foamed_metal,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"acy" = (
/obj/effect/decal/remains/xeno,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/west_caves)
"acB" = (
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"acC" = (
/obj/structure/surface/table/woodentable/poor,
@@ -501,9 +458,7 @@
/turf/open/gm/dirt,
/area/lv624/lazarus/crashed_ship_containers)
"acJ" = (
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/ground/barrens/north_east_barrens)
"acK" = (
/obj/structure/tunnel{
@@ -513,24 +468,18 @@
/area/lv624/ground/caves/west_caves)
"acL" = (
/obj/item/tool/shovel,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"acM" = (
/obj/structure/bed/chair/dropship/pilot,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"acN" = (
/obj/structure/bed/chair/dropship/pilot{
dir = 1
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"acO" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -539,9 +488,7 @@
/area/lv624/ground/caves/south_central_caves)
"acQ" = (
/obj/item/device/flashlight/on,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"acS" = (
/obj/effect/landmark/hunter_primary,
@@ -550,32 +497,24 @@
"acT" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"acU" = (
/obj/item/tool/pickaxe,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"acV" = (
/obj/structure/surface/rack,
/obj/item/ammo_magazine/rifle/nsg23/extended,
/obj/item/weapon/gun/rifle/nsg23/no_lock,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"acW" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/item/ammo_magazine/rifle/nsg23{
current_rounds = 0
},
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"acX" = (
/obj/effect/decal/remains/xeno,
@@ -591,9 +530,7 @@
/area/lv624/ground/caves/south_central_caves)
"acZ" = (
/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/wood/wood_broken3,
/area/lv624/ground/caves/north_central_caves)
"ada" = (
/obj/structure/surface/table/reinforced/prison,
@@ -602,9 +539,7 @@
/obj/item/stack/sheet/wood{
amount = 16
},
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"adc" = (
/obj/effect/landmark/crap_item,
@@ -612,21 +547,15 @@
/area/lv624/ground/caves/south_central_caves)
"add" = (
/obj/item/clothing/suit/storage/hazardvest,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"ade" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/west_caves)
"adf" = (
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"adg" = (
/obj/structure/girder/displaced,
@@ -686,18 +615,13 @@
/area/lv624/ground/barrens/north_east_barrens)
"adx" = (
/obj/structure/xenoautopsy/tank/larva,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"ady" = (
/turf/closed/wall/cult,
/area/lv624/ground/caves/south_central_caves)
"adA" = (
-/turf/open/floor/airless{
- dir = 5;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/airless/asteroidfloor/northeast,
/area/lv624/ground/barrens/north_east_barrens)
"adC" = (
/obj/structure/surface/rack,
@@ -707,10 +631,7 @@
/obj/item/stack/sheet/mineral/platinum{
pixel_x = -6
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"adD" = (
/obj/structure/surface/rack,
@@ -718,10 +639,7 @@
amount = 2
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"adE" = (
/obj/structure/surface/rack,
@@ -734,18 +652,12 @@
amount = 30
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"adF" = (
/obj/structure/surface/rack,
/obj/item/tool/shovel,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"adH" = (
/obj/effect/decal/remains/xeno,
@@ -763,18 +675,14 @@
name = "Mining Storage";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"adJ" = (
/obj/effect/landmark/monkey_spawn,
/turf/open/gm/dirt,
/area/lv624/ground/caves/west_caves)
"adM" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"adN" = (
/obj/structure/surface/rack,
@@ -785,10 +693,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"adP" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane,
@@ -806,33 +711,22 @@
pixel_x = -4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"adS" = (
/obj/structure/xenoautopsy/tank/hugger,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"adT" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/silver{
amount = 20
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"adU" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/airless{
- dir = 5;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/airless/asteroidfloor/northeast,
/area/lv624/ground/barrens/north_east_barrens)
"adX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
@@ -865,10 +759,7 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/south_east_caves)
"aec" = (
/obj/structure/surface/table/woodentable/poor,
@@ -893,10 +784,7 @@
/obj/item/weapon/gun/rifle/mar40{
pixel_y = -3
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"aej" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -913,17 +801,11 @@
/area/lv624/ground/caves/south_east_caves)
"ael" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 9;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northwest,
/area/lv624/ground/barrens/containers)
"aem" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/lv624/ground/barrens/containers)
"aen" = (
/obj/structure/fence,
@@ -952,50 +834,32 @@
/area/lv624/ground/caves/west_caves)
"aet" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 8;
- icon_state = "warning"
- },
+/turf/open/floor/warning/west,
/area/lv624/ground/barrens/containers)
"aev" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west,
/area/lv624/ground/caves/sand_temple)
"aex" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/ground/barrens/containers)
"aey" = (
/obj/structure/cargo_container/wy/left,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/ground/barrens/containers)
"aez" = (
/turf/open/gm/river,
/area/lv624/ground/caves/west_caves)
"aeA" = (
/obj/structure/cargo_container/wy/mid,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/ground/barrens/containers)
"aeC" = (
/obj/structure/cargo_container/wy/right,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/ground/barrens/containers)
"aeD" = (
/obj/structure/cargo_container/horizontal/blue/top,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/ground/barrens/containers)
"aeE" = (
/obj/structure/largecrate/random,
@@ -1032,10 +896,7 @@
color = "#b29082";
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"aeS" = (
/obj/effect/landmark/hunter_primary,
@@ -1059,10 +920,7 @@
/area/lv624/ground/barrens/containers)
"afd" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 4;
- icon_state = "warning"
- },
+/turf/open/floor/warning/east,
/area/lv624/ground/barrens/containers)
"aff" = (
/obj/structure/cargo_container/wy/left,
@@ -1089,10 +947,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform/mineral/sandstone/runed,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"afk" = (
/obj/item/ammo_casing,
@@ -1119,28 +974,19 @@
"afr" = (
/obj/structure/ore_box,
/obj/structure/fence,
-/turf/open/floor{
- dir = 4;
- icon_state = "warning"
- },
+/turf/open/floor/warning/east,
/area/lv624/ground/barrens/containers)
"afu" = (
/obj/item/ammo_casing,
/obj/structure/machinery/colony_floodlight,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/lv624/ground/barrens/central_barrens)
"afv" = (
/obj/structure/surface/table/reinforced{
dir = 1;
flipped = 1
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/central_barrens)
"afw" = (
/obj/structure/surface/table/reinforced{
@@ -1148,23 +994,14 @@
flipped = 1
},
/obj/item/ammo_casing,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/central_barrens)
"afx" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/central_barrens)
"afy" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/lv624/ground/barrens/central_barrens)
"afE" = (
/obj/effect/decal/remains/xeno,
@@ -1173,10 +1010,7 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/south_east_caves)
"afF" = (
/obj/effect/decal/cleanable/blood,
@@ -1187,10 +1021,7 @@
dir = 8;
flipped = 1
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/barrens/central_barrens)
"afI" = (
/obj/effect/landmark/crap_item,
@@ -1220,10 +1051,7 @@
dir = 4;
flipped = 1
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/barrens/central_barrens)
"afR" = (
/obj/structure/ore_box,
@@ -1245,10 +1073,7 @@
flipped = 1
},
/obj/effect/decal/remains/human,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/barrens/central_barrens)
"afX" = (
/obj/item/ammo_casing,
@@ -1349,10 +1174,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/barrens/east_barrens)
"ags" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/barrens/central_barrens)
"agt" = (
/obj/structure/surface/table/reinforced{
@@ -1372,16 +1194,10 @@
pixel_x = -6
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"agv" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/barrens/central_barrens)
"agz" = (
/obj/structure/cargo_container/horizontal/blue/middle,
@@ -1428,10 +1244,7 @@
/area/lv624/ground/barrens/east_barrens)
"agQ" = (
/obj/item/ammo_casing,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/barrens/central_barrens)
"agR" = (
/obj/structure/surface/table/reinforced{
@@ -1477,10 +1290,7 @@
/area/lv624/ground/barrens/central_barrens)
"agW" = (
/obj/item/ammo_casing,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/barrens/central_barrens)
"agX" = (
/turf/open/gm/dirt,
@@ -1543,15 +1353,11 @@
/area/lv624/ground/barrens/west_barrens/ceiling)
"ahy" = (
/obj/structure/inflatable,
-/turf/open/floor{
- icon_state = "redyellowfull"
- },
+/turf/open/floor/redyellowfull,
/area/lv624/ground/barrens/west_barrens/ceiling)
"ahz" = (
/obj/structure/inflatable/door,
-/turf/open/floor{
- icon_state = "redyellowfull"
- },
+/turf/open/floor/redyellowfull,
/area/lv624/ground/barrens/west_barrens/ceiling)
"ahB" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -1566,27 +1372,18 @@
/area/lv624/ground/caves/south_west_caves)
"ahJ" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "redyellowfull"
- },
+/turf/open/floor/redyellowfull,
/area/lv624/ground/barrens/west_barrens/ceiling)
"ahK" = (
/obj/item/device/analyzer,
-/turf/open/floor{
- icon_state = "redyellowfull"
- },
+/turf/open/floor/redyellowfull,
/area/lv624/ground/barrens/west_barrens/ceiling)
"ahL" = (
-/turf/open/floor{
- icon_state = "redyellowfull"
- },
+/turf/open/floor/redyellowfull,
/area/lv624/ground/barrens/west_barrens/ceiling)
"ahM" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/lv624/ground/barrens/central_barrens)
"ahN" = (
/obj/structure/surface/table/reinforced{
@@ -1594,9 +1391,7 @@
},
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/central_barrens)
"ahO" = (
/obj/effect/decal/remains/human,
@@ -1606,27 +1401,18 @@
/obj/structure/surface/table/reinforced{
flipped = 1
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/central_barrens)
"ahR" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/central_barrens)
"ahS" = (
/obj/item/ammo_casing,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/central_barrens)
"ahT" = (
/obj/structure/machinery/colony_floodlight,
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/lv624/ground/barrens/central_barrens)
"ahV" = (
/obj/effect/landmark/crap_item,
@@ -1634,71 +1420,47 @@
/area/lv624/ground/caves/south_west_caves)
"ahW" = (
/obj/item/tool/shovel,
-/turf/open/floor{
- icon_state = "redyellowfull"
- },
+/turf/open/floor/redyellowfull,
/area/lv624/ground/barrens/west_barrens/ceiling)
"aie" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "redyellowfull"
- },
+/turf/open/floor/redyellowfull,
/area/lv624/ground/barrens/west_barrens/ceiling)
"aif" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "redyellowfull"
- },
+/turf/open/floor/redyellowfull,
/area/lv624/ground/barrens/west_barrens/ceiling)
"aih" = (
/obj/structure/largecrate/random,
/obj/item/tool/crowbar/red,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aij" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aik" = (
/obj/structure/surface/table,
/obj/item/ashtray/plastic,
/obj/item/stack/flag/red,
/obj/item/weapon/gun/pistol/holdout,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aim" = (
/obj/structure/surface/table,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/east_barrens/ceiling)
"ain" = (
/obj/structure/machinery/computer3,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aio" = (
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aip" = (
/obj/structure/surface/table,
@@ -1706,25 +1468,17 @@
amount = 40
},
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiq" = (
/obj/structure/surface/table,
/obj/item/stack/cable_coil/random,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiu" = (
/obj/effect/landmark/corpsespawner/miner,
-/turf/open/floor{
- icon_state = "redyellowfull"
- },
+/turf/open/floor/redyellowfull,
/area/lv624/ground/barrens/west_barrens/ceiling)
"aiv" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -1733,57 +1487,37 @@
"aiw" = (
/obj/structure/machinery/constructable_frame,
/obj/effect/spawner/random/bomb_supply,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aix" = (
/obj/item/frame/apc,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiy" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiz" = (
/obj/structure/disposalpipe/junction{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiA" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiB" = (
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiD" = (
/obj/structure/sink{
pixel_y = 30
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiF" = (
/obj/item/weapon/butterfly/switchblade,
@@ -1806,67 +1540,48 @@
/obj/structure/surface/table,
/obj/item/stack/medical/ointment,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiK" = (
/obj/structure/window/framed/colony,
-/turf/open/floor{
- icon_state = "platebot"
- },
+/turf/open/floor/platebot,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiL" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
name = "Water Filtration Plant";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiM" = (
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiO" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiP" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiS" = (
/obj/item/tool/kitchen/knife/butcher,
@@ -1877,21 +1592,14 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiU" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aiV" = (
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/lv624/ground/barrens/east_barrens/ceiling)
"aja" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -1906,10 +1614,7 @@
"ajd" = (
/obj/structure/surface/rack,
/obj/item/tool/pickaxe,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"ajg" = (
/obj/structure/flora/bush/ausbushes,
@@ -1934,10 +1639,7 @@
/obj/item/stack/sheet/animalhide/xeno{
name = "Lurker Hide"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"ajp" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -1980,10 +1682,7 @@
/area/lv624/ground/river/east_river)
"ajx" = (
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/lv624/ground/river/central_river)
"ajA" = (
/obj/structure/fence,
@@ -1992,10 +1691,7 @@
/area/lv624/lazarus/landing_zones/lz1)
"ajD" = (
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/lv624/ground/river/east_river)
"ajE" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -2023,25 +1719,16 @@
/area/lv624/ground/river/east_river)
"ajJ" = (
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/central_river)
"ajL" = (
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/east_river)
"ajM" = (
/obj/structure/fence,
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/north,
/area/lv624/ground/river/central_river)
"ajR" = (
/obj/effect/decal/mecha_wreckage/ripley{
@@ -2052,10 +1739,7 @@
/area/lv624/ground/barrens/west_barrens)
"ajS" = (
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/north,
/area/lv624/ground/river/central_river)
"ajT" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -2063,16 +1747,10 @@
/area/lv624/ground/river/central_river)
"ajU" = (
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/ground/river/central_river)
"ajV" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/ground/river/central_river)
"ajW" = (
/turf/open/floor/plating,
@@ -2103,20 +1781,14 @@
icon_state = "pipe-c"
},
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/central_river)
"akc" = (
/obj/structure/grille{
density = 0;
icon_state = "brokengrille"
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/east_river)
"akd" = (
/obj/effect/landmark/hunter_primary,
@@ -2158,10 +1830,7 @@
"akp" = (
/obj/structure/grille,
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/east_river)
"akq" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -2174,10 +1843,7 @@
"akt" = (
/obj/structure/disposalpipe/junction,
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/central_river)
"aku" = (
/obj/structure/disposalpipe/segment{
@@ -2185,10 +1851,7 @@
icon_state = "pipe-c"
},
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/east_river)
"akv" = (
/obj/structure/disposalpipe/trunk{
@@ -2205,33 +1868,21 @@
/area/lv624/lazarus/landing_zones/lz1)
"akA" = (
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/west_river)
"akC" = (
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/central_river)
"akD" = (
/obj/structure/disposalpipe/segment,
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/central_river)
"akE" = (
/obj/structure/disposalpipe/segment,
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/east_river)
"akJ" = (
/obj/structure/disposalpipe/segment{
@@ -2252,10 +1903,7 @@
density = 0;
icon_state = "brokengrille"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/west_river)
"akN" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -2267,10 +1915,7 @@
density = 0;
icon_state = "brokengrille"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/central_river)
"akQ" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -2284,10 +1929,7 @@
"akT" = (
/obj/structure/disposalpipe/junction,
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/west_river)
"akU" = (
/obj/structure/disposalpipe/segment{
@@ -2295,10 +1937,7 @@
icon_state = "pipe-c"
},
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/central_river)
"akV" = (
/obj/structure/disposalpipe/trunk{
@@ -2338,10 +1977,7 @@
icon_state = "pipe-c"
},
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/east_river)
"ale" = (
/obj/structure/flora/bush/ausbushes/grassybush,
@@ -2354,10 +1990,7 @@
"ali" = (
/obj/structure/disposalpipe/segment,
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/central_river)
"alo" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -2396,10 +2029,7 @@
density = 0;
icon_state = "brokengrille"
},
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/central_river)
"alF" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -2410,10 +2040,7 @@
dir = 1
},
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/central_river)
"alL" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -2445,10 +2072,7 @@
density = 0;
icon_state = "brokengrille"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/west_river)
"alS" = (
/obj/structure/disposalpipe/segment{
@@ -2456,10 +2080,7 @@
icon_state = "pipe-c"
},
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/central_river)
"alT" = (
/obj/structure/disposalpipe/segment{
@@ -2479,14 +2100,10 @@
/area/lv624/ground/river/central_river)
"alX" = (
/obj/structure/fence,
-/turf/open/floor/plating{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning,
/area/lv624/ground/river/central_river)
"alY" = (
-/turf/open/floor/plating{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning,
/area/lv624/ground/river/central_river)
"alZ" = (
/obj/effect/landmark/crap_item,
@@ -2495,17 +2112,11 @@
/area/lv624/ground/river/central_river)
"ama" = (
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/lv624/ground/river/central_river)
"amf" = (
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/lv624/ground/river/east_river)
"amh" = (
/obj/structure/flora/jungle/alienplant1,
@@ -2517,10 +2128,7 @@
"aml" = (
/obj/structure/disposalpipe/segment,
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/west_river)
"amo" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -2551,10 +2159,7 @@
dir = 1
},
/obj/structure/grille,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/west_river)
"amB" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -2597,26 +2202,18 @@
/area/lv624/lazarus/landing_zones/lz1)
"amR" = (
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/lv624/ground/river/east_river)
"amS" = (
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/river/central_river)
"amT" = (
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/lv624/ground/river/central_river)
"amW" = (
/obj/effect/landmark/crap_item,
@@ -2624,10 +2221,7 @@
/area/lv624/ground/jungle/north_east_jungle)
"amX" = (
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/lv624/ground/river/west_river)
"amZ" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -2652,10 +2246,7 @@
icon_state = "box_1"
},
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/river/central_river)
"ank" = (
/turf/open/floor/plating,
@@ -2690,10 +2281,7 @@
/area/lv624/ground/caves/central_caves)
"anE" = (
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/lv624/ground/river/central_river)
"anF" = (
/turf/closed/wall,
@@ -2705,10 +2293,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/west,
/area/lv624/lazarus/corporate_dome)
"anM" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
@@ -2727,10 +2312,7 @@
/area/lv624/lazarus/medbay)
"anT" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"anW" = (
/obj/structure/flora/bush/ausbushes/pointybush,
@@ -2738,25 +2320,18 @@
/area/lv624/ground/jungle/south_east_jungle)
"aoa" = (
/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"aob" = (
/obj/structure/machinery/sleep_console,
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"aol" = (
/obj/structure/machinery/smartfridge,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"aon" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -2771,9 +2346,7 @@
/obj/item/clothing/glasses/hud/health,
/obj/effect/landmark/crap_item,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"aos" = (
/obj/structure/surface/table,
@@ -2787,30 +2360,19 @@
},
/obj/item/storage/belt/medical/full,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"aou" = (
-/turf/open/floor{
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner,
/area/lv624/lazarus/medbay)
"aov" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"aow" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/medbay)
"aox" = (
/obj/structure/machinery/medical_pod/bodyscanner,
@@ -2820,22 +2382,14 @@
name = "General Listening Channel";
pixel_y = 28
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"aoz" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"aoA" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"aoB" = (
/obj/structure/surface/table,
@@ -2844,63 +2398,39 @@
dir = 1
},
/obj/item/reagent_container/glass/watertank,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"aoC" = (
/obj/structure/surface/table,
/obj/item/clothing/gloves/botanic_leather,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"aoE" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/medbay)
"aoF" = (
/obj/item/reagent_container/hypospray,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"aoI" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"aoK" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/lv624/lazarus/medbay)
"aoL" = (
/obj/structure/machinery/optable,
/obj/item/tank/anesthetic,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"aoO" = (
/obj/item/reagent_container/glass/bucket,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"aoP" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"aoR" = (
/obj/structure/surface/table,
@@ -2909,16 +2439,10 @@
pixel_y = 6
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"aoU" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/north,
/area/lv624/lazarus/medbay)
"aoX" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -2963,9 +2487,7 @@
"apw" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"apx" = (
/obj/item/device/radio/intercom{
@@ -2974,33 +2496,21 @@
name = "General Listening Channel";
pixel_y = 28
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"apA" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"apC" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"apH" = (
/obj/item/tool/crowbar,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"apN" = (
/turf/closed/wall/r_wall,
@@ -3019,9 +2529,7 @@
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"apV" = (
/obj/item/clothing/under/colonist,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"apW" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -3033,9 +2541,7 @@
dir = 2;
name = "\improper Medical Bay"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"aqf" = (
/obj/structure/window/framed/colony/reinforced,
@@ -3053,10 +2559,7 @@
name = "General Listening Channel";
pixel_x = -30
},
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"aqq" = (
/obj/structure/flora/bush/ausbushes/pointybush,
@@ -3091,10 +2594,7 @@
dir = 8
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/medbay)
"aqF" = (
/obj/structure/fence,
@@ -3131,10 +2631,7 @@
pixel_x = 3;
pixel_y = 3
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/lv624/lazarus/medbay)
"aqR" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east,
@@ -3163,16 +2660,11 @@
"arf" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/medbay)
"arg" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/west,
/area/lv624/lazarus/medbay)
"ari" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -3191,20 +2683,14 @@
pixel_y = -3
},
/obj/item/reagent_container/glass/bucket,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"arq" = (
/obj/structure/surface/rack,
/obj/item/clothing/suit/apron,
/obj/item/tool/shovel,
/obj/item/clothing/gloves/botanic_leather,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"arr" = (
/obj/structure/surface/rack,
@@ -3221,37 +2707,25 @@
pixel_y = -2
},
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"art" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/structure/machinery/light,
/obj/item/reagent_container/glass/fertilizer,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"aru" = (
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"arv" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"arw" = (
/obj/structure/fence,
@@ -3271,15 +2745,11 @@
/area/lv624/lazarus/quartstorage/outdoors)
"arI" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage/outdoors)
"arJ" = (
/obj/structure/window_frame/colony,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"arK" = (
/turf/closed/wall,
@@ -3287,10 +2757,7 @@
"arL" = (
/obj/structure/barricade/wooden,
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/lv624/lazarus/landing_zones/lz1)
"arO" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -3315,9 +2782,7 @@
/area/lv624/ground/river/east_river)
"arT" = (
/obj/structure/flora/bush/ausbushes/reedbush,
-/turf/open/gm/dirt{
- icon_state = "desert2"
- },
+/turf/open/gm/dirt/desert2,
/area/lv624/ground/barrens/south_eastern_barrens)
"arU" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -3349,14 +2814,10 @@
/turf/open/gm/dirt,
/area/lv624/lazarus/quartstorage/outdoors)
"asj" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage/outdoors)
"ask" = (
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"asl" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -3399,9 +2860,7 @@
/area/lv624/lazarus/quartstorage/outdoors)
"asA" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage/outdoors)
"asF" = (
/obj/structure/flora/bush/ausbushes/palebush,
@@ -3417,10 +2876,7 @@
/area/lv624/ground/colony/south_medbay_road)
"asJ" = (
/obj/structure/flora/jungle/vines/light_1,
-/turf/open/floor{
- dir = 5;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northeast,
/area/lv624/lazarus/landing_zones/lz1)
"asK" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -3428,9 +2884,7 @@
/area/lv624/ground/jungle/west_jungle)
"asL" = (
/obj/item/tool/warning_cone,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"asM" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -3445,9 +2899,7 @@
/area/lv624/lazarus/quartstorage)
"asO" = (
/obj/structure/window_frame/colony,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage)
"asP" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -3489,9 +2941,7 @@
name = "\improper Research Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"asX" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -3513,33 +2963,23 @@
/area/lv624/ground/jungle/west_jungle)
"atc" = (
/obj/structure/girder,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"atd" = (
/obj/structure/largecrate/random,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"ath" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ati" = (
/turf/open/floor/vault,
/area/lv624/lazarus/quartstorage)
"atk" = (
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- dir = 4;
- icon_state = "warning"
- },
+/turf/open/floor/warning/east,
/area/lv624/lazarus/landing_zones/lz1)
"atn" = (
/obj/structure/window_frame/colony/reinforced,
@@ -3551,16 +2991,11 @@
/turf/open/floor/plating,
/area/lv624/lazarus/research)
"atp" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"atq" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"atu" = (
/turf/open/gm/dirtgrassborder/west,
@@ -3579,10 +3014,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/fitness)
"atz" = (
/obj/structure/window_frame/colony,
@@ -3598,9 +3030,7 @@
/area/lv624/ground/jungle/west_jungle)
"atD" = (
/obj/structure/girder/displaced,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"atE" = (
/obj/item/stack/sheet/wood{
@@ -3610,9 +3040,7 @@
/area/lv624/lazarus/quartstorage)
"atF" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"atG" = (
/obj/structure/machinery/light/small{
@@ -3656,10 +3084,7 @@
pixel_y = 4
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"atQ" = (
/obj/structure/lamarr{
@@ -3669,10 +3094,7 @@
occupied = 0
},
/obj/item/shard,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"atR" = (
/obj/structure/lamarr{
@@ -3685,10 +3107,7 @@
pixel_x = 32
},
/obj/item/shard,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"atS" = (
/obj/effect/decal/cleanable/blood,
@@ -3699,10 +3118,7 @@
dir = 4
},
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"atU" = (
/turf/closed/wall,
@@ -3713,15 +3129,10 @@
pixel_y = 4
},
/obj/item/tool/pen,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"atX" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"atY" = (
/obj/structure/window_frame/colony,
@@ -3748,9 +3159,7 @@
/turf/open/gm/river,
/area/lv624/ground/river/west_river)
"aue" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/wood/wood_broken3,
/area/lv624/ground/jungle/west_jungle/ceiling)
"auf" = (
/turf/open/floor/wood,
@@ -3770,19 +3179,14 @@
name = "Surgery Cleaner"
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"aul" = (
/obj/effect/landmark/lv624/fog_blocker,
/turf/open/gm/coast/beachcorner2/south_east,
/area/lv624/ground/river/west_river)
"aum" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aun" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -3795,17 +3199,11 @@
},
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aup" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aut" = (
/obj/structure/surface/table/reinforced/prison{
@@ -3819,26 +3217,18 @@
name = "\improper Research Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"auv" = (
/obj/effect/decal/remains/human,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"auw" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aux" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -3852,17 +3242,11 @@
"auz" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"auA" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"auB" = (
/obj/structure/surface/table,
@@ -3872,62 +3256,41 @@
},
/obj/item/reagent_container/glass/fertilizer,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"auD" = (
/obj/item/clothing/under/shorts/red,
/obj/structure/surface/rack,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"auE" = (
/turf/open/gm/river,
/area/lv624/lazarus/fitness)
"auF" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/fitness)
"auG" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/fitness)
"auH" = (
/obj/structure/closet/crate/secure/hydrosec,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"auI" = (
/obj/structure/cargo_container/wy/left,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"auJ" = (
/obj/structure/cargo_container/wy/mid,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"auK" = (
/obj/structure/cargo_container/wy/right,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"auM" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -3949,37 +3312,23 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv624/ground/jungle/west_jungle/ceiling)
"auV" = (
/obj/effect/decal/remains/human,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"auW" = (
/obj/item/bananapeel,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"auX" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"auY" = (
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"auZ" = (
/obj/item/toy/inflatable_duck,
@@ -3987,21 +3336,15 @@
/area/lv624/lazarus/fitness)
"ava" = (
/obj/structure/cargo_container/seegson/left,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"avb" = (
/obj/structure/cargo_container/seegson/mid,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"avc" = (
/obj/structure/cargo_container/seegson/right,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"ave" = (
/obj/structure/surface/rack,
@@ -4047,10 +3390,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"avm" = (
/turf/open/floor/wood,
@@ -4070,10 +3410,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/south_east_caves)
"avq" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
@@ -4082,10 +3419,7 @@
name = "\improper Research Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"avr" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
@@ -4096,23 +3430,15 @@
opacity = 0;
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"avu" = (
/obj/structure/closet/lasertag/red,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"avv" = (
/obj/item/toy/beach_ball,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/fitness)
"avw" = (
/obj/effect/landmark/good_item,
@@ -4120,9 +3446,7 @@
/area/lv624/lazarus/fitness)
"avx" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"avy" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -4132,28 +3456,20 @@
"avB" = (
/obj/structure/surface/table,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"avD" = (
/obj/structure/surface/table,
/obj/effect/decal/remains/human,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"avE" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"avF" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -4163,18 +3479,13 @@
pixel_x = 25
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"avG" = (
/obj/structure/surface/table,
/obj/item/clipboard,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"avH" = (
/turf/closed/wall,
@@ -4184,10 +3495,7 @@
/obj/item/tool/crowbar,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"avK" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -4196,24 +3504,15 @@
"avL" = (
/obj/structure/closet/lasertag/blue,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"avM" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"avN" = (
/obj/item/tool/soap,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"avP" = (
/obj/structure/fence,
@@ -4239,18 +3538,14 @@
/obj/structure/surface/rack,
/obj/item/clothing/under/colonist,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"avU" = (
/obj/item/stack/rods{
amount = 20
},
/obj/structure/surface/rack,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"avV" = (
/obj/structure/surface/rack,
@@ -4262,10 +3557,7 @@
pixel_x = 4;
pixel_y = -2
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"avX" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
@@ -4311,24 +3603,18 @@
name = "\improper Research Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"awk" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"awl" = (
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"awm" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
@@ -4338,43 +3624,31 @@
opacity = 0;
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"awn" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"awo" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
name = "\improper Research Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"awp" = (
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"awq" = (
/obj/item/clothing/glasses/regular,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"awr" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aws" = (
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -4388,10 +3662,7 @@
opacity = 0;
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"awt" = (
/obj/effect/decal/remains/human,
@@ -4403,26 +3674,17 @@
/area/lv624/lazarus/fitness)
"awv" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/fitness)
"aww" = (
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"awx" = (
/obj/effect/decal/remains/human,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"awy" = (
/obj/item/device/radio/intercom{
@@ -4431,30 +3693,21 @@
name = "General Listening Channel";
pixel_y = 30
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"awC" = (
/obj/structure/flora/bush/ausbushes/reedbush,
/turf/open/gm/coast/beachcorner/north_east,
/area/lv624/ground/jungle/west_jungle)
"awD" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/lazarus/robotics)
"awE" = (
/obj/structure/barricade/wooden{
dir = 1;
pixel_y = 7
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/lazarus/robotics)
"awF" = (
/obj/item/storage/toolbox/mechanical,
@@ -4462,32 +3715,22 @@
/area/lv624/ground/jungle/north_west_jungle)
"awG" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"awH" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"awI" = (
/obj/effect/decal/remains/human,
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"awK" = (
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"awL" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -4506,10 +3749,7 @@
opacity = 0;
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"awN" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -4526,10 +3766,7 @@
name = "\improper Leisure Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/fitness)
"awQ" = (
/obj/effect/landmark/monkey_spawn,
@@ -4537,24 +3774,15 @@
/area/lv624/ground/jungle/south_central_jungle)
"awR" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"awS" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"awT" = (
/obj/item/clothing/under/shorts/blue,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"awU" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -4562,10 +3790,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/fitness)
"awV" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -4589,96 +3814,63 @@
"awZ" = (
/obj/structure/surface/rack,
/obj/item/tool/crowbar,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"axa" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"axb" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"axe" = (
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"axf" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"axg" = (
/obj/structure/machinery/cm_vending/sorted/tech/robotics,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"axh" = (
/obj/structure/barricade/wooden{
dir = 1;
pixel_y = 7
},
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"axi" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/robotics)
"axj" = (
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"axk" = (
/obj/structure/prop/mech/armor_booster,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"axo" = (
/obj/structure/closet/cabinet,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv624/ground/caves/north_central_caves)
"axp" = (
/obj/effect/landmark/survivor_spawner,
/turf/open/floor/wood,
/area/lv624/ground/jungle/west_jungle/ceiling)
"axt" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/northwest,
/area/lv624/lazarus/fitness)
"axu" = (
/obj/structure/holohoop,
-/turf/open/floor{
- dir = 1;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/north,
/area/lv624/lazarus/fitness)
"axv" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/northeast,
/area/lv624/lazarus/fitness)
"axw" = (
/turf/open/gm/coast/beachcorner/south_west,
@@ -4695,16 +3887,11 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"axA" = (
/obj/item/stool,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"axB" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -4712,25 +3899,18 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/robotics)
"axC" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"axD" = (
/obj/effect/decal/remains/human,
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/north_west_jungle)
"axF" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"axG" = (
/obj/structure/machinery/shower{
@@ -4740,25 +3920,17 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"axH" = (
/obj/structure/machinery/cm_vending/sorted/tech/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"axI" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"axJ" = (
/obj/structure/machinery/light{
@@ -4769,10 +3941,7 @@
phone_id = "Research Dome";
pixel_y = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"axL" = (
/obj/structure/surface/table,
@@ -4780,26 +3949,17 @@
/obj/item/cell/hyper,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"axN" = (
/obj/item/storage/firstaid/regular,
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"axQ" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 4;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/east,
/area/lv624/lazarus/fitness)
"axR" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -4810,10 +3970,7 @@
pixel_x = 29
},
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"axW" = (
/obj/effect/decal/remains/xeno,
@@ -4845,9 +4002,7 @@
/area/lv624/lazarus/quartstorage/outdoors)
"ayg" = (
/obj/structure/computerframe,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"ayh" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -4860,105 +4015,72 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"ayk" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"aym" = (
/obj/structure/machinery/autolathe,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/robotics)
"ayn" = (
/obj/structure/dispenser/oxygen,
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"ayp" = (
/obj/item/bananapeel,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"ayq" = (
/obj/effect/decal/remains/human,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"ayr" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
name = "\improper Research Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ays" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ayt" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/west,
/area/lv624/lazarus/fitness)
"ayu" = (
/obj/structure/window/framed/colony/reinforced,
/turf/open/floor/plating,
/area/lv624/lazarus/main_hall)
"ayv" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/fitness)
"ayw" = (
/turf/open/floor/plating,
/area/lv624/lazarus/main_hall)
"ayx" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/east,
/area/lv624/lazarus/fitness)
"ayy" = (
/obj/item/clothing/under/shorts/black{
pixel_x = 2;
pixel_y = 2
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"ayz" = (
/obj/item/tool/mop,
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"ayA" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -4985,15 +4107,11 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"ayG" = (
/obj/effect/decal/remains/human,
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"ayI" = (
/obj/structure/sink{
@@ -5003,9 +4121,7 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/prop/alien/hugger,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"ayJ" = (
/obj/item/storage/box/beakers,
@@ -5013,33 +4129,22 @@
/obj/structure/sign/safety/biohazard{
pixel_x = -18
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ayK" = (
/obj/effect/decal/remains/human,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"ayL" = (
/obj/item/clothing/suit/redtag,
/obj/structure/closet/athletic_mixed,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"ayM" = (
/obj/structure/surface/table,
/obj/item/folder,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ayO" = (
/obj/item/weapon/baseballbat/metal,
@@ -5048,10 +4153,7 @@
},
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"ayP" = (
/turf/closed/wall/r_wall,
@@ -5090,10 +4192,7 @@
/obj/item/clothing/head/soft/ferret{
pixel_y = 5
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/lazarus/robotics)
"ayX" = (
/obj/structure/surface/table/reinforced,
@@ -5107,52 +4206,36 @@
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"ayZ" = (
/obj/item/clothing/mask/gas,
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"aza" = (
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/robotics)
"azc" = (
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"azd" = (
/obj/structure/machinery/light/small{
dir = 1
},
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"aze" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"azf" = (
/obj/structure/largecrate/random,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/lazarus/robotics)
"azg" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -5163,10 +4246,7 @@
"azh" = (
/obj/item/prop/alien/hugger,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"azi" = (
/obj/structure/surface/rack,
@@ -5175,54 +4255,34 @@
pixel_y = 3
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"azj" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/southwest,
/area/lv624/lazarus/fitness)
"azk" = (
/obj/structure/holohoop{
dir = 1
},
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite,
/area/lv624/lazarus/fitness)
"azl" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/southeast,
/area/lv624/lazarus/fitness)
"azm" = (
/obj/structure/closet/boxinggloves,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"azn" = (
/obj/structure/surface/rack,
/obj/structure/machinery/light,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"azo" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"azp" = (
/turf/closed/wall/r_wall,
@@ -5234,30 +4294,22 @@
"azr" = (
/obj/structure/machinery/vending/cigarette/colony,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"azs" = (
/obj/structure/flora/bush/ausbushes/reedbush,
/turf/open/gm/river,
/area/lv624/ground/jungle/west_jungle)
"azt" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"azu" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"azv" = (
/obj/item/trash/cheesie,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"azw" = (
/turf/closed/wall/r_wall,
@@ -5268,9 +4320,7 @@
/area/lv624/lazarus/sleep_female)
"azy" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/sleep_female)
"azB" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
@@ -5289,30 +4339,18 @@
/turf/open/floor/plating,
/area/lv624/lazarus/robotics)
"azF" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/lazarus/robotics)
"azG" = (
/obj/structure/machinery/mecha_part_fabricator,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/robotics)
"azI" = (
/obj/effect/decal/remains/human,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/robotics)
"azJ" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/lazarus/robotics)
"azK" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -5327,24 +4365,16 @@
"azL" = (
/obj/structure/closet/cabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"azM" = (
/obj/structure/closet/secure_closet/hydroponics,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"azN" = (
/obj/structure/bed,
/obj/item/bedsheet/brown,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"azO" = (
/obj/structure/closet{
@@ -5353,9 +4383,7 @@
opened = 1
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"azP" = (
/turf/closed/wall,
@@ -5365,9 +4393,7 @@
dir = 1;
pixel_y = 7
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"azR" = (
/turf/closed/wall,
@@ -5379,18 +4405,12 @@
},
/obj/structure/machinery/light,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"azT" = (
/obj/structure/bed,
/obj/item/bedsheet/yellow,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"azU" = (
/obj/structure/barricade/wooden,
@@ -5446,22 +4466,15 @@
/area/lv624/ground/caves/sand_temple)
"aAh" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/lazarus/robotics)
"aAi" = (
/obj/structure/machinery/light/small,
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"aAj" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"aAl" = (
/turf/open/gm/dirt,
@@ -5470,9 +4483,7 @@
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"aAo" = (
/obj/structure/sign/safety/analysis_lab{
@@ -5511,9 +4522,7 @@
dir = 1
},
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aAw" = (
/obj/structure/bed,
@@ -5524,9 +4533,7 @@
name = "General Listening Channel";
pixel_x = -30
},
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aAx" = (
/obj/structure/closet,
@@ -5536,25 +4543,19 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aAy" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aAz" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aAA" = (
/obj/structure/closet,
@@ -5563,18 +4564,12 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aAB" = (
/obj/structure/bed,
/obj/item/bedsheet/purple,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aAC" = (
/obj/structure/bed{
@@ -5584,10 +4579,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aAD" = (
/obj/structure/surface/rack,
@@ -5610,9 +4602,7 @@
"aAP" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aAR" = (
/obj/structure/machinery/light/small{
@@ -5623,10 +4613,7 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aAS" = (
/obj/structure/surface/table,
@@ -5636,45 +4623,33 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aAU" = (
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aAW" = (
/obj/structure/bed,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aAX" = (
/obj/structure/closet,
/obj/item/clothing/under/rank/scientist,
/obj/structure/window/reinforced/tinted,
/obj/item/stack/medical/advanced/bruise_pack,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aAY" = (
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aAZ" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aBa" = (
/obj/structure/closet{
@@ -5690,17 +4665,11 @@
name = "General Listening Channel";
pixel_x = -30
},
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aBb" = (
/obj/structure/bed,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aBc" = (
/obj/item/device/radio/intercom{
@@ -5709,36 +4678,24 @@
name = "General Listening Channel";
pixel_x = -30
},
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aBd" = (
/obj/item/reagent_container/food/snacks/donkpocket,
/obj/structure/flora/pottedplant,
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aBe" = (
/obj/structure/surface/table,
/obj/item/phone,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aBf" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aBg" = (
/obj/item/stack/sheet/metal,
@@ -5778,10 +4735,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"aBk" = (
/obj/structure/flora/bush/ausbushes/grassybush,
@@ -5807,9 +4761,7 @@
},
/obj/structure/largecrate/random,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"aBq" = (
/obj/structure/largecrate,
@@ -5820,43 +4772,32 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"aBr" = (
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/robotics)
"aBs" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"aBt" = (
/obj/structure/computerframe,
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"aBv" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"aBx" = (
/obj/effect/landmark/hunter_secondary,
@@ -5866,51 +4807,34 @@
/obj/structure/flora/pottedplant,
/obj/item/trash/cheesie,
/obj/structure/pipes/vents/pump,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aBz" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aBA" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aBB" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aBC" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aBD" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aBE" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aBF" = (
/obj/structure/bed/chair/comfy/lime{
@@ -5918,10 +4842,7 @@
},
/obj/effect/landmark/survivor_spawner,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aBG" = (
/obj/item/stack/rods{
@@ -5976,44 +4897,31 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/robotics)
"aBT" = (
/obj/structure/bed/chair/wheelchair,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aBU" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aBV" = (
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aBW" = (
/obj/item/stack/medical/advanced/bruise_pack,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aBY" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aBZ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -6021,14 +4929,10 @@
name = "\improper Nexus Dome Male Dormitories";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aCa" = (
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/lv624/lazarus/main_hall)
"aCb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -6036,26 +4940,17 @@
name = "\improper Nexus Dome Female Dormitories";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aCc" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aCd" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aCh" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
@@ -6069,27 +4964,19 @@
/area/lv624/lazarus/landing_zones/lz2)
"aCk" = (
/obj/structure/largecrate/random,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"aCl" = (
/obj/structure/largecrate,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"aCm" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"aCn" = (
/obj/structure/ore_box,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"aCo" = (
/obj/effect/decal/mecha_wreckage/ripley{
@@ -6105,9 +4992,7 @@
"aCq" = (
/obj/structure/surface/table,
/obj/item/trash/cheesie,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aCr" = (
/obj/structure/bed/chair/office/light{
@@ -6115,9 +5000,7 @@
},
/obj/effect/decal/cleanable/blood,
/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aCs" = (
/obj/structure/fence,
@@ -6128,16 +5011,12 @@
/obj/item/tool/crowbar,
/obj/item/clothing/gloves/yellow,
/obj/item/stack/medical/bruise_pack,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aCu" = (
/obj/structure/bed,
/obj/item/bedsheet/blue,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aCv" = (
/obj/structure/closet{
@@ -6149,24 +5028,17 @@
dir = 1
},
/obj/item/clothing/under/colonist,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aCw" = (
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/lv624/lazarus/main_hall)
"aCx" = (
/obj/structure/flora/bush/ausbushes/grassybush,
/turf/open/floor/grass,
/area/lv624/lazarus/main_hall)
"aCy" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/west,
/area/lv624/lazarus/main_hall)
"aCz" = (
/obj/structure/closet,
@@ -6175,28 +5047,19 @@
},
/obj/item/device/healthanalyzer,
/obj/item/clothing/shoes/centcom,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aCA" = (
/obj/structure/bed,
/obj/item/bedsheet/hos,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aCB" = (
/obj/structure/bed,
/obj/item/bedsheet/purple,
/obj/structure/pipes/standard/simple/hidden/cyan,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aCC" = (
/obj/item/reagent_container/food/drinks/flask/barflask,
@@ -6206,10 +5069,7 @@
name = "General Listening Channel";
pixel_x = -30
},
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aCE" = (
/obj/structure/girder/displaced,
@@ -6230,14 +5090,10 @@
/area/lv624/lazarus/landing_zones/lz2)
"aCK" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/lazarus/robotics)
"aCL" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/lazarus/robotics)
"aCO" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west,
@@ -6252,9 +5108,7 @@
name = "General Listening Channel";
pixel_x = -30
},
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aCQ" = (
/obj/structure/surface/table,
@@ -6262,16 +5116,12 @@
layer = 3.1
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aCR" = (
/obj/item/trash/cheesie,
/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aCS" = (
/obj/structure/fence,
@@ -6284,9 +5134,7 @@
opened = 1
},
/obj/item/clothing/under/colonist,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aCU" = (
/obj/structure/bed,
@@ -6296,9 +5144,7 @@
name = "General Listening Channel";
pixel_x = -30
},
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aCV" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -6322,53 +5168,36 @@
},
/obj/item/clothing/under/colonist,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aCZ" = (
/obj/structure/surface/table,
/obj/item/weapon/gun/pistol/holdout,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"aDa" = (
/obj/structure/bed,
/obj/item/bedsheet/mime,
/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aDb" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aDc" = (
/obj/structure/surface/table,
/obj/item/device/megaphone,
/obj/item/tool/wrench,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aDd" = (
/turf/open/floor/plating,
/area/lv624/lazarus/quartstorage)
"aDi" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/lv624/lazarus/landing_zones/lz1)
"aDj" = (
/obj/structure/flora/jungle/planttop1,
@@ -6387,45 +5216,33 @@
dir = 1
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aDq" = (
/obj/structure/bed,
/obj/item/bedsheet/blue,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aDr" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"aDs" = (
/obj/structure/bed/roller,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aDt" = (
/obj/structure/closet,
/obj/item/storage/fancy/cigarettes/wypacket,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aDu" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aDv" = (
/turf/open/gm/dirt,
@@ -6438,10 +5255,7 @@
/obj/structure/closet,
/obj/item/clothing/under/blackskirt,
/obj/item/stack/medical/advanced/ointment,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aDy" = (
/turf/closed/wall,
@@ -6449,19 +5263,13 @@
"aDz" = (
/obj/structure/bed,
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aDA" = (
/obj/structure/bed,
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aDB" = (
/obj/structure/surface/table,
@@ -6470,10 +5278,7 @@
pixel_x = -32
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aDE" = (
/obj/structure/machinery/power/apc/nocharge{
@@ -6486,10 +5291,7 @@
/turf/open/floor/vault,
/area/lv624/lazarus/quartstorage)
"aDG" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "warning"
- },
+/turf/open/floor/warning/west,
/area/lv624/lazarus/landing_zones/lz1)
"aDI" = (
/obj/structure/machinery/landinglight/ds1/delaytwo,
@@ -6508,10 +5310,7 @@
/turf/open/floor/plating,
/area/lv624/lazarus/landing_zones/lz1)
"aDM" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "warning"
- },
+/turf/open/floor/warning/east,
/area/lv624/lazarus/landing_zones/lz1)
"aDN" = (
/obj/structure/flora/jungle/plantbot1,
@@ -6538,10 +5337,7 @@
/turf/closed/wall,
/area/lv624/lazarus/toilet)
"aDV" = (
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/southwest,
/area/lv624/lazarus/landing_zones/lz2)
"aDW" = (
/obj/structure/machinery/light{
@@ -6550,9 +5346,7 @@
/obj/structure/surface/table,
/obj/item/trash/cheesie,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aDX" = (
/obj/structure/machinery/light{
@@ -6561,9 +5355,7 @@
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/cheeseburger,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aDY" = (
/turf/closed/wall,
@@ -6577,26 +5369,17 @@
/area/lv624/lazarus/quart)
"aEd" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 4;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/east,
/area/lv624/lazarus/quartstorage)
"aEe" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west,
/area/lv624/ground/jungle/west_jungle)
"aEf" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/quartstorage)
"aEg" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/quartstorage)
"aEh" = (
/obj/structure/reagent_dispensers/watertank,
@@ -6620,10 +5403,7 @@
/area/lv624/lazarus/landing_zones/lz1)
"aEn" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/fitness)
"aEs" = (
/obj/structure/fence,
@@ -6660,9 +5440,7 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aEB" = (
/obj/structure/window/reinforced/tinted,
@@ -6670,9 +5448,7 @@
dir = 4
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aEC" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
@@ -6688,9 +5464,7 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aEE" = (
/obj/structure/machinery/shower{
@@ -6703,9 +5477,7 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aEF" = (
/obj/structure/pipes/standard/manifold/hidden/cyan,
@@ -6721,10 +5493,7 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/lv624/lazarus/chapel)
"aEH" = (
/obj/item/device/radio/intercom{
@@ -6736,19 +5505,14 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/lv624/lazarus/chapel)
"aEI" = (
/obj/effect/decal/cleanable/blood/drip,
/turf/open/floor/wood,
/area/lv624/ground/caves/north_central_caves)
"aEJ" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/ground/caves/north_central_caves)
"aEK" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
@@ -6757,19 +5521,13 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/lv624/lazarus/chapel)
"aEL" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/lv624/lazarus/chapel)
"aEM" = (
/turf/open/gm/coast/beachcorner2/north_east,
@@ -6781,25 +5539,19 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aEP" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aEQ" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/lv624/lazarus/main_hall)
"aER" = (
/obj/structure/flora/bush/ausbushes/var3/leafybush,
@@ -6812,10 +5564,7 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/west,
/area/lv624/lazarus/main_hall)
"aET" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
@@ -6831,20 +5580,14 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aEV" = (
/obj/structure/largecrate/random,
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aEW" = (
/obj/structure/surface/table,
@@ -6854,10 +5597,7 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aEX" = (
/obj/structure/dispenser,
@@ -6870,18 +5610,12 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aEY" = (
/obj/structure/largecrate/random,
/obj/structure/pipes/standard/manifold/hidden/cyan,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aEZ" = (
/obj/structure/largecrate/random,
@@ -6891,10 +5625,7 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFa" = (
/obj/structure/largecrate/random,
@@ -6904,20 +5635,14 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFb" = (
/obj/structure/largecrate/random,
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/east,
/area/lv624/lazarus/quartstorage)
"aFh" = (
/obj/structure/window/reinforced/tinted,
@@ -6925,9 +5650,7 @@
/obj/structure/toilet{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aFj" = (
/obj/structure/window/reinforced/tinted,
@@ -6937,49 +5660,36 @@
/obj/structure/toilet{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aFk" = (
/obj/structure/machinery/shower{
dir = 4
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aFl" = (
/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aFm" = (
/turf/closed/wall/wood,
/area/lv624/ground/jungle/west_jungle/ceiling)
"aFn" = (
-/turf/open/floor{
- icon_state = "chapel"
- },
+/turf/open/floor/chapel,
/area/lv624/lazarus/chapel)
"aFo" = (
/turf/open/floor/plating,
/area/lv624/lazarus/chapel)
"aFp" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/lv624/lazarus/chapel)
"aFq" = (
/obj/structure/window_frame/colony,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/chapel)
"aFr" = (
/obj/structure/bed/chair/wheelchair,
@@ -7003,16 +5713,10 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFv" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFw" = (
/obj/structure/machinery/bot/mulebot{
@@ -7022,10 +5726,7 @@
on = 0
},
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFx" = (
/obj/structure/window/reinforced{
@@ -7034,44 +5735,29 @@
/obj/structure/computerframe{
anchored = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFy" = (
/obj/structure/surface/rack,
/obj/effect/landmark/costume/butler,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFA" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFB" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/technology_scanner,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFC" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tech_supply,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFD" = (
/obj/structure/surface/rack,
@@ -7080,17 +5766,11 @@
},
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFE" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/quartstorage)
"aFF" = (
/obj/structure/barricade/wooden,
@@ -7131,34 +5811,24 @@
/obj/structure/machinery/shower{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aFP" = (
/obj/structure/machinery/shower{
dir = 8
},
/obj/effect/glowshroom,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aFQ" = (
/obj/structure/window_frame/wood,
/turf/open/floor/wood,
/area/lv624/ground/jungle/west_jungle/ceiling)
"aFR" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/east,
/area/lv624/lazarus/chapel)
"aFS" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/lv624/lazarus/chapel)
"aFT" = (
/obj/structure/flora/bush/ausbushes/grassybush,
@@ -7167,57 +5837,36 @@
/area/lv624/lazarus/main_hall)
"aFU" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFV" = (
/obj/structure/surface/table,
/obj/item/trash/cheesie,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aFW" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aFY" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/east,
/area/lv624/lazarus/quartstorage)
"aFZ" = (
/obj/structure/window_frame/colony/reinforced,
/turf/open/floor/plating,
/area/lv624/lazarus/quartstorage)
"aGa" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northwest,
/area/lv624/lazarus/landing_zones/lz1)
"aGb" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/lv624/lazarus/landing_zones/lz1)
"aGc" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northeast,
/area/lv624/lazarus/landing_zones/lz1)
"aGe" = (
/obj/structure/machinery/landinglight/ds1/delayone{
@@ -7250,15 +5899,11 @@
/area/lv624/ground/jungle/west_central_jungle)
"aGm" = (
/obj/effect/glowshroom,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aGn" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aGo" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -7266,35 +5911,24 @@
name = "\improper Nexus Dome Bathroom";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aGp" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aGq" = (
/obj/structure/machinery/status_display{
pixel_y = -32
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aGr" = (
/obj/structure/machinery/door/window/westleft,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aGs" = (
/turf/closed/wall,
@@ -7302,27 +5936,18 @@
"aGt" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aGu" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/bomb_supply,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aGw" = (
/turf/open/floor,
/area/lv624/lazarus/quartstorage)
"aGx" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/north,
/area/lv624/lazarus/quartstorage)
"aGy" = (
/obj/item/stack/sheet/wood{
@@ -7351,32 +5976,24 @@
/turf/open/floor/plating,
/area/lv624/lazarus/landing_zones/lz1)
"aGH" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aGI" = (
/obj/structure/sink{
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aGJ" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aGK" = (
/obj/structure/surface/table,
/obj/structure/prop/mech/drill,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"aGN" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -7387,10 +6004,7 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aGP" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -7401,21 +6015,13 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/quartstorage)
"aGQ" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southwest,
/area/lv624/lazarus/landing_zones/lz1)
"aGR" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "warningcorner"
- },
+/turf/open/floor/warningcorner/north,
/area/lv624/lazarus/landing_zones/lz1)
"aGS" = (
/obj/structure/machinery/colony_floodlight,
@@ -7447,15 +6053,11 @@
/obj/item/poster,
/obj/item/clothing/glasses/regular/hipster,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aHa" = (
/obj/structure/machinery/washing_machine,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aHb" = (
/obj/structure/surface/table,
@@ -7464,9 +6066,7 @@
},
/obj/item/explosive/grenade/custom/cleaner,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aHc" = (
/obj/structure/machinery/light/small{
@@ -7475,101 +6075,68 @@
/obj/structure/surface/table,
/obj/structure/prop/mech/hydralic_clamp,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"aHe" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/main_hall)
"aHf" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/light/spot{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aHg" = (
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aHh" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen/north,
/area/lv624/lazarus/main_hall)
"aHi" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/main_hall)
"aHj" = (
/obj/structure/machinery/recharge_station,
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aHl" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aHm" = (
/obj/structure/machinery/fermenter,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aHn" = (
/obj/structure/machinery/still,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aHo" = (
/obj/structure/machinery/vending/coffee,
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aHp" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aHq" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aHr" = (
/obj/item/device/radio/intercom{
@@ -7578,23 +6145,14 @@
name = "General Listening Channel";
pixel_x = -30
},
-/turf/open/floor{
- dir = 8;
- icon_state = "warning"
- },
+/turf/open/floor/warning/west,
/area/lv624/lazarus/landing_zones/lz1)
"aHs" = (
/obj/item/tool/crowbar/red,
-/turf/open/floor{
- dir = 8;
- icon_state = "warningcorner"
- },
+/turf/open/floor/warningcorner/west,
/area/lv624/lazarus/landing_zones/lz1)
"aHu" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "warningcorner"
- },
+/turf/open/floor/warningcorner/east,
/area/lv624/lazarus/landing_zones/lz1)
"aHB" = (
/obj/structure/fence,
@@ -7610,47 +6168,32 @@
/area/lv624/ground/jungle/west_jungle)
"aHF" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aHH" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Nexus Dome Chapel";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/chapel)
"aHI" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/chapel)
"aHJ" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aHK" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aHL" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aHM" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"aHN" = (
/obj/structure/machinery/colony_floodlight,
@@ -7674,25 +6217,17 @@
/turf/open/floor/wood,
/area/lv624/ground/caves/north_central_caves)
"aHZ" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/lv624/lazarus/main_hall)
"aIb" = (
/obj/structure/flora/jungle/vines/light_1,
-/turf/open/floor{
- dir = 8;
- icon_state = "warning"
- },
+/turf/open/floor/warning/west,
/area/lv624/lazarus/landing_zones/lz2)
"aIc" = (
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aId" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -7700,9 +6235,7 @@
/area/lv624/ground/jungle/south_west_jungle)
"aIe" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aIg" = (
/obj/structure/machinery/light/small{
@@ -7717,9 +6250,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aIh" = (
/obj/structure/surface/table,
@@ -7728,31 +6259,23 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aIi" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aIj" = (
/obj/item/trash/chips,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aIl" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aIm" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -7762,9 +6285,7 @@
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aIq" = (
/obj/effect/landmark/monkey_spawn,
@@ -7778,17 +6299,13 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aIs" = (
/obj/structure/noticeboard{
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aIt" = (
/obj/item/device/radio/intercom{
@@ -7797,29 +6314,20 @@
name = "General Listening Channel";
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aIu" = (
/obj/structure/machinery/newscaster{
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aIv" = (
/obj/effect/landmark/hunter_secondary,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aIw" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/west,
/area/lv624/lazarus/landing_zones/lz1)
"aIy" = (
/obj/structure/surface/table/woodentable/poor,
@@ -7829,9 +6337,7 @@
pixel_x = 4;
pixel_y = 4
},
-/turf/open/floor/carpet{
- icon_state = "bcarpet01"
- },
+/turf/open/floor/carpet/bcarpet01,
/area/lv624/ground/caves/north_central_caves)
"aIz" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -7846,10 +6352,7 @@
/area/lv624/ground/caves/south_central_caves)
"aIB" = (
/obj/structure/closet,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aIE" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -7873,10 +6376,7 @@
/obj/structure/surface/rack,
/obj/item/clothing/glasses/regular,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aIJ" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
@@ -7893,9 +6393,7 @@
dir = 2;
name = "\improper Atmospherics Condenser"
},
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/yggdrasil)
"aIO" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -7907,10 +6405,7 @@
name = "\improper Nexus Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/lv624/lazarus/main_hall)
"aIV" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -7918,9 +6413,7 @@
/turf/closed/wall/strata_ice/jungle,
/area/lv624/ground/jungle/south_west_jungle)
"aIX" = (
-/obj/structure/flora/grass/tallgrass/jungle/corner{
- dir = 3
- },
+/obj/structure/flora/grass/tallgrass/jungle/corner,
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/west_jungle)
"aIY" = (
@@ -7932,10 +6425,7 @@
/turf/closed/wall/strata_ice/jungle,
/area/lv624/lazarus/landing_zones/lz1)
"aJa" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"aJb" = (
/turf/open/floor,
@@ -7947,36 +6437,23 @@
"aJd" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"aJe" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/gibs,
/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"aJf" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"aJg" = (
-/turf/open/floor{
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner,
/area/lv624/lazarus/main_hall)
"aJh" = (
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/lv624/lazarus/main_hall)
"aJi" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -7984,10 +6461,7 @@
/turf/closed/wall/strata_ice/jungle,
/area/lv624/ground/jungle/south_east_jungle)
"aJj" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/west,
/area/lv624/lazarus/main_hall)
"aJk" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -7995,16 +6469,11 @@
name = "\improper Nexus Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aJl" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/west,
/area/lv624/lazarus/landing_zones/lz1)
"aJr" = (
/turf/open/gm/grass/grass1,
@@ -8029,10 +6498,7 @@
/turf/open/floor/plating,
/area/lv624/lazarus/main_hall)
"aJB" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/main_hall)
"aJC" = (
/obj/item/phone{
@@ -8047,18 +6513,14 @@
dir = 1
},
/obj/structure/window/reinforced,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/main_hall)
"aJD" = (
/obj/structure/window/reinforced{
dir = 1
},
/obj/structure/window/reinforced,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/main_hall)
"aJE" = (
/obj/structure/showcase,
@@ -8066,9 +6528,7 @@
dir = 1
},
/obj/structure/window/reinforced,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/main_hall)
"aJF" = (
/obj/structure/fence,
@@ -8089,22 +6549,14 @@
dir = 1
},
/obj/structure/window/reinforced,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/main_hall)
"aJH" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/lv624/lazarus/main_hall)
"aJI" = (
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"aJJ" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
@@ -8114,10 +6566,7 @@
},
/area/lv624/lazarus/main_hall)
"aJK" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/north,
/area/lv624/lazarus/main_hall)
"aJL" = (
/obj/item/stock_parts/matter_bin/super,
@@ -8130,18 +6579,14 @@
dir = 8;
health = 80
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/main_hall)
"aJM" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/main_hall)
"aJN" = (
/obj/structure/showcase{
@@ -8152,9 +6597,7 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/main_hall)
"aJO" = (
/obj/structure/fence,
@@ -8170,17 +6613,13 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/main_hall)
"aJQ" = (
/obj/item/stack/sheet/wood{
amount = 2
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aJR" = (
/obj/effect/decal/cleanable/blood/tracks/footprints{
@@ -8189,10 +6628,7 @@
/obj/effect/decal/cleanable/blood/tracks/footprints{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "warning"
- },
+/turf/open/floor/warning/west,
/area/lv624/lazarus/landing_zones/lz1)
"aJS" = (
/obj/effect/landmark/hunter_primary,
@@ -8201,9 +6637,7 @@
"aJZ" = (
/obj/structure/closet,
/obj/item/clothing/glasses/sunglasses,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aKb" = (
/turf/closed/wall/strata_ice/jungle,
@@ -8241,10 +6675,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/south_east_caves)
"aKk" = (
/obj/structure/flora/jungle/plantbot1,
@@ -8287,18 +6718,12 @@
/turf/open/floor/plating,
/area/lv624/lazarus/yggdrasil)
"aKv" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/lv624/lazarus/main_hall)
"aKx" = (
/obj/item/tool/crowbar,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"aKy" = (
/obj/effect/decal/cleanable/blood{
@@ -8344,26 +6769,20 @@
"aKJ" = (
/obj/structure/machinery/light/small,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aKK" = (
/obj/structure/machinery/light/small,
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aKL" = (
/obj/item/frame/table,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aKM" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -8444,9 +6863,7 @@
/obj/item/reagent_container/glass/bucket/mopbucket,
/obj/item/tool/mop,
/obj/item/tool/mop,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aLo" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -8465,15 +6882,11 @@
/area/lv624/ground/caves/west_caves)
"aLs" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"aLt" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"aLv" = (
/turf/open/gm/grass/grass2,
@@ -8532,9 +6945,7 @@
/obj/structure/surface/rack,
/obj/item/weapon/gun/shotgun/pump,
/obj/item/ammo_magazine/shotgun/slugs,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"aLT" = (
/obj/effect/decal/cleanable/cobweb2,
@@ -8544,9 +6955,7 @@
/obj/effect/landmark/crap_item,
/obj/effect/landmark/crap_item,
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"aLW" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -8554,17 +6963,11 @@
/area/lv624/ground/jungle/east_central_jungle)
"aLX" = (
/obj/structure/target/syndicate,
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"aLZ" = (
/obj/structure/target,
-/turf/open/floor{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/red/northwest,
/area/lv624/lazarus/security)
"aMa" = (
/obj/item/device/flash,
@@ -8582,24 +6985,18 @@
name = "General Listening Channel";
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner,
/area/lv624/lazarus/security)
"aMb" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor{
- icon_state = "red"
- },
+/turf/open/floor/red,
/area/lv624/lazarus/security)
"aMc" = (
/obj/structure/closet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aMd" = (
/obj/structure/surface/table/reinforced/prison,
@@ -8612,86 +7009,59 @@
phone_color = "red";
phone_id = "Marshal Office"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/lv624/lazarus/security)
"aMe" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/main_hall)
"aMf" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/light/spot,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aMg" = (
/obj/item/trash/raisins,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aMh" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/lv624/lazarus/main_hall)
"aMi" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/main_hall)
"aMj" = (
/obj/structure/device/broken_piano,
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aMk" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aMl" = (
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aMm" = (
/obj/structure/surface/table/gamblingtable,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aMn" = (
/obj/structure/machinery/vending/cola,
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aMo" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aMp" = (
/obj/item/device/radio/intercom{
@@ -8700,15 +7070,10 @@
name = "General Listening Channel";
pixel_x = -30
},
-/turf/open/floor{
- dir = 10;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southwest,
/area/lv624/lazarus/landing_zones/lz1)
"aMq" = (
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/lv624/lazarus/landing_zones/lz1)
"aMr" = (
/obj/effect/landmark/lv624/xeno_tunnel,
@@ -8772,9 +7137,7 @@
"aMX" = (
/obj/structure/machinery/deployable/barrier,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"aMY" = (
/obj/structure/machinery/light/small{
@@ -8785,43 +7148,27 @@
/obj/item/ammo_magazine/pistol/highpower,
/obj/item/ammo_magazine/pistol/highpower,
/obj/item/ammo_magazine/pistol/highpower,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"aMZ" = (
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"aNb" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"aNc" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/red/northwest,
/area/lv624/lazarus/security)
"aNd" = (
/obj/structure/closet,
/obj/item/clothing/shoes/mime,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aNe" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/lv624/lazarus/security)
"aNf" = (
/obj/structure/flora/jungle/planttop1,
@@ -8831,19 +7178,14 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/lv624/lazarus/security)
"aNi" = (
/obj/effect/decal/cleanable/blood,
/obj/item/device/flashlight/lamp,
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aNj" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -8855,9 +7197,7 @@
/area/lv624/lazarus/kitchen)
"aNl" = (
/obj/structure/bed/stool,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aNn" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -8875,9 +7215,7 @@
/area/lv624/lazarus/landing_zones/lz1)
"aNA" = (
/obj/structure/flora/jungle/vines/light_1,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/yggdrasil)
"aNB" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -8925,58 +7263,37 @@
/area/lv624/lazarus/yggdrasil)
"aNL" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"aNM" = (
/obj/structure/surface/rack,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/crap_item,
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"aNN" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"aNO" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/red/east,
/area/lv624/lazarus/security)
"aNP" = (
/obj/item/folder/red,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/lv624/lazarus/security)
"aNQ" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/red/southwest,
/area/lv624/lazarus/security)
"aNR" = (
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- icon_state = "red"
- },
+/turf/open/floor/red,
/area/lv624/lazarus/security)
"aNS" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/west,
/area/lv624/lazarus/security)
"aNT" = (
/obj/structure/machinery/door/airlock/almayer/security/colony{
@@ -8992,10 +7309,7 @@
pixel_y = 22
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aNW" = (
/obj/structure/sink/kitchen{
@@ -9011,19 +7325,13 @@
pixel_y = -4
},
/obj/item/reagent_container/food/snacks/donkpocket,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aNX" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/grown/tomato,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aNY" = (
/obj/structure/surface/table,
@@ -9031,24 +7339,15 @@
pixel_y = 9
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aNZ" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aOa" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aOb" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -9058,31 +7357,22 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aOd" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aOe" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/canteen)
"aOo" = (
/obj/structure/surface/table,
/obj/item/clothing/glasses/sunglasses/big,
/obj/structure/machinery/light,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"aOs" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -9112,9 +7402,7 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 8
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"aOA" = (
/obj/item/storage/toolbox/syndicate,
@@ -9122,15 +7410,10 @@
/obj/effect/landmark/crap_item,
/obj/effect/landmark/crap_item,
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"aOB" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/north,
/area/lv624/lazarus/landing_zones/lz2)
"aOC" = (
/obj/structure/window/reinforced{
@@ -9141,10 +7424,7 @@
/obj/item/ammo_magazine/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"aOD" = (
/obj/structure/window/reinforced{
@@ -9156,10 +7436,7 @@
/obj/item/weapon/gun/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/red/northwest,
/area/lv624/lazarus/security)
"aOF" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -9177,23 +7454,14 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/binoculars,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/lv624/lazarus/security)
"aOJ" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/lv624/lazarus/security)
"aOK" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/red/west,
/area/lv624/lazarus/security)
"aOL" = (
/obj/structure/fence,
@@ -9206,42 +7474,31 @@
/area/lv624/lazarus/main_hall)
"aON" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aOO" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aOP" = (
/obj/structure/surface/table,
/obj/item/trash/plate,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aOQ" = (
/obj/structure/surface/table,
/obj/item/trash/candy,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aOR" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aOS" = (
/obj/structure/flora/jungle/planttop1,
@@ -9266,10 +7523,7 @@
/obj/item/paper_bin,
/obj/item/tool/pen,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aPf" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -9301,9 +7555,7 @@
/area/lv624/ground/jungle/south_west_jungle)
"aPo" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"aPp" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -9311,22 +7563,14 @@
name = "\improper Nexus Dome Armory";
req_one_access_txt = "19;106"
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"aPq" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/east,
/area/lv624/lazarus/security)
"aPr" = (
/obj/structure/machinery/light/small,
-/turf/open/floor{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/red/north,
/area/lv624/lazarus/security)
"aPs" = (
/obj/structure/surface/table,
@@ -9341,9 +7585,7 @@
pixel_y = 30
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aPt" = (
/turf/closed/wall/r_wall,
@@ -9351,20 +7593,14 @@
"aPu" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/red/north,
/area/lv624/lazarus/security)
"aPv" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/restraint/handcuffs,
/obj/item/storage/firstaid/adv,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/red/north,
/area/lv624/lazarus/security)
"aPx" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
@@ -9373,56 +7609,39 @@
/area/lv624/lazarus/main_hall)
"aPy" = (
/obj/structure/machinery/vending/dinnerware,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aPz" = (
/obj/structure/machinery/chem_master/condimaster,
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aPA" = (
/obj/structure/surface/table,
/obj/structure/machinery/microwave,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aPB" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aPC" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/grown/banana,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aPD" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aPE" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aPH" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -9439,19 +7658,13 @@
"aPI" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/tool/candle,
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/lv624/lazarus/chapel)
"aPJ" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/storage/box/matches,
/obj/item/tool/candle,
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/lv624/lazarus/chapel)
"aPM" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -9473,9 +7686,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/lv624/lazarus/comms)
"aPR" = (
/obj/structure/lz_sign/lazarus_sign{
@@ -9512,9 +7723,7 @@
},
/obj/structure/surface/table,
/obj/item/trash/plate,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aQa" = (
/obj/structure/flora/grass/ice/both,
@@ -9523,57 +7732,39 @@
/area/lv624/lazarus/main_hall)
"aQb" = (
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aQc" = (
/obj/structure/surface/table,
/obj/structure/machinery/processor,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aQd" = (
/obj/structure/machinery/smartfridge,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aQe" = (
/obj/structure/machinery/light/small{
dir = 4
},
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aQf" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aQg" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aQn" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aQo" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -9613,23 +7804,16 @@
"aQy" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/trash/candle,
-/turf/open/floor{
- dir = 1;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/north,
/area/lv624/lazarus/chapel)
"aQB" = (
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aQD" = (
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aQE" = (
/obj/structure/machinery/light/small{
@@ -9641,33 +7825,25 @@
name = "General Listening Channel";
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aQF" = (
/obj/structure/surface/table,
/obj/structure/mirror{
pixel_y = -30
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/toilet)
"aQG" = (
/obj/structure/bookcase,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aQH" = (
/obj/structure/bookcase,
/obj/item/bananapeel,
/obj/item/book/manual/research_and_development,
/obj/item/book/manual/security_space_law,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aQI" = (
/obj/structure/showcase{
@@ -9680,18 +7856,14 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aQJ" = (
/obj/structure/noticeboard{
pixel_y = 30
},
/obj/item/trash/cheesie,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aQK" = (
/obj/structure/machinery/light/small{
@@ -9703,9 +7875,7 @@
name = "General Listening Channel";
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aQM" = (
/turf/closed/wall/r_wall,
@@ -9714,31 +7884,21 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aQO" = (
/obj/item/reagent_container/food/snacks/grown/banana,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aQP" = (
/obj/structure/machinery/cm_vending/sorted/boozeomat,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"aQQ" = (
/obj/structure/machinery/power/apc/nocharge{
dir = 8
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aQX" = (
/obj/effect/landmark/hunter_primary,
@@ -9758,10 +7918,7 @@
/obj/structure/surface/table,
/obj/item/device/mmi/radio_enabled,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aRe" = (
/obj/effect/decal/cleanable/dirt,
@@ -9770,10 +7927,7 @@
pixel_x = 3;
pixel_y = 15
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aRf" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -9784,10 +7938,7 @@
/area/lv624/lazarus/landing_zones/lz2)
"aRh" = (
/obj/structure/closet/coffin,
-/turf/open/floor{
- dir = 8;
- icon_state = "chapel"
- },
+/turf/open/floor/chapel/west,
/area/lv624/lazarus/chapel)
"aRi" = (
/obj/structure/machinery/light{
@@ -9795,19 +7946,13 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aRj" = (
/obj/structure/surface/rack,
/obj/structure/machinery/light,
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"aRo" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -9845,17 +7990,13 @@
dir = 4
},
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aRA" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aRB" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
@@ -9865,9 +8006,7 @@
desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!";
name = "\improper Mister Wiggles"
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aRC" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
@@ -9878,49 +8017,37 @@
name = "\improper Nexus Dome Marshal's Quarters";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/captain)
"aRD" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aRE" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aRF" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/lazarus/hop)
"aRG" = (
/obj/structure/machinery/floodlight/landing,
-/turf/open/floor/mech_bay_recharge_floor{
- name = "Shuttle Landing Lights"
- },
+/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights,
/area/lv624/lazarus/landing_zones/lz2)
"aRI" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aRK" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
@@ -9945,9 +8072,7 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aRR" = (
/obj/structure/surface/table,
@@ -9960,9 +8085,7 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aRU" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
@@ -9971,9 +8094,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aRV" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
@@ -9983,9 +8104,7 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aRX" = (
/obj/structure/machinery/light/small{
@@ -9994,9 +8113,7 @@
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aRZ" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
@@ -10032,10 +8149,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aSe" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
@@ -10044,17 +8158,11 @@
pixel_x = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aSg" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aSi" = (
/obj/structure/foamed_metal,
@@ -10077,24 +8185,17 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/south_east_caves)
"aSq" = (
/obj/structure/machinery/power/apc/nocharge{
dir = 8
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aSs" = (
/obj/structure/coatrack,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aSv" = (
/obj/structure/window/framed/colony/reinforced,
@@ -10102,29 +8203,21 @@
/area/lv624/lazarus/captain)
"aSw" = (
/obj/item/trash/popcorn,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aSy" = (
/obj/structure/bed/chair/wood/wings{
dir = 4
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aSz" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"aSA" = (
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aSB" = (
/obj/structure/window/framed/colony/reinforced,
@@ -10133,30 +8226,22 @@
"aSC" = (
/obj/structure/surface/table,
/obj/item/clothing/suit/chef/classic,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aSD" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aSE" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aSF" = (
/obj/structure/machinery/requests_console{
pixel_x = 30
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aSG" = (
/obj/item/device/radio/intercom{
@@ -10166,33 +8251,24 @@
pixel_y = 30
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aSH" = (
/obj/structure/machinery/status_display{
pixel_y = 30
},
/obj/structure/bed/chair,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aSI" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aSJ" = (
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/lv624/lazarus/comms)
"aSK" = (
/obj/structure/window_frame/colony/reinforced,
@@ -10212,17 +8288,13 @@
name = "safe";
spawnkey = 0
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aST" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/clothing/under/CM_uniform,
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor{
- icon_state = "red"
- },
+/turf/open/floor/red,
/area/lv624/lazarus/security)
"aSU" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -10240,24 +8312,18 @@
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/grilledcheese,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aSX" = (
/turf/closed/wall,
/area/lv624/lazarus/engineering)
"aSY" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aSZ" = (
/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aTb" = (
/turf/open/floor/plating,
@@ -10266,15 +8332,11 @@
/obj/structure/surface/table,
/obj/item/trash/chips,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aTd" = (
/obj/item/frame/table,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aTe" = (
/obj/structure/window/framed/colony/reinforced,
@@ -10288,10 +8350,7 @@
/area/lv624/lazarus/comms)
"aTi" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aTj" = (
/obj/effect/decal/warning_stripes{
@@ -10306,31 +8365,22 @@
dir = 1;
layer = 3.2
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aTk" = (
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/lv624/lazarus/comms)
"aTq" = (
/obj/structure/foamed_metal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aTs" = (
/obj/structure/machinery/power/smes/buildable{
capacity = 1e+006;
dir = 1
},
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/engineering)
"aTt" = (
/obj/structure/machinery/landinglight/ds2/delaytwo,
@@ -10345,9 +8395,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aTv" = (
/obj/structure/machinery/landinglight/ds2,
@@ -10366,15 +8414,11 @@
/area/lv624/ground/barrens/north_east_barrens)
"aTB" = (
/obj/structure/machinery/light/small,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aTC" = (
/obj/item/trash/cheesie,
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
+/turf/open/floor/wood/wood_broken4,
/area/lv624/lazarus/hop)
"aTD" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -10391,9 +8435,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aTF" = (
/obj/structure/surface/table,
@@ -10403,65 +8445,45 @@
pixel_y = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aTG" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aTH" = (
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aTI" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aTJ" = (
/obj/structure/machinery/power/apc{
dir = 1;
start_charge = 15
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/lv624/lazarus/comms)
"aTK" = (
/obj/structure/surface/rack,
/obj/item/device/multitool,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aTM" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aTN" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/lazarus/engineering)
"aTP" = (
/obj/structure/machinery/power/terminal{
@@ -10469,18 +8491,14 @@
},
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "platebot"
- },
+/turf/open/floor/platebot,
/area/lv624/lazarus/engineering)
"aTR" = (
/obj/structure/machinery/power/terminal{
dir = 1
},
/obj/item/clothing/gloves/yellow,
-/turf/open/floor{
- icon_state = "platebot"
- },
+/turf/open/floor/platebot,
/area/lv624/lazarus/engineering)
"aTS" = (
/obj/effect/landmark/survivor_spawner,
@@ -10496,18 +8514,14 @@
"aTW" = (
/obj/item/clothing/glasses/regular,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aTX" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aTY" = (
/obj/structure/machinery/door/airlock/almayer/command/colony{
@@ -10516,40 +8530,30 @@
name = "\improper Nexus Dome Director's Quarters";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/hop)
"aTZ" = (
/obj/structure/machinery/vending,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aUa" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aUb" = (
/obj/structure/kitchenspike,
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aUc" = (
/obj/structure/surface/rack,
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aUd" = (
/obj/item/tool/kitchen/knife/butcher,
@@ -10557,9 +8561,7 @@
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aUe" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -10583,9 +8585,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/lv624/lazarus/comms)
"aUl" = (
/turf/open/gm/dirtgrassborder/south,
@@ -10599,20 +8599,13 @@
layer = 3.01
},
/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aUq" = (
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/engineering)
"aUs" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/lazarus/engineering)
"aUt" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -10627,26 +8620,19 @@
icon_state = "N";
pixel_y = 2
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aUv" = (
/obj/item/device/flashlight,
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/red/east,
/area/lv624/lazarus/security)
"aUx" = (
/obj/structure/machinery/power/monitor{
name = "Main Power Grid Monitoring"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aUz" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -10663,26 +8649,20 @@
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aUB" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aUD" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aUE" = (
/obj/item/device/radio/intercom{
@@ -10694,9 +8674,7 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aUG" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
@@ -10706,18 +8684,14 @@
/area/lv624/lazarus/hop)
"aUH" = (
/obj/structure/pipes/standard/manifold/hidden/cyan,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aUI" = (
/obj/structure/largecrate/random,
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aUJ" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
@@ -10729,26 +8703,20 @@
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aUM" = (
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aUN" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aUO" = (
/obj/item/shard,
@@ -10779,10 +8747,7 @@
"aVb" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aVd" = (
/obj/structure/lattice{
@@ -10790,16 +8755,10 @@
},
/obj/structure/platform,
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/lv624/lazarus/engineering)
"aVe" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/lazarus/engineering)
"aVf" = (
/obj/structure/lattice{
@@ -10810,20 +8769,14 @@
pixel_y = 13
},
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/lazarus/engineering)
"aVg" = (
/obj/structure/lattice{
layer = 2.9
},
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/lazarus/engineering)
"aVj" = (
/obj/structure/platform_decoration{
@@ -10836,9 +8789,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/lv624/lazarus/engineering)
"aVk" = (
/obj/structure/sign/safety/maint,
@@ -10863,42 +8814,30 @@
"aVo" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aVp" = (
/obj/structure/bed/chair/office/light,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aVq" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aVr" = (
/mob/living/simple_animal/mouse,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aVs" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aVt" = (
/obj/structure/machinery/gibber,
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aVu" = (
/turf/closed/wall/r_wall,
@@ -10912,9 +8851,7 @@
"aVx" = (
/obj/structure/surface/table/woodentable/poor,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/carpet{
- icon_state = "bcarpet02"
- },
+/turf/open/floor/carpet/bcarpet02,
/area/lv624/ground/caves/north_central_caves)
"aVA" = (
/obj/structure/flora/jungle/plantbot1,
@@ -10926,9 +8863,7 @@
/area/lv624/lazarus/engineering)
"aVC" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aVE" = (
/obj/structure/flora/jungle/planttop1,
@@ -10945,9 +8880,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aVG" = (
/obj/item/device/radio/intercom{
@@ -10962,25 +8895,19 @@
},
/obj/structure/platform/stair_cut,
/obj/item/clothing/head/hardhat/orange,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aVH" = (
/obj/structure/machinery/light{
dir = 1
},
/obj/structure/foamed_metal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aVI" = (
/obj/structure/machinery/vending/coffee,
/obj/structure/foamed_metal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aVJ" = (
/obj/effect/landmark/lv624/xeno_tunnel,
@@ -10999,31 +8926,23 @@
/obj/structure/surface/table/woodentable,
/obj/item/device/taperecorder,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aVN" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aVO" = (
/obj/structure/barricade/wooden,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aVP" = (
/obj/item/reagent_container/food/snacks/grown/banana{
pixel_x = -8
},
/obj/structure/surface/rack,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aVS" = (
/turf/closed/wall/mineral/sandstone/runed,
@@ -11081,17 +9000,13 @@
/area/lv624/lazarus/secure_storage)
"aWd" = (
/obj/item/shard,
-/turf/open/floor{
- icon_state = "podhatchfloor"
- },
+/turf/open/floor/podhatchfloor,
/area/lv624/lazarus/comms)
"aWe" = (
/obj/structure/machinery/computer/telecomms/monitor{
pixel_y = 16
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/comms)
"aWf" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -11099,9 +9014,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/lv624/lazarus/engineering)
"aWg" = (
/obj/structure/lattice{
@@ -11109,10 +9022,7 @@
},
/obj/structure/platform,
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/lv624/lazarus/engineering)
"aWh" = (
/obj/structure/fence,
@@ -11120,15 +9030,11 @@
/area/lv624/ground/colony/north_nexus_road)
"aWi" = (
/obj/structure/bed/stool,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aWj" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aWk" = (
/obj/structure/flora/jungle/vines/heavy{
@@ -11139,28 +9045,19 @@
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"aWl" = (
/obj/structure/flora/jungle/vines/light_3,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"aWm" = (
/obj/structure/flora/jungle/vines/heavy{
pixel_y = 26
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"aWn" = (
/obj/structure/flora/jungle/vines/light_2{
pixel_y = -22
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"aWo" = (
/obj/structure/flora/jungle/vines/heavy{
@@ -11169,20 +9066,14 @@
/obj/structure/flora/jungle/vines/light_2{
pixel_y = -22
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"aWp" = (
/obj/structure/flora/jungle/vines/heavy{
pixel_y = 26
},
/obj/structure/flora/jungle/vines/light_3,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"aWq" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -11196,9 +9087,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/south_west_jungle)
"aWv" = (
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/secure_storage)
"aWw" = (
/obj/effect/decal/remains/xeno,
@@ -11215,10 +9104,7 @@
frequency = 1469
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aWz" = (
/obj/structure/window_frame/colony/reinforced,
@@ -11231,20 +9117,14 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aWC" = (
/obj/structure/machinery/colony_floodlight,
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/east_central_jungle)
"aWD" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/lazarus/engineering)
"aWE" = (
/obj/effect/decal/warning_stripes{
@@ -11252,10 +9132,7 @@
pixel_x = 1
},
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aWF" = (
/obj/effect/spawner/random/toolbox,
@@ -11263,9 +9140,7 @@
/obj/item/device/radio,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aWG" = (
/obj/structure/stairs/perspective{
@@ -11276,9 +9151,7 @@
layer = 3.1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aWH" = (
/obj/structure/surface/table/reinforced/prison,
@@ -11288,9 +9161,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aWI" = (
/obj/structure/surface/table/reinforced/prison,
@@ -11298,9 +9169,7 @@
/obj/effect/spawner/random/tool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aWJ" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -11315,9 +9184,7 @@
name = "\improper Nexus Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aWM" = (
/obj/structure/grille{
@@ -11329,10 +9196,7 @@
/turf/open/floor/plating,
/area/lv624/lazarus/main_hall)
"aWO" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"aWP" = (
/obj/effect/landmark/monkey_spawn,
@@ -11386,10 +9250,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/rods,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aWY" = (
/turf/closed/wall,
@@ -11406,25 +9267,17 @@
},
/obj/structure/platform,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aXc" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "bluecorner"
- },
+/turf/open/floor/bluecorner,
/area/lv624/lazarus/sleep_male)
"aXd" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aXe" = (
/obj/effect/decal/warning_stripes{
@@ -11432,10 +9285,7 @@
pixel_y = 1
},
/obj/item/tool/crowbar,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aXf" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -11445,9 +9295,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/lv624/lazarus/engineering)
"aXg" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -11456,9 +9304,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/lv624/lazarus/engineering)
"aXh" = (
/turf/open/gm/grass/grass1,
@@ -11487,10 +9333,7 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aXo" = (
/obj/effect/landmark/crap_item,
@@ -11501,9 +9344,7 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/lv624/lazarus/engineering)
"aXt" = (
/obj/structure/surface/rack,
@@ -11514,9 +9355,7 @@
phone_id = "Engineering";
pixel_y = 24
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aXu" = (
/obj/structure/machinery/light{
@@ -11524,9 +9363,7 @@
},
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/spawner/random/tool,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aXv" = (
/obj/effect/landmark/monkey_spawn,
@@ -11534,9 +9371,7 @@
/area/lv624/ground/jungle/east_central_jungle)
"aXw" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aXx" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -11549,10 +9384,7 @@
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"aXA" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"aXB" = (
/obj/structure/flora/jungle/vines/heavy{
@@ -11610,33 +9442,24 @@
},
/obj/item/weapon/baseballbat/metal,
/obj/item/device/lightreplacer,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aXK" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aXL" = (
/obj/structure/closet/secure_closet/security,
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/red/east,
/area/lv624/lazarus/security)
"aXN" = (
/obj/effect/spawner/random/powercell,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aXP" = (
/obj/structure/flora/jungle/planttop1,
@@ -11648,10 +9471,7 @@
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"aXR" = (
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"aXS" = (
/obj/structure/flora/jungle/vines/heavy{
@@ -11671,9 +9491,7 @@
/obj/structure/foamed_metal{
layer = 3.1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aXX" = (
/turf/open/gm/grass/grass1,
@@ -11688,15 +9506,11 @@
/obj/item/ammo_magazine/smg/nailgun,
/obj/item/ammo_magazine/smg/nailgun,
/obj/item/ammo_magazine/smg/nailgun,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aYc" = (
/obj/structure/machinery/power/port_gen/pacman/super,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aYd" = (
/obj/structure/grille{
@@ -11706,9 +9520,7 @@
/obj/structure/foamed_metal{
layer = 3.1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aYf" = (
/obj/structure/largecrate/random,
@@ -11718,10 +9530,7 @@
"aYh" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/rods,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aYj" = (
/obj/effect/landmark/lv624/xeno_tunnel,
@@ -11736,9 +9545,7 @@
/area/lv624/ground/jungle/south_west_jungle)
"aYn" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"aYo" = (
/obj/structure/flora/jungle/vines/heavy{
@@ -11799,14 +9606,10 @@
dir = 4
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aYE" = (
-/turf/open/gm/dirt{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirt/desert_dug,
/area/lv624/ground/barrens/west_barrens)
"aYF" = (
/obj/structure/girder,
@@ -11818,22 +9621,15 @@
/obj/structure/machinery/cell_charger,
/obj/item/storage/fancy/cigarettes/wypacket,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aYH" = (
/obj/structure/closet/lawcloset,
/obj/item/clothing/suit/armor/vest/security,
-/turf/open/floor{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/red/north,
/area/lv624/lazarus/security)
"aYI" = (
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/lv624/ground/caves/south_west_caves)
"aYJ" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -11843,9 +9639,7 @@
phone_color = "blue";
phone_id = "Director's Office"
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aYM" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -11853,21 +9647,15 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aYN" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/structure/machinery/computer/rdconsole,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aYO" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
+/turf/open/floor/wood/wood_broken4,
/area/lv624/ground/caves/north_central_caves)
"aYQ" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -11928,9 +9716,7 @@
pixel_x = -30
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aZe" = (
/obj/structure/bookcase,
@@ -11939,9 +9725,7 @@
/obj/item/book/manual/engineering_hacking,
/obj/item/book/manual/atmospipes,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aZf" = (
/obj/structure/surface/table/reinforced/prison,
@@ -11953,9 +9737,7 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/item/fuel_cell,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aZg" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -11963,9 +9745,7 @@
/obj/structure/machinery/computer/objective{
dir = 1
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aZh" = (
/obj/structure/surface/table,
@@ -11973,9 +9753,7 @@
/obj/item/tool/crowbar,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/comms)
"aZi" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -11983,9 +9761,7 @@
pixel_y = 26
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aZj" = (
/obj/structure/closet/cabinet,
@@ -11993,9 +9769,7 @@
layer = 2.6
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aZn" = (
/obj/structure/surface/table/woodentable/poor,
@@ -12011,23 +9785,17 @@
/obj/structure/surface/table/woodentable/fancy,
/obj/item/device/megaphone,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/captain)
"aZp" = (
/obj/structure/surface/table/woodentable/poor,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/ground/jungle/west_jungle/ceiling)
"aZs" = (
/obj/structure/closet/secure_closet/bar,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aZt" = (
/obj/structure/surface/rack,
@@ -12038,10 +9806,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/ashtray/bronze,
/obj/item/storage/donut_box,
-/turf/open/floor{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/red/west,
/area/lv624/lazarus/security)
"aZx" = (
/obj/structure/closet/toolcloset,
@@ -12049,17 +9814,13 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aZy" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aZz" = (
/obj/structure/filingcabinet/security{
@@ -12070,19 +9831,14 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/open/floor/redcorner/north,
/area/lv624/lazarus/security)
"aZA" = (
/obj/structure/filingcabinet,
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
+/turf/open/floor/wood/wood_broken4,
/area/lv624/lazarus/hop)
"aZB" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -12093,50 +9849,37 @@
pixel_y = 12
},
/obj/item/tool/wrench,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/hop)
"aZC" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"aZD" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/structure/pipes/standard/simple/hidden/cyan{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/kitchen)
"aZE" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aZF" = (
/obj/structure/surface/table/woodentable,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"aZG" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aZI" = (
/obj/structure/filingcabinet/chestdrawer{
@@ -12151,17 +9894,13 @@
},
/obj/effect/landmark/objective_landmark/close,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aZJ" = (
/obj/structure/bed,
/obj/item/clothing/mask/cigarette/pipe,
/obj/item/clothing/under/colonist,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aZK" = (
/obj/effect/decal/warning_stripes{
@@ -12169,10 +9908,7 @@
pixel_x = -1;
pixel_y = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"aZL" = (
/obj/item/stack/sheet/metal,
@@ -12180,9 +9916,7 @@
/area/lv624/lazarus/secure_storage)
"aZM" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"aZO" = (
/obj/effect/landmark/xeno_spawn,
@@ -12318,10 +10052,7 @@
pixel_x = 4;
pixel_y = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"bei" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -12372,10 +10103,7 @@
health = 80
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"bit" = (
/obj/structure/machinery/colony_floodlight,
@@ -12406,18 +10134,14 @@
/area/lv624/ground/jungle/south_west_jungle)
"blC" = (
/obj/item/stack/sheet/wood,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"bnz" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Corporate Liaison"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"bnE" = (
/obj/structure/flora/bush/ausbushes/pointybush,
@@ -12516,10 +10240,7 @@
name = "Weyland-Yutani Automatic Teller Machine";
pixel_x = -30
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"buw" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -12542,10 +10263,7 @@
/area/lv624/ground/caves/east_caves)
"bvq" = (
/obj/structure/prop/mech/parts/chassis/gygax,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/robotics)
"bvS" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -12589,9 +10307,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/colony/north_tcomms_road)
"bzs" = (
-/turf/open/gm/dirtgrassborder{
- dir = 4
- },
+/turf/open/gm/dirtgrassborder/west,
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"bzD" = (
/obj/structure/largecrate/random,
@@ -12599,10 +10315,7 @@
pixel_x = 1;
pixel_y = 8
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/lazarus/corporate_dome)
"bAB" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east,
@@ -12680,10 +10393,7 @@
/area/lv624/ground/river/west_river)
"bGV" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/medbay)
"bIO" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -12693,10 +10403,7 @@
/area/lv624/ground/caves/sand_temple)
"bJe" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"bJz" = (
/obj/effect/decal/cleanable/blood,
@@ -12725,9 +10432,7 @@
icon_state = "N";
pixel_y = 2
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"bMu" = (
/turf/open/gm/dirtgrassborder/west,
@@ -12787,9 +10492,7 @@
"bQf" = (
/obj/structure/machinery/power/port_gen/pacman/super,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"bQz" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -12816,10 +10519,7 @@
icon_state = "p_stair_full"
},
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"bSm" = (
/obj/effect/landmark/crap_item,
@@ -12834,32 +10534,24 @@
"bUc" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/shard,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/comms)
"bUs" = (
/obj/structure/surface/table/woodentable/poor,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/carpet{
- icon_state = "bcarpet07"
- },
+/turf/open/floor/carpet/bcarpet07,
/area/lv624/ground/caves/north_central_caves)
"bUU" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"bXd" = (
/obj/item/device/flashlight/on,
/obj/effect/decal/cleanable/blood/drip,
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"bXP" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -12877,15 +10569,10 @@
/area/lv624/ground/jungle/central_jungle)
"bZX" = (
/obj/structure/window/framed/colony,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/east_barrens/ceiling)
"cac" = (
-/obj/structure/flora/grass/tallgrass/jungle/corner{
- dir = 3
- },
+/obj/structure/flora/grass/tallgrass/jungle/corner,
/turf/open/gm/grass/grass1,
/area/lv624/lazarus/landing_zones/lz1)
"cag" = (
@@ -12893,9 +10580,7 @@
/area/lv624/ground/caves/sand_temple)
"caH" = (
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"caX" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -12912,9 +10597,7 @@
"cdj" = (
/obj/structure/window_frame/colony,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"cdw" = (
/obj/effect/landmark/objective_landmark/science,
@@ -12927,16 +10610,11 @@
/turf/closed/wall/rock/brown,
/area/lv624/ground/caves/south_central_caves)
"cen" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/lv624/lazarus/corporate_dome)
"cfA" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv624/lazarus/secure_storage)
"cfD" = (
/turf/closed/wall/r_wall/unmeltable,
@@ -12961,17 +10639,11 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/corporate_dome)
"cgC" = (
/obj/structure/flora/jungle/vines/light_1,
-/turf/open/floor{
- dir = 10;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southwest,
/area/lv624/lazarus/landing_zones/lz2)
"cgD" = (
/obj/structure/machinery/colony_floodlight,
@@ -12980,9 +10652,7 @@
"cgK" = (
/obj/item/stool,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"chf" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
@@ -13044,10 +10714,7 @@
/area/lv624/lazarus/quartstorage/outdoors)
"cmP" = (
/obj/structure/barricade/metal/wired,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/corporate_dome)
"cng" = (
/obj/structure/stairs/perspective{
@@ -13055,10 +10722,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"cop" = (
/obj/effect/decal/grass_overlay/grass1{
@@ -13095,10 +10759,7 @@
"cqE" = (
/obj/structure/barricade/wooden,
/obj/structure/flora/jungle/vines/light_2,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/lv624/lazarus/landing_zones/lz1)
"cqH" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle,
@@ -13148,9 +10809,7 @@
/area/lv624/ground/jungle/north_east_jungle)
"cxc" = (
/obj/item/tool/shovel,
-/turf/open/gm/dirt{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirt/desert_dug,
/area/lv624/ground/barrens/west_barrens)
"cxi" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -13167,10 +10826,7 @@
},
/obj/structure/platform/stair_cut/alt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"czq" = (
/obj/effect/landmark/objective_landmark/science,
@@ -13208,24 +10864,17 @@
pixel_x = 6;
pixel_y = 12
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/corporate_dome)
"cCe" = (
/obj/effect/decal/remains/xeno,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/south_west_caves)
"cCr" = (
/turf/open/gm/dirtgrassborder/south,
/area/lv624/ground/jungle/east_jungle)
"cCP" = (
-/turf/open/gm/dirt{
- icon_state = "desert1"
- },
+/turf/open/gm/dirt/desert1,
/area/lv624/ground/caves/south_west_caves)
"cDr" = (
/obj/structure/girder,
@@ -13298,10 +10947,7 @@
dir = 8
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/lazarus/corporate_dome)
"cJA" = (
/obj/effect/landmark/monkey_spawn,
@@ -13312,10 +10958,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/south_west_jungle)
"cLD" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/lv624/lazarus/corporate_dome)
"cMj" = (
/obj/effect/landmark/hunter_primary,
@@ -13337,10 +10980,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/shard,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"cNH" = (
/obj/structure/surface/rack,
@@ -13352,10 +10992,7 @@
/area/lv624/lazarus/quartstorage/outdoors)
"cOz" = (
/obj/structure/bed/chair/comfy/beige,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/lv624/lazarus/corporate_dome)
"cOF" = (
/obj/structure/closet/cabinet,
@@ -13378,10 +11015,7 @@
"cQU" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/device/multitool,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"cQX" = (
/obj/structure/stairs/perspective{
@@ -13446,16 +11080,11 @@
"cYi" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/pie,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"cZs" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- dir = 9;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northwest,
/area/lv624/lazarus/landing_zones/lz2)
"daz" = (
/obj/structure/prop/brazier/torch,
@@ -13472,9 +11101,7 @@
/area/lv624/ground/caves/south_central_caves)
"dbA" = (
/obj/structure/xenoautopsy/tank,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"dbY" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -13490,17 +11117,11 @@
/obj/item/circuitboard/airlock{
pixel_x = 12
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/lv624/ground/colony/telecomm/cargo)
"dff" = (
/obj/structure/bed/sofa/vert/grey,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/corporate_dome)
"dfJ" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
@@ -13575,9 +11196,7 @@
/area/lv624/ground/jungle/north_west_jungle)
"dql" = (
/obj/structure/largecrate,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"dqo" = (
/obj/structure/stairs/perspective{
@@ -13585,16 +11204,10 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/barrens/south_eastern_barrens)
"dqz" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/lv624/ground/colony/telecomm/cargo)
"dqK" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -13610,18 +11223,14 @@
/obj/item/ammo_magazine/rifle/mar40/extended,
/obj/item/ammo_magazine/rifle/mar40/extended,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"drX" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"dsi" = (
/obj/effect/landmark/monkey_spawn,
@@ -13630,10 +11239,7 @@
"dsz" = (
/obj/structure/closet/crate/hydroponics/prespawned,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"dtr" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -13656,10 +11262,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southeast,
/area/lv624/lazarus/corporate_dome)
"dws" = (
/obj/structure/stairs/perspective{
@@ -13670,10 +11273,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/barrens/south_eastern_barrens)
"dwt" = (
/obj/structure/fence,
@@ -13681,10 +11281,7 @@
/area/lv624/lazarus/landing_zones/lz2)
"dwN" = (
/obj/structure/bed/sofa/vert/grey/bot,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southeast,
/area/lv624/lazarus/corporate_dome)
"dxb" = (
/obj/structure/surface/rack,
@@ -13692,10 +11289,7 @@
/obj/item/explosive/grenade/incendiary/molotov{
pixel_x = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"dxy" = (
/obj/structure/flora/bush/ausbushes/lavendergrass{
@@ -13733,9 +11327,7 @@
/obj/item/reagent_container/food/drinks/cans/waterbottle{
pixel_x = 2
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"dCZ" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -13800,15 +11392,11 @@
"dHr" = (
/obj/item/weapon/twohanded/fireaxe,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/comms)
"dId" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/medbay)
"dIj" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -13824,15 +11412,10 @@
/area/lv624/ground/caves/north_east_caves)
"dID" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"dIO" = (
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/lv624/ground/barrens/central_barrens)
"dJG" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -13853,10 +11436,7 @@
/obj/item/book/manual/medical_diagnostics_manual,
/obj/item/book/manual/security_space_law,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/corporate_dome)
"dLm" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -13932,9 +11512,7 @@
"dOC" = (
/obj/structure/kitchenspike,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv624/ground/caves/north_central_caves)
"dOQ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -13942,9 +11520,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/central_caves)
"dTm" = (
-/turf/open/gm/dirt{
- icon_state = "desert1"
- },
+/turf/open/gm/dirt/desert1,
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"dTY" = (
/obj/effect/landmark/objective_landmark/far,
@@ -13960,9 +11536,7 @@
/obj/structure/barricade/handrail/strata{
dir = 8
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"dVQ" = (
/obj/structure/surface/rack,
@@ -13973,17 +11547,12 @@
pixel_x = -7
},
/obj/item/reagent_container/food/drinks/cans/souto/classic,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"dWa" = (
/obj/effect/landmark/objective_landmark/science,
/obj/structure/barricade/wooden,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"dWM" = (
/obj/effect/landmark/monkey_spawn,
@@ -14010,9 +11579,7 @@
"dZH" = (
/obj/structure/filingcabinet,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/medbay)
"dZY" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -14034,10 +11601,7 @@
/obj/item/stack/sheet/wood{
amount = 2
},
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"ebr" = (
/turf/open/gm/dirtgrassborder/east,
@@ -14059,10 +11623,7 @@
/area/lv624/lazarus/crashed_ship_containers)
"ecK" = (
/obj/structure/closet/coffin/predator,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"ecO" = (
/turf/open/gm/dirtgrassborder/north,
@@ -14105,10 +11666,7 @@
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "Hydroponics"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"eil" = (
/obj/structure/flora/grass/tallgrass/jungle,
@@ -14119,10 +11677,7 @@
amount = 2
},
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- dir = 5;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northeast,
/area/lv624/lazarus/landing_zones/lz2)
"eiP" = (
/obj/structure/flora/bush/ausbushes/grassybush,
@@ -14143,9 +11698,7 @@
"ejx" = (
/obj/structure/disposalpipe/segment,
/obj/structure/window/framed/colony,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/east_barrens/ceiling)
"ekB" = (
/obj/structure/stairs/perspective{
@@ -14166,10 +11719,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"elp" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -14185,10 +11735,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"enn" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -14207,15 +11754,10 @@
/area/lv624/ground/colony/south_medbay_road)
"eot" = (
/obj/structure/prop/mech/parts/gygax_torso,
-/turf/open/floor{
- icon_state = "vault"
- },
+/turf/open/floor/vault2,
/area/lv624/lazarus/robotics)
"eoM" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/east,
/area/lv624/lazarus/medbay)
"eoW" = (
/obj/structure/flora/bush/ausbushes/pointybush,
@@ -14230,10 +11772,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/corporate_dome)
"eqs" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -14246,9 +11785,7 @@
/area/lv624/ground/river/central_river)
"eqP" = (
/obj/structure/machinery/bioprinter,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"eqS" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -14264,9 +11801,7 @@
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
/obj/structure/blocker/forcefield/multitile_vehicles,
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/south_west_caves)
"etU" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -14281,17 +11816,12 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"euW" = (
/obj/structure/surface/table/woodentable/poor,
/obj/item/tool/candle,
-/turf/open/floor/carpet{
- icon_state = "bcarpet03"
- },
+/turf/open/floor/carpet/bcarpet03,
/area/lv624/ground/caves/north_central_caves)
"evT" = (
/obj/structure/flora/jungle/plantbot1,
@@ -14315,10 +11845,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/shard,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"eyn" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -14337,10 +11864,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"eAr" = (
/obj/structure/showcase{
@@ -14371,10 +11895,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"eCx" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -14410,10 +11931,7 @@
"eGx" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/adv,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"eGD" = (
/turf/open/gm/dirt,
@@ -14422,9 +11940,7 @@
/obj/structure/bed,
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"eHq" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -14444,9 +11960,7 @@
"eLx" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"eMe" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -14459,9 +11973,7 @@
/area/lv624/ground/jungle/south_east_jungle)
"eNQ" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
-/turf/open/gm/dirt{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirt/desert_dug,
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"eOk" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east,
@@ -14471,9 +11983,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/barrens/east_barrens)
"ePp" = (
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"ePu" = (
/obj/effect/landmark/xeno_hive_spawn,
@@ -14514,9 +12024,7 @@
/area/lv624/ground/colony/west_tcomms_road)
"eVH" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/south_west_caves)
"eYb" = (
/obj/structure/flora/bush/ausbushes/var3/sunnybush,
@@ -14525,10 +12033,7 @@
"eYh" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"eYD" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -14550,15 +12055,10 @@
/obj/structure/barricade/metal{
health = 250
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"fau" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/lazarus/corporate_dome)
"fbb" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -14587,19 +12087,14 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"ffb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 2;
name = "Hydroponics"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"ffC" = (
/obj/effect/landmark/crap_item,
@@ -14623,10 +12118,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/barrens/south_eastern_barrens)
"fhJ" = (
/turf/open/gm/dirtgrassborder/west,
@@ -14639,9 +12131,7 @@
"fij" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/chair/office/light,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/comms)
"fio" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -14688,10 +12178,7 @@
dir = 4;
pixel_x = 11
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/lazarus/corporate_dome)
"fmV" = (
/obj/structure/flora/bush/ausbushes/ausbush,
@@ -14714,10 +12201,7 @@
/area/lv624/ground/caves/south_central_caves)
"fqM" = (
/obj/structure/machinery/power/apc/nocharge,
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/lv624/ground/colony/telecomm/sw_lz2)
"frV" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -14727,10 +12211,7 @@
/area/lv624/ground/caves/north_west_caves)
"fsa" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
"fsc" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -14745,10 +12226,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/corporate_dome)
"fur" = (
/turf/open/gm/dirtgrassborder/east,
@@ -14769,10 +12247,7 @@
/obj/structure/platform/mineral/sandstone/runed{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"fyA" = (
/obj/structure/flora/jungle/planttop1,
@@ -14780,9 +12255,7 @@
/area/lv624/ground/jungle/south_east_jungle)
"fzg" = (
/obj/item/storage/firstaid/toxin/empty,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"fzZ" = (
/obj/structure/showcase{
@@ -14800,23 +12273,16 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"fAs" = (
/obj/item/tool/crowbar,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"fAz" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
/obj/structure/medical_supply_link,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"fAD" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
@@ -14835,10 +12301,7 @@
dir = 4
},
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- dir = 10;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southwest,
/area/lv624/lazarus/landing_zones/lz1)
"fDE" = (
/turf/open/auto_turf/strata_grass/layer1,
@@ -14848,9 +12311,7 @@
/turf/open/gm/river,
/area/lv624/ground/barrens/west_barrens)
"fDT" = (
-/turf/open/gm/dirt{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirt/desert_dug,
/area/lv624/ground/caves/south_west_caves)
"fEn" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -14866,17 +12327,11 @@
/area/lv624/ground/barrens/south_west_barrens)
"fFA" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"fFM" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"fFN" = (
/obj/structure/window_frame/colony/reinforced,
@@ -14885,10 +12340,7 @@
/area/lv624/lazarus/engineering)
"fFZ" = (
/obj/structure/machinery/power/apc/nocharge,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/lv624/ground/colony/telecomm/cargo)
"fGn" = (
/obj/effect/decal/grass_overlay/grass1,
@@ -14901,9 +12353,7 @@
/area/lv624/ground/jungle/south_west_jungle)
"fHi" = (
/obj/item/ammo_magazine/smg/mp5,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"fHw" = (
/obj/item/device/sentry_computer{
@@ -14949,9 +12399,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"fLh" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/angel,
@@ -14959,9 +12407,7 @@
/area/lv624/ground/caves/west_caves)
"fMa" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"fMl" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -14969,9 +12415,7 @@
name = "\improper Corporation Office";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"fMv" = (
/obj/item/stack/sheet/metal,
@@ -14981,9 +12425,7 @@
/area/lv624/lazarus/secure_storage)
"fNA" = (
/obj/structure/barricade/wooden,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"fPi" = (
/turf/open/gm/coast/north,
@@ -14997,9 +12439,7 @@
pixel_x = -1;
pixel_y = 2
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"fQL" = (
/turf/open/gm/coast/beachcorner2/south_east,
@@ -15060,9 +12500,7 @@
/turf/open/gm/dirtgrassborder/east,
/area/lv624/ground/jungle/north_west_jungle)
"gaw" = (
-/obj/structure/flora/grass/tallgrass/jungle/corner{
- dir = 3
- },
+/obj/structure/flora/grass/tallgrass/jungle/corner,
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/north_jungle)
"gbl" = (
@@ -15072,10 +12510,7 @@
"gby" = (
/obj/structure/flora/jungle/vines/light_3,
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- dir = 9;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northwest,
/area/lv624/lazarus/landing_zones/lz2)
"gbz" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -15101,17 +12536,13 @@
/area/lv624/ground/caves/central_caves)
"gcI" = (
/obj/effect/landmark/crap_item,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"gcZ" = (
/obj/structure/barricade/metal/wired{
health = 300
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"gdr" = (
/obj/structure/flora/bush/ausbushes/grassybush,
@@ -15136,10 +12567,7 @@
amount = 2
},
/obj/structure/flora/jungle/vines/light_3,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/lv624/lazarus/landing_zones/lz2)
"gfc" = (
/obj/structure/surface/table/reinforced{
@@ -15157,9 +12585,7 @@
/area/lv624/ground/jungle/south_west_jungle)
"gin" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"git" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -15195,9 +12621,7 @@
/turf/open/auto_turf/strata_grass/layer1,
/area/lv624/ground/caves/north_west_caves)
"gnx" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"god" = (
/obj/structure/fence,
@@ -15222,9 +12646,7 @@
/obj/effect/spawner/random/powercell,
/obj/item/device/assembly/infra,
/obj/effect/spawner/random/powercell,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"grl" = (
/obj/structure/flora/jungle/planttop1,
@@ -15247,9 +12669,7 @@
/area/lv624/ground/caves/south_east_caves)
"gss" = (
/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"gsA" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -15266,9 +12686,7 @@
/obj/effect/landmark/nightmare{
insert_tag = "cargospecial2"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"guW" = (
/obj/effect/landmark/nightmare{
@@ -15320,15 +12738,11 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/north_east_caves)
"gzo" = (
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/lv624/ground/barrens/east_barrens)
"gzD" = (
/obj/structure/machinery/light/small,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"gzH" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -15345,9 +12759,7 @@
"gAS" = (
/obj/effect/vehicle_spawner/van/decrepit,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"gBG" = (
/obj/structure/fence,
@@ -15374,9 +12786,7 @@
/obj/item/ammo_casing/bullet{
icon_state = "casing_9_1"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"gFm" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -15391,19 +12801,13 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/south_central_caves)
"gKg" = (
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/lv624/lazarus/engineering)
"gKN" = (
/obj/structure/platform_decoration{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"gMe" = (
/obj/effect/landmark/nightmare{
@@ -15464,10 +12868,7 @@
},
/obj/effect/landmark/objective_landmark/close,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/corporate_dome)
"gTv" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -15505,10 +12906,7 @@
pixel_x = -3;
pixel_y = -3
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"gWE" = (
/obj/effect/decal/grass_overlay/grass1{
@@ -15522,16 +12920,11 @@
/area/lv624/ground/jungle/south_east_jungle)
"gXu" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"gXy" = (
/obj/structure/flora/jungle/vines/light_3,
-/turf/open/floor{
- dir = 6;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southeast,
/area/lv624/lazarus/landing_zones/lz1)
"gYs" = (
/obj/structure/fence,
@@ -15565,9 +12958,7 @@
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"hbF" = (
/obj/item/tool/kitchen/utensil/fork,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"hbK" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -15583,9 +12974,7 @@
"hcv" = (
/obj/structure/largecrate/random,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage/outdoors)
"hcN" = (
/obj/structure/surface/table/reinforced/prison{
@@ -15594,18 +12983,12 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/sand_temple)
"hdh" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/lv624/ground/colony/telecomm/sw_lz2)
"hdA" = (
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/east,
/area/lv624/lazarus/landing_zones/lz2)
"hen" = (
/obj/item/tool/weldingtool,
@@ -15660,10 +13043,7 @@
/turf/open/auto_turf/strata_grass/layer1,
/area/lv624/ground/caves/west_caves)
"hhv" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/corporate_dome)
"hhU" = (
/obj/vehicle/train/cargo/trolley,
@@ -15718,10 +13098,7 @@
/turf/open/gm/dirtgrassborder/west,
/area/lv624/ground/jungle/west_central_jungle)
"hpG" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/ground/caves/north_central_caves)
"hpK" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{
@@ -15737,10 +13114,7 @@
/obj/structure/surface/table,
/obj/effect/landmark/good_item,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"hqQ" = (
/obj/structure/flora/bush/ausbushes/var3/sunnybush,
@@ -15757,9 +13131,7 @@
name = "\improper Corporation Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"hrG" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -15811,10 +13183,7 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northwest,
/area/lv624/lazarus/landing_zones/lz1)
"hzR" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane,
@@ -15825,9 +13194,7 @@
dir = 1;
pixel_y = 7
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"hBL" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane,
@@ -15837,9 +13204,7 @@
"hDe" = (
/obj/structure/bed/stool,
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"hDX" = (
/obj/effect/decal/remains/xeno,
@@ -15855,10 +13220,7 @@
/area/lv624/ground/jungle/north_west_jungle)
"hEs" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"hEu" = (
/obj/structure/fence,
@@ -15909,10 +13271,7 @@
pixel_x = 7;
pixel_y = 28
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"hJn" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -15936,10 +13295,7 @@
/area/lv624/ground/jungle/south_central_jungle)
"hMd" = (
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/jungle/south_west_jungle/ceiling)
"hMr" = (
/obj/structure/surface/rack{
@@ -15979,10 +13335,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/rods,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"hPV" = (
/obj/effect/decal/remains/xeno{
@@ -15995,15 +13348,10 @@
/obj/structure/reagent_dispensers/water_cooler{
pixel_x = -12
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"hRy" = (
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/lv624/ground/caves/south_west_caves)
"hRB" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -16021,10 +13369,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/east_jungle)
"hSa" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "warningcorner"
- },
+/turf/open/floor/warningcorner/west,
/area/lv624/lazarus/landing_zones/lz1)
"hSn" = (
/turf/open/gm/grass/grass1,
@@ -16048,9 +13393,7 @@
/area/lv624/ground/jungle/east_central_jungle)
"hTp" = (
/obj/structure/girder/reinforced,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv624/lazarus/secure_storage)
"hTR" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -16082,9 +13425,7 @@
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"hZn" = (
/obj/item/stack/sheet/metal{
@@ -16095,9 +13436,7 @@
/area/lv624/ground/jungle/north_west_jungle)
"hZW" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "redyellowfull"
- },
+/turf/open/floor/redyellowfull,
/area/lv624/ground/barrens/west_barrens/ceiling)
"iab" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east,
@@ -16123,10 +13462,7 @@
/obj/item/stack/sheet/animalhide/xeno{
name = "Warrior hide"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"ibS" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -16153,10 +13489,7 @@
/obj/item/clothing/suit/armor/yautja_flavor{
anchored = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"ieH" = (
/obj/item/stack/sheet/wood{
@@ -16220,9 +13553,7 @@
pixel_x = -1;
pixel_y = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"ikA" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle,
@@ -16248,9 +13579,7 @@
pixel_x = 1;
pixel_y = 9
},
-/turf/open/floor/carpet{
- icon_state = "bcarpet09"
- },
+/turf/open/floor/carpet/bcarpet09,
/area/lv624/ground/caves/north_central_caves)
"iml" = (
/obj/structure/surface/rack,
@@ -16284,16 +13613,10 @@
/obj/item/device/radio/off{
frequency = 1469
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"itE" = (
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/southeast,
/area/lv624/lazarus/landing_zones/lz2)
"iuf" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -16303,9 +13626,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/west_caves)
"iuO" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert3"
- },
+/turf/open/gm/dirtgrassborder/desert3,
/area/lv624/ground/barrens/south_eastern_barrens)
"ivl" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -16328,10 +13649,7 @@
/obj/structure/platform/mineral/sandstone/runed{
dir = 8
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"iye" = (
/obj/effect/decal/grass_overlay/grass1{
@@ -16351,9 +13669,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/central_caves)
"izv" = (
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"izX" = (
/obj/structure/surface/table/reinforced/prison{
@@ -16382,10 +13698,7 @@
/turf/open/gm/dirtgrassborder/east,
/area/lv624/ground/jungle/east_jungle)
"iBD" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/medbay)
"iCN" = (
/obj/structure/fence,
@@ -16401,10 +13714,7 @@
/obj/structure/barricade/wooden{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "warning"
- },
+/turf/open/floor/warning/west,
/area/lv624/lazarus/landing_zones/lz1)
"iGf" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -16445,9 +13755,7 @@
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"iKp" = (
/obj/structure/surface/rack,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"iLL" = (
/obj/effect/decal/remains/human,
@@ -16492,10 +13800,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"iRb" = (
/obj/effect/landmark/monkey_spawn,
@@ -16503,10 +13808,7 @@
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"iSa" = (
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"iSg" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -16528,9 +13830,7 @@
/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west,
/area/lv624/ground/jungle/south_central_jungle)
"iVg" = (
-/turf/open/gm/dirt{
- icon_state = "desert2"
- },
+/turf/open/gm/dirt/desert2,
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"iWC" = (
/obj/structure/machinery/colony_floodlight,
@@ -16562,10 +13862,7 @@
pixel_y = 26
},
/obj/item/prop/alien/hugger,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"iZG" = (
/obj/effect/landmark/crap_item,
@@ -16577,9 +13874,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/south_west_jungle)
"jaa" = (
-/turf/open/gm/dirt{
- icon_state = "desert2"
- },
+/turf/open/gm/dirt/desert2,
/area/lv624/ground/barrens/central_barrens)
"jas" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -16603,10 +13898,7 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"jcn" = (
/obj/effect/decal/grass_overlay/grass1{
@@ -16623,9 +13915,7 @@
"jdL" = (
/obj/structure/foamed_metal,
/obj/structure/flora/jungle/vines/light_2,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/lazarus/engineering)
"jeL" = (
/turf/closed/wall/r_wall,
@@ -16634,10 +13924,7 @@
/obj/structure/platform{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"jga" = (
/turf/open/gm/river,
@@ -16680,10 +13967,7 @@
/turf/closed/wall/strata_ice/jungle,
/area/lv624/ground/jungle/east_jungle)
"jiR" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"jlh" = (
/obj/structure/machinery/colony_floodlight,
@@ -16714,9 +13998,7 @@
pixel_y = 8
},
/obj/item/tool/pen/clicky,
-/turf/open/floor{
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner,
/area/lv624/lazarus/corporate_dome)
"jpX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -16735,9 +14017,7 @@
/area/lv624/ground/caves/west_caves)
"jrC" = (
/obj/structure/curtain/red,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"jsd" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -16749,9 +14029,7 @@
/area/lv624/lazarus/landing_zones/lz1)
"jum" = (
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/gm/dirt{
- icon_state = "desert1"
- },
+/turf/open/gm/dirt/desert1,
/area/lv624/ground/river/east_river)
"jvl" = (
/obj/structure/cargo_container/lockmart/mid,
@@ -16769,10 +14047,7 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/lv624/lazarus/engineering)
"jxw" = (
/obj/structure/surface/table/reinforced/prison{
@@ -16805,10 +14080,7 @@
pixel_x = -8;
pixel_y = 7
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"jzm" = (
/obj/structure/surface/table/reinforced/prison,
@@ -16816,9 +14088,7 @@
dir = 2;
layer = 2.9
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"jzZ" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -16839,9 +14109,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 4
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"jBl" = (
/obj/effect/decal/grass_overlay/grass1{
@@ -16914,9 +14182,7 @@
/obj/structure/prop/mech/parts/gygax_armor{
layer = 1
},
-/turf/open/floor/plating{
- icon_state = "platebot"
- },
+/turf/open/floor/plating/platebot,
/area/lv624/lazarus/robotics)
"jJg" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
@@ -16971,10 +14237,7 @@
dir = 4
},
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/lazarus/engineering)
"jMD" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -16991,9 +14254,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 1
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"jMS" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -17003,10 +14264,7 @@
"jNR" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"jQj" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -17021,10 +14279,7 @@
dir = 8
},
/obj/structure/flora/jungle/vines/light_3,
-/turf/open/floor{
- dir = 6;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southeast,
/area/lv624/lazarus/landing_zones/lz2)
"jQW" = (
/obj/structure/surface/table/reinforced/prison{
@@ -17043,9 +14298,7 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- icon_state = "grimy"
- },
+/turf/open/floor/grimy,
/area/lv624/lazarus/hop)
"jRm" = (
/turf/open/gm/dirt,
@@ -17059,9 +14312,7 @@
dir = 1;
pixel_y = 7
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"jRJ" = (
/obj/effect/decal/cleanable/blood/xeno,
@@ -17130,10 +14381,7 @@
/obj/item/tool/pen/red/clicky{
pixel_y = 6
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northeast,
/area/lv624/lazarus/corporate_dome)
"jZL" = (
/obj/effect/landmark/monkey_spawn,
@@ -17155,10 +14403,7 @@
/area/lv624/ground/barrens/north_east_barrens)
"kbn" = (
/obj/structure/machinery/sensortower,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/ground/caves/north_central_caves)
"kbr" = (
/obj/structure/showcase{
@@ -17166,10 +14411,7 @@
icon_state = "yaut";
name = "alien sarcophagus"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"kcP" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -17252,9 +14494,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/sand_temple)
"krs" = (
-/turf/open/gm/dirt{
- icon_state = "desert2"
- },
+/turf/open/gm/dirt/desert2,
/area/lv624/ground/caves/south_west_caves)
"ksc" = (
/obj/structure/flora/bush/ausbushes/var3/sunnybush{
@@ -17279,10 +14519,7 @@
/obj/item/storage/toolbox/electrical{
pixel_y = -3
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"ktf" = (
/obj/structure/barricade/handrail/strata{
@@ -17304,10 +14541,7 @@
pixel_x = 6;
pixel_y = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"kuZ" = (
/obj/structure/machinery/colony_floodlight,
@@ -17317,9 +14551,7 @@
/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west,
/area/lv624/ground/jungle/east_central_jungle)
"kvv" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/comms)
"kvE" = (
/obj/structure/machinery/landinglight/ds2/delaythree,
@@ -17355,9 +14587,7 @@
pixel_x = 1;
pixel_y = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"kyN" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -17375,10 +14605,7 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"kzn" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -17389,9 +14616,7 @@
"kzp" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/foamed_metal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"kzu" = (
/obj/structure/flora/bush/ausbushes/grassybush,
@@ -17419,9 +14644,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"kAl" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -17431,10 +14654,7 @@
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{
req_access = list(7,23,27)
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"kBq" = (
/obj/structure/flora/bush/ausbushes/ausbush,
@@ -17459,9 +14679,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/jungle/east_jungle)
"kHB" = (
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/lv624/ground/barrens/central_barrens)
"kHU" = (
/turf/open/gm/grass/grass1,
@@ -17497,10 +14715,7 @@
pixel_x = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"kLl" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -17526,10 +14741,7 @@
/area/lv624/ground/jungle/east_jungle)
"kPL" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 4;
- icon_state = "warning"
- },
+/turf/open/floor/warning/east,
/area/lv624/ground/barrens/east_barrens)
"kPU" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -17541,9 +14753,7 @@
/obj/structure/surface/table,
/obj/item/trash/plate,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"kQY" = (
/turf/open/gm/coast/beachcorner/north_west,
@@ -17559,18 +14769,14 @@
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{
pixel_y = -6
},
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"kRR" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east,
/area/lv624/ground/caves/sand_temple)
"kSs" = (
/obj/structure/inflatable,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"kSH" = (
/obj/structure/bed/alien{
@@ -17580,9 +14786,7 @@
/area/lv624/ground/caves/sand_temple)
"kSN" = (
/obj/structure/girder,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/secure_storage)
"kSR" = (
/obj/structure/fence,
@@ -17607,9 +14811,7 @@
/turf/open/gm/dirt,
/area/lv624/lazarus/secure_storage)
"kWH" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"kWJ" = (
/obj/structure/machinery/landinglight/ds2/delaythree{
@@ -17624,10 +14826,7 @@
"kWX" = (
/obj/effect/landmark/objective_landmark/medium,
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"kXE" = (
/obj/structure/flora/bush/ausbushes/ausbush,
@@ -17661,15 +14860,10 @@
"kZS" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/corporate_dome)
"lav" = (
-/turf/open/gm/dirt{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirt/desert_dug,
/area/lv624/ground/caves/west_caves)
"laY" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -17752,10 +14946,7 @@
},
/obj/structure/flora/jungle/vines/heavy,
/obj/structure/flora/jungle/vines/light_2,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/lv624/lazarus/landing_zones/lz1)
"lnr" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -17787,9 +14978,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/south_east_caves)
"lpV" = (
-/turf/open/floor/plating{
- icon_state = "platebotc"
- },
+/turf/open/floor/plating/platebotc,
/area/lv624/lazarus/quartstorage)
"lqI" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
@@ -17825,9 +15014,7 @@
"lud" = (
/obj/structure/foamed_metal,
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/lazarus/engineering)
"lxr" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -17865,9 +15052,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/north_east_caves)
"lzE" = (
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/lv624/ground/barrens/west_barrens)
"lzW" = (
/obj/effect/decal/cleanable/dirt,
@@ -17875,9 +15060,7 @@
icon_state = "E";
pixel_x = 1
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"lAX" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -17894,9 +15077,7 @@
/obj/structure/barricade/handrail/strata{
dir = 8
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"lBr" = (
/obj/structure/flora/bush/ausbushes/grassybush,
@@ -17916,10 +15097,7 @@
/area/lv624/ground/jungle/north_west_jungle)
"lDh" = (
/obj/item/clothing/suit/armor/yautja_flavor,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"lEY" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -17939,18 +15117,14 @@
name = "Garage Shutters";
pixel_x = -28
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"lHc" = (
/obj/structure/lattice{
layer = 2.9
},
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/lazarus/engineering)
"lHL" = (
/obj/effect/landmark/hunter_primary,
@@ -17965,9 +15139,7 @@
amount = 2
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"lIL" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -17994,10 +15166,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"lJo" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -18010,10 +15179,7 @@
"lKe" = (
/obj/structure/flora/jungle/vines/heavy,
/obj/structure/flora/jungle/vines/light_3,
-/turf/open/floor{
- dir = 10;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southwest,
/area/lv624/lazarus/landing_zones/lz2)
"lKl" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{
@@ -18051,10 +15217,7 @@
/area/lv624/ground/caves/north_east_caves)
"lNe" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/north,
/area/lv624/lazarus/corporate_dome)
"lNG" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{
@@ -18067,9 +15230,7 @@
/turf/open/auto_turf/strata_grass/layer1,
/area/lv624/ground/caves/south_east_caves)
"lPJ" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert"
- },
+/turf/open/gm/dirtgrassborder/desert,
/area/lv624/ground/barrens/south_eastern_barrens)
"lQC" = (
/turf/open/gm/dirt,
@@ -18083,10 +15244,7 @@
/obj/item/stack/sheet/wood{
amount = 2
},
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/lv624/lazarus/landing_zones/lz1)
"lRy" = (
/obj/effect/landmark/crap_item,
@@ -18103,10 +15261,7 @@
dir = 1
},
/obj/item/clothing/shoes/dress,
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/corporate_dome)
"lSA" = (
/obj/effect/decal/grass_overlay/grass1{
@@ -18133,10 +15288,7 @@
/obj/item/stack/sheet/wood{
amount = 2
},
-/turf/open/floor{
- dir = 5;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northeast,
/area/lv624/lazarus/landing_zones/lz2)
"lUc" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -18198,20 +15350,14 @@
/area/lv624/lazarus/landing_zones/lz2)
"lZl" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"maE" = (
/obj/item/stack/sheet/wood{
amount = 2
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"mbp" = (
/obj/structure/flora/jungle/alienplant1{
@@ -18287,40 +15433,27 @@
id = "garage_lv";
name = "\improper Garage"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"mhZ" = (
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"miF" = (
/obj/item/storage/firstaid,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"mjm" = (
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/lv624/ground/river/east_river)
"mjB" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/west,
/area/lv624/lazarus/corporate_dome)
"mjY" = (
/obj/structure/barricade/handrail/strata{
dir = 1
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"mkn" = (
/obj/effect/decal/cleanable/dirt,
@@ -18332,9 +15465,7 @@
/area/lv624/ground/colony/south_nexus_road)
"mkr" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/south_west_caves)
"mku" = (
/obj/effect/landmark/monkey_spawn,
@@ -18344,9 +15475,7 @@
"mkU" = (
/obj/structure/foamed_metal,
/obj/structure/flora/jungle/vines/light_2,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/lv624/lazarus/engineering)
"mkW" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -18359,9 +15488,7 @@
dir = 4
},
/obj/structure/foamed_metal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"mmu" = (
/obj/structure/flora/jungle/plantbot1,
@@ -18393,9 +15520,7 @@
pixel_x = -4;
pixel_y = 9
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"mqf" = (
/obj/item/tool/wrench,
@@ -18403,9 +15528,7 @@
/area/lv624/lazarus/secure_storage)
"mqw" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"mqJ" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -18431,10 +15554,7 @@
/area/lv624/ground/river/west_river)
"mtP" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"mun" = (
/obj/structure/fence,
@@ -18453,10 +15573,7 @@
/area/lv624/ground/jungle/north_east_jungle)
"mvc" = (
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/lv624/ground/colony/telecomm/cargo)
"mvr" = (
/obj/structure/machinery/colony_floodlight,
@@ -18467,10 +15584,7 @@
name = "Weyland-Yutani Automatic Teller Machine";
pixel_y = 30
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/corporate_dome)
"mxd" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
@@ -18491,15 +15605,10 @@
layer = 3.1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"mBL" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/north,
/area/lv624/ground/colony/telecomm/sw_lz2)
"mBN" = (
/obj/structure/window/reinforced{
@@ -18512,10 +15621,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/corporate_dome)
"mEo" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -18556,10 +15662,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/lazarus/landing_zones/lz2)
"mJB" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/north,
/area/lv624/lazarus/corporate_dome)
"mJF" = (
/obj/structure/flora/bush/ausbushes/palebush,
@@ -18592,10 +15695,7 @@
pixel_x = 6;
pixel_y = -2
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"mNl" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -18635,30 +15735,21 @@
amount = 2
},
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/lv624/lazarus/landing_zones/lz2)
"mRm" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"mSo" = (
-/turf/open/gm/dirt{
- icon_state = "desert1"
- },
+/turf/open/gm/dirt/desert1,
/area/lv624/ground/barrens/central_barrens)
"mSN" = (
/obj/structure/flora/bush/ausbushes/ausbush,
/turf/open/gm/dirtgrassborder/east,
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"mUH" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert0"
- },
+/turf/open/gm/dirtgrassborder/desert0,
/area/lv624/ground/barrens/south_eastern_barrens)
"mUQ" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -18694,10 +15785,7 @@
/area/lv624/ground/barrens/south_eastern_barrens)
"mVn" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/corporate_dome)
"mVr" = (
/obj/structure/flora/bush/ausbushes/palebush,
@@ -18743,9 +15831,7 @@
name = "Garage Shutters";
pixel_y = -28
},
-/turf/open/floor/plating{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning,
/area/lv624/lazarus/landing_zones/lz2)
"ndk" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -18794,10 +15880,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"niV" = (
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/east,
/area/lv624/lazarus/landing_zones/lz2)
"njl" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -18808,10 +15891,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/colony/west_tcomms_road)
"njO" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/lv624/ground/colony/telecomm/cargo)
"nkg" = (
/obj/structure/prop/brazier/torch,
@@ -18850,10 +15930,7 @@
/area/lv624/ground/jungle/west_jungle)
"nqt" = (
/obj/item/device/analyzer/plant_analyzer,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"nqv" = (
/turf/open/gm/river,
@@ -18863,15 +15940,10 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/north_jungle)
"nrb" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/north,
/area/lv624/lazarus/corporate_dome)
"nrm" = (
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/lv624/ground/barrens/west_barrens)
"nrK" = (
/obj/structure/stairs/perspective{
@@ -18879,10 +15951,7 @@
icon_state = "p_stair_full"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"nrP" = (
/obj/structure/transmitter/colony_net{
@@ -18919,10 +15988,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/barrens/south_eastern_barrens)
"ntr" = (
/turf/closed/wall/strata_ice/jungle,
@@ -18983,10 +16049,7 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/lv624/lazarus/engineering)
"nxe" = (
/obj/structure/surface/table/woodentable/poor,
@@ -18994,16 +16057,11 @@
pixel_x = 2;
pixel_y = 3
},
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/ground/caves/north_central_caves)
"nxu" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/west,
/area/lv624/lazarus/corporate_dome)
"nys" = (
/obj/effect/decal/grass_overlay/grass1{
@@ -19020,19 +16078,13 @@
/obj/item/stack/sheet/wood{
amount = 2
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"nBh" = (
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/south_west_caves)
"nBK" = (
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/lv624/ground/caves/sand_temple)
"nBM" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -19042,10 +16094,7 @@
"nDr" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"nEd" = (
/turf/closed/wall/r_wall,
@@ -19081,17 +16130,11 @@
/obj/structure/surface/table,
/obj/item/device/analyzer/plant_analyzer,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"nHj" = (
/obj/item/tool/extinguisher,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"nHq" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest,
@@ -19106,10 +16149,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/east_jungle)
"nHP" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/medbay)
"nHY" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -19124,15 +16164,10 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/corporate_dome)
"nIA" = (
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/lv624/ground/barrens/east_barrens)
"nIH" = (
/obj/structure/stairs/perspective{
@@ -19140,10 +16175,7 @@
dir = 6;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"nIZ" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -19151,9 +16183,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"nJF" = (
/obj/structure/fence,
@@ -19175,10 +16205,7 @@
/area/lv624/ground/caves/south_central_caves)
"nLH" = (
/obj/structure/prop/tower,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"nLI" = (
/obj/structure/flora/bush/ausbushes/palebush,
@@ -19186,9 +16213,7 @@
/area/lv624/ground/jungle/east_central_jungle)
"nMu" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"nMJ" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -19213,9 +16238,7 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/east_barrens/ceiling)
"nOX" = (
/obj/structure/machinery/colony_floodlight,
@@ -19230,10 +16253,7 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"nQH" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{
@@ -19251,10 +16271,7 @@
dir = 10;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"nRA" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{
@@ -19265,9 +16282,7 @@
/area/lv624/ground/caves/west_caves)
"nSg" = (
/obj/structure/window/framed/colony,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"nSR" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -19277,20 +16292,14 @@
/area/lv624/lazarus/landing_zones/lz1)
"nTE" = (
/obj/structure/curtain/red,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"nUs" = (
/obj/structure/stairs/perspective{
color = "#6b675e";
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"nUy" = (
/turf/closed/wall/r_wall/unmeltable,
@@ -19308,9 +16317,7 @@
icon_state = "cartridge_3_1"
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"nUZ" = (
/obj/effect/decal/grass_overlay/grass1,
@@ -19351,10 +16358,7 @@
/obj/structure/platform/mineral/sandstone/runed{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/barrens/south_eastern_barrens)
"nWJ" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -19370,19 +16374,14 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/south_east_jungle)
"nYZ" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/west,
/area/lv624/lazarus/medbay)
"nZz" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
/turf/open/gm/grass/grass2,
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"oas" = (
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/lv624/lazarus/engineering)
"oaL" = (
/obj/structure/flora/bush/ausbushes/ausbush,
@@ -19407,9 +16406,7 @@
"ocG" = (
/obj/effect/landmark/corpsespawner/security/liaison,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"ocL" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -19446,15 +16443,10 @@
/obj/item/weapon/twohanded/yautja/glaive/damaged{
name = "damaged war glaive"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"ofg" = (
-/turf/open/gm/dirt{
- icon_state = "desert1"
- },
+/turf/open/gm/dirt/desert1,
/area/lv624/ground/caves/west_caves)
"ofv" = (
/obj/effect/landmark/crap_item,
@@ -19471,10 +16463,7 @@
/area/lv624/ground/river/east_river)
"ogR" = (
/obj/item/prop/alien/hugger,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/lv624/lazarus/engineering)
"ogZ" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -19516,10 +16505,7 @@
icon_state = "W";
pixel_x = -1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"omu" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
@@ -19563,10 +16549,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/south_central_jungle)
"orB" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/east,
/area/lv624/ground/colony/telecomm/cargo)
"ose" = (
/obj/structure/girder/displaced,
@@ -19646,17 +16629,11 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"oyT" = (
/obj/structure/closet/toolcloset,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/lazarus/corporate_dome)
"oAD" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -19665,9 +16642,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/north_west_jungle)
"oAJ" = (
-/obj/structure/flora/grass/tallgrass/jungle/corner{
- dir = 3
- },
+/obj/structure/flora/grass/tallgrass/jungle/corner,
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/south_central_jungle)
"oAV" = (
@@ -19711,9 +16686,7 @@
/obj/structure/surface/table,
/obj/item/reagent_container/food/snacks/grown/banana,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"oEI" = (
/turf/open/gm/coast/west,
@@ -19751,9 +16724,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/barrens/south_eastern_barrens)
"oGr" = (
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/lv624/ground/barrens/south_eastern_barrens)
"oGs" = (
/obj/structure/fence,
@@ -19768,9 +16739,7 @@
/area/lv624/ground/jungle/east_central_jungle)
"oHU" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/lv624/ground/caves/north_central_caves)
"oIO" = (
/obj/structure/surface/table,
@@ -19778,9 +16747,7 @@
/obj/item/device/radio/off{
frequency = 1469
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/comms)
"oJL" = (
/obj/effect/landmark/crap_item,
@@ -19788,10 +16755,7 @@
/area/lv624/ground/colony/west_nexus_road)
"oKP" = (
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/lv624/ground/colony/telecomm/sw_lz2)
"oLk" = (
/obj/structure/fence,
@@ -19814,10 +16778,7 @@
/obj/item/clothing/under/marine/veteran/pmc,
/obj/item/storage/fancy/cigar,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northeast,
/area/lv624/lazarus/corporate_dome)
"oOd" = (
/obj/effect/landmark/monkey_spawn,
@@ -19825,9 +16786,7 @@
/area/lv624/ground/jungle/south_west_jungle)
"oOf" = (
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/lv624/lazarus/landing_zones/lz2)
"oOB" = (
/obj/structure/machinery/landinglight/ds2/delayone,
@@ -19836,15 +16795,10 @@
"oOV" = (
/obj/structure/flora/jungle/vines/light_1,
/obj/structure/flora/jungle/vines/light_3,
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/lv624/lazarus/landing_zones/lz2)
"oPT" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/north,
/area/lv624/lazarus/landing_zones/lz1)
"oQm" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -19857,10 +16811,7 @@
/obj/structure/surface/rack,
/obj/item/clothing/mask/gas,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"oSh" = (
/obj/item/stack/sheet/wood{
@@ -19891,9 +16842,7 @@
pixel_x = 5;
pixel_y = 4
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"oTt" = (
/turf/open/gm/coast/beachcorner/south_east,
@@ -19920,15 +16869,10 @@
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
pixel_x = 29
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"oVM" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/ground/barrens/east_barrens/ceiling)
"oWN" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -19974,10 +16918,7 @@
pixel_y = 6
},
/obj/item/clothing/under/liaison_suit/blue,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southeast,
/area/lv624/lazarus/corporate_dome)
"pba" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
@@ -19993,19 +16934,13 @@
/area/lv624/ground/colony/south_nexus_road)
"pbG" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"pca" = (
/obj/effect/landmark/nightmare{
insert_tag = "nexuscenter_barricaded"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "redfull"
- },
+/turf/open/floor/redfull/northwest,
/area/lv624/lazarus/security)
"pcd" = (
/turf/open/gm/coast/south,
@@ -20019,10 +16954,7 @@
/area/lv624/ground/jungle/east_jungle)
"pcz" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/ground/barrens/containers)
"pcA" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east,
@@ -20048,17 +16980,11 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"pgD" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/corporate_dome)
"phk" = (
/obj/item/stack/rods,
@@ -20106,18 +17032,14 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/south_west_caves)
"pmz" = (
-/turf/open/gm/dirt{
- icon_state = "desert2"
- },
+/turf/open/gm/dirt/desert2,
/area/lv624/ground/river/east_river)
"pnl" = (
/obj/structure/largecrate/random,
/turf/open/floor/greengrid,
/area/lv624/lazarus/corporate_dome)
"por" = (
-/obj/structure/flora/grass/tallgrass/jungle/corner{
- dir = 3
- },
+/obj/structure/flora/grass/tallgrass/jungle/corner,
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/central_jungle)
"pox" = (
@@ -20125,9 +17047,7 @@
dir = 8;
health = 70
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"poX" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -20151,9 +17071,7 @@
/area/lv624/ground/caves/west_caves)
"prd" = (
/obj/structure/flora/jungle/vines/light_2,
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/lv624/lazarus/landing_zones/lz1)
"prQ" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -20179,14 +17097,10 @@
/obj/item/ammo_magazine/rifle/nsg23{
current_rounds = 0
},
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"ptm" = (
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/lv624/ground/caves/west_caves)
"ptr" = (
/obj/structure/flora/bush/ausbushes/palebush,
@@ -20196,16 +17110,11 @@
/turf/open/floor/greengrid,
/area/lv624/lazarus/corporate_dome)
"pwq" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"pws" = (
/obj/structure/flora/jungle/vines/light_3,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"pxc" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -20216,9 +17125,7 @@
/turf/open/gm/dirtgrassborder/east,
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"pyG" = (
-/turf/open/floor{
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner,
/area/lv624/lazarus/corporate_dome)
"pyS" = (
/obj/effect/landmark/crap_item,
@@ -20233,15 +17140,11 @@
phone_category = "Lazarus Landing";
phone_id = "Medbay"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"pzP" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/comms)
"pAE" = (
/obj/structure/flora/bush/ausbushes/var3/leafybush,
@@ -20272,10 +17175,7 @@
desc = "An old hide from a fearsome creature.";
name = "hunter hide"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"pDt" = (
/turf/open/gm/dirt,
@@ -20285,9 +17185,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/north_west_jungle)
"pDK" = (
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/lv624/ground/caves/sand_temple)
"pEl" = (
/obj/effect/landmark/hunter_primary,
@@ -20300,10 +17198,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/south_east_caves)
"pEV" = (
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"pFe" = (
/turf/open/gm/dirtgrassborder/west,
@@ -20336,10 +17231,7 @@
/area/lv624/ground/colony/west_tcomms_road)
"pHA" = (
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/corporate_dome)
"pIl" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -20372,16 +17264,11 @@
/turf/open/gm/grass/grass1,
/area/lv624/lazarus/quartstorage/outdoors)
"pKm" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/west,
/area/lv624/ground/colony/telecomm/sw_lz2)
"pKp" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"pKS" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -20410,9 +17297,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/barrens/west_barrens)
"pNa" = (
-/obj/structure/flora/grass/tallgrass/jungle/corner{
- dir = 3
- },
+/obj/structure/flora/grass/tallgrass/jungle/corner,
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/north_west_jungle)
"pNr" = (
@@ -20429,10 +17314,7 @@
/area/lv624/ground/barrens/central_barrens)
"pOW" = (
/obj/item/storage/firstaid/toxin,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/medbay)
"pPd" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -20443,9 +17325,7 @@
locked = 1;
name = "\improper Corporate Liaison"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"pQV" = (
/obj/structure/flora/bush/ausbushes/palebush,
@@ -20465,16 +17345,10 @@
phone_id = "Corporate Office";
pixel_y = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northeast,
/area/lv624/lazarus/corporate_dome)
"pRh" = (
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/northeast,
/area/lv624/lazarus/landing_zones/lz2)
"pRp" = (
/obj/structure/surface/table/reinforced/prison{
@@ -20484,10 +17358,7 @@
dir = 4;
health = 80
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"pRx" = (
/obj/structure/stairs/perspective{
@@ -20519,9 +17390,7 @@
"pTk" = (
/obj/item/bedsheet/medical,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"pUm" = (
/turf/closed/wall/rock/brown,
@@ -20568,10 +17437,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"qaE" = (
/obj/effect/landmark/hunter_primary,
@@ -20602,16 +17468,12 @@
icon_state = "cartridge_6_1"
},
/obj/item/ammo_magazine/smg/mp5,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"qez" = (
/obj/effect/landmark/good_item,
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/comms)
"qeW" = (
/turf/open/gm/coast/beachcorner2/north_west,
@@ -20657,10 +17519,7 @@
pixel_y = 6
},
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"qiL" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/amanita,
@@ -20687,10 +17546,7 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/barrens/south_eastern_barrens)
"qqJ" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west,
@@ -20743,10 +17599,7 @@
anchored = 1;
unacidable = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"qvf" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -20766,10 +17619,7 @@
},
/obj/item/folder/red,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/corporate_dome)
"qxZ" = (
/obj/structure/surface/table/woodentable/poor,
@@ -20829,18 +17679,12 @@
dir = 5;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"qDg" = (
/obj/structure/barricade/wooden,
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/lv624/lazarus/landing_zones/lz2)
"qDx" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east,
@@ -20874,9 +17718,7 @@
"qGR" = (
/obj/structure/foamed_metal,
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/lv624/lazarus/engineering)
"qHC" = (
/obj/structure/largecrate/random/barrel/red,
@@ -20896,15 +17738,11 @@
"qJg" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/medbay)
"qJq" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"qJx" = (
/obj/structure/flora/bush/ausbushes/var3/leafybush,
@@ -20920,10 +17758,7 @@
/turf/open/gm/dirtgrassborder/east,
/area/lv624/ground/colony/north_nexus_road)
"qKC" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northwest,
/area/lv624/ground/colony/telecomm/sw_lz2)
"qLc" = (
/obj/structure/flora/grass/tallgrass/jungle,
@@ -20936,20 +17771,14 @@
"qNl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"qNz" = (
/obj/structure/stairs/perspective{
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"qNQ" = (
/obj/structure/machinery/landinglight/ds2/delayone{
@@ -20971,10 +17800,7 @@
/obj/structure/platform/mineral/sandstone/runed{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"qPY" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -21018,10 +17844,7 @@
"qTM" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/ammo_magazine/smg/mp5,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/corporate_dome)
"qUM" = (
/turf/open/gm/dirtgrassborder/north,
@@ -21055,16 +17878,11 @@
"qXo" = (
/obj/structure/surface/rack,
/obj/item/explosive/grenade/incendiary/molotov,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"qXt" = (
/obj/item/stack/rods,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/comms)
"qYF" = (
/obj/structure/flora/bush/ausbushes/var3/sunnybush,
@@ -21090,15 +17908,10 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/lv624/lazarus/corporate_dome)
"rba" = (
-/turf/open/gm/dirt{
- icon_state = "desert1"
- },
+/turf/open/gm/dirt/desert1,
/area/lv624/ground/barrens/west_barrens)
"rbs" = (
/obj/effect/decal/grass_overlay/grass1{
@@ -21126,9 +17939,7 @@
/area/lv624/ground/barrens/south_eastern_barrens)
"rcY" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "redyellowfull"
- },
+/turf/open/floor/redyellowfull,
/area/lv624/ground/barrens/west_barrens/ceiling)
"rdS" = (
/obj/structure/surface/table/reinforced/prison,
@@ -21139,10 +17950,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/lv624/lazarus/corporate_dome)
"rdZ" = (
/obj/structure/surface/table/reinforced/prison,
@@ -21156,10 +17964,7 @@
pixel_x = 4;
pixel_y = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"rfH" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -21191,18 +17996,12 @@
/area/lv624/ground/river/central_river)
"rkq" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"rkZ" = (
/obj/item/shard,
/obj/item/stack/rods,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"rmg" = (
/obj/structure/machinery/light{
@@ -21210,9 +18009,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/foamed_metal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"rmt" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{
@@ -21247,10 +18044,7 @@
/area/lv624/ground/caves/north_east_caves)
"rpR" = (
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- dir = 6;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southeast,
/area/lv624/lazarus/landing_zones/lz1)
"rqf" = (
/obj/structure/flora/bush/ausbushes/palebush,
@@ -21313,9 +18107,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/colony/west_tcomms_road)
"rxV" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirtgrassborder/desert_dug,
/area/lv624/ground/barrens/south_eastern_barrens)
"ryp" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -21325,15 +18117,10 @@
"ryJ" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ryY" = (
-/obj/structure/flora/grass/tallgrass/jungle/corner{
- dir = 3
- },
+/obj/structure/flora/grass/tallgrass/jungle/corner,
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/south_west_jungle)
"rze" = (
@@ -21347,10 +18134,7 @@
/obj/item/stack/sheet/wood{
amount = 2
},
-/turf/open/floor{
- dir = 5;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northeast,
/area/lv624/lazarus/landing_zones/lz1)
"rAo" = (
/obj/structure/surface/table/reinforced/prison,
@@ -21359,10 +18143,7 @@
pixel_x = 4;
pixel_y = 13
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/lazarus/corporate_dome)
"rAU" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{
@@ -21384,19 +18165,14 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"rCV" = (
/turf/open/gm/grass/grass2,
/area/lv624/ground/jungle/south_central_jungle)
"rDK" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv624/lazarus/secure_storage)
"rER" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -21500,17 +18276,13 @@
/obj/item/device/flashlight/lamp/green{
pixel_x = 3
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"rNq" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"rON" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -21549,10 +18321,7 @@
pixel_x = 1;
pixel_y = -1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"rSy" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east,
@@ -21580,10 +18349,7 @@
phone_id = "Communications";
pixel_y = 24
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"rWs" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -21620,9 +18386,7 @@
/obj/item/ammo_magazine/rifle/mar40,
/obj/item/ammo_magazine/rifle/mar40,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"sau" = (
/obj/effect/landmark/crap_item,
@@ -21633,9 +18397,7 @@
/obj/effect/decal/cleanable/blood,
/obj/structure/bed/roller,
/obj/effect/landmark/corpsespawner/wygoon,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"scs" = (
/obj/effect/decal/grass_overlay/grass1{
@@ -21658,10 +18420,7 @@
pixel_x = 10;
pixel_y = 5
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"sfg" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east,
@@ -21697,9 +18456,7 @@
/area/lv624/lazarus/landing_zones/lz1)
"shy" = (
/obj/structure/barricade/handrail/strata,
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"sic" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -21732,9 +18489,7 @@
/obj/item/ammo_casing/bullet{
icon_state = "cartridge_10_1"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"snm" = (
/turf/open/gm/grass/grass2,
@@ -21745,9 +18500,7 @@
/area/lv624/ground/colony/west_tcomms_road)
"snI" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"soz" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -21793,10 +18546,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"srn" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -21829,9 +18579,7 @@
pixel_y = 30
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"swR" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -21889,10 +18637,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/corporate_dome)
"sBC" = (
/obj/structure/fence,
@@ -21914,10 +18659,7 @@
/obj/structure/platform/mineral/sandstone/runed{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/barrens/south_eastern_barrens)
"sCx" = (
/obj/item/clothing/head/welding,
@@ -21926,9 +18668,7 @@
/area/lv624/ground/jungle/south_west_jungle)
"sCJ" = (
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/lv624/lazarus/landing_zones/lz1)
"sCX" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -21962,10 +18702,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/lazarus/corporate_dome)
"sGg" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -21981,10 +18718,7 @@
/turf/closed/wall/rock/brown,
/area/lv624/ground/barrens/south_west_barrens)
"sIi" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/east,
/area/lv624/lazarus/corporate_dome)
"sIr" = (
/obj/effect/landmark/crap_item,
@@ -22115,9 +18849,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/south_central_caves)
"sWk" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/secure_storage)
"sWy" = (
/obj/effect/landmark/monkey_spawn,
@@ -22145,10 +18877,7 @@
anchored = 1;
unacidable = 0
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"sXg" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{
@@ -22174,10 +18903,7 @@
"taa" = (
/obj/structure/barricade/wooden,
/obj/structure/flora/jungle/vines/light_3,
-/turf/open/floor{
- dir = 9;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northwest,
/area/lv624/lazarus/landing_zones/lz1)
"taK" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east,
@@ -22210,10 +18936,7 @@
dir = 8
},
/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/lazarus/engineering)
"teJ" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -22236,9 +18959,7 @@
/obj/effect/landmark/nightmare{
insert_tag = "lz-containers_swapped"
},
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/lv624/lazarus/landing_zones/lz1)
"tgL" = (
/mob/living/simple_animal/bat,
@@ -22282,10 +19003,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"thI" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -22341,9 +19059,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/east_central_jungle)
"tnY" = (
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/lv624/ground/caves/west_caves)
"toz" = (
/obj/structure/flora/bush/ausbushes/pointybush,
@@ -22434,9 +19150,7 @@
/area/lv624/ground/caves/north_east_caves)
"tuX" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/ground/caves/north_central_caves)
"tvC" = (
/obj/structure/flora/bush/ausbushes/palebush,
@@ -22465,18 +19179,13 @@
/obj/structure/surface/table,
/obj/item/reagent_container/spray,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/medbay)
"tyG" = (
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/north_jungle)
"tzo" = (
-/turf/open/gm/dirt{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirt/desert_dug,
/area/lv624/ground/barrens/central_barrens)
"tzB" = (
/obj/structure/platform/mineral/sandstone/runed{
@@ -22493,10 +19202,7 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"tBB" = (
/obj/structure/machinery/colony_floodlight,
@@ -22527,15 +19233,11 @@
/area/lv624/ground/caves/east_caves)
"tEn" = (
/obj/structure/flora/jungle/vines/light_3,
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/lv624/lazarus/landing_zones/lz2)
"tES" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"tHc" = (
/obj/structure/flora/grass/tallgrass/jungle/corner,
@@ -22544,10 +19246,7 @@
"tIg" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/medbay)
"tIZ" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -22556,10 +19255,7 @@
"tJb" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/rifle/mar40/carbine,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"tJh" = (
/obj/structure/showcase{
@@ -22598,9 +19294,7 @@
"tLS" = (
/obj/structure/bed/chair/office/light,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/corporate_dome)
"tLU" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
@@ -22623,10 +19317,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform_decoration/mineral/sandstone/runed,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/barrens/south_eastern_barrens)
"tMP" = (
/obj/structure/window_frame/colony,
@@ -22709,9 +19400,7 @@
/area/lv624/ground/caves/north_east_caves)
"tWw" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"tWK" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -22724,9 +19413,7 @@
/area/lv624/ground/jungle/east_central_jungle)
"tXZ" = (
/obj/structure/largecrate,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"tYx" = (
/obj/effect/landmark/objective_landmark/medium,
@@ -22757,10 +19444,7 @@
/obj/structure/bed/chair/office/light{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"uaL" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -22780,9 +19464,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"ubN" = (
/obj/structure/flora/bush/ausbushes/var3/leafybush,
@@ -22796,9 +19478,7 @@
/area/lv624/ground/barrens/south_eastern_barrens)
"udM" = (
/obj/effect/landmark/good_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"udP" = (
/turf/open/gm/dirt,
@@ -22834,10 +19514,7 @@
/obj/structure/surface/table/reinforced/prison{
color = "#6b675e"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"uin" = (
/obj/structure/surface/table/woodentable/poor,
@@ -22846,9 +19523,7 @@
pixel_x = 6;
pixel_y = 3
},
-/turf/open/floor/carpet{
- icon_state = "bcarpet08"
- },
+/turf/open/floor/carpet/bcarpet08,
/area/lv624/ground/caves/north_central_caves)
"uiz" = (
/obj/structure/fence,
@@ -22886,19 +19561,14 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/east_central_jungle)
"ukE" = (
-/turf/open/gm/dirt{
- icon_state = "desert1"
- },
+/turf/open/gm/dirt/desert1,
/area/lv624/ground/barrens/south_eastern_barrens)
"ukS" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/item/device/flashlight{
pixel_y = 5
},
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"ukY" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -22909,20 +19579,14 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/west_caves)
"ukZ" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/lv624/ground/colony/telecomm/cargo)
"ulj" = (
/obj/structure/surface/table/reinforced/prison{
color = "#6b675e"
},
/obj/item/weapon/twohanded/yautja/spear,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"ulp" = (
/obj/structure/transmitter/colony_net{
@@ -22956,10 +19620,7 @@
/area/lv624/ground/caves/east_caves)
"upp" = (
/obj/structure/platform_decoration,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"upM" = (
/obj/effect/landmark/crap_item,
@@ -22983,10 +19644,7 @@
/turf/open/auto_turf/strata_grass/layer1,
/area/lv624/ground/caves/south_west_caves)
"urR" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"urY" = (
/obj/structure/barricade/sandbags/wired{
@@ -23054,10 +19712,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/south_east_caves)
"uzH" = (
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/west,
/area/lv624/lazarus/landing_zones/lz2)
"uAp" = (
/turf/closed/wall/strata_ice/jungle,
@@ -23074,10 +19729,7 @@
name = "alien sarcophagus"
},
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"uDs" = (
/turf/open/gm/grass/grass2,
@@ -23105,17 +19757,11 @@
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{
pixel_y = 3
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"uFA" = (
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"uFB" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -23123,10 +19769,7 @@
/area/lv624/ground/barrens/east_barrens)
"uGM" = (
/obj/item/storage/fancy/cigarettes/emeraldgreen,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/east,
/area/lv624/lazarus/corporate_dome)
"uHc" = (
/obj/effect/decal/grass_overlay/grass1/inner{
@@ -23140,9 +19783,7 @@
/area/lv624/ground/jungle/north_east_jungle)
"uIF" = (
/obj/structure/barricade/sandbags/wired,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/wood/wood_broken3,
/area/lv624/ground/caves/north_central_caves)
"uKT" = (
/obj/structure/bed/chair/comfy/black{
@@ -23151,9 +19792,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/sand_temple)
"uLW" = (
-/obj/structure/flora/grass/tallgrass/jungle/corner{
- dir = 3
- },
+/obj/structure/flora/grass/tallgrass/jungle/corner,
/turf/open/gm/grass/grass2,
/area/lv624/ground/jungle/north_jungle)
"uMd" = (
@@ -23193,9 +19832,7 @@
/area/lv624/ground/caves/south_central_caves)
"uOK" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/ground/caves/south_west_caves)
"uRb" = (
/obj/structure/machinery/colony_floodlight,
@@ -23224,9 +19861,7 @@
/obj/item/device/flashlight/lantern,
/obj/structure/barricade/sandbags/wired,
/obj/item/weapon/baseballbat/metal,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/ground/caves/north_central_caves)
"uTe" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -23237,17 +19872,13 @@
"uUi" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/folder/black_random,
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/corporate_dome)
"uUl" = (
/turf/open/gm/dirtgrassborder/west,
/area/lv624/ground/jungle/south_west_jungle)
"uUJ" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert1"
- },
+/turf/open/gm/dirtgrassborder/desert1,
/area/lv624/ground/barrens/south_eastern_barrens)
"uVk" = (
/obj/effect/landmark/objective_landmark/far,
@@ -23256,9 +19887,7 @@
"uVx" = (
/obj/structure/machinery/floodlight/landing,
/obj/effect/decal/warning_stripes,
-/turf/open/floor/mech_bay_recharge_floor{
- name = "Shuttle Landing Lights"
- },
+/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights,
/area/lv624/lazarus/landing_zones/lz1)
"uVU" = (
/obj/effect/landmark/lv624/xeno_tunnel,
@@ -23267,18 +19896,14 @@
/area/lv624/ground/jungle/east_jungle)
"uWr" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"uWJ" = (
/turf/closed/wall/strata_ice/jungle,
/area/lv624/ground/caves/south_west_caves)
"uXT" = (
/obj/item/device/assembly/timer,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"uXV" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -23286,9 +19911,7 @@
/area/lv624/ground/jungle/south_central_jungle)
"uXW" = (
/obj/structure/barricade/sandbags/wired,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv624/ground/caves/north_central_caves)
"uYj" = (
/turf/open/auto_turf/strata_grass/layer1,
@@ -23312,20 +19935,14 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor{
- dir = 1;
- icon_state = "warningcorner"
- },
+/turf/open/floor/warningcorner/north,
/area/lv624/lazarus/landing_zones/lz1)
"uZz" = (
/obj/structure/surface/table/holotable,
/obj/structure/machinery/computer/objective{
dir = 5
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"vam" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -23355,9 +19972,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"vdt" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -23371,9 +19986,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"vef" = (
/obj/effect/landmark/objective_landmark/science,
@@ -23383,9 +19996,7 @@
/obj/item/ammo_casing/bullet{
icon_state = "cartridge_3_1"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"ver" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -23397,9 +20008,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 4
},
-/turf/open/gm/dirt{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirt/desert_dug,
/area/lv624/ground/caves/sand_temple)
"vfR" = (
/obj/structure/flora/jungle/plantbot1,
@@ -23453,10 +20062,7 @@
dir = 6;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"vkN" = (
/obj/effect/landmark/objective_landmark/far,
@@ -23495,9 +20101,7 @@
/obj/item/ammo_casing/bullet{
icon_state = "cartridge_9_1"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"vnW" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -23549,10 +20153,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/corporate_dome)
"vxa" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -23574,10 +20175,7 @@
/area/lv624/ground/jungle/south_west_jungle)
"vyz" = (
/obj/structure/largecrate,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"vAg" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -23609,10 +20207,7 @@
/area/lv624/ground/caves/sand_temple)
"vBQ" = (
/obj/structure/largecrate,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"vCG" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -23629,10 +20224,7 @@
/area/lv624/ground/jungle/east_jungle)
"vEj" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"vEp" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -23666,23 +20258,16 @@
amount = 10;
pixel_y = 3
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"vIt" = (
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/lv624/ground/river/east_river)
"vIY" = (
/obj/item/ammo_casing/bullet{
icon_state = "cartridge_9_1"
},
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/lv624/lazarus/corporate_dome)
"vJs" = (
/obj/structure/flora/grass/tallgrass/jungle,
@@ -23691,9 +20276,7 @@
/area/lv624/ground/jungle/west_jungle)
"vJM" = (
/obj/item/shard,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/comms)
"vKc" = (
/obj/effect/landmark/crap_item,
@@ -23711,10 +20294,7 @@
pixel_y = 30
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"vMV" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -23775,10 +20355,7 @@
/obj/item/tool/wrench,
/obj/item/tool/weldingtool,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"vSG" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -23809,10 +20386,7 @@
/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east,
/area/lv624/ground/jungle/south_central_jungle)
"vVf" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning/northeast,
/area/lv624/ground/colony/telecomm/sw_lz2)
"vVC" = (
/turf/closed/wall/strata_ice/jungle,
@@ -23823,10 +20397,7 @@
/area/lv624/ground/jungle/west_jungle)
"vVN" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"vWs" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -23845,9 +20416,7 @@
/area/lv624/ground/jungle/north_west_jungle)
"vYL" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/engineering)
"vZT" = (
/obj/effect/landmark/objective_landmark/close,
@@ -23881,9 +20450,7 @@
/obj/structure/barricade/handrail/strata{
dir = 4
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"wcj" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -23919,9 +20486,7 @@
/area/lv624/ground/jungle/north_jungle)
"weR" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/secure_storage)
"wgk" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -23946,15 +20511,10 @@
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/corporate_dome)
"whv" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert2"
- },
+/turf/open/gm/dirtgrassborder/desert2,
/area/lv624/ground/barrens/south_eastern_barrens)
"whx" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -24030,9 +20590,7 @@
/area/lv624/ground/jungle/north_west_jungle)
"woK" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/ground/caves/north_central_caves)
"woM" = (
/obj/structure/showcase{
@@ -24053,10 +20611,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"woT" = (
/obj/effect/decal/grass_overlay/grass1{
@@ -24105,9 +20660,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/barrens/central_barrens)
"wwI" = (
-/turf/open/floor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/asteroidplating,
/area/lv624/ground/caves/north_central_caves)
"wxP" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west,
@@ -24166,9 +20719,7 @@
"wFR" = (
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/wood/wood_broken3,
/area/lv624/ground/caves/north_central_caves)
"wHh" = (
/obj/effect/decal/grass_overlay/grass1{
@@ -24177,10 +20728,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/west_caves)
"wHp" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/lazarus/landing_zones/lz2)
"wHE" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{
@@ -24209,22 +20757,16 @@
/obj/structure/barricade/metal/wired{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"wLe" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"wLz" = (
-/turf/open/floor/plating{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning,
/area/lv624/lazarus/landing_zones/lz2)
"wLT" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -24250,10 +20792,7 @@
/area/lv624/ground/caves/west_caves)
"wNB" = (
/obj/structure/flora/jungle/vines/light_3,
-/turf/open/floor{
- dir = 10;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southwest,
/area/lv624/lazarus/landing_zones/lz1)
"wOv" = (
/obj/structure/window/reinforced{
@@ -24266,9 +20805,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/corporate_dome)
"wPN" = (
/turf/open/gm/coast/beachcorner2/south_east,
@@ -24320,10 +20857,7 @@
/obj/structure/platform/mineral/sandstone/runed{
dir = 8
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"wSR" = (
/obj/effect/landmark/hunter_secondary,
@@ -24334,10 +20868,7 @@
/obj/item/storage/firstaid/fire{
pixel_x = -5
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"wSY" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -24345,9 +20876,7 @@
locked = 1;
name = "\improper Storage Room"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"wTa" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -24384,9 +20913,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/south_east_jungle)
"wWg" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/ground/barrens/east_barrens/ceiling)
"wWm" = (
/turf/open/gm/dirtgrassborder/west,
@@ -24404,10 +20931,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/corporate_dome)
"wWS" = (
/obj/effect/landmark/hunter_secondary,
@@ -24466,10 +20990,7 @@
/area/lv624/ground/caves/east_caves)
"xbu" = (
/obj/item/shard,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southwest,
/area/lv624/lazarus/corporate_dome)
"xch" = (
/turf/open/gm/dirt,
@@ -24498,10 +21019,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/corporate_dome)
"xeT" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -24510,18 +21028,12 @@
"xfa" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"xfP" = (
/obj/item/stack/rods,
/obj/item/shard,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/corporate_dome)
"xgE" = (
/turf/closed/wall/r_wall,
@@ -24542,10 +21054,7 @@
/area/lv624/ground/barrens/south_eastern_barrens)
"xkU" = (
/obj/structure/bed/sofa/vert/grey/top,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/corporate_dome)
"xmK" = (
/obj/structure/flora/bush/ausbushes/grassybush,
@@ -24574,17 +21083,11 @@
"xqV" = (
/obj/structure/surface/rack,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"xrI" = (
/obj/structure/flora/jungle/vines/light_3,
-/turf/open/floor{
- dir = 6;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southeast,
/area/lv624/lazarus/landing_zones/lz2)
"xsN" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -24605,10 +21108,7 @@
"xvz" = (
/obj/structure/platform_decoration,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 9;
- icon_state = "brown"
- },
+/turf/open/floor/brown/northwest,
/area/lv624/lazarus/comms)
"xvN" = (
/obj/structure/barricade/handrail/strata{
@@ -24617,9 +21117,7 @@
/obj/structure/barricade/handrail/strata{
dir = 4
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"xvV" = (
/obj/effect/landmark/nightmare{
@@ -24640,18 +21138,13 @@
pixel_y = 4
},
/obj/item/restraint/adjustable/cable/white,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/lv624/lazarus/corporate_dome)
"xxz" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/tool/crowbar,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northwest,
/area/lv624/lazarus/corporate_dome)
"xyH" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall,
@@ -24665,9 +21158,7 @@
/obj/item/ammo_magazine/rifle/nsg23{
current_rounds = 0
},
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"xze" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -24677,9 +21168,7 @@
/turf/open/gm/dirtgrassborder/east,
/area/lv624/ground/jungle/north_jungle)
"xBi" = (
-/turf/open/gm/dirt{
- icon_state = "desert1"
- },
+/turf/open/gm/dirt/desert1,
/area/lv624/ground/caves/sand_temple)
"xBm" = (
/turf/open/gm/river,
@@ -24691,9 +21180,7 @@
"xCF" = (
/obj/item/ammo_magazine/smg/mp5,
/obj/item/weapon/gun/smg/mp5,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"xDl" = (
/obj/structure/machinery/colony_floodlight,
@@ -24711,9 +21198,7 @@
/area/lv624/ground/jungle/west_central_jungle)
"xFf" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "bar"
- },
+/turf/open/floor/bar,
/area/lv624/lazarus/canteen)
"xGd" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -24766,9 +21251,7 @@
/turf/open/floor/vault,
/area/lv624/lazarus/quartstorage)
"xLT" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv624/lazarus/secure_storage)
"xNi" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -24805,10 +21288,7 @@
/area/lv624/ground/jungle/south_east_jungle)
"xQy" = (
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"xQI" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -24860,12 +21340,6 @@
/obj/structure/flora/jungle/plantbot1,
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/east_jungle)
-"xVo" = (
-/obj/structure/flora/grass/tallgrass/jungle/corner{
- dir = 3
- },
-/turf/open/gm/grass/grass1,
-/area/lv624/ground/jungle/north_east_jungle)
"xVN" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west,
/area/lv624/ground/jungle/south_central_jungle)
@@ -24910,9 +21384,7 @@
"ybQ" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/weapon/pole/fancy_cane,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"ydp" = (
/obj/structure/flora/bush/ausbushes/pointybush,
@@ -24928,9 +21400,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "delivery"
- },
+/turf/open/floor/delivery,
/area/lv624/lazarus/engineering)
"yfe" = (
/obj/effect/decal/grass_overlay/grass1{
@@ -24939,9 +21409,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/south_east_caves)
"yfH" = (
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"yga" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west,
@@ -24962,23 +21430,15 @@
dir = 8
},
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor{
- dir = 4;
- icon_state = "warning"
- },
+/turf/open/floor/warning/east,
/area/lv624/lazarus/landing_zones/lz2)
"yhR" = (
/obj/structure/closet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 9;
- icon_state = "purple"
- },
+/turf/open/floor/purple/northwest,
/area/lv624/lazarus/sleep_female)
"yhT" = (
-/turf/open/gm/dirt{
- icon_state = "desert2"
- },
+/turf/open/gm/dirt/desert2,
/area/lv624/ground/caves/west_caves)
"yhY" = (
/obj/structure/inflatable/door,
@@ -24989,9 +21449,7 @@
name = "\improper Corporation Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"yiE" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -25034,10 +21492,7 @@
"ylI" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southwest,
/area/lv624/lazarus/corporate_dome)
"ylL" = (
/obj/effect/landmark/crap_item,
@@ -53920,7 +50375,7 @@ cwV
bit
cpY
cpY
-xVo
+tHc
kip
rck
cpY
@@ -54148,7 +50603,7 @@ cwV
vSG
pba
cpY
-xVo
+tHc
kip
kip
ueZ
@@ -57788,7 +54243,7 @@ arS
als
arO
oRH
-xVo
+tHc
kip
rck
cpY
diff --git a/maps/map_files/LV624/armory/10.cheese.dmm b/maps/map_files/LV624/armory/10.cheese.dmm
index 0864030e130b..127e19a04809 100644
--- a/maps/map_files/LV624/armory/10.cheese.dmm
+++ b/maps/map_files/LV624/armory/10.cheese.dmm
@@ -1,20 +1,13 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"b" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"c" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/main_hall)
"d" = (
/obj/item/phone{
@@ -31,36 +24,24 @@
dir = 1
},
/obj/structure/window/reinforced,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/main_hall)
"e" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"f" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/lv624/lazarus/main_hall)
"g" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/lv624/lazarus/main_hall)
"h" = (
/obj/structure/machinery/light/small,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"i" = (
/turf/closed/wall/r_wall,
@@ -72,9 +53,7 @@
/obj/structure/surface/rack,
/obj/item/weapon/gun/shotgun/pump,
/obj/item/ammo_magazine/shotgun/slugs,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"l" = (
/obj/effect/decal/cleanable/cobweb2,
@@ -83,23 +62,16 @@
/obj/item/reagent_container/hypospray/autoinjector/tricord,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"m" = (
/obj/structure/target/syndicate,
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"n" = (
/obj/structure/machinery/deployable/barrier,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"o" = (
/obj/structure/machinery/light/small{
@@ -110,14 +82,10 @@
/obj/item/ammo_magazine/pistol/highpower,
/obj/item/ammo_magazine/pistol/highpower,
/obj/item/ammo_magazine/pistol/highpower,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"p" = (
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"q" = (
/obj/structure/surface/rack,
@@ -125,30 +93,20 @@
/obj/effect/landmark/crap_item,
/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/verymature,
/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/verymature,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"r" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"s" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"t" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"u" = (
/obj/structure/surface/rack,
@@ -166,9 +124,7 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 8
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"w" = (
/obj/structure/surface/rack,
@@ -179,9 +135,7 @@
pixel_x = 8;
pixel_y = -4
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"y" = (
/obj/structure/window/reinforced{
@@ -192,28 +146,21 @@
/obj/item/ammo_magazine/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"z" = (
/turf/closed/wall/strata_ice/jungle,
/area/lv624/ground/jungle/east_central_jungle)
"A" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"B" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
locked = 1;
name = "\improper Nexus Dome Armory"
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"C" = (
/obj/structure/machinery/door_control{
@@ -229,15 +176,11 @@
/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{
pixel_y = -6
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"M" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"Q" = (
/obj/structure/surface/rack,
@@ -250,9 +193,7 @@
pixel_x = -4;
pixel_y = -3
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/armory/10.extra.dmm b/maps/map_files/LV624/armory/10.extra.dmm
index 3e6fa0c0d68b..7acd81bb8e97 100644
--- a/maps/map_files/LV624/armory/10.extra.dmm
+++ b/maps/map_files/LV624/armory/10.extra.dmm
@@ -1,20 +1,13 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"b" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"c" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/main_hall)
"d" = (
/obj/item/phone{
@@ -31,36 +24,24 @@
dir = 1
},
/obj/structure/window/reinforced,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/main_hall)
"e" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"f" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/lv624/lazarus/main_hall)
"g" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/lv624/lazarus/main_hall)
"h" = (
/obj/structure/machinery/light/small,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"i" = (
/turf/closed/wall/r_wall,
@@ -76,9 +57,7 @@
/obj/item/ammo_magazine/shotgun/slugs,
/obj/item/ammo_magazine/shotgun/flechette,
/obj/item/ammo_magazine/shotgun/incendiary,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"l" = (
/obj/effect/decal/cleanable/cobweb2,
@@ -93,23 +72,16 @@
/obj/item/reagent_container/hypospray/autoinjector/tricord,
/obj/effect/landmark/crap_item,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"m" = (
/obj/structure/target/syndicate,
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"n" = (
/obj/structure/machinery/deployable/barrier,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"o" = (
/obj/structure/machinery/light/small{
@@ -125,14 +97,10 @@
/obj/item/explosive/grenade/flashbang,
/obj/item/explosive/grenade/flashbang,
/obj/item/ammo_magazine/shotgun/beanbag,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"p" = (
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"q" = (
/obj/structure/surface/rack{
@@ -142,38 +110,26 @@
/obj/effect/landmark/crap_item,
/obj/item/ammo_magazine/smg/m39/extended,
/obj/item/weapon/gun/smg/m39,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"r" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"s" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"t" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"u" = (
/obj/structure/machinery/power/apc/nocharge{
dir = 8
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"w" = (
/obj/item/storage/toolbox/syndicate,
@@ -184,9 +140,7 @@
/obj/effect/landmark/crap_item,
/obj/item/ammo_magazine/smg/m39/extended,
/obj/item/weapon/gun/smg/m39,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"y" = (
/obj/structure/window/reinforced{
@@ -197,28 +151,21 @@
/obj/item/ammo_magazine/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"z" = (
/turf/closed/wall/strata_ice/jungle,
/area/lv624/ground/jungle/east_central_jungle)
"A" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"B" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
locked = 1;
name = "\improper Nexus Dome Armory"
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"C" = (
/obj/structure/surface/rack,
@@ -234,15 +181,11 @@
pixel_x = -26;
range = 200
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"H" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/armory/10.looted.dmm b/maps/map_files/LV624/armory/10.looted.dmm
index 1c619fad1678..87fbccfce955 100644
--- a/maps/map_files/LV624/armory/10.looted.dmm
+++ b/maps/map_files/LV624/armory/10.looted.dmm
@@ -1,21 +1,14 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"b" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"c" = (
/obj/item/stack/tile/plasteel,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/main_hall)
"d" = (
/obj/item/phone{
@@ -32,38 +25,26 @@
dir = 1
},
/obj/structure/window/reinforced,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/lv624/lazarus/main_hall)
"e" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"f" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/lv624/lazarus/main_hall)
"g" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/north,
/area/lv624/lazarus/main_hall)
"h" = (
/obj/structure/barricade/wooden{
dir = 8
},
/obj/item/stack/tile/plasteel,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"i" = (
/turf/closed/wall/r_wall,
@@ -74,79 +55,52 @@
"k" = (
/obj/structure/machinery/light/small,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/platingdmg3,
/area/lv624/lazarus/main_hall)
"l" = (
-/turf/open/floor{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/platingdmg3,
/area/lv624/lazarus/main_hall)
"m" = (
/obj/structure/target/syndicate,
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"n" = (
/obj/structure/machinery/deployable/barrier,
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"o" = (
/obj/item/stack/tile/plasteel,
-/turf/open/floor{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/platingdmg3,
/area/lv624/lazarus/main_hall)
"p" = (
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"q" = (
-/turf/open/floor{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/platingdmg3,
/area/lv624/lazarus/armory)
"r" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"s" = (
/obj/structure/machinery/deployable/barrier,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"t" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"u" = (
/obj/structure/machinery/power/apc/nocharge{
dir = 8
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"w" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"y" = (
/obj/structure/window/reinforced{
@@ -157,10 +111,7 @@
/obj/item/ammo_magazine/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
/obj/item/ammo_magazine/revolver/cmb,
-/turf/open/floor{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/red/northeast,
/area/lv624/lazarus/security)
"z" = (
/turf/closed/wall/strata_ice/jungle,
@@ -170,18 +121,14 @@
dir = 1
},
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"B" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
locked = 1;
name = "\improper Nexus Dome Armory"
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"T" = (
/obj/structure/machinery/door_control{
@@ -190,15 +137,11 @@
pixel_x = -26;
range = 200
},
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/armory)
"Y" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm b/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm
index 80d478e1ef51..c75595ead93b 100644
--- a/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm
+++ b/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm
@@ -1,10 +1,7 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/obj/structure/surface/rack,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"f" = (
/obj/structure/surface/rack,
@@ -15,9 +12,7 @@
pixel_x = -6
},
/obj/item/tool/shovel/etool,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"i" = (
/obj/structure/surface/rack,
@@ -30,18 +25,13 @@
pixel_y = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"A" = (
/obj/structure/surface/rack,
/obj/item/clothing/accessory/storage/black_vest/brown_vest,
/obj/item/clothing/accessory/storage/black_vest/brown_vest,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"C" = (
/obj/structure/surface/rack,
@@ -56,10 +46,7 @@
},
/obj/item/poster,
/obj/item/clothing/glasses/sunglasses,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"E" = (
/turf/open/floor/vault,
@@ -68,9 +55,7 @@
/obj/structure/surface/rack,
/obj/item/stack/folding_barricade,
/obj/item/facepaint/skull,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
"R" = (
/obj/structure/surface/rack,
@@ -79,10 +64,7 @@
/obj/effect/landmark/wo_supplies/storage/webbing,
/obj/item/poster,
/obj/item/clothing/glasses/sunglasses,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/lazarus/quartstorage)
"V" = (
/obj/structure/surface/rack,
@@ -92,9 +74,7 @@
/obj/item/explosive/grenade/high_explosive/frag{
pixel_x = 6
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/quartstorage)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/centralcaves/10.T.dmm b/maps/map_files/LV624/centralcaves/10.T.dmm
index 56c54485e09e..09af40a6e0eb 100644
--- a/maps/map_files/LV624/centralcaves/10.T.dmm
+++ b/maps/map_files/LV624/centralcaves/10.T.dmm
@@ -63,17 +63,11 @@
/area/lv624/ground/caves/south_central_caves)
"o" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 9;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northwest,
/area/lv624/ground/barrens/containers)
"p" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/lv624/ground/barrens/containers)
"s" = (
/obj/effect/decal/grass_overlay/grass1/inner{
diff --git a/maps/map_files/LV624/centralcaves/10.qc.dmm b/maps/map_files/LV624/centralcaves/10.qc.dmm
index 5f63ae797e02..6245715951fd 100644
--- a/maps/map_files/LV624/centralcaves/10.qc.dmm
+++ b/maps/map_files/LV624/centralcaves/10.qc.dmm
@@ -38,10 +38,7 @@
/area/lv624/ground/caves/south_central_caves)
"hW" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 9;
- icon_state = "warning"
- },
+/turf/open/floor/warning/northwest,
/area/lv624/ground/barrens/containers)
"iS" = (
/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{
@@ -207,10 +204,7 @@
/area/lv624/ground/caves/south_central_caves)
"JZ" = (
/obj/structure/fence,
-/turf/open/floor{
- dir = 1;
- icon_state = "warning"
- },
+/turf/open/floor/warning/north,
/area/lv624/ground/barrens/containers)
"KX" = (
/turf/open/gm/dirt,
diff --git a/maps/map_files/LV624/crashedship/10.digsite.dmm b/maps/map_files/LV624/crashedship/10.digsite.dmm
index 6132b455f14d..13a4b645df03 100644
--- a/maps/map_files/LV624/crashedship/10.digsite.dmm
+++ b/maps/map_files/LV624/crashedship/10.digsite.dmm
@@ -11,9 +11,7 @@
"bB" = (
/obj/item/clothing/shoes/veteran/pmc,
/obj/structure/foamed_metal,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"bT" = (
/obj/structure/shuttle/engine/propulsion,
@@ -24,15 +22,11 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"cV" = (
/obj/item/storage/toolbox/electrical,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"cZ" = (
/obj/item/storage/toolbox/mechanical,
@@ -46,25 +40,18 @@
/area/lv624/lazarus/crashed_ship_containers)
"eW" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/airless{
- dir = 5;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/airless/asteroidfloor/northeast,
/area/lv624/ground/barrens/north_east_barrens)
"gu" = (
/obj/item/stack/cable_coil/random,
/obj/item/explosive/grenade/high_explosive,
/obj/item/explosive/grenade/high_explosive,
/obj/structure/foamed_metal,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"ip" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"jo" = (
/obj/item/tool/shovel/spade,
@@ -72,15 +59,11 @@
/area/lv624/ground/barrens/north_east_barrens)
"jE" = (
/obj/structure/xenoautopsy/tank/broken,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"kp" = (
/obj/effect/landmark/crap_item,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"kP" = (
/obj/structure/girder/displaced,
@@ -110,9 +93,7 @@
/area/lv624/lazarus/crashed_ship_containers)
"rP" = (
/obj/structure/bed/chair/dropship/pilot,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"tf" = (
/obj/structure/machinery/constructable_frame{
@@ -122,9 +103,7 @@
/turf/open/gm/dirt,
/area/lv624/lazarus/crashed_ship_containers)
"tv" = (
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/ground/barrens/north_east_barrens)
"uw" = (
/obj/structure/bed/chair{
@@ -134,9 +113,7 @@
/area/lv624/lazarus/crashed_ship_containers)
"vA" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"vD" = (
/obj/structure/surface/rack,
@@ -149,9 +126,7 @@
/turf/open/gm/dirt,
/area/lv624/lazarus/crashed_ship_containers)
"xg" = (
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"xt" = (
/obj/item/ammo_magazine/rifle/m16,
@@ -166,9 +141,7 @@
/area/lv624/lazarus/crashed_ship_containers)
"yj" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"yJ" = (
/obj/structure/machinery/constructable_frame{
@@ -188,9 +161,7 @@
/area/lv624/ground/caves/central_caves)
"BQ" = (
/obj/structure/xenoautopsy/tank/hugger,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"Cn" = (
/obj/effect/landmark/objective_landmark/science,
@@ -207,9 +178,7 @@
/area/lv624/lazarus/crashed_ship_containers)
"DT" = (
/obj/structure/foamed_metal,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"Fg" = (
/obj/item/tool/warning_cone,
@@ -247,16 +216,12 @@
"Kz" = (
/obj/item/tool/crowbar,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"KG" = (
/obj/structure/bed/chair/dropship/pilot,
/obj/item/clothing/head/helmet/marine/veteran/pmc/leader,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"LQ" = (
/obj/effect/landmark/corpsespawner/security,
@@ -281,9 +246,7 @@
"RT" = (
/obj/item/explosive/grenade/high_explosive/pmc,
/obj/structure/foamed_metal,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"SJ" = (
/turf/template_noop,
@@ -318,10 +281,7 @@
/turf/open/gm/dirt,
/area/lv624/lazarus/crashed_ship_containers)
"ZH" = (
-/turf/open/floor/airless{
- dir = 5;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/airless/asteroidfloor/northeast,
/area/lv624/ground/barrens/north_east_barrens)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/crashedship/10.swapped.dmm b/maps/map_files/LV624/crashedship/10.swapped.dmm
index e8257934ce51..363872ddfa9f 100644
--- a/maps/map_files/LV624/crashedship/10.swapped.dmm
+++ b/maps/map_files/LV624/crashedship/10.swapped.dmm
@@ -17,9 +17,7 @@
/area/lv624/ground/barrens/north_east_barrens)
"eC" = (
/obj/item/storage/firstaid/adv,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"fb" = (
/obj/structure/bed/chair{
@@ -34,9 +32,7 @@
"fx" = (
/obj/structure/surface/table/almayer,
/obj/item/ammo_magazine/rifle/m16/ap,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"fC" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -69,24 +65,18 @@
"mG" = (
/obj/structure/surface/table/almayer,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"ng" = (
/obj/structure/bed/chair{
dir = 4
},
/obj/structure/foamed_metal,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"pd" = (
/obj/item/ammo_magazine/rifle/m16,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"pg" = (
/obj/effect/alien/weeds/node,
@@ -105,9 +95,7 @@
/area/lv624/lazarus/crashed_ship_containers)
"qk" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"qS" = (
/obj/effect/landmark/objective_landmark/medium,
@@ -155,9 +143,7 @@
/area/lv624/lazarus/crashed_ship_containers)
"At" = (
/obj/structure/foamed_metal,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"AI" = (
/turf/open/gm/dirt,
@@ -165,28 +151,20 @@
"AT" = (
/obj/item/ammo_magazine/rifle/m16,
/obj/item/ammo_magazine/rifle/m16,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"BI" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"BW" = (
/obj/structure/bed/chair/dropship/pilot,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"CI" = (
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/ground/barrens/north_east_barrens)
"Dq" = (
/turf/template_noop,
@@ -194,16 +172,12 @@
"Ex" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/rifle/m16,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"EH" = (
/obj/item/ammo_magazine/rifle/m16/ap,
/obj/item/ammo_magazine/rifle/m16/ap,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"Fb" = (
/turf/closed/shuttle{
@@ -221,9 +195,7 @@
/area/lv624/lazarus/crashed_ship_containers)
"Io" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"IT" = (
/obj/structure/girder/displaced,
@@ -234,30 +206,21 @@
"Jl" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"KY" = (
/obj/effect/landmark/crap_item,
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"My" = (
-/turf/open/floor/airless{
- dir = 5;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/airless/asteroidfloor/northeast,
/area/lv624/ground/barrens/north_east_barrens)
"NQ" = (
/obj/structure/girder/displaced,
/turf/open/gm/dirt,
/area/lv624/lazarus/crashed_ship_containers)
"Pa" = (
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"Pp" = (
/obj/effect/landmark/crap_item,
@@ -267,19 +230,14 @@
/obj/structure/machinery/constructable_frame{
icon_state = "box_1"
},
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"QE" = (
/turf/closed/wall/rock/brown,
/area/lv624/ground/caves/south_east_caves)
"Sj" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/airless{
- dir = 5;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/airless/asteroidfloor/northeast,
/area/lv624/ground/barrens/north_east_barrens)
"SS" = (
/obj/structure/foamed_metal,
@@ -308,9 +266,7 @@
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/shuttle{
- icon_state = "floor4"
- },
+/turf/open/shuttle/bright_red,
/area/lv624/lazarus/crashed_ship_containers)
"WE" = (
/obj/item/explosive/grenade/high_explosive,
diff --git a/maps/map_files/LV624/gym/20.pool.dmm b/maps/map_files/LV624/gym/20.pool.dmm
index ab5a1afe46bb..e0f24e9fdfdd 100644
--- a/maps/map_files/LV624/gym/20.pool.dmm
+++ b/maps/map_files/LV624/gym/20.pool.dmm
@@ -4,10 +4,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/central_jungle)
"bQ" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/fitness)
"dw" = (
/obj/item/clothing/under/shorts/red,
@@ -21,10 +18,7 @@
pixel_y = -8
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"gL" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -33,10 +27,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/fitness)
"hb" = (
/obj/structure/machinery/light{
@@ -45,10 +36,7 @@
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
pixel_x = 29
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"hX" = (
/obj/structure/filingcabinet/medical,
@@ -75,17 +63,11 @@
/obj/item/clothing/under/swimsuit/red{
pixel_x = -7
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"kE" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"kY" = (
/obj/item/device/radio/intercom{
@@ -94,31 +76,19 @@
name = "General Listening Channel";
pixel_y = 30
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"li" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"ls" = (
/obj/item/tool/soap,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/fitness)
"lB" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/fitness)
"ma" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -128,25 +98,16 @@
/area/lv624/ground/jungle/central_jungle)
"oK" = (
/obj/item/shard,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"re" = (
/obj/structure/closet/crate/secure/hydrosec,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"rI" = (
/obj/structure/reagent_dispensers/water_cooler/stacks,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"sA" = (
/turf/closed/wall,
@@ -157,16 +118,10 @@
name = "\improper Leisure Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/fitness)
"vq" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"wj" = (
/turf/open/gm/dirt,
@@ -196,10 +151,7 @@
/area/lv624/lazarus/fitness)
"yP" = (
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"yV" = (
/obj/structure/sign/safety/water{
@@ -208,43 +160,28 @@
},
/obj/structure/surface/table,
/obj/item/storage/box/cups,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"zq" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/fitness)
"Be" = (
/obj/effect/decal/remains/human,
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Ei" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Er" = (
/obj/effect/landmark/good_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/fitness)
"Ez" = (
/turf/open/floor,
@@ -261,17 +198,11 @@
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Ga" = (
/obj/structure/prop/static_tank/water,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Gf" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west,
@@ -284,17 +215,11 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"IA" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Jk" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -327,10 +252,7 @@
"Px" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Rf" = (
/obj/structure/closet/athletic_mixed,
@@ -338,10 +260,7 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Rl" = (
/obj/item/clothing/under/shorts/red,
@@ -349,17 +268,11 @@
/obj/item/clothing/mask/snorkel,
/obj/item/clothing/mask/snorkel,
/obj/item/clothing/mask/snorkel,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"SW" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Td" = (
/obj/structure/machinery/colony_floodlight,
@@ -375,19 +288,13 @@
dir = 8
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"UM" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Vb" = (
/turf/open/gm/dirtgrassborder/south,
@@ -400,10 +307,7 @@
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/item/storage/firstaid/regular,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Wj" = (
/turf/open/gm/grass/grass1,
diff --git a/maps/map_files/LV624/gym/30.alternate.dmm b/maps/map_files/LV624/gym/30.alternate.dmm
index 466c996ef91d..f0e7ac35b806 100644
--- a/maps/map_files/LV624/gym/30.alternate.dmm
+++ b/maps/map_files/LV624/gym/30.alternate.dmm
@@ -6,10 +6,7 @@
name = "treadmill"
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"aG" = (
/obj/structure/window_frame/colony,
@@ -23,10 +20,7 @@
pixel_y = 2
},
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"ds" = (
/obj/structure/machinery/conveyor_switch{
@@ -41,18 +35,12 @@
pixel_x = -8;
pixel_y = -4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"ej" = (
/obj/structure/closet/crate/secure/hydrosec,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"ek" = (
/obj/structure/surface/table/almayer,
@@ -60,10 +48,7 @@
pixel_x = -5
},
/obj/effect/spawner/random/toy,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"ez" = (
/obj/structure/surface/rack,
@@ -73,24 +58,16 @@
pixel_x = -5;
pixel_y = -9
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"eD" = (
/obj/structure/machinery/light,
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"fr" = (
-/turf/open/floor{
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite,
/area/lv624/lazarus/fitness)
"fv" = (
/obj/effect/landmark/survivor_spawner,
@@ -100,10 +77,7 @@
/turf/closed/wall,
/area/lv624/lazarus/fitness)
"hd" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"hm" = (
/obj/structure/machinery/conveyor{
@@ -115,17 +89,11 @@
pixel_x = 8;
pixel_y = 7
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"hn" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"il" = (
/obj/item/clothing/under/shorts/red,
@@ -139,18 +107,13 @@
pixel_y = -8
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"iM" = (
/obj/item/toy/beach_ball/holoball,
/obj/effect/decal/warning_stripes,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/fitness)
"iN" = (
/obj/structure/barricade/handrail,
@@ -167,17 +130,11 @@
"kk" = (
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"kv" = (
/obj/effect/decal/remains/human,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"lq" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east,
@@ -191,23 +148,14 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"pV" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"rw" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/north,
/area/lv624/lazarus/fitness)
"sd" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
@@ -216,19 +164,14 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/fitness)
"sx" = (
/obj/structure/window/framed/colony,
/turf/open/floor/plating,
/area/lv624/lazarus/fitness)
"tD" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/fitness)
"tY" = (
/turf/open/gm/dirt,
@@ -249,10 +192,7 @@
"uV" = (
/obj/structure/bed/chair,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"uY" = (
/obj/structure/barricade/handrail{
@@ -268,10 +208,7 @@
id = "lv_gym_2";
name = "treadmill"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"vZ" = (
/obj/structure/flora/grass/tallgrass/jungle,
@@ -279,10 +216,7 @@
/area/lv624/ground/jungle/central_jungle)
"wA" = (
/obj/structure/bed/chair,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"wL" = (
/turf/open/gm/dirtgrassborder/south,
@@ -291,10 +225,7 @@
/obj/structure/closet/boxinggloves,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"xT" = (
/obj/structure/surface/rack,
@@ -304,18 +235,12 @@
pixel_y = -5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Ah" = (
/obj/structure/closet/athletic_mixed,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Aq" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -324,20 +249,14 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/central_jungle)
"AE" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/northwest,
/area/lv624/lazarus/fitness)
"Bl" = (
/turf/open/gm/grass/grass2,
/area/lv624/ground/jungle/central_jungle)
"Bm" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"BE" = (
/obj/structure/window_frame/colony,
@@ -353,10 +272,7 @@
dir = 1
},
/obj/effect/landmark/corpsespawner/colonist/random/burst,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"CO" = (
/obj/structure/machinery/colony_floodlight,
@@ -364,18 +280,12 @@
/area/lv624/ground/colony/south_medbay_road)
"CZ" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/fitness)
"DH" = (
/obj/structure/closet/lasertag/blue,
/obj/item/tool/crowbar,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"DM" = (
/turf/open/gm/grass/grass1,
@@ -385,16 +295,10 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/west,
/area/lv624/lazarus/fitness)
"FD" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/southeast,
/area/lv624/lazarus/fitness)
"Ge" = (
/obj/structure/barricade/handrail{
@@ -404,10 +308,7 @@
/area/lv624/lazarus/fitness)
"Hn" = (
/obj/item/clothing/suit/redtag,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Hz" = (
/obj/structure/fence,
@@ -416,17 +317,11 @@
"HF" = (
/obj/structure/surface/rack,
/obj/item/storage/firstaid/o2,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Ia" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"In" = (
/turf/open/floor,
@@ -435,16 +330,10 @@
/obj/structure/holohoop{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/east,
/area/lv624/lazarus/fitness)
"Ix" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/southwest,
/area/lv624/lazarus/fitness)
"IL" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -453,18 +342,12 @@
req_access_txt = "100"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/fitness)
"Js" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"JF" = (
/obj/structure/surface/rack,
@@ -473,10 +356,7 @@
pixel_x = -6;
pixel_y = 2
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"JN" = (
/obj/structure/filingcabinet/medical,
@@ -485,10 +365,7 @@
/area/lv624/lazarus/fitness)
"Kc" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"LB" = (
/obj/structure/fence,
@@ -500,9 +377,7 @@
/area/lv624/ground/jungle/east_central_jungle)
"Mn" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite,
/area/lv624/lazarus/fitness)
"Nt" = (
/turf/open/gm/grass/grass1,
@@ -519,10 +394,7 @@
"Op" = (
/obj/effect/landmark/survivor_spawner,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Pb" = (
/obj/structure/barricade/handrail,
@@ -534,10 +406,7 @@
/area/lv624/ground/colony/north_nexus_road)
"PC" = (
/obj/item/tool/soap,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Qf" = (
/obj/structure/machinery/atm{
@@ -545,10 +414,7 @@
pixel_x = -30
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Qh" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -564,28 +430,19 @@
pixel_y = 30
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Qw" = (
/turf/open/gm/dirt,
/area/lv624/ground/colony/north_nexus_road)
"Sj" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Ss" = (
/obj/effect/spawner/gibspawner/robot,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/fitness)
"SD" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
@@ -594,49 +451,32 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/central_jungle)
"To" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "warnwhite"
- },
+/turf/open/floor/warnwhite/northeast,
/area/lv624/lazarus/fitness)
"Tq" = (
/obj/structure/surface/rack,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Tv" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"TS" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Ur" = (
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/fitness)
"Vk" = (
/obj/structure/closet/lasertag/red,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Vs" = (
/obj/structure/machinery/conveyor{
@@ -644,10 +484,7 @@
id = "lv_gym_1";
name = "treadmill"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Wh" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west,
@@ -661,17 +498,11 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
"Xu" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/open/floor/whitepurplecorner/east,
/area/lv624/lazarus/fitness)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/hydro/30.destroyed.dmm b/maps/map_files/LV624/hydro/30.destroyed.dmm
index c3b3ddce6c63..d26d559b2fc3 100644
--- a/maps/map_files/LV624/hydro/30.destroyed.dmm
+++ b/maps/map_files/LV624/hydro/30.destroyed.dmm
@@ -2,36 +2,28 @@
"aO" = (
/obj/effect/landmark/crap_item,
/obj/item/reagent_container/glass/watertank,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"bd" = (
/obj/item/stack/sheet/metal,
/obj/item/explosive/mine/pmc/active{
dir = 1
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"bk" = (
/obj/item/tool/extinguisher,
/obj/effect/decal/cleanable/blood/tracks/footprints{
dir = 1
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"bm" = (
/obj/item/stack/sheet/metal,
/obj/effect/spawner/random/claymore/midchance{
dir = 1
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"bM" = (
/obj/structure/fence,
@@ -43,18 +35,14 @@
/area/lv624/lazarus/hydroponics)
"cQ" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"dZ" = (
/obj/item/stack/sheet/metal,
/obj/effect/spawner/random/claymore/lowchance{
dir = 8
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"eU" = (
/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east,
@@ -74,24 +62,17 @@
armor_rad = 10;
name = "damaged WY PMC gloves"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"fX" = (
/obj/item/device/analyzer/plant_analyzer,
/obj/effect/spawner/random/claymore,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"ih" = (
/obj/item/clothing/gloves/botanic_leather,
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"it" = (
/obj/item/tool/hatchet{
@@ -99,9 +80,7 @@
pixel_y = 4
},
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/hydroponics)
"jg" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
@@ -109,9 +88,7 @@
/area/lv624/ground/jungle/north_jungle)
"jy" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/hydroponics)
"jY" = (
/obj/item/reagent_container/spray/plantbgone{
@@ -123,9 +100,7 @@
/obj/effect/spawner/random/claymore/midchance{
dir = 1
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"kg" = (
/obj/structure/window/framed/colony/reinforced,
@@ -139,21 +114,15 @@
/obj/effect/decal/cleanable/blood/tracks/footprints{
dir = 1
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"kD" = (
/obj/item/reagent_container/glass/bucket,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/hydroponics)
"lm" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/hydroponics)
"lP" = (
/obj/item/stack/sheet/metal,
@@ -178,18 +147,12 @@
icon_state = "scandinavian_head_m"
},
/obj/item/robot_parts/arm/l_arm,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"np" = (
/obj/item/tool/weldingtool/simple,
/obj/item/stack/sheet/wood,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"nJ" = (
/obj/item/stack/sheet/metal,
@@ -200,9 +163,7 @@
/area/lv624/ground/colony/south_medbay_road)
"ot" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"ou" = (
/turf/open/gm/dirt,
@@ -212,9 +173,7 @@
/obj/effect/spawner/random/claymore/lowchance{
dir = 4
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"se" = (
/obj/structure/fence,
@@ -232,9 +191,7 @@
/obj/item/clothing/under/marine/veteran/pmc/leader{
pixel_x = -7
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"vm" = (
/obj/item/stack/sheet/wood{
@@ -248,9 +205,7 @@
pixel_x = -6;
pixel_y = 8
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/hydroponics)
"xa" = (
/obj/effect/decal/cleanable/blood,
@@ -262,9 +217,7 @@
pixel_x = 6;
pixel_y = 8
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"xm" = (
/obj/item/stack/sheet/metal,
@@ -277,9 +230,7 @@
pixel_x = -7;
pixel_y = 9
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"xM" = (
/obj/structure/surface/rack,
@@ -288,18 +239,14 @@
pixel_y = -3
},
/obj/item/reagent_container/glass/bucket,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"ym" = (
/obj/item/tool/crowbar,
/obj/effect/spawner/random/claymore/midchance{
dir = 4
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"zj" = (
/obj/item/stack/folding_barricade,
@@ -312,9 +259,7 @@
/area/lv624/lazarus/hydroponics)
"zL" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"zS" = (
/obj/structure/window_frame/colony,
@@ -333,9 +278,7 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"BL" = (
/obj/structure/flora/bush/ausbushes/genericbush,
@@ -346,16 +289,11 @@
/obj/item/clothing/suit/apron,
/obj/item/tool/shovel,
/obj/item/clothing/gloves/botanic_leather,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"Cq" = (
/obj/structure/girder,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"CG" = (
/obj/item/reagent_container/glass/fertilizer{
@@ -365,15 +303,11 @@
/obj/item/reagent_container/glass/fertilizer,
/obj/item/stack/sheet/metal,
/obj/effect/spawner/random/claymore/midchance,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"Ed" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"Fk" = (
/obj/item/clothing/head/helmet/marine/veteran/pmc{
@@ -384,9 +318,7 @@
/area/lv624/lazarus/hydroponics)
"FJ" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"Ha" = (
/obj/structure/barricade/deployable{
@@ -407,64 +339,46 @@
name = "scratched VP78 magazine (9mm)";
pixel_x = 6
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/hydroponics)
"IO" = (
/obj/item/device/analyzer/plant_analyzer,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"Jc" = (
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/blood/tracks/footprints{
dir = 1
},
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"JE" = (
/turf/open/floor,
/area/lv624/lazarus/hydroponics)
"JK" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"JO" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"Km" = (
/turf/open/gm/grass/grass1,
/area/lv624/ground/colony/south_medbay_road)
"Lk" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/hydroponics)
"Lu" = (
/obj/structure/window_frame/colony,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"LQ" = (
/obj/item/stack/sheet/metal,
/obj/effect/spawner/random/claymore/lowchance,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"Mm" = (
/obj/effect/landmark/crap_item,
@@ -479,25 +393,18 @@
/obj/item/ammo_magazine/rifle/nsg23,
/obj/item/ammo_magazine/rifle/nsg23,
/obj/item/ammo_magazine/rifle/nsg23,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"MT" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"MV" = (
/obj/item/stack/sheet/metal,
/obj/effect/spawner/random/claymore/midchance{
dir = 4
},
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"NO" = (
/obj/effect/landmark/crap_item,
@@ -505,9 +412,7 @@
/area/lv624/lazarus/hydroponics)
"On" = (
/obj/structure/window_frame/colony,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"OH" = (
/obj/structure/surface/rack,
@@ -523,9 +428,7 @@
/obj/item/tool/minihoe{
pixel_y = -2
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/hydroponics)
"OI" = (
/obj/item/reagent_container/glass/fertilizer,
@@ -535,32 +438,23 @@
"OK" = (
/obj/structure/closet/crate/hydroponics/prespawned,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"OO" = (
/obj/item/ammo_magazine/rifle/nsg23/extended,
/obj/effect/landmark/objective_landmark/medium,
/obj/item/stack/sheet/wood,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"Pk" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"Px" = (
/obj/effect/decal/cleanable/blood/tracks/footprints{
dir = 1
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"Qd" = (
/obj/item/stack/folding_barricade,
@@ -582,9 +476,7 @@
/turf/open/floor/plating,
/area/lv624/lazarus/hydroponics)
"QR" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"RT" = (
/obj/item/clothing/shoes/veteran/pmc{
@@ -601,22 +493,15 @@
pixel_y = -10;
slowdown = 0.5
},
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"TC" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/hydroponics)
"TL" = (
/obj/item/stack/sheet/metal,
/obj/effect/spawner/random/claymore/midchance,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/hydroponics)
"Ul" = (
/obj/structure/barricade/deployable{
@@ -627,9 +512,7 @@
},
/obj/item/weapon/gun/rifle/nsg23/no_lock,
/obj/item/ammo_magazine/rifle/nsg23,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"UG" = (
/obj/effect/decal/cleanable/blood,
@@ -637,18 +520,13 @@
dir = 4
},
/obj/item/weapon/gun/rifle/nsg23/no_lock,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/hydroponics)
"Wg" = (
/turf/open/floor/plating,
/area/lv624/lazarus/hydroponics)
"Xv" = (
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
"XA" = (
/turf/open/gm/grass/grass1,
@@ -662,31 +540,22 @@
/obj/item/explosive/grenade/high_explosive/pmc{
pixel_x = 6
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/hydroponics)
"YV" = (
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/hydroponics)
"Zm" = (
/obj/item/stack/sheet/metal,
/obj/item/robot_parts/leg/l_leg,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/hydroponics)
"ZL" = (
/obj/item/tool/minihoe{
pixel_x = 1;
pixel_y = -1
},
-/turf/open/floor{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/green/northwest,
/area/lv624/lazarus/hydroponics)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/maintemple/1.intact.dmm b/maps/map_files/LV624/maintemple/1.intact.dmm
index 16dc3740a77d..d61a92500b89 100644
--- a/maps/map_files/LV624/maintemple/1.intact.dmm
+++ b/maps/map_files/LV624/maintemple/1.intact.dmm
@@ -20,10 +20,7 @@
dir = 4;
name = "plasma power generator"
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple/powered)
"aI" = (
/obj/structure/surface/table/reinforced/prison{
@@ -55,10 +52,7 @@
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple/powered)
"aT" = (
/obj/structure/stairs/perspective{
@@ -70,10 +64,7 @@
/area/lv624/ground/caves/sand_temple)
"bP" = (
/obj/structure/bed/chair/comfy/black,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple/powered)
"bZ" = (
/obj/structure/surface/table/reinforced/prison{
@@ -108,10 +99,7 @@
amount = 30;
pixel_y = 6
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple/powered)
"dB" = (
/obj/structure/surface/table/reinforced/prison{
@@ -149,9 +137,7 @@
/obj/structure/barricade/handrail/strata{
dir = 1
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"dK" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -170,10 +156,7 @@
/area/lv624/ground/caves/sand_temple)
"dQ" = (
/obj/structure/machinery/autolathe/yautja,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple/powered)
"dV" = (
/obj/structure/surface/table/reinforced/prison{
@@ -215,10 +198,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"ez" = (
/obj/structure/surface/table/reinforced/prison{
@@ -307,17 +287,11 @@
/obj/item/tool/surgery/bonegel/predatorbonegel,
/obj/item/tool/surgery/bonesetter/predatorbonesetter,
/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"fQ" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"fV" = (
/obj/structure/prop/brazier/torch,
@@ -335,19 +309,14 @@
/obj/item/tank/oxygen/yellow{
pixel_x = -4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"gw" = (
/turf/open/gm/dirtgrassborder/south,
/area/lv624/ground/caves/sand_temple)
"gA" = (
/obj/structure/curtain/red,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"gI" = (
/obj/structure/flora/bush/ausbushes/var3/sunnybush{
@@ -357,20 +326,14 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/caves/sand_temple)
"gL" = (
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"gS" = (
/obj/structure/surface/table/reinforced/prison{
color = "#6b675e"
},
/obj/item/weapon/twohanded/yautja/spear,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"gY" = (
/obj/structure/stairs/perspective{
@@ -381,9 +344,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 1
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"gZ" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -421,16 +382,11 @@
dir = 10;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"hD" = (
/obj/item/weapon/yautja/knife,
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert2"
- },
+/turf/open/gm/dirtgrassborder/desert2,
/area/lv624/ground/barrens/south_eastern_barrens)
"hL" = (
/obj/structure/platform/mineral/sandstone/runed,
@@ -457,10 +413,7 @@
/obj/item/weapon/twohanded/yautja/glaive/damaged{
name = "damaged war glaive"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"iw" = (
/obj/structure/stairs/perspective{
@@ -495,10 +448,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"iW" = (
/obj/structure/barricade/handrail/strata{
@@ -507,9 +457,7 @@
/obj/structure/barricade/handrail/strata{
dir = 4
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"ja" = (
/obj/structure/surface/table/reinforced/prison{
@@ -517,10 +465,7 @@
},
/obj/item/xeno_restraints,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"kb" = (
/obj/effect/decal/remains/xeno,
@@ -532,10 +477,7 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"kO" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -687,10 +629,7 @@
/obj/item/tool/surgery/hemostat/predatorhemostat,
/obj/item/tool/surgery/retractor/predatorretractor,
/obj/item/tool/surgery/scalpel/predatorscalpel,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"od" = (
/obj/structure/platform/mineral/sandstone/runed{
@@ -717,10 +656,7 @@
color = "#b29082";
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"pu" = (
/obj/structure/stairs/perspective{
@@ -728,9 +664,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"pX" = (
/obj/structure/stairs/perspective{
@@ -787,10 +721,7 @@
/area/lv624/ground/barrens/south_eastern_barrens)
"rS" = (
/obj/structure/closet/coffin/predator,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"rU" = (
/obj/effect/decal/remains/xeno{
@@ -816,10 +747,7 @@
dir = 6;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"sM" = (
/obj/structure/platform_decoration/mineral/sandstone/runed,
@@ -840,10 +768,7 @@
/obj/structure/platform/mineral/sandstone/runed{
dir = 8
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"ts" = (
/obj/structure/stairs/perspective{
@@ -899,10 +824,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"uE" = (
/turf/open/floor/sandstone/runed,
@@ -950,10 +872,7 @@
color = "#6b675e";
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"wf" = (
/obj/structure/stairs/perspective{
@@ -993,19 +912,14 @@
icon_state = "yaut";
name = "alien sarcophagus"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"wZ" = (
/obj/effect/decal/cleanable/blood{
basecolor = "#20d450";
color = "#20d450"
},
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert0"
- },
+/turf/open/gm/dirtgrassborder/desert0,
/area/lv624/ground/barrens/south_eastern_barrens)
"xx" = (
/obj/structure/platform_decoration/mineral/sandstone/runed,
@@ -1153,10 +1067,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"BY" = (
/obj/structure/surface/table/reinforced/prison{
@@ -1182,9 +1093,7 @@
basecolor = "#20d450";
color = "#20d450"
},
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert3"
- },
+/turf/open/gm/dirtgrassborder/desert3,
/area/lv624/ground/barrens/south_eastern_barrens)
"Dd" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -1196,10 +1105,7 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"DG" = (
/obj/structure/barricade/handrail/strata{
@@ -1229,10 +1135,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"DX" = (
/obj/structure/stairs/perspective{
@@ -1282,22 +1185,14 @@
dir = 6;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"FS" = (
/obj/structure/xenoautopsy/tank/alien,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"Ge" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"Gt" = (
/obj/structure/platform/mineral/sandstone/runed{
@@ -1321,10 +1216,7 @@
/area/lv624/ground/caves/sand_temple)
"He" = (
/obj/structure/curtain/red,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"Hl" = (
/obj/structure/surface/table/reinforced/prison{
@@ -1381,9 +1273,7 @@
/obj/structure/barricade/handrail/strata{
dir = 4
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"IR" = (
/obj/structure/prop/brazier/torch,
@@ -1397,9 +1287,7 @@
/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east,
/area/lv624/ground/barrens/south_eastern_barrens)
"Jc" = (
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"Je" = (
/obj/item/weapon/harpoon/yautja{
@@ -1436,9 +1324,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 4
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"JZ" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -1525,17 +1411,11 @@
/obj/item/clothing/suit/armor/yautja_flavor{
anchored = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"Mx" = (
/obj/structure/prop/brazier,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"MB" = (
/obj/structure/bed/chair/comfy/black{
@@ -1558,9 +1438,7 @@
/turf/open/floor/sandstone/runed,
/area/lv624/ground/caves/sand_temple)
"MK" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirtgrassborder/desert_dug,
/area/lv624/ground/barrens/south_eastern_barrens)
"Nt" = (
/obj/structure/stairs/perspective{
@@ -1568,10 +1446,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"ND" = (
/obj/structure/stairs/perspective{
@@ -1582,10 +1457,7 @@
/obj/structure/platform/mineral/sandstone/runed{
dir = 8
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"Od" = (
/obj/structure/surface/table/reinforced/prison{
@@ -1597,10 +1469,7 @@
/obj/item/stack/medical/advanced/ointment/predator{
pixel_x = 5
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"OC" = (
/turf/closed/wall/mineral/sandstone/runed,
@@ -1610,15 +1479,11 @@
/obj/structure/barricade/handrail/strata{
dir = 8
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"OP" = (
/obj/structure/barricade/handrail/strata,
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"Ps" = (
/obj/structure/platform/mineral/sandstone/runed{
@@ -1652,10 +1517,7 @@
/obj/item/clothing/shoes/yautja/hunter{
anchored = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple/powered)
"PO" = (
/obj/item/weapon/harpoon/yautja{
@@ -1695,10 +1557,7 @@
dir = 5;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"Rh" = (
/obj/structure/prop/brazier/torch,
@@ -1772,22 +1631,14 @@
pixel_y = 7
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple/powered)
"TY" = (
/obj/structure/machinery/optable,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"UK" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert"
- },
+/turf/open/gm/dirtgrassborder/desert,
/area/lv624/ground/barrens/south_eastern_barrens)
"UP" = (
/obj/structure/stairs/perspective{
@@ -1797,9 +1648,7 @@
/area/lv624/ground/caves/sand_temple)
"UU" = (
/obj/structure/xenoautopsy/tank/broken,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"UX" = (
/obj/structure/surface/table/reinforced/prison{
@@ -1822,10 +1671,7 @@
/obj/structure/bed/chair/comfy/black{
dir = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"Ws" = (
/obj/structure/barricade/handrail/strata{
@@ -1834,9 +1680,7 @@
/obj/structure/barricade/handrail/strata{
dir = 8
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"Wv" = (
/obj/structure/surface/table/reinforced/prison{
@@ -1888,10 +1732,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"YT" = (
/obj/structure/stairs/perspective{
@@ -1916,9 +1757,7 @@
/turf/open/floor/sandstone/runed,
/area/lv624/ground/barrens/south_eastern_barrens)
"ZG" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert1"
- },
+/turf/open/gm/dirtgrassborder/desert1,
/area/lv624/ground/barrens/south_eastern_barrens)
"ZX" = (
/turf/template_noop,
diff --git a/maps/map_files/LV624/maintemple/2.flooded.dmm b/maps/map_files/LV624/maintemple/2.flooded.dmm
index 8643676807fc..725a5b22aa13 100644
--- a/maps/map_files/LV624/maintemple/2.flooded.dmm
+++ b/maps/map_files/LV624/maintemple/2.flooded.dmm
@@ -59,10 +59,7 @@
dir = 8;
icon_state = "p_stair_full"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"bP" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -87,10 +84,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/barrens/south_eastern_barrens)
"dA" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -131,9 +125,7 @@
/obj/structure/barricade/handrail/strata{
dir = 1
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"dK" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -214,9 +206,7 @@
/area/lv624/ground/caves/sand_temple)
"gA" = (
/obj/structure/curtain/red,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"gI" = (
/obj/structure/flora/bush/ausbushes/var3/sunnybush{
@@ -226,10 +216,7 @@
/turf/open/gm/grass/grass1,
/area/lv624/ground/caves/sand_temple)
"gL" = (
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"gS" = (
/obj/structure/platform/mineral/sandstone/runed{
@@ -246,9 +233,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 1
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"gZ" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -267,9 +252,7 @@
/turf/open/gm/coast/beachcorner/south_west,
/area/lv624/ground/caves/sand_temple)
"hD" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert2"
- },
+/turf/open/gm/dirtgrassborder/desert2,
/area/lv624/ground/barrens/south_eastern_barrens)
"hO" = (
/obj/structure/bed/chair/comfy/black{
@@ -291,10 +274,7 @@
/obj/item/weapon/twohanded/yautja/glaive/damaged{
name = "damaged war glaive"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"iw" = (
/obj/structure/stairs/perspective{
@@ -305,10 +285,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 8
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/barrens/south_eastern_barrens)
"iM" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -325,9 +302,7 @@
/obj/structure/barricade/handrail/strata{
dir = 4
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"ja" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -428,10 +403,7 @@
/area/lv624/ground/caves/sand_temple)
"mF" = (
/obj/structure/closet/coffin/predator,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"mI" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
@@ -491,10 +463,7 @@
/area/lv624/ground/caves/sand_temple)
"ow" = (
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"oC" = (
/obj/structure/platform/mineral/sandstone/runed{
@@ -519,9 +488,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"py" = (
/obj/structure/platform/mineral/sandstone/runed{
@@ -544,10 +511,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/barrens/south_eastern_barrens)
"qf" = (
/obj/structure/platform/mineral/sandstone/runed{
@@ -593,10 +557,7 @@
/area/lv624/ground/barrens/south_eastern_barrens)
"rL" = (
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"rU" = (
/obj/effect/decal/remains/xeno{
@@ -610,10 +571,7 @@
dir = 6;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"sM" = (
/obj/structure/platform_decoration/mineral/sandstone/runed,
@@ -631,10 +589,7 @@
/obj/structure/platform/mineral/sandstone/runed{
dir = 8
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"tn" = (
/obj/structure/surface/table/reinforced/prison{
@@ -673,10 +628,7 @@
name = "alien sarcophagus"
},
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"uy" = (
/obj/structure/showcase{
@@ -697,10 +649,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"uE" = (
/turf/open/floor/sandstone/runed,
@@ -727,10 +676,7 @@
icon_state = "p_stair_full"
},
/obj/structure/platform_decoration/mineral/sandstone/runed,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/barrens/south_eastern_barrens)
"vl" = (
/obj/item/tool/kitchen/utensil/spoon,
@@ -765,10 +711,7 @@
color = "#6b675e";
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"wf" = (
/obj/structure/stairs/perspective{
@@ -838,18 +781,13 @@
icon_state = "yaut";
name = "alien sarcophagus"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"wU" = (
/turf/open/gm/coast/beachcorner/north_west,
/area/lv624/ground/caves/sand_temple)
"wZ" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert0"
- },
+/turf/open/gm/dirtgrassborder/desert0,
/area/lv624/ground/barrens/south_eastern_barrens)
"xp" = (
/turf/open/gm/coast/beachcorner/south_west,
@@ -1027,10 +965,7 @@
/obj/item/clothing/suit/armor/yautja_flavor{
anchored = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"Ci" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -1050,9 +985,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/barrens/south_eastern_barrens)
"Cr" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert3"
- },
+/turf/open/gm/dirtgrassborder/desert3,
/area/lv624/ground/barrens/south_eastern_barrens)
"Dg" = (
/obj/structure/stairs/perspective{
@@ -1060,10 +993,7 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"Dj" = (
/turf/open/gm/coast/beachcorner2/south_west,
@@ -1107,10 +1037,7 @@
/obj/item/clothing/mask/yautja_flavor/map_random{
anchored = 1
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"DZ" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -1131,10 +1058,7 @@
dir = 4;
health = 80
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"Es" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -1149,10 +1073,7 @@
/area/lv624/ground/caves/sand_temple)
"EL" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"EM" = (
/obj/structure/showcase{
@@ -1183,10 +1104,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"Ff" = (
/obj/item/weapon/twohanded/yautja/spear,
@@ -1216,10 +1134,7 @@
/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east,
/area/lv624/ground/caves/sand_temple)
"Ge" = (
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"Gt" = (
/obj/structure/platform/mineral/sandstone/runed{
@@ -1252,10 +1167,7 @@
/area/lv624/ground/caves/sand_temple)
"He" = (
/obj/structure/curtain/red,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"Hk" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -1331,9 +1243,7 @@
/obj/structure/barricade/handrail/strata{
dir = 4
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"IZ" = (
/obj/structure/barricade/handrail/strata{
@@ -1343,9 +1253,7 @@
/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east,
/area/lv624/ground/barrens/south_eastern_barrens)
"Jc" = (
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"Je" = (
/obj/item/weapon/harpoon/yautja{
@@ -1398,9 +1306,7 @@
/obj/structure/platform_decoration/mineral/sandstone/runed{
dir = 4
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/lv624/ground/caves/sand_temple)
"JN" = (
/obj/structure/showcase{
@@ -1417,10 +1323,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"JZ" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -1457,10 +1360,7 @@
desc = "A bizarre alien device used for trapping and killing prey.";
name = "Alien Mine"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/ground/caves/sand_temple)
"KL" = (
/turf/open/gm/dirtgrassborder/east,
@@ -1526,10 +1426,7 @@
/obj/item/clothing/shoes/yautja_flavor{
anchored = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"Mq" = (
/obj/structure/prop/brazier/torch,
@@ -1542,9 +1439,7 @@
/turf/open/gm/coast/beachcorner/north_east,
/area/lv624/ground/barrens/south_eastern_barrens)
"MK" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirtgrassborder/desert_dug,
/area/lv624/ground/barrens/south_eastern_barrens)
"MX" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -1556,10 +1451,7 @@
dir = 4;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"ND" = (
/obj/structure/stairs/perspective{
@@ -1571,10 +1463,7 @@
/obj/structure/platform/mineral/sandstone/runed{
dir = 8
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/lv624/ground/caves/sand_temple)
"OC" = (
/turf/closed/wall/mineral/sandstone/runed,
@@ -1584,15 +1473,11 @@
/obj/structure/barricade/handrail/strata{
dir = 8
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"OP" = (
/obj/structure/barricade/handrail/strata,
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"OR" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -1669,10 +1554,7 @@
dir = 5;
icon_state = "p_stair_full"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"QX" = (
/obj/structure/bed/chair/comfy/black{
@@ -1710,10 +1592,7 @@
icon_state = "p_stair_full"
},
/obj/structure/flora/jungle/vines/heavy,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"SK" = (
/obj/structure/platform_decoration/mineral/sandstone/runed{
@@ -1770,9 +1649,7 @@
/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west,
/area/lv624/ground/caves/sand_temple)
"UK" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert"
- },
+/turf/open/gm/dirtgrassborder/desert,
/area/lv624/ground/barrens/south_eastern_barrens)
"UQ" = (
/obj/structure/platform_decoration/mineral/sandstone/runed,
@@ -1801,9 +1678,7 @@
/obj/structure/barricade/handrail/strata{
dir = 8
},
-/turf/open/gm/dirtgrassborder/weedable{
- icon_state = "grass1"
- },
+/turf/open/gm/dirtgrassborder/weedable/grass1,
/area/lv624/ground/barrens/south_eastern_barrens)
"Wv" = (
/obj/item/reagent_container/food/snacks/stew,
@@ -1824,10 +1699,7 @@
/area/lv624/ground/barrens/south_eastern_barrens)
"Xr" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"XQ" = (
/obj/structure/surface/table/reinforced/prison{
@@ -1871,10 +1743,7 @@
/obj/item/clothing/mask/yautja_flavor/map_random{
anchored = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/lv624/ground/caves/sand_temple)
"YT" = (
/obj/structure/stairs/perspective{
@@ -1898,9 +1767,7 @@
/turf/open/floor/sandstone/runed,
/area/lv624/ground/barrens/south_eastern_barrens)
"ZG" = (
-/turf/open/gm/dirtgrassborder{
- icon_state = "desert1"
- },
+/turf/open/gm/dirtgrassborder/desert1,
/area/lv624/ground/barrens/south_eastern_barrens)
"ZX" = (
/turf/template_noop,
diff --git a/maps/map_files/LV624/medbay/10.destroyed.dmm b/maps/map_files/LV624/medbay/10.destroyed.dmm
index b33c4c28d8c2..a676d0ff68bd 100644
--- a/maps/map_files/LV624/medbay/10.destroyed.dmm
+++ b/maps/map_files/LV624/medbay/10.destroyed.dmm
@@ -1,59 +1,42 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"am" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"aw" = (
/obj/item/clothing/under/colonist,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/medbay)
"aO" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/medbay)
"bk" = (
/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"cQ" = (
/obj/structure/machinery/sleep_console,
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"fX" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/medbay)
"gp" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"hW" = (
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"ih" = (
/obj/structure/machinery/medical_pod/bodyscanner,
@@ -63,36 +46,26 @@
name = "General Listening Channel";
pixel_y = 28
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"iq" = (
/obj/item/reagent_container/food/drinks/cans/waterbottle{
pixel_x = 2
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"it" = (
/obj/item/storage/firstaid,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"jg" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"jW" = (
/obj/item/storage/firstaid/toxin,
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"jY" = (
/obj/structure/flora/jungle/planttop1,
@@ -107,9 +80,7 @@
/obj/item/clothing/glasses/hud/health,
/obj/effect/landmark/crap_item,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"kD" = (
/obj/structure/flora/jungle/planttop1,
@@ -117,9 +88,7 @@
/area/lv624/ground/colony/south_medbay_road)
"lk" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"lD" = (
/obj/structure/surface/table,
@@ -130,15 +99,11 @@
phone_category = "Lazarus Landing";
phone_id = "Medbay"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"mz" = (
/obj/structure/machinery/light,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"mS" = (
/obj/item/device/radio/intercom{
@@ -147,15 +112,10 @@
name = "General Listening Channel";
pixel_y = 28
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"nz" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/east,
/area/lv624/lazarus/medbay)
"nG" = (
/obj/structure/fence,
@@ -165,16 +125,11 @@
/turf/open/gm/dirt,
/area/lv624/ground/colony/south_medbay_road)
"ok" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"ot" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/medbay)
"pp" = (
/obj/structure/closet/wardrobe,
@@ -182,9 +137,7 @@
dir = 8
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"qe" = (
/obj/structure/surface/table,
@@ -195,15 +148,11 @@
pixel_x = 5;
pixel_y = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"rL" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"rZ" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -217,22 +166,14 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/medbay)
"uV" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/medbay)
"vm" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/medbay)
"xe" = (
/obj/structure/fence,
@@ -245,9 +186,7 @@
desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
name = "Surgery Cleaner"
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"xM" = (
/turf/open/gm/dirtgrassborder/north,
@@ -266,32 +205,23 @@
/area/lv624/ground/colony/south_medbay_road)
"zl" = (
/obj/item/reagent_container/hypospray,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"zy" = (
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"zD" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"zL" = (
/obj/effect/landmark/corpsespawner/doctor,
/obj/effect/decal/cleanable/blood,
/obj/item/weapon/gun/pistol/holdout,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/lv624/lazarus/medbay)
"zS" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -307,44 +237,30 @@
"BL" = (
/obj/structure/window_frame/colony,
/obj/item/shard,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"Cq" = (
/obj/structure/machinery/optable,
/obj/item/tank/anesthetic,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"Df" = (
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"Dk" = (
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/lv624/lazarus/medbay)
"Ed" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/lv624/lazarus/medbay)
"EZ" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/medbay)
"Fk" = (
/turf/closed/wall,
@@ -355,16 +271,12 @@
pixel_x = 3;
pixel_y = 3
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"Gh" = (
/obj/effect/landmark/crap_item,
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"Ha" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -372,29 +284,20 @@
/area/lv624/ground/jungle/north_jungle)
"Il" = (
/obj/structure/machinery/bioprinter,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"Iy" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"IO" = (
/obj/structure/machinery/iv_drip,
/obj/structure/barricade/wooden,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/medbay)
"Jc" = (
/obj/structure/girder,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"JE" = (
/turf/open/gm/grass/grass1,
@@ -404,22 +307,15 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"JO" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
+/turf/open/floor/plating/panelscorched,
/area/lv624/lazarus/medbay)
"JY" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/lv624/lazarus/medbay)
"Km" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -429,15 +325,11 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/medbay)
"LX" = (
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"MT" = (
/obj/item/device/radio/intercom{
@@ -446,24 +338,18 @@
name = "General Listening Channel";
pixel_y = 28
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/medbay)
"MW" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"Ny" = (
/obj/structure/window_frame/colony,
/obj/item/shard,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"NO" = (
/obj/structure/surface/table,
@@ -477,9 +363,7 @@
},
/obj/item/storage/belt/medical/full,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"Os" = (
/obj/structure/surface/table,
@@ -487,117 +371,83 @@
pixel_y = 4
},
/obj/item/tool/pen,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"OK" = (
/obj/structure/window_frame/colony,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"OO" = (
/obj/item/tool/kitchen/utensil/fork,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/medbay)
"Pd" = (
/obj/item/trash/cigbutt,
/turf/open/gm/dirt,
/area/lv624/ground/colony/south_medbay_road)
"Pk" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"Px" = (
/obj/structure/surface/table,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"PE" = (
/obj/structure/filingcabinet,
/obj/structure/machinery/light,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/lv624/lazarus/medbay)
"Qd" = (
/turf/open/floor,
/area/lv624/lazarus/medbay)
"QR" = (
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/medbay)
"RO" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 2;
name = "\improper Medical Bay"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"RT" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5/west,
/area/lv624/lazarus/medbay)
"Sz" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"TC" = (
/obj/structure/surface/table,
/obj/item/reagent_container/spray,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"Ul" = (
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/doctor,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"Uq" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/medbay)
"UG" = (
/obj/effect/landmark/corpsespawner/doctor,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"UH" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"Xv" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"XA" = (
/turf/open/gm/grass/grass1,
@@ -606,14 +456,10 @@
/turf/closed/wall/r_wall,
/area/lv624/lazarus/medbay)
"YJ" = (
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"YV" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/medbay/30.larvasurgery.dmm b/maps/map_files/LV624/medbay/30.larvasurgery.dmm
index 4f0bf7a041ec..f03f922bf828 100644
--- a/maps/map_files/LV624/medbay/30.larvasurgery.dmm
+++ b/maps/map_files/LV624/medbay/30.larvasurgery.dmm
@@ -14,18 +14,14 @@
/area/lv624/ground/jungle/north_jungle)
"ai" = (
/obj/structure/machinery/medical_pod/sleeper,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"aj" = (
/obj/structure/machinery/sleep_console,
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"al" = (
/obj/structure/flora/jungle/planttop1,
@@ -36,9 +32,7 @@
/obj/item/clothing/glasses/hud/health,
/obj/effect/landmark/crap_item,
/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"ao" = (
/obj/structure/surface/table,
@@ -52,10 +46,7 @@
},
/obj/item/storage/belt/medical/full,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"ap" = (
/obj/structure/machinery/medical_pod/bodyscanner,
@@ -65,20 +56,13 @@
name = "General Listening Channel";
pixel_y = 28
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"aq" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"ar" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"as" = (
/obj/structure/machinery/light{
@@ -86,83 +70,58 @@
},
/obj/effect/decal/cleanable/blood,
/obj/item/storage/surgical_tray,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/medbay)
"at" = (
/obj/structure/surface/table/reinforced,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"au" = (
/obj/structure/flora/jungle/plantbot1,
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/north_jungle)
"av" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/medbay)
"aw" = (
/obj/item/reagent_container/hypospray,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"az" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"aA" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"aB" = (
/obj/item/reagent_container/spray/cleaner{
desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
name = "Surgery Cleaner"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/lv624/lazarus/medbay)
"aC" = (
/obj/structure/machinery/optable,
/obj/item/tank/anesthetic,
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"aI" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"aJ" = (
/obj/structure/machinery/bioprinter,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"aO" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"aP" = (
/obj/item/device/radio/intercom{
@@ -171,97 +130,65 @@
name = "General Listening Channel";
pixel_y = 28
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"aU" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"aX" = (
/turf/open/floor,
/area/lv624/lazarus/medbay)
"aY" = (
/obj/item/clothing/under/colonist,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"bb" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"bc" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{
dir = 2;
name = "\improper Medical Bay"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"bg" = (
-/turf/open/floor{
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner,
/area/lv624/lazarus/medbay)
"bi" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/north,
/area/lv624/lazarus/medbay)
"bk" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"bo" = (
/obj/structure/window_frame/colony,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"bp" = (
/obj/structure/machinery/cm_vending/sorted/medical/blood,
/obj/structure/machinery/light,
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/medbay)
"bq" = (
/obj/structure/bed,
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/engineer,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"bs" = (
/obj/item/tool/kitchen/utensil/fork,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"bu" = (
/obj/item/tool/crowbar,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"bw" = (
/obj/structure/fence,
@@ -269,16 +196,12 @@
/area/lv624/ground/colony/south_medbay_road)
"bx" = (
/obj/item/trash/plate,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"by" = (
/obj/effect/landmark/corpsespawner/doctor,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"bA" = (
/obj/structure/surface/table,
@@ -286,16 +209,11 @@
pixel_y = 4
},
/obj/item/tool/pen,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"bB" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/west,
/area/lv624/lazarus/medbay)
"bE" = (
/obj/structure/fence,
@@ -314,49 +232,33 @@
/area/lv624/ground/colony/south_medbay_road)
"bN" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/medbay)
"io" = (
/obj/item/stack/medical/ointment,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"mA" = (
/obj/structure/window/framed/colony,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"pc" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"qr" = (
/obj/structure/surface/table,
/obj/item/reagent_container/spray,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/medbay)
"qC" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/east,
/area/lv624/lazarus/medbay)
"qK" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -368,38 +270,26 @@
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/north,
/area/lv624/lazarus/medbay)
"tr" = (
/obj/item/storage/firstaid/toxin,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/medbay)
"us" = (
/obj/structure/filingcabinet,
/obj/structure/machinery/light,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/medbay)
"uD" = (
/obj/item/storage/firstaid,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"vC" = (
/obj/item/frame/table,
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"we" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
@@ -410,19 +300,14 @@
/turf/open/gm/dirtgrassborder/north,
/area/lv624/ground/colony/south_medbay_road)
"yd" = (
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/medbay)
"zE" = (
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/north_west_jungle)
"zF" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/medbay)
"zL" = (
/obj/structure/flora/jungle/planttop1,
@@ -430,16 +315,12 @@
/area/lv624/ground/colony/south_medbay_road)
"AO" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"CZ" = (
/obj/item/bedsheet/medical,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"DR" = (
/obj/structure/surface/table,
@@ -447,10 +328,7 @@
pixel_x = 3;
pixel_y = 3
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/lv624/lazarus/medbay)
"En" = (
/obj/structure/surface/table,
@@ -461,9 +339,7 @@
pixel_x = 5;
pixel_y = 4
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"Es" = (
/obj/structure/flora/bush/ausbushes/genericbush,
@@ -477,10 +353,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/medbay)
"JK" = (
/obj/structure/surface/table,
@@ -489,16 +362,11 @@
pixel_x = 8;
pixel_y = 6
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"Le" = (
/obj/structure/machinery/iv_drip,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/medbay)
"LQ" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -520,58 +388,40 @@
phone_category = "Lazarus Landing";
phone_id = "Medbay"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"Qu" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"QG" = (
/obj/item/reagent_container/food/drinks/cans/waterbottle{
pixel_x = 2
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"QQ" = (
/obj/structure/surface/table,
/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/medbay)
"TK" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/medbay)
"Vq" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/medbay)
"VI" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_10"
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/medbay)
"YV" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/west,
/area/lv624/lazarus/medbay)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/science/10.yautja.dmm b/maps/map_files/LV624/science/10.yautja.dmm
index 3d70df608c1f..8b44093643e7 100644
--- a/maps/map_files/LV624/science/10.yautja.dmm
+++ b/maps/map_files/LV624/science/10.yautja.dmm
@@ -25,9 +25,7 @@
locked = 1;
name = "\improper Research Dome"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"ae" = (
/turf/open/gm/dirt,
@@ -52,21 +50,13 @@
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
/obj/item/weapon/yautja/combistick,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ak" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"al" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"an" = (
/obj/structure/fence,
@@ -86,10 +76,7 @@
/obj/structure/surface/table,
/obj/item/reagent_container/hypospray/autoinjector/yautja,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aq" = (
/obj/structure/surface/table,
@@ -99,10 +86,7 @@
/obj/item/tool/surgery/retractor/predatorretractor,
/obj/item/tool/surgery/scalpel/predatorscalpel,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ar" = (
/turf/closed/wall,
@@ -111,26 +95,17 @@
/obj/structure/surface/table,
/obj/item/storage/fancy/vials/random,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"at" = (
/obj/structure/surface/table,
/obj/item/clipboard,
/obj/item/paper/research_notes,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"au" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"av" = (
/turf/open/gm/grass/grass1,
@@ -138,45 +113,30 @@
"aw" = (
/obj/structure/machinery/optable,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ax" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ay" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
locked = 1;
name = "\improper Research Dome"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"az" = (
/obj/structure/machinery/smartfridge/chemistry,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aA" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aC" = (
/obj/structure/machinery/light{
@@ -188,34 +148,22 @@
phone_id = "Research Dome";
pixel_y = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aD" = (
/obj/structure/surface/rack{
layer = 2.5
},
/obj/item/clothing/glasses/regular,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aE" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aF" = (
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aG" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
@@ -223,10 +171,7 @@
locked = 1;
name = "\improper Research Dome"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aH" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
@@ -234,9 +179,7 @@
locked = 1;
name = "\improper Research Dome"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aJ" = (
/obj/structure/machinery/light{
@@ -251,9 +194,7 @@
/obj/item/paper/research_notes,
/obj/item/prop/alien/hugger,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aK" = (
/obj/structure/machinery/door_control{
@@ -261,9 +202,7 @@
name = "Science Wing Lockdown";
pixel_x = 25
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aL" = (
/obj/structure/machinery/light/small{
@@ -271,20 +210,14 @@
},
/obj/structure/surface/table,
/obj/item/paper/research_notes,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aM" = (
/obj/structure/surface/table,
/obj/structure/machinery/cell_charger,
/obj/item/tool/crowbar,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aN" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -297,32 +230,24 @@
locked = 1;
name = "\improper Research Dome"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aO" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aP" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
locked = 1;
name = "\improper Research Dome"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aQ" = (
/obj/item/clothing/glasses/regular,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aS" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -331,31 +256,22 @@
layer = 3.3;
name = "\improper Science Wing Blast Door"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aT" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aW" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"aX" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"aY" = (
/obj/structure/machinery/shower{
@@ -364,41 +280,27 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"aZ" = (
/obj/structure/machinery/cm_vending/sorted/tech/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ba" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"bb" = (
/obj/structure/surface/table,
/obj/item/weapon/yautja/scythe,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"bd" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"be" = (
/obj/structure/sink{
@@ -407,19 +309,14 @@
pixel_x = 11
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"bf" = (
/obj/item/storage/box/beakers,
/obj/structure/surface/table,
/obj/structure/sign/safety/biohazard,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"bg" = (
/turf/open/gm/grass/grass1,
@@ -431,124 +328,82 @@
/obj/structure/surface/table,
/obj/item/weapon/yautja/knife,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"bj" = (
/obj/structure/surface/table,
/obj/item/reagent_container/hypospray/autoinjector/yautja,
/obj/item/reagent_container/hypospray/autoinjector/yautja,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"bk" = (
/obj/structure/surface/table,
/obj/item/explosive/grenade/spawnergrenade/smartdisc,
/obj/item/explosive/grenade/spawnergrenade/smartdisc,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ec" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"gd" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"gM" = (
/obj/structure/surface/table,
/obj/item/paper/research_notes,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"rg" = (
/obj/structure/surface/table,
/obj/item/paper/research_notes,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"vn" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"zm" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"CC" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"FO" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"Hj" = (
/obj/effect/landmark/crap_item,
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"Lo" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/remains/human,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"LE" = (
/obj/structure/surface/table,
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"Np" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/landmark/corpsespawner/scientist,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"Zw" = (
/obj/structure/surface/table,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/science/40.fullylocked.dmm b/maps/map_files/LV624/science/40.fullylocked.dmm
index ae7fffe8efd9..9dbf737c1b11 100644
--- a/maps/map_files/LV624/science/40.fullylocked.dmm
+++ b/maps/map_files/LV624/science/40.fullylocked.dmm
@@ -25,9 +25,7 @@
locked = 1;
name = "\improper Research Dome"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"ae" = (
/turf/open/gm/dirt,
@@ -50,22 +48,14 @@
/area/lv624/lazarus/research)
"aj" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ak" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"al" = (
/obj/structure/xenoautopsy/tank/alien,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"an" = (
/obj/structure/fence,
@@ -83,41 +73,26 @@
/area/lv624/lazarus/research)
"ap" = (
/obj/structure/xenoautopsy/tank/hugger,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aq" = (
/obj/structure/surface/table,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ar" = (
/obj/structure/machinery/chem_master,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"as" = (
/obj/structure/machinery/optable,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"at" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"au" = (
/turf/closed/wall,
@@ -126,26 +101,17 @@
/obj/structure/surface/table,
/obj/item/clipboard,
/obj/item/paper/research_notes,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aw" = (
/obj/structure/machinery/smartfridge/chemistry,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"ax" = (
/turf/open/gm/grass/grass1,
/area/lv624/ground/colony/south_medbay_road)
"ay" = (
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"az" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
@@ -153,9 +119,7 @@
locked = 1;
name = "\improper Research Dome"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aA" = (
/obj/structure/machinery/door_control{
@@ -163,37 +127,27 @@
name = "Science Wing Lockdown";
pixel_x = 25
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aB" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
locked = 1;
name = "\improper Research Dome"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aC" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
locked = 1;
name = "\improper Research Dome"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aD" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aF" = (
/obj/structure/surface/table,
@@ -202,20 +156,14 @@
},
/obj/structure/machinery/light,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aG" = (
/obj/structure/surface/rack{
layer = 2.5
},
/obj/item/clothing/glasses/regular,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aI" = (
/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{
@@ -224,24 +172,15 @@
layer = 3.3;
name = "\improper Science Wing Blast Door"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aJ" = (
/obj/structure/machinery/light,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aK" = (
/obj/structure/machinery/chem_dispenser,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aL" = (
/obj/structure/machinery/door/airlock/almayer/research/colony{
@@ -249,18 +188,13 @@
locked = 1;
name = "\improper Research Dome"
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aM" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aO" = (
/obj/structure/machinery/shower{
@@ -269,19 +203,14 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"aP" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/xenoautopsy/jar_shelf,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aQ" = (
/obj/structure/machinery/light{
@@ -295,9 +224,7 @@
},
/obj/item/storage/fancy/vials/random,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aR" = (
/obj/structure/sink{
@@ -305,28 +232,20 @@
icon_state = "sink";
pixel_x = 11
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"aS" = (
/obj/structure/machinery/light/small{
dir = 1
},
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aT" = (
/obj/structure/surface/table,
/obj/structure/machinery/cell_charger,
/obj/item/tool/crowbar,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"aU" = (
/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{
@@ -339,71 +258,48 @@
locked = 1;
name = "\improper Research Dome"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"aV" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"bb" = (
/obj/item/clothing/glasses/regular,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"bm" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"bn" = (
/obj/structure/surface/table,
/obj/item/paper/research_notes,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"bp" = (
/obj/structure/machinery/cm_vending/sorted/tech/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"bq" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"bx" = (
/obj/structure/bed/chair/office/dark,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"bz" = (
/obj/item/storage/box/beakers,
/obj/structure/surface/table,
/obj/structure/sign/safety/biohazard,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"bE" = (
/turf/open/gm/grass/grass1,
@@ -413,9 +309,7 @@
/area/lv624/ground/jungle/central_jungle)
"ky" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"oe" = (
/obj/structure/transmitter/colony_net{
@@ -423,70 +317,46 @@
phone_id = "Research Dome";
pixel_y = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"qs" = (
/obj/structure/surface/table,
/obj/item/storage/fancy/vials/random,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"wY" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/lv624/lazarus/research)
"DC" = (
/obj/structure/machinery/light,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"Fm" = (
/obj/structure/machinery/power/apc/nocharge{
dir = 1
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"Jv" = (
/obj/effect/landmark/corpsespawner/scientist,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"Kl" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/research)
"Mu" = (
/obj/structure/surface/table,
/obj/item/storage/fancy/vials/random,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
"Tz" = (
/obj/structure/surface/table,
/obj/item/paper/research_notes,
-/turf/open/floor{
- dir = 5;
- icon_state = "whitepurple"
- },
+/turf/open/floor/whitepurple/northeast,
/area/lv624/lazarus/research)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm b/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm
index 834d594eff5e..aa5e4df27f59 100644
--- a/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm
+++ b/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm
@@ -1,15 +1,9 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "warning"
- },
+/turf/open/floor/warning/west,
/area/lv624/lazarus/landing_zones/lz1)
"c" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/west,
/area/lv624/lazarus/landing_zones/lz1)
"d" = (
/turf/open/floor,
@@ -20,10 +14,7 @@
/area/lv624/lazarus/landing_zones/lz1)
"g" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/west,
/area/lv624/lazarus/landing_zones/lz1)
"j" = (
/obj/effect/decal/cleanable/blood/tracks/footprints{
@@ -32,10 +23,7 @@
/obj/effect/decal/cleanable/blood/tracks/footprints{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "warning"
- },
+/turf/open/floor/warning/west,
/area/lv624/lazarus/landing_zones/lz1)
"k" = (
/obj/structure/machinery/bot/mulebot{
@@ -44,17 +32,11 @@
health = 1;
on = 0
},
-/turf/open/floor{
- dir = 8;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/west,
/area/lv624/lazarus/landing_zones/lz1)
"m" = (
/obj/structure/largecrate,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"o" = (
/obj/item/device/radio/intercom{
@@ -63,29 +45,18 @@
name = "General Listening Channel";
pixel_x = -30
},
-/turf/open/floor{
- dir = 10;
- icon_state = "warning"
- },
+/turf/open/floor/warning/southwest,
/area/lv624/lazarus/landing_zones/lz1)
"p" = (
-/turf/open/floor{
- icon_state = "warning"
- },
+/turf/open/floor/warning,
/area/lv624/lazarus/landing_zones/lz1)
"t" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"C" = (
/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"F" = (
/obj/vehicle/train/cargo/trolley,
@@ -93,22 +64,13 @@
/area/lv624/lazarus/landing_zones/lz1)
"K" = (
/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"L" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"O" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "loadingarea"
- },
+/turf/open/floor/loadingarea/north,
/area/lv624/lazarus/landing_zones/lz1)
"P" = (
/obj/vehicle/train/cargo/engine,
@@ -116,24 +78,15 @@
/turf/open/floor,
/area/lv624/lazarus/landing_zones/lz1)
"R" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "warningcorner"
- },
+/turf/open/floor/warningcorner/east,
/area/lv624/lazarus/landing_zones/lz1)
"T" = (
/obj/structure/largecrate/random/barrel/blue,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"U" = (
/obj/vehicle/train/cargo/trolley,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
"X" = (
/obj/structure/machinery/bot/mulebot{
@@ -143,10 +96,7 @@
on = 0
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- dir = 1;
- icon_state = "bot"
- },
+/turf/open/floor/bot/north,
/area/lv624/lazarus/landing_zones/lz1)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm b/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm
index 8b09597980a6..ab33751f89e9 100644
--- a/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm
+++ b/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm
@@ -1,21 +1,15 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
-/turf/open/floor{
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5,
/area/lv624/lazarus/main_hall)
"ab" = (
/obj/structure/barricade/wooden{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"ac" = (
-/turf/open/floor{
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2,
/area/lv624/lazarus/main_hall)
"ad" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers,
@@ -24,17 +18,13 @@
/turf/open/floor/grass,
/area/lv624/lazarus/main_hall)
"ae" = (
-/turf/open/floor{
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4,
/area/lv624/lazarus/main_hall)
"af" = (
/obj/item/stack/sheet/metal,
/obj/item/stack/sheet/metal,
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/platingdmg3,
/area/lv624/lazarus/main_hall)
"ag" = (
/obj/structure/flora/pottedplant,
@@ -44,9 +34,7 @@
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"ah" = (
/obj/structure/machinery/vending/snack,
@@ -55,37 +43,26 @@
pixel_x = 4;
pixel_y = 4
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/main_hall)
"ai" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/floorscorched2,
/area/lv624/lazarus/main_hall)
"aj" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor{
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2,
/area/lv624/lazarus/main_hall)
"ak" = (
/obj/item/frame/table,
/obj/item/ammo_magazine/smg/mp27,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"al" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2,
/area/lv624/lazarus/main_hall)
"am" = (
/obj/effect/landmark/good_item,
@@ -93,57 +70,43 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"an" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5,
/area/lv624/lazarus/main_hall)
"ap" = (
/obj/item/weapon/twohanded/fireaxe,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aq" = (
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4,
/area/lv624/lazarus/main_hall)
"ar" = (
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3,
/area/lv624/lazarus/main_hall)
"as" = (
/obj/item/limb/arm/l_arm,
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/floorscorched1,
/area/lv624/lazarus/main_hall)
"at" = (
/obj/effect/decal/cleanable/vomit,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2,
/area/lv624/lazarus/main_hall)
"au" = (
/obj/structure/surface/table{
@@ -151,17 +114,13 @@
flipped = 1
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"av" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/platingdmg3,
/area/lv624/lazarus/main_hall)
"aw" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
@@ -169,31 +128,23 @@
/obj/item/ammo_casing,
/obj/effect/landmark/xeno_hive_spawn,
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"ax" = (
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/floorscorched1,
/area/lv624/lazarus/main_hall)
"ay" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/floorscorched2,
/area/lv624/lazarus/main_hall)
"az" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/floorscorched1,
/area/lv624/lazarus/main_hall)
"aA" = (
/obj/structure/barricade/wooden{
@@ -201,17 +152,13 @@
},
/obj/structure/barricade/wooden,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aB" = (
/obj/structure/flora/pottedplant,
/obj/structure/barricade/wooden,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aC" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -219,9 +166,7 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5,
/area/lv624/lazarus/main_hall)
"aD" = (
/obj/effect/landmark/corpsespawner/engineer,
@@ -231,9 +176,7 @@
/obj/item/trash/chips,
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aF" = (
/obj/item/limb/foot/r_foot,
@@ -243,9 +186,7 @@
},
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aG" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -254,26 +195,20 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aH" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
/obj/item/frame/table,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4,
/area/lv624/lazarus/main_hall)
"aI" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/frame/table,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aJ" = (
/obj/item/limb/hand/r_hand,
@@ -283,68 +218,50 @@
},
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aK" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aL" = (
-/turf/open/floor{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/floorscorched1,
/area/lv624/lazarus/main_hall)
"aM" = (
/obj/structure/barricade/wooden{
dir = 8
},
-/turf/open/floor{
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2,
/area/lv624/lazarus/main_hall)
"aN" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5,
/area/lv624/lazarus/main_hall)
"aO" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aP" = (
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aQ" = (
/obj/item/weapon/gun/smg/mp27,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3,
/area/lv624/lazarus/main_hall)
"aR" = (
/obj/item/limb/foot/r_foot,
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4,
/area/lv624/lazarus/main_hall)
"aS" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -357,38 +274,28 @@
/obj/item/ammo_magazine/smg/mp27,
/obj/item/ammo_magazine/smg/mp27,
/obj/item/ammo_magazine/smg/mp27,
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/lv624/lazarus/main_hall)
"aU" = (
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4,
/area/lv624/lazarus/main_hall)
"aV" = (
/obj/structure/surface/table,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aW" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"aX" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/gibs,
/obj/structure/pipes/standard/simple/hidden/cyan,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/floorscorched1,
/area/lv624/lazarus/main_hall)
"aY" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -412,50 +319,37 @@
/obj/structure/barricade/metal{
dir = 4
},
-/turf/open/floor{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/floorscorched2,
/area/lv624/lazarus/main_hall)
"bb" = (
/obj/item/frame/table,
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/platingdmg3,
/area/lv624/lazarus/main_hall)
"bc" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/structure/surface/table{
flipped = 1
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"bd" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5,
/area/lv624/lazarus/main_hall)
"be" = (
/obj/item/stack/barbed_wire,
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2,
/area/lv624/lazarus/main_hall)
"bf" = (
/obj/structure/barricade/metal{
dir = 4
},
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/floorscorched2,
/area/lv624/lazarus/main_hall)
"bg" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -470,25 +364,18 @@
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"bi" = (
/obj/effect/decal/cleanable/blood/gibs,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5,
/area/lv624/lazarus/main_hall)
"bj" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/lv624/lazarus/main_hall)
"bk" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -498,15 +385,10 @@
/area/lv624/lazarus/main_hall)
"bl" = (
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/west,
/area/lv624/lazarus/main_hall)
"bm" = (
-/turf/open/floor{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/floorscorched2,
/area/lv624/lazarus/main_hall)
"bn" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
@@ -515,9 +397,7 @@
/area/lv624/lazarus/main_hall)
"bo" = (
/obj/item/stack/barbed_wire,
-/turf/open/floor{
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2,
/area/lv624/lazarus/main_hall)
"bp" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -525,16 +405,11 @@
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"bq" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- icon_state = "damaged4"
- },
+/turf/open/floor/damaged4,
/area/lv624/lazarus/main_hall)
"br" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -547,44 +422,32 @@
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"bs" = (
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/floorscorched2,
/area/lv624/lazarus/main_hall)
"bt" = (
/obj/item/weapon/gun/smg/mp27,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"bu" = (
/obj/item/stack/barbed_wire,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2,
/area/lv624/lazarus/main_hall)
"bv" = (
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/floorscorched2,
/area/lv624/lazarus/main_hall)
"bw" = (
/obj/structure/barricade/metal{
@@ -592,27 +455,18 @@
},
/obj/effect/decal/cleanable/blood/gibs,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5,
/area/lv624/lazarus/main_hall)
"bx" = (
-/turf/open/floor{
- icon_state = "wall_thermite"
- },
+/turf/open/floor/wall_thermite,
/area/lv624/lazarus/main_hall)
"by" = (
/obj/item/ammo_casing,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/main_hall)
"bz" = (
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2,
/area/lv624/lazarus/main_hall)
"bA" = (
/obj/item/tool/crowbar,
@@ -622,10 +476,7 @@
flipped = 1
},
/obj/item/ammo_casing,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"bB" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -633,9 +484,7 @@
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/floorscorched1,
/area/lv624/lazarus/main_hall)
"bC" = (
/obj/effect/decal/cleanable/blood{
@@ -645,9 +494,7 @@
/obj/item/limb/hand/l_hand,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/floorscorched1,
/area/lv624/lazarus/main_hall)
"bD" = (
/obj/effect/decal/cleanable/blood/gibs,
@@ -655,9 +502,7 @@
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/platingdmg3,
/area/lv624/lazarus/main_hall)
"bE" = (
/obj/effect/landmark/corpsespawner/chef,
@@ -666,33 +511,23 @@
flipped = 1
},
/obj/item/ammo_casing,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"bF" = (
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/floorscorched1,
/area/lv624/lazarus/main_hall)
"bG" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "floorscorched2"
- },
+/turf/open/floor/floorscorched2,
/area/lv624/lazarus/main_hall)
"bH" = (
/obj/structure/barricade/wooden,
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/lv624/lazarus/main_hall)
"bI" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -700,9 +535,7 @@
/obj/item/ammo_casing,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged2"
- },
+/turf/open/floor/damaged2,
/area/lv624/lazarus/main_hall)
"bJ" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -711,15 +544,10 @@
},
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"bK" = (
-/turf/open/floor{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/platingdmg3,
/area/lv624/lazarus/main_hall)
"bL" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -744,17 +572,12 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/north,
/area/lv624/lazarus/main_hall)
"bO" = (
/obj/effect/landmark/good_item,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"bP" = (
/obj/effect/decal/cleanable/blood/splatter,
@@ -764,40 +587,30 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"bQ" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"bR" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_magazine/smg/mp27,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"bS" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"bT" = (
/obj/item/weapon/gun/smg/mp27,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "floorscorched1"
- },
+/turf/open/floor/floorscorched1,
/area/lv624/lazarus/main_hall)
"bU" = (
/obj/item/trash/raisins,
@@ -805,61 +618,42 @@
dir = 8
},
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"bV" = (
/obj/structure/pipes/standard/simple/hidden/cyan,
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "whitegreen"
- },
+/turf/open/floor/whitegreen,
/area/lv624/lazarus/main_hall)
"bW" = (
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "damaged5"
- },
+/turf/open/floor/damaged5,
/area/lv624/lazarus/main_hall)
"bX" = (
/obj/effect/landmark/good_item,
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/ammo_casing,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"zt" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"zv" = (
/obj/item/trash/cheesie,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"BB" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"Cw" = (
-/turf/open/floor{
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner,
/area/lv624/lazarus/main_hall)
"Cy" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whitegreencorner"
- },
+/turf/open/floor/whitegreencorner/west,
/area/lv624/lazarus/main_hall)
"DY" = (
/turf/closed/wall,
@@ -874,10 +668,7 @@
icon_state = "door_open";
name = "\improper Nexus Cargo Storage"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/quart)
"Fz" = (
/obj/structure/window/framed/colony/reinforced,
@@ -893,60 +684,43 @@
/area/lv624/lazarus/chapel)
"He" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/main_hall)
"Hf" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/light/spot{
dir = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"HH" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Nexus Dome Chapel"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/chapel)
"HI" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/chapel)
"HJ" = (
/obj/structure/flora/pottedplant,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"Ie" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"Ii" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"Il" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"Ir" = (
/obj/structure/machinery/atm{
@@ -956,34 +730,20 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"IY" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/west,
/area/lv624/lazarus/main_hall)
"Jf" = (
/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowfull"
- },
+/turf/open/floor/whiteyellowfull/east,
/area/lv624/lazarus/main_hall)
"JH" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/lv624/lazarus/main_hall)
"JK" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/north,
/area/lv624/lazarus/main_hall)
"KQ" = (
/obj/structure/window/framed/colony/reinforced,
@@ -996,39 +756,27 @@
/obj/item/reagent_container/glass/bucket/mopbucket,
/obj/item/tool/mop,
/obj/item/tool/mop,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"Lp" = (
/turf/closed/wall,
/area/lv624/lazarus/canteen)
"Lq" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/canteen)
"Me" = (
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/main_hall)
"Mf" = (
/obj/structure/flora/pottedplant,
/obj/structure/machinery/light/spot,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/main_hall)
"Mi" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/main_hall)
"Nk" = (
/turf/closed/wall,
@@ -1042,9 +790,7 @@
/area/lv624/lazarus/security)
"NU" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor{
- icon_state = "cult"
- },
+/turf/open/floor/cult,
/area/lv624/lazarus/kitchen)
"OK" = (
/turf/template_noop,
@@ -1058,10 +804,7 @@
/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{
name = "\improper Nexus Dome Canteen"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "barber"
- },
+/turf/open/floor/barber/west,
/area/lv624/lazarus/kitchen)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/standalone/clfship.dmm b/maps/map_files/LV624/standalone/clfship.dmm
index 090ad40084f7..177ecbd6e450 100644
--- a/maps/map_files/LV624/standalone/clfship.dmm
+++ b/maps/map_files/LV624/standalone/clfship.dmm
@@ -26,10 +26,7 @@
id = "clf_umbilical_1";
name = "\improper Umbillical Airlock"
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"aO" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -44,10 +41,7 @@
/area/lv624/ground/caves/south_west_caves)
"bc" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/north,
/area/lv624/lazarus/crashed_ship)
"bf" = (
/obj/structure/surface/rack,
@@ -55,10 +49,7 @@
/obj/item/ammo_magazine/shotgun/buckshot,
/obj/item/ammo_magazine/shotgun/buckshot,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "orange"
- },
+/turf/open/floor/almayer/orange/southwest,
/area/lv624/lazarus/crashed_ship)
"by" = (
/turf/closed/wall/rock/brown,
@@ -68,15 +59,10 @@
/turf/open/floor/almayer,
/area/lv624/lazarus/crashed_ship)
"bL" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner/east,
/area/lv624/lazarus/crashed_ship)
"bP" = (
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/lazarus/crashed_ship)
"bQ" = (
/obj/structure/machinery/defenses/sentry/premade/dumb{
@@ -86,10 +72,6 @@
/obj/item/ammo_casing/shell{
icon_state = "casing_7_1"
},
-/obj/structure/machinery/defenses/sentry/premade/dumb{
- dir = 1;
- faction_group = list("CLF")
- },
/turf/open/gm/dirt,
/area/lv624/ground/caves/south_west_caves)
"ca" = (
@@ -103,18 +85,14 @@
pixel_x = 3;
pixel_y = 2
},
-/turf/open/floor/almayer{
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald,
/area/lv624/lazarus/crashed_ship)
"dt" = (
/obj/structure/barricade/metal/wired{
dir = 4;
icon_state = "metal_3"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"dN" = (
/turf/open/floor/plating,
@@ -148,9 +126,7 @@
/area/lv624/lazarus/crashed_ship)
"eY" = (
/obj/item/tool/shovel/spade,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/ground/caves/south_west_caves)
"fe" = (
/obj/item/weapon/gun/rifle/m16,
@@ -159,16 +135,11 @@
pixel_y = 6
},
/obj/structure/surface/rack,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner/north,
/area/lv624/lazarus/crashed_ship)
"ft" = (
/obj/item/stool,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"fA" = (
/obj/structure/transmitter/clf_net{
@@ -176,17 +147,12 @@
phone_id = "Armoury";
pixel_y = 32
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner/north,
/area/lv624/lazarus/crashed_ship)
"fX" = (
/obj/item/stool,
/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"gg" = (
/obj/structure/surface/rack,
@@ -197,10 +163,7 @@
/obj/item/device/radio{
pixel_x = -3
},
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/southwest,
/area/lv624/lazarus/crashed_ship)
"gj" = (
/obj/item/stack/sheet/metal{
@@ -212,10 +175,7 @@
dir = 8;
icon_state = "metal_1"
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/lazarus/crashed_ship)
"gn" = (
/obj/structure/girder/displaced,
@@ -227,9 +187,7 @@
/area/lv624/ground/caves/south_west_caves)
"gv" = (
/obj/item/stack/rods,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/ground/caves/south_west_caves)
"gD" = (
/obj/structure/surface/table/reinforced/prison,
@@ -255,15 +213,10 @@
/obj/item/ammo_magazine/rifle/m16{
pixel_x = -4
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner/east,
/area/lv624/lazarus/crashed_ship)
"gF" = (
-/turf/open/floor/almayer{
- icon_state = "emeraldcorner"
- },
+/turf/open/floor/almayer/emeraldcorner,
/area/lv624/lazarus/crashed_ship)
"gQ" = (
/obj/effect/decal/cleanable/blood/oil/streak,
@@ -273,17 +226,11 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin,
/obj/item/tool/pen,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald/southwest,
/area/lv624/lazarus/crashed_ship)
"gW" = (
/obj/structure/girder/displaced,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"gX" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -308,16 +255,10 @@
/obj/item/ammo_magazine/pistol/heavy,
/obj/item/clothing/accessory/storage/webbing,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/northeast,
/area/lv624/lazarus/crashed_ship)
"id" = (
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/lv624/lazarus/crashed_ship)
"iq" = (
/turf/closed/shuttle/ert{
@@ -326,10 +267,7 @@
/area/lv624/lazarus/crashed_ship)
"iF" = (
/obj/effect/landmark/corpsespawner/wysec,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"jb" = (
/obj/structure/largecrate/random/barrel/red,
@@ -343,16 +281,11 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/south_west_caves)
"jr" = (
-/turf/open/floor/almayer{
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner,
/area/lv624/lazarus/crashed_ship)
"jx" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/lv624/lazarus/crashed_ship)
"jz" = (
/obj/structure/barricade/sandbags/wired{
@@ -375,19 +308,13 @@
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald/north,
/area/lv624/lazarus/crashed_ship)
"jO" = (
/obj/structure/barricade/metal/wired{
dir = 8
},
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/lazarus/crashed_ship)
"jR" = (
/obj/item/stack/rods,
@@ -406,10 +333,7 @@
"kp" = (
/obj/item/stack/rods,
/obj/structure/girder,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"kw" = (
/obj/item/ammo_casing/shell{
@@ -418,18 +342,14 @@
/obj/structure/barricade/metal/wired{
icon_state = "metal_1"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"ky" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{
dir = 8;
name = "\improper Bridge"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"kO" = (
/obj/structure/bed,
@@ -439,16 +359,11 @@
pixel_y = 20
},
/obj/item/toy/plush/farwa,
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/northwest,
/area/lv624/lazarus/crashed_ship)
"kY" = (
/obj/structure/machinery/door/airlock/almayer/generic,
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/crashed_ship)
"lf" = (
/obj/structure/barricade/sandbags/wired{
@@ -460,10 +375,7 @@
"lh" = (
/obj/item/stack/rods,
/obj/item/ammo_magazine/smg/fp9000,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"lj" = (
/obj/item/tool/shovel/spade,
@@ -479,9 +391,7 @@
pixel_x = -2;
pixel_y = 3
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"ln" = (
/obj/structure/bed/chair,
@@ -497,15 +407,11 @@
/area/lv624/lazarus/crashed_ship)
"lD" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"lU" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"mq" = (
/obj/structure/largecrate/supply/supplies/water,
@@ -523,14 +429,10 @@
/area/lv624/ground/caves/south_west_caves)
"mK" = (
/obj/structure/girder/displaced,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/ground/caves/south_west_caves)
"mS" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"nj" = (
/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_engineer,
@@ -546,10 +448,7 @@
/obj/item/ammo_magazine/shotgun/slugs,
/obj/item/ammo_magazine/shotgun/slugs,
/obj/item/ammo_magazine/shotgun/slugs,
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "orange"
- },
+/turf/open/floor/almayer/orange/northwest,
/area/lv624/lazarus/crashed_ship)
"nO" = (
/obj/item/tool/wet_sign,
@@ -560,10 +459,7 @@
dir = 1;
pixel_y = 20
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/almayer/greencorner/east,
/area/lv624/lazarus/crashed_ship)
"ok" = (
/obj/effect/landmark/survivor_spawner/lv624_crashed_clf,
@@ -571,34 +467,25 @@
/area/lv624/lazarus/crashed_ship)
"ou" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"oI" = (
/obj/item/stack/rods,
/obj/effect/landmark/corpsespawner/clf,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"oO" = (
/obj/structure/barricade/plasteel/wired{
icon_state = "plasteel_3"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"oW" = (
/obj/structure/barricade/metal/wired{
dir = 4;
icon_state = "metal_1"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"pq" = (
/turf/closed/shuttle/ert{
@@ -610,25 +497,17 @@
/turf/open/floor/almayer,
/area/lv624/lazarus/crashed_ship)
"pS" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/lazarus/crashed_ship)
"pY" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/ground/caves/south_west_caves)
"qu" = (
/obj/item/ammo_casing/shell{
icon_state = "casing_2_1"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"qT" = (
/obj/structure/barricade/sandbags/wired{
@@ -642,9 +521,7 @@
"qU" = (
/obj/item/ammo_magazine/smg/fp9000,
/obj/item/stack/rods,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"rf" = (
/obj/item/ammo_casing/shell{
@@ -675,10 +552,7 @@
/obj/item/device/flashlight/lamp{
pixel_y = 3
},
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/west,
/area/lv624/lazarus/crashed_ship)
"sO" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door,
@@ -716,10 +590,7 @@
/area/lv624/lazarus/crashed_ship)
"ug" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"uq" = (
/obj/item/tool/warning_cone,
@@ -727,16 +598,12 @@
/area/lv624/ground/caves/south_west_caves)
"ur" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/ground/caves/south_west_caves)
"uz" = (
/obj/structure/girder/displaced,
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/ground/caves/south_west_caves)
"uX" = (
/obj/structure/bed/chair{
@@ -746,19 +613,14 @@
/area/lv624/lazarus/crashed_ship)
"vb" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/north,
/area/lv624/lazarus/crashed_ship)
"vf" = (
/obj/structure/machinery/door/poddoor/almayer{
id = "clf_umbilical_1";
name = "\improper Umbillical Airlock"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"vo" = (
/turf/closed/shuttle/ert{
@@ -768,26 +630,18 @@
"vp" = (
/obj/item/stack/rods,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"vw" = (
/turf/open/gm/dirt,
/area/lv624/ground/barrens/west_barrens)
"vO" = (
/obj/structure/girder/reinforced,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"wh" = (
/obj/item/weapon/gun/rifle/sniper/svd,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"wo" = (
/obj/structure/machinery/floodlight,
@@ -795,10 +649,7 @@
/area/lv624/lazarus/crashed_ship)
"wr" = (
/obj/structure/machinery/floodlight,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"wx" = (
/obj/effect/decal/cleanable/blood/oil,
@@ -813,29 +664,19 @@
/area/lv624/lazarus/crashed_ship)
"wR" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"wV" = (
/obj/structure/machinery/power/smes/buildable/charged,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "orange"
- },
+/turf/open/floor/almayer/orange/north,
/area/lv624/lazarus/crashed_ship)
"xh" = (
/obj/structure/girder,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"xj" = (
/obj/structure/girder/displaced,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"xk" = (
/obj/item/ammo_casing/shell{
@@ -845,9 +686,7 @@
dir = 8;
faction_group = list("CLF")
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"xl" = (
/obj/structure/largecrate/random/barrel/yellow,
@@ -876,22 +715,14 @@
id = "clf_umbilical_1";
name = "\improper Umbillical Airlock"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"xI" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner/north,
/area/lv624/lazarus/crashed_ship)
"xK" = (
/obj/structure/machinery/cm_vending/sorted/marine_food,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/northeast,
/area/lv624/lazarus/crashed_ship)
"xX" = (
/obj/structure/machinery/light/small{
@@ -903,10 +734,7 @@
"yK" = (
/obj/item/stack/rods,
/obj/item/ammo_magazine/sniper/svd,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"yT" = (
/obj/structure/barricade/metal/wired{
@@ -915,9 +743,7 @@
/obj/structure/machinery/m56d_hmg{
rounds = 700
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"yX" = (
/obj/structure/surface/table/reinforced/prison,
@@ -929,9 +755,7 @@
/area/lv624/lazarus/crashed_ship)
"zb" = (
/obj/structure/girder/reinforced,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"zl" = (
/obj/structure/barricade/metal/wired{
@@ -947,9 +771,7 @@
/obj/structure/barricade/metal/wired{
icon_state = "metal_1"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"zD" = (
/obj/structure/sink{
@@ -959,16 +781,12 @@
pixel_x = 2;
pixel_y = -4
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/crashed_ship)
"zJ" = (
/obj/item/stack/rods,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"Aa" = (
/obj/effect/vehicle_spawner/van/fixed{
@@ -976,10 +794,7 @@
desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF";
name = "CLF Van"
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/lazarus/crashed_ship)
"Ab" = (
/turf/open/gm/dirt,
@@ -999,16 +814,11 @@
/obj/item/ammo_magazine/pistol/heavy,
/obj/item/ammo_magazine/pistol/heavy,
/obj/item/ammo_magazine/pistol/heavy,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/northeast,
/area/lv624/lazarus/crashed_ship)
"AP" = (
/obj/structure/cargo_container/arious/right,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"AQ" = (
/obj/structure/machinery/door_control/brbutton{
@@ -1026,10 +836,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/caves/south_west_caves)
"Bc" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"Bg" = (
/obj/structure/surface/table/woodentable,
@@ -1053,10 +860,7 @@
/area/lv624/ground/caves/south_west_caves)
"BY" = (
/obj/structure/cargo_container/arious/leftmid,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"Cq" = (
/obj/item/circuitboard/apc{
@@ -1078,9 +882,7 @@
"Cw" = (
/obj/item/ammo_magazine/smg/fp9000,
/obj/item/ammo_magazine/smg/fp9000,
-/turf/open/floor/plating{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate,
/area/lv624/lazarus/crashed_ship)
"CO" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -1090,10 +892,7 @@
/turf/open/gm/dirt,
/area/lv624/lazarus/crashed_ship)
"CZ" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/east,
/area/lv624/lazarus/crashed_ship)
"Dm" = (
/turf/closed/shuttle/ert{
@@ -1109,38 +908,26 @@
/obj/structure/machinery/optable,
/obj/item/tank/anesthetic,
/obj/item/clothing/mask/breath/medical,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald/southwest,
/area/lv624/lazarus/crashed_ship)
"Dv" = (
/obj/structure/bed,
/obj/item/bedsheet/yellow,
/obj/item/toy/katana,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/west,
/area/lv624/lazarus/crashed_ship)
"Dw" = (
/obj/structure/bed,
/obj/item/bedsheet/rd,
/obj/effect/landmark/corpsespawner/colonist,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/east,
/area/lv624/lazarus/crashed_ship)
"DO" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/firstaid/regular,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald/north,
/area/lv624/lazarus/crashed_ship)
"DS" = (
/obj/structure/surface/table/woodentable,
@@ -1162,9 +949,7 @@
/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{
pixel_y = 9
},
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
+/turf/open/floor/almayer/orangecorner,
/area/lv624/lazarus/crashed_ship)
"DZ" = (
/turf/closed/shuttle/ert{
@@ -1178,19 +963,13 @@
/obj/structure/barricade/metal/wired{
icon_state = "metal_1"
},
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/lv624/lazarus/crashed_ship)
"Em" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner/east,
/area/lv624/lazarus/crashed_ship)
"Ev" = (
/turf/closed/shuttle/ert{
@@ -1205,9 +984,7 @@
/obj/structure/machinery/m56d_hmg{
rounds = 700
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"EB" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1217,29 +994,21 @@
/obj/item/attachable/attached_gun/flamer,
/obj/item/attachable/bayonet,
/obj/item/attachable/bayonet,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner/west,
/area/lv624/lazarus/crashed_ship)
"EO" = (
/obj/structure/machinery/light/small{
dir = 8;
pixel_x = -10
},
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/almayer/greencorner/west,
/area/lv624/lazarus/crashed_ship)
"Gf" = (
/obj/structure/barricade/metal/wired{
dir = 8;
icon_state = "metal_1"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"Gm" = (
/obj/structure/surface/rack,
@@ -1252,10 +1021,7 @@
dir = 1;
pixel_y = 20
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald/north,
/area/lv624/lazarus/crashed_ship)
"GQ" = (
/obj/effect/landmark/corpsespawner/engineer,
@@ -1267,24 +1033,17 @@
stat = 1
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"Hg" = (
/obj/structure/cargo_container/arious/rightmid,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"Hj" = (
/turf/closed/wall/rock/brown,
/area/lv624/ground/caves/south_west_caves)
"HN" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orangecorner"
- },
+/turf/open/floor/almayer/orangecorner/west,
/area/lv624/lazarus/crashed_ship)
"HR" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1302,22 +1061,13 @@
pixel_y = 11
},
/obj/item/clothing/glasses/welding,
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "orange"
- },
+/turf/open/floor/almayer/orange/southeast,
/area/lv624/lazarus/crashed_ship)
"Ik" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "greencorner"
- },
+/turf/open/floor/almayer/greencorner/west,
/area/lv624/lazarus/crashed_ship)
"IG" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "greencorner"
- },
+/turf/open/floor/almayer/greencorner/north,
/area/lv624/lazarus/crashed_ship)
"IH" = (
/obj/item/ammo_casing/shell{
@@ -1333,10 +1083,7 @@
pixel_y = 4
},
/obj/item/restraint/handcuffs,
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/southeast,
/area/lv624/lazarus/crashed_ship)
"JC" = (
/obj/item/stack/rods,
@@ -1348,9 +1095,7 @@
dir = 1;
pixel_y = 20
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"JO" = (
/obj/structure/machinery/light/small{
@@ -1358,10 +1103,7 @@
pixel_y = 20
},
/obj/structure/machinery/medical_pod/bodyscanner,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald/north,
/area/lv624/lazarus/crashed_ship)
"JW" = (
/obj/item/toy/beach_ball{
@@ -1396,28 +1138,19 @@
/obj/item/storage/backpack/general_belt{
pixel_y = 3
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"LD" = (
/obj/item/stack/rods,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/lazarus/crashed_ship)
"LG" = (
/obj/structure/girder/reinforced,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"LK" = (
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"LV" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -1442,36 +1175,24 @@
/area/lv624/lazarus/crashed_ship)
"Mw" = (
/obj/structure/machinery/cm_vending/sorted/medical/no_access,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald/northeast,
/area/lv624/lazarus/crashed_ship)
"Mz" = (
/obj/structure/machinery/light/small{
dir = 1;
pixel_y = 20
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner/east,
/area/lv624/lazarus/crashed_ship)
"MO" = (
/obj/structure/machinery/light/small{
dir = 1;
pixel_y = 20
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/almayer/blue/north,
/area/lv624/lazarus/crashed_ship)
"Nk" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "greencorner"
- },
+/turf/open/floor/almayer/greencorner/east,
/area/lv624/lazarus/crashed_ship)
"Ns" = (
/turf/closed/shuttle/ert{
@@ -1486,9 +1207,7 @@
dir = 1;
pixel_y = 20
},
-/turf/open/floor{
- icon_state = "whitebluefull"
- },
+/turf/open/floor/whitebluefull,
/area/lv624/lazarus/crashed_ship)
"NC" = (
/obj/structure/machinery/light/small{
@@ -1496,10 +1215,7 @@
pixel_x = 3;
pixel_y = 20
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/north,
/area/lv624/lazarus/crashed_ship)
"NI" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1524,18 +1240,12 @@
pixel_x = 18;
pixel_y = 6
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner/north,
/area/lv624/lazarus/crashed_ship)
"Oc" = (
/obj/effect/landmark/corpsespawner/colonist/random,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "emeraldcorner"
- },
+/turf/open/floor/almayer/emeraldcorner/west,
/area/lv624/lazarus/crashed_ship)
"Op" = (
/obj/structure/surface/rack,
@@ -1543,17 +1253,11 @@
pixel_y = 7
},
/obj/item/storage/backpack/general_belt,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald/north,
/area/lv624/lazarus/crashed_ship)
"Ot" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "emeraldcorner"
- },
+/turf/open/floor/almayer/emeraldcorner/east,
/area/lv624/lazarus/crashed_ship)
"OB" = (
/obj/item/ammo_casing/shell{
@@ -1563,19 +1267,14 @@
dir = 4;
faction_group = list("CLF")
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"OL" = (
/obj/structure/machinery/vending/cigarette/colony,
/turf/open/floor/plating/plating_catwalk,
/area/lv624/lazarus/crashed_ship)
"OS" = (
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald/southwest,
/area/lv624/lazarus/crashed_ship)
"OU" = (
/obj/structure/machinery/floodlight,
@@ -1590,35 +1289,25 @@
phone_id = "Engineering"
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
+/turf/open/floor/almayer/orangecorner,
/area/lv624/lazarus/crashed_ship)
"Pu" = (
/obj/effect/landmark/corpsespawner/clf,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"Px" = (
/obj/structure/machinery/autolathe,
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "orange"
- },
+/turf/open/floor/almayer/orange/northwest,
/area/lv624/lazarus/crashed_ship)
"PA" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
},
/obj/item/storage/firstaid/regular/empty,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/almayer/green/north,
/area/lv624/lazarus/crashed_ship)
"PR" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1628,24 +1317,15 @@
pixel_y = 4
},
/obj/item/storage/firstaid/regular,
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald/northwest,
/area/lv624/lazarus/crashed_ship)
"PY" = (
/obj/effect/landmark/survivor_spawner/lv624_crashed_clf,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner/east,
/area/lv624/lazarus/crashed_ship)
"Qc" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "emeraldcorner"
- },
+/turf/open/floor/almayer/emeraldcorner/west,
/area/lv624/lazarus/crashed_ship)
"Qd" = (
/turf/closed/shuttle/ert{
@@ -1653,9 +1333,7 @@
},
/area/lv624/lazarus/crashed_ship)
"Qf" = (
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"Qj" = (
/obj/structure/machinery/body_scanconsole,
@@ -1665,10 +1343,7 @@
phone_id = "Medical Bay";
pixel_y = 32
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald/north,
/area/lv624/lazarus/crashed_ship)
"Qp" = (
/obj/item/stack/rods,
@@ -1678,15 +1353,11 @@
/obj/structure/barricade/metal/wired{
icon_state = "metal_1"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"Qu" = (
/obj/structure/girder,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"QE" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{
@@ -1696,16 +1367,10 @@
/turf/open/floor/almayer,
/area/lv624/lazarus/crashed_ship)
"QQ" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner/west,
/area/lv624/lazarus/crashed_ship)
"Ro" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/ground/caves/south_west_caves)
"RS" = (
/turf/open/floor/almayer,
@@ -1726,9 +1391,7 @@
/obj/item/attachable/bayonet,
/obj/item/attachable/bayonet,
/obj/item/attachable/attached_gun/flamer,
-/turf/open/floor/almayer{
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner,
/area/lv624/lazarus/crashed_ship)
"Sx" = (
/obj/structure/largecrate/random/barrel/blue,
@@ -1744,19 +1407,14 @@
/area/lv624/lazarus/crashed_ship)
"SW" = (
/obj/item/weapon/gun/smg/fp9000,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"Tx" = (
/obj/structure/largecrate/supply/supplies/mre{
desc = "A supply crate containing fifty reposessed USCM MRE packets.";
name = "\improper CLF Supply MRE crate (x50)"
},
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/lv624/lazarus/crashed_ship)
"Tz" = (
/turf/closed/shuttle/ert{
@@ -1768,9 +1426,7 @@
dir = 8;
icon_state = "plasteel_closed_1"
},
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"TK" = (
/obj/item/stack/rods,
@@ -1800,10 +1456,7 @@
/obj/item/weapon/gun/rifle/mar40{
pixel_y = 6
},
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "orange"
- },
+/turf/open/floor/almayer/orange/northeast,
/area/lv624/lazarus/crashed_ship)
"TQ" = (
/turf/closed/shuttle/ert{
@@ -1811,10 +1464,7 @@
},
/area/lv624/lazarus/crashed_ship)
"Ud" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "emeraldcorner"
- },
+/turf/open/floor/almayer/emeraldcorner/west,
/area/lv624/lazarus/crashed_ship)
"Up" = (
/obj/structure/surface/table/almayer,
@@ -1822,15 +1472,11 @@
/obj/item/storage/bag/trash,
/obj/item/tool/screwdriver,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"Uv" = (
/obj/item/ammo_magazine/smg/fp9000,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"Uw" = (
/obj/structure/largecrate/random/barrel/blue,
@@ -1840,14 +1486,10 @@
/obj/structure/barricade/plasteel/wired{
icon_state = "plasteel_2"
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"UV" = (
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/ground/caves/south_west_caves)
"Vb" = (
/obj/item/stack/rods,
@@ -1857,10 +1499,7 @@
/area/lv624/lazarus/crashed_ship)
"Ve" = (
/obj/item/stack/rods,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/ground/caves/south_west_caves)
"Vh" = (
/obj/structure/surface/rack,
@@ -1871,17 +1510,12 @@
/obj/item/device/radio{
pixel_x = 3
},
-/turf/open/floor/almayer{
- icon_state = "green"
- },
+/turf/open/floor/almayer/green,
/area/lv624/lazarus/crashed_ship)
"Vj" = (
/obj/item/ammo_magazine/smg/fp9000,
/obj/item/ammo_magazine/smg/fp9000,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/lazarus/crashed_ship)
"Vs" = (
/obj/item/ammo_casing/shell{
@@ -1917,10 +1551,7 @@
pixel_x = -3;
pixel_y = 20
},
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "orangecorner"
- },
+/turf/open/floor/almayer/orangecorner/north,
/area/lv624/lazarus/crashed_ship)
"VX" = (
/turf/closed/shuttle/ert{
@@ -1929,9 +1560,7 @@
/area/lv624/lazarus/crashed_ship)
"Wa" = (
/obj/effect/landmark/survivor_spawner/lv624_crashed_clf,
-/turf/open/floor/almayer{
- icon_state = "green"
- },
+/turf/open/floor/almayer/green,
/area/lv624/lazarus/crashed_ship)
"Wg" = (
/obj/structure/surface/table/almayer,
@@ -1947,9 +1576,7 @@
/area/lv624/lazarus/crashed_ship)
"Wt" = (
/obj/structure/largecrate/supply/ammo/m56d,
-/turf/open/floor{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/platingdmg1,
/area/lv624/lazarus/crashed_ship)
"WH" = (
/turf/closed/shuttle/ert{
@@ -1958,15 +1585,10 @@
/area/lv624/lazarus/crashed_ship)
"WJ" = (
/obj/structure/largecrate/supply/supplies/flares,
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/lv624/lazarus/crashed_ship)
"Xm" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/ground/caves/south_west_caves)
"Xq" = (
/turf/closed/shuttle/ert{
@@ -1975,20 +1597,14 @@
/area/lv624/lazarus/crashed_ship)
"Xx" = (
/obj/item/stack/rods,
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"XG" = (
/obj/structure/machinery/light/small{
dir = 1;
pixel_y = 20
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/north,
/area/lv624/lazarus/crashed_ship)
"XM" = (
/obj/structure/transmitter/clf_net{
@@ -1996,10 +1612,7 @@
phone_id = "Cargo Bay";
pixel_y = 32
},
-/turf/open/floor{
- dir = 8;
- icon_state = "damaged3"
- },
+/turf/open/floor/damaged3/west,
/area/lv624/lazarus/crashed_ship)
"XX" = (
/turf/closed/shuttle/ert{
@@ -2008,26 +1621,19 @@
/area/lv624/lazarus/crashed_ship)
"Ya" = (
/obj/item/ammo_magazine/sniper/svd,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"Yh" = (
/obj/structure/barricade/metal/wired{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/crashed_ship)
"Yj" = (
/turf/template_noop,
/area/template_noop)
"Ys" = (
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/lv624/lazarus/crashed_ship)
"Yx" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -2039,9 +1645,7 @@
department = "CLF - Cell 42"
},
/obj/item/paper/prison_station/pirate_note/clfship,
-/turf/open/floor/almayer{
- icon_state = "emerald"
- },
+/turf/open/floor/almayer/emerald,
/area/lv624/lazarus/crashed_ship)
"YF" = (
/turf/closed/shuttle/ert{
@@ -2050,10 +1654,7 @@
},
/area/lv624/lazarus/crashed_ship)
"YX" = (
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/lv624/lazarus/crashed_ship)
"Zu" = (
/obj/structure/surface/rack,
@@ -2063,10 +1664,7 @@
dir = 1;
pixel_y = 20
},
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "bluecorner"
- },
+/turf/open/floor/almayer/bluecorner/east,
/area/lv624/lazarus/crashed_ship)
"ZN" = (
/obj/item/stack/sheet/metal{
@@ -2074,10 +1672,7 @@
pixel_x = 4;
pixel_y = 4
},
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/lv624/lazarus/crashed_ship)
"ZS" = (
/turf/closed/shuttle/ert{
@@ -2085,9 +1680,7 @@
},
/area/lv624/lazarus/crashed_ship)
"ZV" = (
-/turf/open/floor/almayer{
- icon_state = "greencorner"
- },
+/turf/open/floor/almayer/greencorner,
/area/lv624/lazarus/crashed_ship)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/standalone/corporatedome.dmm b/maps/map_files/LV624/standalone/corporatedome.dmm
index 9c3eddbac441..e4fb2114f273 100644
--- a/maps/map_files/LV624/standalone/corporatedome.dmm
+++ b/maps/map_files/LV624/standalone/corporatedome.dmm
@@ -4,25 +4,18 @@
name = "\improper Corporation Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"bm" = (
/obj/structure/surface/rack,
/obj/item/spacecash/c1000/counterfeit,
/obj/item/spacecash/c1000/counterfeit,
/obj/item/spacecash/c1000/counterfeit,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/corporate_dome)
"bA" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"bD" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -31,41 +24,30 @@
"bE" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/item/shard,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"cm" = (
/obj/structure/largecrate/random/case/small,
/obj/structure/barricade/sandbags{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"cn" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/largecrate/random/case/double,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/corporate_dome)
"cA" = (
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"cB" = (
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"cR" = (
/obj/structure/flora/jungle/vines/light_2,
@@ -77,10 +59,7 @@
pixel_y = 20
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/lazarus/landing_zones/lz2)
"dq" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -92,10 +71,7 @@
},
/obj/item/folder/red,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/corporate_dome)
"dH" = (
/obj/structure/machinery/blackbox_recorder,
@@ -114,22 +90,15 @@
"dO" = (
/obj/item/weapon/pole/fancy_cane,
/obj/item/shard,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/corporate_dome)
"dY" = (
-/turf/open/floor/plating{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning,
/area/lv624/lazarus/landing_zones/lz2)
"ev" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"eF" = (
/obj/structure/barricade/deployable{
@@ -137,17 +106,12 @@
health = 245;
icon_state = "folding_1"
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/corporate_dome)
"fm" = (
/obj/effect/vehicle_spawner/van/decrepit,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"fq" = (
/obj/effect/acid_hole,
@@ -155,23 +119,16 @@
/area/lv624/lazarus/corporate_dome)
"ft" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"fF" = (
/obj/item/ammo_casing/bullet{
icon_state = "casing_9_1"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"fH" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/lv624/lazarus/corporate_dome)
"gx" = (
/obj/structure/window/framed/colony/reinforced,
@@ -187,15 +144,10 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"ha" = (
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southwest,
/area/lv624/lazarus/corporate_dome)
"hc" = (
/obj/structure/window/reinforced{
@@ -214,32 +166,22 @@
/obj/item/clothing/under/marine/veteran/pmc/corporate{
pixel_y = -2
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/corporate_dome)
"he" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"hf" = (
/obj/structure/machinery/vending/snack,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"is" = (
/obj/item/stack/sheet/wood,
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/corporate_dome)
"iF" = (
/obj/structure/closet/crate/secure/weyland,
@@ -249,44 +191,29 @@
/obj/item/reagent_container/food/snacks/packaged_burrito,
/obj/item/reagent_container/food/snacks/packaged_burger,
/obj/item/reagent_container/food/snacks/packaged_burger,
-/turf/open/floor{
- dir = 8;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/west,
/area/lv624/lazarus/corporate_dome)
"iT" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southwest,
/area/lv624/lazarus/corporate_dome)
"jH" = (
/obj/structure/bookcase/manuals/medical,
/obj/item/book/manual/security_space_law,
/obj/item/book/manual/medical_diagnostics_manual,
/obj/item/book/manual/research_and_development,
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/east,
/area/lv624/lazarus/corporate_dome)
"jJ" = (
/obj/item/shard,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/west,
/area/lv624/lazarus/corporate_dome)
"kl" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/east,
/area/lv624/lazarus/corporate_dome)
"kU" = (
/obj/structure/machinery/door_control{
@@ -296,18 +223,13 @@
},
/obj/effect/landmark/corpsespawner/colonist,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning,
/area/lv624/lazarus/landing_zones/lz2)
"ln" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/corporate_dome)
"lG" = (
/obj/item/storage/firstaid/adv/empty,
@@ -317,48 +239,33 @@
phone_id = "Corporate Office";
pixel_y = 24
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northeast,
/area/lv624/lazarus/corporate_dome)
"lX" = (
/obj/structure/window_frame/colony/reinforced,
/obj/item/shard,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv624/lazarus/corporate_dome)
"mg" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"mi" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv624/lazarus/corporate_dome)
"mp" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/item/stack/rods,
/obj/structure/machinery/vending/coffee,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"ms" = (
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/corporate_dome)
"mw" = (
/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon,
/obj/item/ammo_casing/bullet,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"mK" = (
/obj/effect/spawner/gibspawner/human,
@@ -368,9 +275,7 @@
/obj/effect/landmark/corpsespawner/prisoner,
/obj/effect/decal/cleanable/blood,
/obj/item/clothing/glasses/sunglasses/blindfold,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"oj" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
@@ -378,9 +283,7 @@
name = "\improper Corporation Office";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"oq" = (
/obj/structure/window_frame/colony/reinforced,
@@ -406,17 +309,12 @@
/obj/item/clothing/head/manager{
pixel_y = 13
},
-/turf/open/floor{
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue,
/area/lv624/lazarus/corporate_dome)
"pR" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southeast,
/area/lv624/lazarus/corporate_dome)
"qn" = (
/obj/structure/machinery/light/small{
@@ -424,9 +322,7 @@
},
/obj/structure/closet/bodybag,
/obj/effect/landmark/corpsespawner/clf,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"qH" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -435,9 +331,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"qI" = (
/obj/structure/surface/table/reinforced/prison,
@@ -449,19 +343,14 @@
pixel_x = -7;
pixel_y = 15
},
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/corporate_dome)
"qJ" = (
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "\improper Storage Room"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"qM" = (
/obj/effect/decal/cleanable/blood/oil/streak,
@@ -470,9 +359,7 @@
name = "Garage Shutters";
pixel_x = -28
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"sc" = (
/obj/effect/decal/cleanable/blood,
@@ -480,29 +367,20 @@
dir = 1
},
/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl,
-/turf/open/floor{
- dir = 1;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/north,
/area/lv624/lazarus/corporate_dome)
"sm" = (
/obj/structure/machinery/vending/cigarette,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"sH" = (
/obj/structure/window_frame/colony/reinforced,
/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv624/lazarus/corporate_dome)
"sX" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2,
/area/lv624/lazarus/corporate_dome)
"vf" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -510,9 +388,7 @@
name = "\improper Corporate Liaison";
locked = 1
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"vC" = (
/obj/structure/prop/server_equipment/yutani_server/off,
@@ -520,9 +396,7 @@
/area/lv624/lazarus/corporate_dome)
"vW" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/lv624/lazarus/corporate_dome)
"wy" = (
/obj/structure/machinery/door/airlock/almayer/engineering/colony{
@@ -530,17 +404,12 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/lazarus/corporate_dome)
"wW" = (
/obj/structure/closet/bodybag,
/obj/effect/landmark/corpsespawner/security/marshal,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"xk" = (
/obj/structure/machinery/light{
@@ -552,28 +421,18 @@
pixel_y = 16
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/corporate_dome)
"xG" = (
/obj/structure/machinery/photocopier,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"yc" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/north,
/area/lv624/lazarus/landing_zones/lz2)
"yJ" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
+/turf/open/floor/plating/platingdmg2,
/area/lv624/lazarus/corporate_dome)
"zm" = (
/obj/structure/safe{
@@ -583,10 +442,7 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northeast,
/area/lv624/lazarus/corporate_dome)
"zs" = (
/obj/structure/window_frame/colony/reinforced,
@@ -604,16 +460,11 @@
pixel_x = -9;
pixel_y = 7
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/corporate_dome)
"zx" = (
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"zz" = (
/obj/structure/window_frame/colony/reinforced,
@@ -634,20 +485,14 @@
/area/lv624/lazarus/corporate_dome)
"AG" = (
/obj/structure/barricade/wooden,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"AT" = (
/obj/item/shard,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"Bh" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"BL" = (
/obj/structure/machinery/door/poddoor/almayer{
@@ -655,23 +500,17 @@
id = "garage_lv";
name = "\improper Garage"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"BZ" = (
/obj/item/ammo_casing/bullet{
icon_state = "cartridge_6_1"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"Ct" = (
/obj/structure/window_frame/colony/reinforced,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv624/lazarus/corporate_dome)
"CF" = (
/obj/structure/machinery/door/airlock/almayer/generic{
@@ -679,16 +518,11 @@
name = "\improper Corporate Liaison"
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"Df" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/west,
/area/lv624/lazarus/corporate_dome)
"Dn" = (
/obj/item/ammo_magazine/smg/mp5,
@@ -703,10 +537,7 @@
/obj/structure/closet/crate/secure/weyland,
/obj/item/weapon/gun/smg/mp5,
/obj/item/weapon/gun/smg/mp5,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/east,
/area/lv624/lazarus/corporate_dome)
"Dp" = (
/obj/effect/decal/cleanable/blood,
@@ -717,9 +548,7 @@
pixel_x = 5;
pixel_y = 15
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"DU" = (
/obj/structure/surface/table/reinforced/prison,
@@ -727,20 +556,14 @@
pixel_y = 6
},
/obj/item/storage/toolbox/electrical,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/corporate_dome)
"Ez" = (
/obj/structure/machinery/light_construct{
dir = 4
},
/obj/item/stack/cable_coil,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southeast,
/area/lv624/lazarus/corporate_dome)
"EM" = (
/obj/structure/flora/jungle/vines/light_3,
@@ -753,22 +576,14 @@
pixel_x = 5;
pixel_y = 6
},
-/turf/open/floor{
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner,
/area/lv624/lazarus/corporate_dome)
"Fk" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/north,
/area/lv624/lazarus/landing_zones/lz2)
"Fl" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/north,
/area/lv624/lazarus/corporate_dome)
"Fu" = (
/obj/structure/surface/table/reinforced/prison,
@@ -783,18 +598,12 @@
"FP" = (
/obj/item/shard,
/obj/item/stack/sheet/wood,
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/southeast,
/area/lv624/lazarus/corporate_dome)
"FZ" = (
/obj/structure/machinery/faxmachine/corporate/liaison,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/corporate_dome)
"Gi" = (
/obj/structure/prop/server_equipment/yutani_server/broken,
@@ -804,54 +613,37 @@
/obj/item/ammo_casing/bullet{
icon_state = "cartridge_10_1"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"Gt" = (
/obj/structure/machinery/light_construct/small{
dir = 8
},
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
+/turf/open/floor/plating/platingdmg1,
/area/lv624/lazarus/corporate_dome)
"GM" = (
-/turf/open/floor{
- dir = 1;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/north,
/area/lv624/lazarus/corporate_dome)
"GV" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/west,
/area/lv624/lazarus/corporate_dome)
"Hn" = (
/obj/item/ammo_casing/bullet{
icon_state = "cartridge_9_1"
},
/obj/effect/decal/cleanable/blood/gibs/xeno,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"Ho" = (
/obj/structure/largecrate/random/barrel/green,
-/turf/open/floor{
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner,
/area/lv624/lazarus/corporate_dome)
"Hv" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/fancy/cigar,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northwest,
/area/lv624/lazarus/corporate_dome)
"HK" = (
/obj/structure/machinery/power/apc{
@@ -864,10 +656,7 @@
},
/obj/item/tool/screwdriver,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/corporate_dome)
"Ii" = (
/turf/open/gm/dirt,
@@ -878,9 +667,7 @@
/obj/item/stack/rods{
amount = 15
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"Jg" = (
/obj/structure/machinery/light,
@@ -892,34 +679,25 @@
name = "\improper Corporation Dome";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"JL" = (
/obj/effect/decal/cleanable/blood,
/obj/item/prop/colony/usedbandage{
dir = 10
},
-/turf/open/floor{
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow,
/area/lv624/lazarus/corporate_dome)
"Kv" = (
/obj/effect/decal/cleanable/blood,
/turf/open/gm/dirt,
/area/lv624/ground/colony/west_tcomms_road)
"KC" = (
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/lv624/lazarus/corporate_dome)
"KG" = (
/obj/effect/decal/cleanable/blood/xeno,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"Le" = (
/obj/effect/acid_hole{
@@ -932,9 +710,7 @@
/obj/effect/decal/cleanable/blood/oil/streak,
/obj/item/shard,
/obj/structure/machinery/vending/cola,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"Li" = (
/obj/structure/window_frame/colony/reinforced,
@@ -946,30 +722,20 @@
/obj/structure/barricade/plasteel/metal{
health = 250
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"LZ" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/corporate_dome)
"Me" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/lazarus/landing_zones/lz2)
"Ml" = (
/obj/structure/machinery/atm{
name = "Weyland-Yutani Automatic Teller Machine";
pixel_y = 30
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/corporate_dome)
"OH" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
@@ -980,9 +746,7 @@
/obj/item/stack/sheet/plasteel/med_small_stack,
/obj/item/stack/sandbags/small_stack,
/obj/item/device/motiondetector/hacked/pmc,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"Pa" = (
/obj/structure/closet/toolcloset,
@@ -992,10 +756,7 @@
/obj/item/ammo_casing/bullet{
icon_state = "casing_9_1"
},
-/turf/open/floor{
- dir = 4;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/east,
/area/lv624/lazarus/corporate_dome)
"Qi" = (
/obj/structure/flora/jungle/vines/light_1,
@@ -1022,26 +783,19 @@
/obj/item/clothing/under/marine/veteran/pmc{
pixel_y = -2
},
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/corporate_dome)
"RD" = (
/obj/item/ammo_casing/bullet{
icon_state = "casing_1_1"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"RF" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"RN" = (
/obj/structure/machinery/light{
@@ -1049,16 +803,11 @@
},
/obj/structure/surface/table/reinforced/prison,
/obj/structure/prop/server_equipment/laptop/on,
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/corporate_dome)
"Sb" = (
/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"SO" = (
/obj/structure/flora/jungle/vines/heavy,
@@ -1072,42 +821,28 @@
pixel_y = 8
},
/obj/item/frame/table/wood/fancy,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteyellow"
- },
+/turf/open/floor/whiteyellow/northeast,
/area/lv624/lazarus/corporate_dome)
"TF" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/largecrate/supply/medicine,
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/corporate_dome)
"Uo" = (
/obj/item/shard,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/lazarus/corporate_dome)
"Uz" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"UF" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 6;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southeast,
/area/lv624/lazarus/corporate_dome)
"Vj" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1116,31 +851,22 @@
pixel_y = 12
},
/obj/item/trash/cigbutt,
-/turf/open/floor{
- dir = 4;
- icon_state = "whitebluecorner"
- },
+/turf/open/floor/whitebluecorner/east,
/area/lv624/lazarus/corporate_dome)
"Wx" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner,
/area/lv624/lazarus/corporate_dome)
"Xc" = (
/obj/structure/barricade/metal{
dir = 4;
health = 200
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"Xf" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
+/turf/open/floor/plating/platingdmg3,
/area/lv624/lazarus/corporate_dome)
"Xp" = (
/obj/structure/window/reinforced{
@@ -1161,10 +887,7 @@
/obj/item/clothing/under/colonist{
pixel_y = -2
},
-/turf/open/floor{
- dir = 10;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/southwest,
/area/lv624/lazarus/corporate_dome)
"Xt" = (
/turf/template_noop,
@@ -1173,38 +896,27 @@
/obj/item/ammo_casing/bullet{
icon_state = "cartridge_3_1"
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"XC" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/largecrate/random/barrel/white,
-/turf/open/floor{
- dir = 8;
- icon_state = "whiteyellowcorner"
- },
+/turf/open/floor/whiteyellowcorner/west,
/area/lv624/lazarus/corporate_dome)
"XG" = (
/turf/closed/wall/r_wall,
/area/lv624/lazarus/corporate_dome)
"Ye" = (
/obj/structure/largecrate/supply/supplies/water,
-/turf/open/floor{
- dir = 5;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northeast,
/area/lv624/lazarus/corporate_dome)
"Yg" = (
/obj/item/moneybag,
/obj/structure/surface/rack,
/obj/item/coin/diamond,
-/turf/open/floor{
- dir = 9;
- icon_state = "whiteblue"
- },
+/turf/open/floor/whiteblue/northwest,
/area/lv624/lazarus/corporate_dome)
"Yv" = (
/obj/item/frame/table/reinforced,
@@ -1217,22 +929,16 @@
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/scientist,
/obj/item/restraint/handcuffs,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/lazarus/corporate_dome)
"ZO" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/item/stack/sheet/wood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
"ZT" = (
/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/lv624/lazarus/corporate_dome)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/standalone/laststand.dmm b/maps/map_files/LV624/standalone/laststand.dmm
index 43201f92cb17..3b678e2c09a6 100644
--- a/maps/map_files/LV624/standalone/laststand.dmm
+++ b/maps/map_files/LV624/standalone/laststand.dmm
@@ -15,9 +15,7 @@
/obj/structure/largecrate/supply/ammo/shotgun{
pixel_y = 8
},
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv624/ground/caves/north_central_caves)
"ah" = (
/turf/closed/wall/wood,
@@ -30,9 +28,7 @@
/turf/open/floor/wood,
/area/lv624/ground/caves/north_central_caves)
"ak" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv624/ground/caves/north_central_caves)
"al" = (
/obj/structure/bed/alien,
@@ -51,9 +47,7 @@
},
/obj/item/tool/kitchen/knife/butcher,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
+/turf/open/floor/wood/wood_broken4,
/area/lv624/ground/caves/north_central_caves)
"ao" = (
/obj/structure/surface/table/woodentable/poor,
@@ -70,9 +64,7 @@
/area/lv624/ground/caves/north_central_caves)
"ap" = (
/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/wood/wood_broken3,
/area/lv624/ground/caves/north_central_caves)
"aq" = (
/obj/structure/closet/crate,
@@ -93,9 +85,7 @@
pixel_x = 6;
pixel_y = 3
},
-/turf/open/floor/carpet{
- icon_state = "bcarpet08"
- },
+/turf/open/floor/carpet/bcarpet08,
/area/lv624/ground/caves/north_central_caves)
"au" = (
/obj/structure/surface/table/woodentable/poor,
@@ -106,15 +96,11 @@
/turf/open/floor/wood,
/area/lv624/ground/caves/north_central_caves)
"aw" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/ground/caves/north_central_caves)
"ay" = (
/obj/structure/closet/cabinet,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv624/ground/caves/north_central_caves)
"aA" = (
/obj/structure/barricade/sandbags/wired,
@@ -126,9 +112,7 @@
/turf/open/floor/wood,
/area/lv624/ground/caves/north_central_caves)
"aC" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
+/turf/open/floor/wood/wood_broken4,
/area/lv624/ground/caves/north_central_caves)
"aD" = (
/turf/closed/wall/strata_ice/jungle,
@@ -183,9 +167,7 @@
/turf/open/floor/wood,
/area/lv624/ground/caves/north_central_caves)
"aP" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/wood/wood_broken3,
/area/lv624/ground/caves/north_central_caves)
"aQ" = (
/obj/structure/surface/table/woodentable/poor,
@@ -195,23 +177,17 @@
pixel_x = 4;
pixel_y = 4
},
-/turf/open/floor/carpet{
- icon_state = "bcarpet01"
- },
+/turf/open/floor/carpet/bcarpet01,
/area/lv624/ground/caves/north_central_caves)
"aR" = (
/obj/structure/surface/table/woodentable/poor,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/carpet{
- icon_state = "bcarpet02"
- },
+/turf/open/floor/carpet/bcarpet02,
/area/lv624/ground/caves/north_central_caves)
"aS" = (
/obj/structure/surface/table/woodentable/poor,
/obj/item/tool/candle,
-/turf/open/floor/carpet{
- icon_state = "bcarpet03"
- },
+/turf/open/floor/carpet/bcarpet03,
/area/lv624/ground/caves/north_central_caves)
"aU" = (
/obj/effect/decal/cleanable/blood,
@@ -224,9 +200,7 @@
/area/lv624/ground/caves/north_central_caves)
"aW" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/ground/caves/north_central_caves)
"aZ" = (
/obj/structure/window_frame/wood,
@@ -243,9 +217,7 @@
/area/lv624/ground/caves/north_central_caves)
"bc" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/ground/caves/north_central_caves)
"bd" = (
/obj/structure/closet/crate,
@@ -270,16 +242,12 @@
"jP" = (
/obj/item/weapon/gun/rifle/m41aMK1,
/obj/item/ammo_magazine/rifle/m41aMK1,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/ground/caves/north_central_caves)
"jQ" = (
/obj/effect/landmark/crap_item,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/wood/wood_broken3,
/area/lv624/ground/caves/north_central_caves)
"lJ" = (
/obj/structure/curtain/red,
@@ -291,9 +259,7 @@
pixel_x = 2;
pixel_y = 3
},
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/ground/caves/north_central_caves)
"mu" = (
/obj/structure/surface/table/woodentable/poor,
@@ -317,9 +283,7 @@
pixel_x = 1;
pixel_y = 9
},
-/turf/open/floor/carpet{
- icon_state = "bcarpet09"
- },
+/turf/open/floor/carpet/bcarpet09,
/area/lv624/ground/caves/north_central_caves)
"pH" = (
/obj/structure/surface/table/woodentable/poor,
@@ -355,9 +319,7 @@
"EY" = (
/obj/structure/surface/table/woodentable/poor,
/obj/item/ammo_magazine/shotgun/buckshot,
-/turf/open/floor/carpet{
- icon_state = "bcarpet07"
- },
+/turf/open/floor/carpet/bcarpet07,
/area/lv624/ground/caves/north_central_caves)
"Ic" = (
/obj/structure/bed/chair/wood/normal{
@@ -372,31 +334,23 @@
/area/lv624/ground/caves/north_central_caves)
"Ms" = (
/obj/structure/barricade/sandbags/wired,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/wood/wood_broken3,
/area/lv624/ground/caves/north_central_caves)
"ND" = (
/obj/structure/surface/table/woodentable/poor,
/obj/item/device/flashlight/lantern,
/obj/structure/barricade/sandbags/wired,
/obj/item/weapon/baseballbat/metal,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
+/turf/open/floor/wood/wood_broken6,
/area/lv624/ground/caves/north_central_caves)
"OT" = (
/obj/structure/kitchenspike,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv624/ground/caves/north_central_caves)
"Td" = (
/obj/structure/barricade/sandbags/wired,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
+/turf/open/floor/wood/wood_broken,
/area/lv624/ground/caves/north_central_caves)
"UM" = (
/obj/structure/bed/alien,
diff --git a/maps/map_files/LV624/standalone/lv-bridge-east.dmm b/maps/map_files/LV624/standalone/lv-bridge-east.dmm
index 62df758ef0df..09f938cadc91 100644
--- a/maps/map_files/LV624/standalone/lv-bridge-east.dmm
+++ b/maps/map_files/LV624/standalone/lv-bridge-east.dmm
@@ -5,25 +5,16 @@
"ac" = (
/obj/effect/landmark/lv624/fog_blocker,
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/lv624/ground/barrens/central_barrens)
"ad" = (
/obj/effect/landmark/lv624/fog_blocker,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/north,
/area/lv624/ground/barrens/central_barrens)
"ae" = (
/obj/effect/landmark/lv624/fog_blocker,
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/lv624/ground/barrens/central_barrens)
"af" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -50,16 +41,10 @@
"al" = (
/obj/effect/landmark/lv624/fog_blocker,
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/central_river)
"am" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/ground/river/central_river)
"ao" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -80,10 +65,7 @@
"au" = (
/obj/effect/landmark/lv624/fog_blocker,
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/central_river)
"av" = (
/obj/effect/landmark/crap_item,
@@ -128,10 +110,7 @@
/area/lv624/ground/river/central_river)
"aO" = (
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/lv624/ground/river/central_river)
"aQ" = (
/obj/structure/flora/bush/ausbushes/reedbush,
@@ -148,17 +127,11 @@
/turf/open/gm/dirt,
/area/lv624/ground/river/central_river)
"aW" = (
-/turf/open/floor/plating{
- dir = 2;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning,
/area/lv624/ground/river/central_river)
"aX" = (
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/lv624/ground/river/central_river)
"aZ" = (
/turf/open/gm/coast/beachcorner/south_east,
@@ -254,10 +227,7 @@
/area/lv624/ground/river/central_river)
"Bv" = (
/obj/effect/landmark/good_item,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/ground/river/central_river)
"BA" = (
/obj/structure/flora/bush/ausbushes/genericbush,
@@ -272,10 +242,7 @@
/area/lv624/ground/jungle/north_jungle)
"GU" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/ground/river/central_river)
"Hi" = (
/obj/structure/flora/jungle/plantbot1,
@@ -313,10 +280,7 @@
/area/lv624/ground/river/central_river)
"XY" = (
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/central_river)
"YA" = (
/obj/structure/flora/jungle/plantbot1,
@@ -324,10 +288,7 @@
/area/lv624/ground/river/central_river)
"YL" = (
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/central_river)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm b/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm
index 1b9b8a9408b8..d715a9e30fcf 100644
--- a/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm
+++ b/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm
@@ -4,52 +4,31 @@
/area/lv624/ground/river/central_river)
"ab" = (
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 9;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northwest,
/area/lv624/ground/river/central_river)
"ac" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/north,
/area/lv624/ground/river/central_river)
"ad" = (
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 5;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/northeast,
/area/lv624/ground/river/central_river)
"ae" = (
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 8;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/west,
/area/lv624/ground/river/central_river)
"af" = (
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 4;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/east,
/area/lv624/ground/river/central_river)
"ag" = (
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 10;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southwest,
/area/lv624/ground/river/central_river)
"ah" = (
/obj/structure/fence,
-/turf/open/floor/plating{
- dir = 6;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/warnplate/southeast,
/area/lv624/ground/river/central_river)
"ai" = (
/turf/open/gm/dirt,
@@ -62,20 +41,14 @@
/area/lv624/ground/jungle/north_jungle)
"al" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/ground/river/central_river)
"dC" = (
/turf/open/gm/coast/beachcorner2/south_east,
/area/lv624/ground/river/central_river)
"iW" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/ground/river/central_river)
"jr" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -97,10 +70,7 @@
/turf/open/gm/coast/south,
/area/lv624/ground/river/central_river)
"lY" = (
-/turf/open/floor/plating{
- dir = 2;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning,
/area/lv624/ground/river/central_river)
"mq" = (
/obj/structure/machinery/colony_floodlight,
@@ -129,10 +99,7 @@
"qL" = (
/obj/effect/spawner/gibspawner/human,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/ground/river/central_river)
"xB" = (
/obj/effect/landmark/crap_item,
@@ -146,16 +113,10 @@
/area/lv624/ground/jungle/north_jungle)
"BW" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/ground/river/central_river)
"DX" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/ground/river/central_river)
"EG" = (
/obj/effect/landmark/lv624/fog_blocker,
@@ -167,10 +128,7 @@
"Uh" = (
/obj/effect/landmark/corpsespawner/miner,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/plating/asteroidfloor/north,
/area/lv624/ground/river/central_river)
"VN" = (
/turf/open/gm/grass/grass1,
@@ -179,10 +137,7 @@
/turf/open/gm/dirtgrassborder/south,
/area/lv624/ground/jungle/north_east_jungle)
"Yw" = (
-/turf/open/floor/plating{
- dir = 1;
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/plating/asteroidwarning/north,
/area/lv624/ground/river/central_river)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/standalone/rightsidepass.dmm b/maps/map_files/LV624/standalone/rightsidepass.dmm
index 944be98dfbe7..e7ce416997f0 100644
--- a/maps/map_files/LV624/standalone/rightsidepass.dmm
+++ b/maps/map_files/LV624/standalone/rightsidepass.dmm
@@ -96,25 +96,19 @@
/area/lv624/ground/jungle/east_jungle)
"tn" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
-/turf/open/gm/dirt{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirt/desert_dug,
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"tJ" = (
/turf/open/gm/coast/beachcorner/north_east,
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"tN" = (
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"tT" = (
/turf/open/gm/grass/grass1,
/area/lv624/ground/jungle/east_jungle)
"ww" = (
-/turf/open/gm/dirt{
- icon_state = "desert2"
- },
+/turf/open/gm/dirt/desert2,
/area/lv624/ground/river/east_river)
"zT" = (
/obj/structure/flora/bush/ausbushes/ppflowers,
@@ -202,9 +196,7 @@
/turf/open/gm/dirt,
/area/lv624/ground/river/east_river)
"PZ" = (
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/lv624/ground/jungle/east_jungle)
"Qb" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -225,9 +217,7 @@
/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east,
/area/lv624/ground/jungle/east_jungle)
"Wq" = (
-/turf/open/gm/dirt{
- icon_state = "desert2"
- },
+/turf/open/gm/dirt/desert2,
/area/lv624/ground/barrens/south_eastern_jungle_barrens)
"WK" = (
/obj/structure/flora/bush/ausbushes/reedbush,
diff --git a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm
index 770d6a93473e..724344cd0743 100644
--- a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm
+++ b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm
@@ -244,12 +244,6 @@
/obj/structure/flora/jungle/vines/light_2,
/turf/closed/wall/strata_ice/jungle,
/area/lv624/ground/jungle/south_west_jungle)
-"Wp" = (
-/obj/structure/flora/grass/tallgrass/jungle/corner{
- dir = 3
- },
-/turf/open/gm/grass/grass1,
-/area/lv624/ground/jungle/south_west_jungle)
"WQ" = (
/obj/structure/flora/grass/tallgrass/jungle/corner{
dir = 8
@@ -415,7 +409,7 @@ LW
DF
oD
oD
-Wp
+cP
uj
uj
WQ
diff --git a/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm b/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm
index 90b9f293b9f8..f31ebd3d2995 100644
--- a/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm
+++ b/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm
@@ -12,16 +12,11 @@
pixel_x = 4
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"d" = (
/obj/item/tool/shovel,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"e" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -31,9 +26,7 @@
name = "\improper Armory Vault";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"i" = (
/obj/structure/surface/rack,
@@ -54,10 +47,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"j" = (
/turf/closed/wall,
@@ -74,10 +64,7 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"p" = (
/turf/open/gm/dirt,
@@ -95,29 +82,20 @@
/obj/item/ammo_magazine/smg/fp9000,
/obj/item/ammo_magazine/smg/fp9000,
/obj/item/ammo_magazine/smg/fp9000,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"t" = (
/obj/item/tool/pickaxe,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"v" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"x" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/smg/fp9000,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"y" = (
/obj/structure/surface/table/reinforced/prison,
@@ -128,10 +106,7 @@
/obj/item/explosive/grenade/high_explosive/stick{
pixel_x = -6
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"z" = (
/obj/structure/surface/rack,
@@ -142,10 +117,7 @@
pixel_y = -3
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"B" = (
/obj/structure/closet/crate,
@@ -156,9 +128,7 @@
/obj/item/ammo_magazine/rifle/mar40,
/obj/item/ammo_magazine/rifle/mar40/extended,
/obj/item/ammo_magazine/rifle/mar40/extended,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"F" = (
/obj/structure/surface/table/reinforced/prison,
@@ -166,9 +136,7 @@
/obj/item/weapon/gun/smg/nailgun,
/obj/item/ammo_box/magazine/nailgun,
/obj/item/ammo_box/magazine/nailgun,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"G" = (
/obj/structure/surface/rack,
@@ -178,10 +146,7 @@
/obj/item/weapon/gun/smg/mp27{
pixel_y = 6
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"I" = (
/obj/structure/machinery/light{
@@ -200,27 +165,20 @@
/obj/item/ammo_magazine/smg/mac15{
pixel_x = 6
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"K" = (
/obj/effect/landmark/crap_item,
/turf/open/gm/dirt,
/area/lv624/ground/barrens/north_east_barrens)
"N" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"O" = (
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"P" = (
/obj/structure/surface/rack,
@@ -228,20 +186,14 @@
/obj/item/weapon/gun/smg/mac15{
pixel_y = 6
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"Q" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/diamond{
amount = 2
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"T" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -250,18 +202,13 @@
name = "\improper Armory Vault";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"U" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/rifle/lmg,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"V" = (
/obj/structure/surface/rack,
@@ -271,10 +218,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"X" = (
/obj/effect/alien/weeds/node,
@@ -290,10 +234,7 @@
},
/obj/effect/landmark/crap_item,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
(1,1,1) = {"
diff --git a/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm b/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm
index c76947ab37e8..c8363f1720ab 100644
--- a/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm
+++ b/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm
@@ -8,18 +8,14 @@
amount = 50
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"e" = (
/obj/structure/machinery/light{
dir = 4
},
/obj/structure/largecrate/supply,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"f" = (
/turf/closed/wall,
@@ -29,9 +25,7 @@
/obj/item/stack/sheet/mineral/diamond{
amount = 2
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"l" = (
/obj/effect/landmark/crap_item,
@@ -52,9 +46,7 @@
/obj/item/ammo_magazine/smg/fp9000,
/obj/item/ammo_magazine/smg/fp9000,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"p" = (
/obj/structure/surface/rack,
@@ -62,16 +54,11 @@
amount = 20
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"q" = (
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"r" = (
/obj/effect/landmark/crap_item,
@@ -81,16 +68,12 @@
/obj/structure/surface/rack,
/obj/item/tool/pickaxe,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"t" = (
/obj/structure/surface/rack,
/obj/item/tool/shovel,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"y" = (
/obj/structure/surface/rack,
@@ -103,43 +86,30 @@
amount = 30
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"C" = (
/obj/structure/surface/rack,
/obj/item/stack/sheet/mineral/platinum{
pixel_x = -6
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"D" = (
/obj/structure/largecrate/supply,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"G" = (
/obj/structure/surface/rack,
/obj/item/weapon/gun/rifle/lmg,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"H" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"I" = (
/obj/structure/surface/rack,
@@ -149,10 +119,7 @@
/obj/item/weapon/gun/rifle/mar40{
pixel_y = -3
},
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"M" = (
/obj/structure/surface/rack,
@@ -160,9 +127,7 @@
amount = 5
},
/obj/item/tool/pickaxe/diamond,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"N" = (
/obj/effect/alien/weeds/node,
@@ -180,10 +145,7 @@
pixel_y = 6
},
/obj/effect/landmark/crap_item,
-/turf/open/floor{
- dir = 8;
- icon_state = "vault"
- },
+/turf/open/floor/vault2/west,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"U" = (
/obj/structure/closet/crate,
@@ -194,9 +156,7 @@
/obj/item/ammo_magazine/rifle/mar40,
/obj/item/ammo_magazine/rifle/mar40/extended,
/obj/item/ammo_magazine/rifle/mar40/extended,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"V" = (
/obj/structure/machinery/light{
@@ -208,9 +168,7 @@
amount = 5
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"X" = (
/obj/structure/machinery/door/airlock/almayer/secure/colony{
@@ -219,14 +177,10 @@
name = "Mining Storage";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
"Z" = (
-/turf/open/floor{
- icon_state = "dark"
- },
+/turf/open/floor/dark,
/area/lv624/ground/barrens/north_east_barrens/ceiling)
(1,1,1) = {"
diff --git a/maps/map_files/New_Varadero/New_Varadero.dmm b/maps/map_files/New_Varadero/New_Varadero.dmm
index 6e4bfd4c3d1e..42e94f253587 100644
--- a/maps/map_files/New_Varadero/New_Varadero.dmm
+++ b/maps/map_files/New_Varadero/New_Varadero.dmm
@@ -17,9 +17,7 @@
"aaA" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/bed/sofa/vert/grey/top,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/medical)
"aaG" = (
/obj/effect/landmark/lv624/fog_blocker{
@@ -32,18 +30,12 @@
dir = 4
},
/mob/living/simple_animal/mouse,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/varadero/interior/medical)
"abl" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/radio,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southwest,
/area/varadero/interior/security)
"abu" = (
/obj/item/stack/sheet/wood,
@@ -69,9 +61,7 @@
/obj/structure/barricade/handrail/wire{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/pontoon_beach)
"abL" = (
/obj/item/device/flashlight/lamp/tripod,
@@ -81,10 +71,7 @@
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/box/beakers,
/obj/item/reagent_container/glass/beaker/bluespace,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/varadero/interior/medical)
"adw" = (
/turf/closed/wall/r_wall,
@@ -98,10 +85,7 @@
/area/varadero/interior/research)
"adR" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/varadero/interior/electrical)
"aer" = (
/obj/structure/platform_decoration/kutjevo{
@@ -118,10 +102,7 @@
/obj/structure/machinery/light,
/obj/structure/closet/l3closet/scientist,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"afx" = (
/obj/structure/machinery/light{
@@ -132,16 +113,11 @@
pixel_x = 16;
pixel_y = 24
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/west,
/area/varadero/interior/hall_SE)
"afz" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/hall_N)
"afR" = (
/obj/effect/decal/warning_stripes{
@@ -150,9 +126,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/varadero/interior/cargo)
"agi" = (
/obj/structure/window/reinforced{
@@ -184,18 +158,13 @@
/area/varadero/interior/hall_SE)
"agn" = (
/obj/structure/window_frame/colony,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/eastbeach)
"agJ" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/storage/box/trackimp,
/obj/item/device/binoculars,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southeast,
/area/varadero/interior/security)
"agM" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -229,27 +198,20 @@
pixel_x = 10;
pixel_y = -4
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"ahK" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"aiR" = (
/obj/structure/machinery/door/airlock/almayer/security{
name = "\improper Underground Security Evidence Storage";
req_access_txt = "100"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"akd" = (
/obj/structure/closet/secure_closet/freezer/fridge,
@@ -257,22 +219,16 @@
pixel_y = 24
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/varadero/interior/cargo)
"akf" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance)
"akg" = (
/obj/effect/overlay/palmtree_r,
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/varadero/exterior/monsoon)
"akk" = (
/obj/structure/surface/table/woodentable,
@@ -294,18 +250,14 @@
/area/varadero/interior_protected/vessel)
"akO" = (
/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/mess)
"ald" = (
/obj/structure/pipes/unary/freezer{
dir = 8;
icon_state = "freezer_1"
},
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/varadero/interior/medical)
"alh" = (
/obj/structure/filingcabinet{
@@ -345,27 +297,21 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/research)
"alL" = (
/obj/structure/prop/structure_lattice{
dir = 1;
health = 300
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/caves)
"alM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/machinery/sleep_console,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/medical)
"ami" = (
/obj/structure/prop/dam/crane/damaged{
@@ -376,10 +322,7 @@
/area/varadero/interior_protected/caves/digsite)
"ani" = (
/obj/structure/machinery/vending/security,
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/northwest,
/area/varadero/interior/technical_storage)
"anu" = (
/obj/structure/disposalpipe/junction{
@@ -389,9 +332,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_N)
"anA" = (
/obj/effect/decal/cleanable/dirt,
@@ -401,9 +342,7 @@
/area/varadero/interior/beach_bar)
"aoi" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/research)
"aoo" = (
/obj/structure/prop/structure_lattice{
@@ -412,9 +351,7 @@
icon_state = "book-5";
name = "book case"
},
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/medical)
"aoC" = (
/turf/closed/wall/rock/brown,
@@ -440,10 +377,7 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach/lz)
"apG" = (
/obj/structure/blocker/invisible_wall/water,
@@ -452,9 +386,7 @@
/area/varadero/exterior/farocean)
"apH" = (
/obj/item/tool/wrench,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/comms2)
"apI" = (
/obj/structure/machinery/computer/cameras/telescreen{
@@ -465,28 +397,20 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/varadero/interior/security)
"apY" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/hall_SE)
"aqb" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/east,
/area/varadero/interior/security)
"aqh" = (
/obj/structure/flora/bush/desert{
@@ -498,16 +422,11 @@
pixel_x = -17;
pixel_y = -19
},
-/turf/open/gm/river/ocean{
- name = "deep ocean";
- default_name = "deep ocean"
- },
+/turf/open/gm/river/ocean/deep_ocean,
/area/varadero/exterior/pontoon_beach)
"aqk" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"aqq" = (
/obj/structure/prop/rock/brown,
@@ -521,26 +440,18 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"ara" = (
/turf/open/floor/wood,
/area/varadero/interior/court)
"arg" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull/west,
/area/varadero/interior/hall_N)
"arC" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/interior/comms1)
"arF" = (
/obj/structure/closet/crate/trashcart,
@@ -555,27 +466,18 @@
/obj/structure/bed/chair/hunter{
dir = 1
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"asx" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz1_near)
"atz" = (
/obj/structure/machinery/vending/cigarette/colony,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/southeast,
/area/varadero/interior/administration)
"atM" = (
/obj/structure/prop/mech/drill,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"aud" = (
/obj/structure/sink{
@@ -585,19 +487,14 @@
pixel_y = 28
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/varadero/interior/toilets)
"auE" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull/west,
/area/varadero/interior/hall_NW)
"avl" = (
/obj/structure/disposalpipe/junction{
@@ -605,16 +502,11 @@
icon_state = "pipe-j2"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"avy" = (
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/varadero/interior/administration)
"avD" = (
/turf/closed/wall/huntership,
@@ -634,16 +526,12 @@
/area/varadero/exterior/comms4)
"awr" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers,
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/varadero/exterior/lz1_near)
"awu" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/research)
"awJ" = (
/turf/open/gm/coast/beachcorner/south_east,
@@ -653,18 +541,14 @@
/obj/structure/machinery/storm_siren{
pixel_y = 5
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/comms2)
"axs" = (
/obj/structure/machinery/storm_siren{
dir = 8;
pixel_x = 3
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/comms2)
"axv" = (
/obj/structure/platform/kutjevo/smooth{
@@ -674,10 +558,7 @@
/obj/structure/barricade/handrail/wire{
layer = 3.1
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pool)
"axY" = (
/obj/structure/bed/chair/comfy/lime,
@@ -689,17 +570,11 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/administration)
"ayx" = (
-/obj/structure/prop/power_transformer{
- dir = 0
- },
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/obj/structure/prop/power_transformer,
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz2_near)
"ayF" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -707,10 +582,7 @@
/area/varadero/exterior/lz2_near)
"azh" = (
/obj/item/clothing/shoes/swimmingfins,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/east,
/area/varadero/interior/maintenance)
"azr" = (
/obj/structure/platform/kutjevo/smooth{
@@ -724,32 +596,22 @@
icon_state = "hr_kutjevo";
name = "support struts"
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pool)
"azv" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"azw" = (
/obj/structure/largecrate/random/mini/wooden,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"azK" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/northwest,
/area/varadero/interior/administration)
"aAg" = (
/obj/structure/machinery/disposal,
@@ -763,9 +625,7 @@
dir = 1
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/mess)
"aAr" = (
/obj/structure/platform/kutjevo/smooth{
@@ -783,19 +643,13 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/farocean)
"aAC" = (
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pool)
"aAX" = (
/obj/docking_port/stationary/marine_dropship/lz2{
@@ -807,29 +661,21 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"aBp" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/varadero/interior/cargo)
"aBz" = (
/obj/item/stack/cable_coil,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/eastbeach)
"aBB" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"aBK" = (
/obj/structure/flora/bush/ausbushes/var3/brflowers{
@@ -845,9 +691,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/disposals)
"aBY" = (
/obj/structure/barricade/handrail{
@@ -861,10 +705,7 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach/lz)
"aCd" = (
/obj/structure/barricade/handrail/wire{
@@ -874,10 +715,7 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river/ocean{
- name = "deep ocean";
- default_name = "deep ocean"
- },
+/turf/open/gm/river/ocean/deep_ocean,
/area/varadero/exterior/comms4)
"aCl" = (
/obj/structure/machinery/door/airlock/strata/autoname{
@@ -887,22 +725,15 @@
locked = 1;
name = "\improper Engine Room"
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"aCo" = (
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz1_near)
"aCz" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"aCH" = (
/obj/structure/bed/chair/wheelchair{
@@ -912,9 +743,7 @@
name = "Dr. O's fantastic self rolling wheelie chair";
pixel_x = 7
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"aCW" = (
/obj/effect/overlay/palmtree_r{
@@ -926,19 +755,14 @@
/obj/structure/barricade/handrail/wire{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz2_near)
"aCY" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"aDu" = (
/obj/structure/machinery/power/apc{
@@ -946,18 +770,13 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/cargo)
"aDF" = (
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/varadero/interior/cargo)
"aDQ" = (
/obj/structure/filingcabinet{
@@ -979,16 +798,12 @@
/area/varadero/interior/administration)
"aDZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/electrical)
"aEf" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz1_near)
"aEg" = (
/obj/effect/decal/cleanable/blood{
@@ -1000,16 +815,11 @@
/obj/structure/prop/ice_colony/ground_wire{
dir = 8
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/varadero/interior_protected/vessel)
"aEi" = (
/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/medical)
"aED" = (
/obj/structure/prop/invuln/lattice_prop{
@@ -1017,19 +827,14 @@
pixel_x = 16;
pixel_y = -8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_SE)
"aEQ" = (
/obj/structure/shuttle/engine/router{
dir = 4;
unacidable = 0
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/varadero/interior_protected/vessel)
"aFg" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1052,24 +857,18 @@
pixel_x = 6;
pixel_y = 14
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/laundry)
"aFt" = (
/turf/closed/wall,
/area/varadero/interior_protected/maintenance/south)
"aFu" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/cargo)
"aFK" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/electrical)
"aFM" = (
/obj/structure/machinery/door/window/brigdoor/westleft{
@@ -1080,19 +879,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"aFX" = (
/obj/effect/decal/warning_stripes/asteroid{
dir = 1;
icon_state = "warning_s"
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "greencorners"
- },
+/turf/open/floor/shiva/greencorners/east,
/area/varadero/interior/hall_SE)
"aGx" = (
/obj/structure/machinery/door/airlock/almayer/maint{
@@ -1112,10 +906,7 @@
dir = 4;
pixel_x = -24
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/west,
/area/varadero/interior/security)
"aHs" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1131,9 +922,7 @@
/turf/open/floor/wood,
/area/varadero/interior/research)
"aHu" = (
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/varadero/exterior/lz1_near)
"aHw" = (
/obj/structure/prop/structure_lattice{
@@ -1145,16 +934,11 @@
layer = 3.1;
pixel_y = 10
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz2_near)
"aHy" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"aHM" = (
/obj/structure/machinery/firealarm{
@@ -1166,17 +950,13 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"aIq" = (
/obj/structure/barricade/handrail/wire{
layer = 3.1
},
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/varadero/interior/electrical)
"aJc" = (
/obj/structure/pipes/vents/pump{
@@ -1195,9 +975,7 @@
pixel_x = 5;
pixel_y = 7
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/research)
"aJp" = (
/obj/effect/decal/cleanable/blood{
@@ -1215,9 +993,7 @@
/obj/structure/prop/ice_colony/ground_wire{
dir = 1
},
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"aJD" = (
/obj/structure/platform/kutjevo/smooth{
@@ -1240,10 +1016,7 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"aJF" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -1257,9 +1030,7 @@
/area/varadero/interior/hall_SE)
"aJI" = (
/obj/effect/landmark/ert_spawns/groundside_xeno,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/research)
"aJP" = (
/obj/structure/bed/chair/wood/normal,
@@ -1267,10 +1038,7 @@
/area/varadero/interior/library)
"aJW" = (
/obj/structure/largecrate/random/case,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/east,
/area/varadero/interior/research)
"aKk" = (
/obj/structure/machinery/light/small{
@@ -1281,9 +1049,7 @@
pixel_x = -5;
pixel_y = 6
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"aKJ" = (
/obj/item/tool/warning_cone,
@@ -1295,27 +1061,18 @@
/turf/open/gm/dirt,
/area/varadero/exterior/eastbeach)
"aLc" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/east,
/area/varadero/interior/disposals)
"aLl" = (
-/turf/open/floor/shiva{
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred,
/area/varadero/interior/medical)
"aLn" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"aMp" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/medical)
"aMC" = (
/turf/closed/wall/r_wall/unmeltable,
@@ -1326,9 +1083,7 @@
dir = 1
},
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"aOg" = (
/turf/open/gm/grass/grass1/weedable,
@@ -1349,26 +1104,19 @@
/area/varadero/interior/hall_SE)
"aPQ" = (
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/research)
"aPU" = (
/obj/structure/bed/chair{
icon_state = "chair_alt"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/north,
/area/varadero/interior/administration)
"aQc" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance)
"aQq" = (
/obj/structure/window/framed/colony/reinforced/hull,
@@ -1379,41 +1127,28 @@
dir = 1
},
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/varadero/interior/security)
"aQG" = (
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northwest,
/area/varadero/interior/morgue)
"aQN" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz2_near)
"aQR" = (
/obj/structure/pipes/standard/manifold/hidden/green,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"aQY" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/item/tool/screwdriver,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/comms2)
"aRr" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_NW)
"aRL" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1429,9 +1164,7 @@
pixel_x = 2;
pixel_y = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"aSe" = (
/obj/item/reagent_container/food/snacks/birthdaycakeslice,
@@ -1455,15 +1188,11 @@
/area/varadero/interior/maintenance/north)
"aTg" = (
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/varadero/exterior/lz1_near)
"aTh" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/medical)
"aTC" = (
/obj/item/reagent_container/food/snacks/eat_bar{
@@ -1474,25 +1203,18 @@
pixel_x = -5;
pixel_y = -9
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"aTS" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/cargo)
"aTY" = (
/obj/structure/prop/rock/brown,
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"aUA" = (
/obj/structure/prop/rock/brown,
@@ -1518,9 +1240,7 @@
/obj/structure/mirror{
pixel_x = -32
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"aVs" = (
/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{
@@ -1529,10 +1249,7 @@
name = "Pontoon South Door";
openspeed = 17
},
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate/north,
/area/varadero/interior/maintenance/north)
"aVt" = (
/obj/structure/prop/structure_lattice{
@@ -1544,9 +1261,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/varadero/interior/library)
"aVF" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1558,10 +1273,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/north,
/area/varadero/interior/technical_storage)
"aVQ" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited,
@@ -1569,16 +1281,10 @@
/area/varadero/interior/hall_N)
"aWA" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/east,
/area/varadero/interior/research)
"aWP" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "darkgreencorners2"
- },
+/turf/open/floor/darkgreencorners2/west,
/area/varadero/interior/hall_SE)
"aXb" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -1588,9 +1294,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"aXn" = (
/obj/structure/prop/rock/brown,
@@ -1600,25 +1304,18 @@
/obj/effect/landmark/lv624/fog_blocker{
time_to_dispel = 25000
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/eastocean)
"aXt" = (
/obj/structure/catwalk,
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/gm/river/desert/deep{
- base_river_slowdown = 0
- },
+/turf/open/gm/river/desert/deep/no_slowdown,
/area/varadero/interior/maintenance/north)
"aXz" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/varadero/interior/maintenance)
"aXA" = (
/obj/structure/largecrate/supply/medicine/iv,
@@ -1634,10 +1331,7 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/interior/caves/north_research)
"aZb" = (
/obj/structure/bedsheetbin{
@@ -1647,9 +1341,7 @@
pixel_x = -2;
pixel_y = 5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/bunks)
"aZq" = (
/obj/structure/window/reinforced{
@@ -1671,10 +1363,7 @@
pixel_y = 13
},
/obj/structure/machinery/light,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/varadero/interior/medical)
"aZv" = (
/obj/structure/bed/chair{
@@ -1684,28 +1373,21 @@
/turf/open/floor/wood,
/area/varadero/interior/hall_SE)
"aZX" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/varadero/interior/comms3)
"baa" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"bag" = (
/obj/structure/machinery/light/small{
dir = 4
},
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/research)
"bah" = (
/obj/structure/platform/kutjevo/smooth{
@@ -1715,10 +1397,7 @@
/obj/structure/barricade/handrail/wire{
layer = 3.1
},
-/turf/open/gm/river/ocean{
- name = "deep ocean";
- default_name = "deep ocean"
- },
+/turf/open/gm/river/ocean/deep_ocean,
/area/varadero/exterior/pontoon_beach/lz)
"bak" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -1726,9 +1405,7 @@
pixel_x = -14;
pixel_y = 13
},
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/varadero/interior/maintenance)
"baH" = (
/obj/structure/surface/rack,
@@ -1736,18 +1413,13 @@
/obj/item/weapon/gun/shotgun/pump{
pixel_y = -5
},
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southwest,
/area/varadero/interior/security)
"baN" = (
/obj/structure/closet/crate/secure,
/obj/effect/landmark/objective_landmark/close,
/obj/item/trash/wy_chips_pepper,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/cargo)
"bbt" = (
/obj/effect/landmark/hunter_primary,
@@ -1763,10 +1435,7 @@
/area/varadero/exterior/lz2_near)
"bbW" = (
/obj/item/clothing/under/shorts/black,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/varadero/interior/maintenance)
"bcg" = (
/obj/structure/surface/rack,
@@ -1775,17 +1444,11 @@
health = 80
},
/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"bcD" = (
/obj/item/tool/wet_sign,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/eastbeach)
"bdc" = (
/obj/item/stack/tile/plasteel{
@@ -1793,9 +1456,7 @@
pixel_x = 17;
pixel_y = 16
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"bdH" = (
/turf/open/gm/coast/beachcorner/north_east,
@@ -1808,9 +1469,7 @@
name = "\improper Underground Security Custodial Closet";
req_access_txt = "100"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"ben" = (
/obj/structure/filingcabinet{
@@ -1839,16 +1498,12 @@
},
/obj/structure/closet/crate,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"beE" = (
/obj/item/device/taperecorder,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/security)
"beK" = (
/turf/open/gm/coast/beachcorner/north_east,
@@ -1859,10 +1514,7 @@
},
/obj/structure/filingcabinet/security,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/varadero/interior/security)
"bfg" = (
/obj/structure/surface/table,
@@ -1882,34 +1534,23 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance)
"bft" = (
/obj/structure/surface/rack,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance)
"bfX" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/effect/decal/cleanable/blood,
/obj/effect/landmark/corpsespawner/colonist,
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/varadero/exterior/eastbeach)
"bgh" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "warnplate"
- },
+/turf/open/floor/plating/icefloor/warnplate,
/area/varadero/interior/maintenance/north)
"bgl" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/electrical)
"bgE" = (
/turf/closed/wall/r_wall,
@@ -1936,9 +1577,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_N)
"bio" = (
/obj/structure/surface/table/woodentable,
@@ -1952,9 +1591,7 @@
pixel_x = -4;
pixel_y = 12
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/morgue)
"biF" = (
/obj/structure/surface/table/reinforced/prison,
@@ -1965,10 +1602,7 @@
pixel_y = 8
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"biS" = (
/obj/structure/platform/kutjevo/smooth{
@@ -1990,17 +1624,11 @@
icon_state = "pottedplant_22";
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"bjA" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/north,
/area/varadero/interior/administration)
"bjC" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -2009,9 +1637,7 @@
"bjP" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/records)
"bko" = (
/obj/effect/landmark/lv624/fog_blocker{
@@ -2026,9 +1652,7 @@
name = "Underground Morgue";
req_access_txt = "100"
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/varadero/interior/morgue)
"bkG" = (
/obj/structure/surface/table/reinforced/prison,
@@ -2039,9 +1663,7 @@
/obj/structure/machinery/computer/communications{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/medical)
"bkM" = (
/turf/closed/wall,
@@ -2057,10 +1679,7 @@
health = 80
},
/obj/item/tool/surgery/hemostat/predatorhemostat,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"bmI" = (
/obj/effect/landmark/xeno_hive_spawn,
@@ -2072,9 +1691,7 @@
/obj/effect/decal/warning_stripes/asteroid{
icon_state = "warning_s"
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"bnc" = (
/obj/structure/surface/table,
@@ -2089,23 +1706,16 @@
pixel_x = 8;
pixel_y = -8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"bnf" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"bng" = (
/obj/structure/surface/rack,
/obj/item/tool/pickaxe,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"bnm" = (
/turf/closed/wall/rock/brown,
@@ -2119,9 +1729,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"bnH" = (
/obj/structure/prop/dam/truck/damaged,
@@ -2129,34 +1737,25 @@
/area/varadero/exterior/lz2_near)
"boI" = (
/obj/structure/prop/almayer/computers/sensor_computer2,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/varadero/interior/dock_control)
"boV" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/west,
/area/varadero/interior/maintenance)
"bpH" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/cargo)
"bpI" = (
/obj/effect/landmark/hunter_secondary,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_N)
"bpT" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2180,16 +1779,11 @@
pixel_x = -15;
pixel_y = 2
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"brM" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/administration)
"brT" = (
/turf/closed/wall/huntership/destructible,
@@ -2205,9 +1799,7 @@
/area/varadero/interior_protected/caves/digsite)
"bst" = (
/obj/structure/closet/crate/miningcar,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"bte" = (
/obj/structure/closet/crate/radiation,
@@ -2246,16 +1838,11 @@
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"buH" = (
/obj/structure/machinery/light,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull/west,
/area/varadero/interior/hall_SE)
"bvE" = (
/obj/structure/machinery/power/apc{
@@ -2263,9 +1850,7 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/research)
"bvF" = (
/obj/structure/flora/bush/desert{
@@ -2282,26 +1867,17 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"bwz" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/east,
/area/varadero/interior/hall_NW)
"bwP" = (
/obj/structure/machinery/landinglight/ds2{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"bxc" = (
/obj/structure/surface/table/reinforced/prison,
@@ -2310,16 +1886,11 @@
},
/obj/effect/spawner/random/powercell,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"bxx" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"bye" = (
/obj/structure/stairs/perspective{
@@ -2327,10 +1898,7 @@
dir = 5;
icon_state = "p_stair_full"
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/varadero/interior_protected/vessel)
"byl" = (
/obj/structure/surface/table/reinforced/prison,
@@ -2357,9 +1925,7 @@
dir = 8;
pixel_x = 24
},
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/security)
"bys" = (
/obj/structure/platform_decoration/kutjevo{
@@ -2374,10 +1940,7 @@
/area/varadero/interior_protected/caves/digsite)
"byC" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
-/turf/open/gm/river/ocean{
- name = "deep ocean";
- default_name = "deep ocean"
- },
+/turf/open/gm/river/ocean/deep_ocean,
/area/varadero/exterior/eastocean)
"byF" = (
/obj/structure/platform/kutjevo/smooth{
@@ -2389,31 +1952,20 @@
/area/varadero/exterior/farocean)
"byU" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/research)
"bzf" = (
/obj/structure/machinery/light/small,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/north,
/area/varadero/interior/maintenance)
"bzn" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/cargo)
"bzq" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/varadero/interior/medical)
"bzz" = (
/obj/structure/platform/kutjevo/smooth{
@@ -2431,9 +1983,7 @@
/obj/structure/flora/bush/ausbushes/pointybush{
pixel_y = 11
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/cargo)
"bAE" = (
/obj/structure/window/reinforced{
@@ -2472,9 +2022,7 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/records)
"bBt" = (
/obj/structure/cable/heavyduty{
@@ -2495,24 +2043,17 @@
"bBV" = (
/obj/structure/blocker/invisible_wall/water,
/obj/item/lightstick/variant/planted,
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/farocean)
"bCi" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/research)
"bCA" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"bCM" = (
/obj/structure/platform_decoration/kutjevo,
@@ -2527,26 +2068,18 @@
icon_state = "hr_kutjevo";
name = "support struts"
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach/lz)
"bDs" = (
/obj/item/weapon/gun/flare{
current_mag = null
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz2_near)
"bEj" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/junction,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_N)
"bEX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2555,9 +2088,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/comms3)
"bEY" = (
/obj/structure/platform/kutjevo/smooth{
@@ -2579,9 +2110,7 @@
pixel_y = 17
},
/obj/structure/machinery/recharger,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/medical)
"bFo" = (
/obj/structure/surface/table,
@@ -2595,18 +2124,14 @@
pixel_x = 3;
pixel_y = 17
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"bFV" = (
/obj/structure/machinery/light/small{
dir = 4
},
/obj/structure/surface/rack,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/cargo)
"bGe" = (
/obj/item/stool{
@@ -2614,20 +2139,13 @@
pixel_y = -6
},
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"bGy" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/varadero/interior/hall_SE)
"bGz" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/wood/wood_broken3,
/area/varadero/interior/hall_SE)
"bGC" = (
/obj/structure/sign/safety/restrictedarea,
@@ -2643,9 +2161,7 @@
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/varadero/interior/toilets)
"bIt" = (
/turf/closed/wall,
@@ -2662,10 +2178,7 @@
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/interior/comms1)
"bJH" = (
/obj/item/tool/warning_cone,
@@ -2683,10 +2196,7 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"bLl" = (
/obj/structure/platform/kutjevo/smooth{
@@ -2709,10 +2219,7 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"bLp" = (
/obj/structure/bed/chair/comfy/orange{
@@ -2721,9 +2228,7 @@
/turf/open/floor/wood,
/area/varadero/interior/administration)
"bLy" = (
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/varadero/interior/mess)
"bLB" = (
/obj/structure/window/framed/colony,
@@ -2737,16 +2242,10 @@
/obj/structure/prop/ice_colony/tiger_rug{
icon_state = "HotlineAlt"
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/varadero/interior/administration)
"bLN" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/varadero/interior/comms3)
"bLV" = (
/obj/item/lightstick/variant/planted,
@@ -2764,9 +2263,7 @@
/area/varadero/interior/records)
"bMk" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/cargo)
"bMx" = (
/obj/structure/largecrate/random/case/double,
@@ -2775,53 +2272,38 @@
"bMG" = (
/obj/structure/closet/crate/ammo/alt,
/obj/item/trash/ceramic_plate,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/cargo)
"bMV" = (
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/varadero/interior/hall_SE)
"bNi" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/varadero/interior/hall_SE)
"bNt" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/item/clothing/suit/storage/bomber,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/bunks)
"bNC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/varadero/interior/administration)
"bNN" = (
/obj/structure/machinery/landinglight/ds2/delayone{
dir = 4
},
/obj/item/prop/almayer/comp_open,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"bOO" = (
/obj/structure/machinery/disposal,
@@ -2829,9 +2311,7 @@
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_N)
"bPe" = (
/obj/structure/platform/kutjevo/smooth{
@@ -2840,41 +2320,28 @@
layer = 2.99
},
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/interior_protected/caves)
"bPk" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"bPl" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/east,
/area/varadero/interior/hall_NW)
"bPm" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/northeast,
/area/varadero/interior/hall_SE)
"bPx" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"bPF" = (
/obj/structure/window/reinforced{
@@ -2889,10 +2356,7 @@
color = "#6b675e"
},
/obj/structure/window/reinforced,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/varadero/interior_protected/vessel)
"bPG" = (
/obj/structure/surface/table/woodentable,
@@ -2901,26 +2365,19 @@
pixel_x = 1;
pixel_y = 13
},
-/turf/open/floor/prison/chapel_carpet{
- dir = 1;
- icon_state = "doubleside"
- },
+/turf/open/floor/prison/chapel_carpet/doubleside/north,
/area/varadero/interior/chapel)
"bPL" = (
/obj/item/restraint/handcuffs{
pixel_x = 2;
pixel_y = 16
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"bQa" = (
/obj/structure/catwalk,
/obj/structure/largecrate/random,
-/turf/open/gm/river/desert/deep{
- base_river_slowdown = 0
- },
+/turf/open/gm/river/desert/deep/no_slowdown,
/area/varadero/interior/maintenance/north)
"bQH" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
@@ -2928,9 +2385,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/administration)
"bRg" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2943,17 +2398,13 @@
/area/varadero/interior/disposals)
"bRo" = (
/obj/structure/reagent_dispensers/beerkeg/alt_dark,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/varadero/interior/cargo)
"bRQ" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/administration)
"bRS" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -2964,9 +2415,7 @@
"bSd" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/research)
"bSj" = (
/obj/structure/platform_decoration/kutjevo{
@@ -2988,9 +2437,7 @@
/obj/structure/machinery/power/apc{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/comms2)
"bSQ" = (
/obj/item/tool/warning_cone,
@@ -3007,17 +2454,12 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/interior/caves/north_research)
"bTm" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/item/weapon/gun/rifle/m4ra,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/bunks)
"bTA" = (
/obj/structure/disposalpipe/segment,
@@ -3028,35 +2470,24 @@
/obj/structure/surface/table/reinforced/prison{
color = "#6b675e"
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/varadero/interior_protected/vessel)
"bUg" = (
/obj/structure/machinery/microwave{
pixel_y = 9
},
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/varadero/interior/security)
"bUK" = (
/obj/structure/machinery/storm_siren{
dir = 8;
pixel_x = 3
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/west,
/area/varadero/interior/hall_N)
"bUP" = (
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/monsoon)
"bUR" = (
/obj/structure/surface/table/reinforced/prison,
@@ -3065,10 +2496,7 @@
pixel_y = 4
},
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"bUZ" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -3089,23 +2517,16 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/medical)
"bVu" = (
/obj/structure/pipes/standard/simple/visible{
dir = 5
},
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/varadero/interior/medical)
"bVI" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/west,
/area/varadero/interior/court)
"bVQ" = (
/obj/structure/stairs/perspective{
@@ -3121,9 +2542,7 @@
/turf/open/gm/dirt,
/area/varadero/exterior/lz1_near)
"bVS" = (
-/turf/open/gm/dirt{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirt/desert_dug,
/area/varadero/exterior/lz1_near)
"bVX" = (
/turf/open/gm/coast/beachcorner2/south_west,
@@ -3133,9 +2552,7 @@
/obj/item/stack/sheet/plasteel/medium_stack,
/obj/item/trash/crushed_cup,
/obj/item/prop/magazine/dirty/torn,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/cargo)
"bYO" = (
/obj/item/tool/shovel/spade,
@@ -3156,9 +2573,7 @@
req_access = null;
req_one_access = null
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/maintenance/research)
"bZv" = (
/obj/structure/machinery/storm_siren{
@@ -3168,16 +2583,10 @@
/area/varadero/exterior/lz1_near)
"bZA" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/interior/maintenance/north)
"bZI" = (
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/varadero/interior/hall_SE)
"bZU" = (
/turf/open/floor/plating/icefloor,
@@ -3200,16 +2609,11 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"cba" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"cbe" = (
/obj/structure/filingcabinet{
@@ -3224,23 +2628,16 @@
pixel_x = -11;
pixel_y = 20
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance)
"cbg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/electrical)
"cbq" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/varadero/interior/electrical)
"cbv" = (
/obj/structure/surface/table,
@@ -3252,17 +2649,11 @@
pixel_x = 4;
pixel_y = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/research)
"cbI" = (
-/obj/item/cpr_dummy{
- dir = 0
- },
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/obj/item/cpr_dummy,
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/medical)
"cbK" = (
/obj/structure/desertdam/decals/road_edge{
@@ -3289,29 +2680,21 @@
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"cdb" = (
/turf/closed/wall,
/area/varadero/interior/maintenance/security)
"cdc" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/varadero/interior_protected/vessel)
"cdy" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/varadero/interior/security)
"cdL" = (
/obj/effect/landmark/corpsespawner/colonist/burst,
@@ -3322,10 +2705,7 @@
dir = 4;
pixel_x = -3
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/varadero/interior/cargo)
"cdS" = (
/obj/effect/decal/cleanable/blood,
@@ -3339,9 +2719,7 @@
/area/varadero/exterior/eastbeach)
"ceo" = (
/obj/structure/bed/chair,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/laundry)
"ceJ" = (
/obj/item/storage/fancy/candle_box,
@@ -3353,33 +2731,24 @@
pixel_x = -3;
pixel_y = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz1_near)
"cfs" = (
/obj/structure/machinery/power/smes/buildable{
name = "colony distribution SMES"
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"cgb" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/technical_storage)
"cgj" = (
/obj/item/stack/sheet/metal/med_small_stack,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/comms3)
"cgr" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -3392,19 +2761,14 @@
/obj/structure/machinery/floodlight/landing/floor{
pixel_x = -1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"che" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/comms3)
"chr" = (
/obj/structure/bed/stool{
@@ -3422,9 +2786,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"chU" = (
/obj/structure/shuttle/engine/propulsion/burst{
@@ -3437,56 +2799,40 @@
/turf/open/gm/dirt,
/area/varadero/exterior/lz2_near)
"cic" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/laundry)
"cil" = (
/obj/structure/barricade/handrail/wire{
layer = 3.1
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/varadero/interior/electrical)
"cit" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"ciu" = (
/obj/structure/largecrate/random/case/small,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/hall_SE)
"ciH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_N)
"ciR" = (
/obj/structure/machinery/vending/coffee,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/east,
/area/varadero/interior/hall_SE)
"cjf" = (
/obj/item/reagent_container/glass/bucket{
pixel_x = 8;
pixel_y = -6
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"cjU" = (
/obj/structure/barricade/handrail/wire{
@@ -3494,33 +2840,23 @@
},
/obj/structure/closet/secure_closet/scientist,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/west,
/area/varadero/interior/research)
"ckx" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/medical)
"ckz" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/southeast,
/area/varadero/interior/research)
"ckF" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
/obj/effect/landmark/corpsespawner/doctor,
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/medical)
"ckG" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -3528,10 +2864,7 @@
/turf/open/auto_turf/sand_white/layer1,
/area/varadero/interior_protected/maintenance/south)
"ckI" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/varadero/interior/hall_N)
"ckM" = (
/obj/effect/landmark/monkey_spawn,
@@ -3542,9 +2875,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/research)
"clA" = (
/obj/effect/landmark/objective_landmark/close,
@@ -3552,9 +2883,7 @@
/area/varadero/interior/dock_control)
"clD" = (
/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/bunks)
"clG" = (
/obj/structure/platform/kutjevo/smooth{
@@ -3567,10 +2896,7 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/interior_protected/caves)
"clX" = (
/turf/closed/wall/r_wall,
@@ -3582,10 +2908,7 @@
pixel_y = 13
},
/obj/structure/prop/invuln/pipe_water,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/east,
/area/varadero/interior/maintenance)
"cmk" = (
/obj/structure/barricade/handrail/wire{
@@ -3600,10 +2923,7 @@
/obj/item/reagent_container/food/drinks/cans/souto/lime,
/obj/item/reagent_container/food/drinks/cans/souto/peach,
/obj/item/reagent_container/food/drinks/bottle/sake,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"cmr" = (
/obj/item/stack/tile/plasteel{
@@ -3617,10 +2937,7 @@
pixel_y = 7
},
/obj/structure/surface/table,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"cne" = (
/obj/structure/platform/kutjevo/smooth{
@@ -3631,10 +2948,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/interior/comms1)
"cnv" = (
/obj/structure/closet/crate/ammo/alt,
@@ -3648,30 +2962,20 @@
pixel_y = 4;
pixel_x = -5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/cargo)
"cnW" = (
/obj/structure/surface/table,
/obj/structure/prop/server_equipment/laptop/on,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/varadero/interior/hall_NW)
"coc" = (
/obj/structure/tunnel/maint_tunnel,
-/turf/open/floor/shiva{
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue,
/area/varadero/interior/technical_storage)
"cog" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/varadero/interior/cargo)
"coz" = (
/obj/structure/sign/safety/bulkhead_door,
@@ -3679,32 +2983,23 @@
/area/varadero/interior/maintenance/north)
"coQ" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"coX" = (
/obj/structure/barricade/handrail/wire{
layer = 3.1
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/eastbeach)
"cpA" = (
/obj/structure/morgue,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/morgue)
"cpC" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 9
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"cpF" = (
/obj/structure/barricade/handrail{
@@ -3713,10 +3008,7 @@
icon_state = "hr_kutjevo";
name = "support struts"
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"cql" = (
/obj/structure/platform/kutjevo/smooth{
@@ -3740,10 +3032,7 @@
dir = 4
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/west,
/area/varadero/interior/research)
"cqC" = (
/obj/structure/extinguisher_cabinet,
@@ -3762,27 +3051,19 @@
pixel_y = 24;
start_charge = 0
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"csb" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/bed/sofa/vert/grey/bot,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/medical)
"csr" = (
/obj/structure/prop/ice_colony/flamingo,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/caves)
"cto" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"ctw" = (
/obj/structure/flora/pottedplant{
@@ -3793,10 +3074,7 @@
dir = 4;
pixel_x = -3
},
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/southwest,
/area/varadero/interior/administration)
"cty" = (
/turf/closed/wall/rock/brown,
@@ -3817,10 +3095,7 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"cuc" = (
/obj/structure/barricade/handrail/wire{
@@ -3830,9 +3105,7 @@
/obj/item/stack/sheet/glass{
amount = 30
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/electrical)
"cud" = (
/obj/structure/machinery/power/apc{
@@ -3840,17 +3113,12 @@
pixel_x = -24;
start_charge = 0
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/varadero/interior/electrical)
"cug" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_SE)
"cur" = (
/obj/structure/surface/rack,
@@ -3862,10 +3130,7 @@
dir = 8;
pixel_x = 3
},
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northeast,
/area/varadero/interior/security)
"cvW" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
@@ -3877,18 +3142,13 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/west,
/area/varadero/interior/mess)
"cvX" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"cwe" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -3901,19 +3161,14 @@
pixel_x = -10;
pixel_y = 4
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/varadero/interior/hall_SE)
"cwk" = (
/obj/structure/largecrate/random,
/obj/structure/machinery/storm_siren{
pixel_y = 5
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/caves/east)
"cwp" = (
/obj/structure/window/reinforced{
@@ -3928,10 +3183,7 @@
color = "#6b675e"
},
/obj/item/clothing/suit/armor/riot,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/varadero/interior_protected/vessel)
"cwE" = (
/turf/closed/wall/rock/brown,
@@ -3952,10 +3204,7 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/interior/caves/north_research)
"cyT" = (
/obj/structure/machinery/light/small,
@@ -3964,29 +3213,19 @@
pixel_x = -16;
pixel_y = -8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/research)
"czA" = (
/obj/item/stack/sheet/wood,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/pontoon_beach)
"czG" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/varadero/interior_protected/vessel)
"cAw" = (
/obj/structure/closet/secure_closet/cargotech,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/varadero/interior/cargo)
"cAx" = (
/obj/structure/largecrate/random,
@@ -3994,9 +3233,7 @@
/area/varadero/interior/records)
"cAX" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/medical)
"cBq" = (
/obj/structure/flora/pottedplant{
@@ -4011,10 +3248,7 @@
/area/varadero/interior/caves/north_research)
"cBW" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/east,
/area/varadero/interior/medical)
"cCk" = (
/obj/structure/machinery/storm_siren{
@@ -4026,28 +3260,21 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"cDm" = (
/obj/item/reagent_container/food/drinks/cans/beer{
pixel_x = -9;
pixel_y = 12
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz1_near)
"cDr" = (
/obj/structure/closet/secure_closet/medical1{
req_access_txt = "100"
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/varadero/interior/medical)
"cEm" = (
/obj/structure/platform/kutjevo/smooth{
@@ -4058,10 +3285,7 @@
/obj/structure/barricade/handrail/wire{
layer = 3.1
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach/lz)
"cEu" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4073,16 +3297,11 @@
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/north,
/area/varadero/interior/hall_SE)
"cFe" = (
/obj/structure/closet/firecloset/full,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"cFh" = (
/obj/effect/decal/cleanable/dirt,
@@ -4090,9 +3309,7 @@
/area/varadero/exterior/eastocean)
"cFu" = (
/obj/structure/xenoautopsy/tank/larva,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"cFw" = (
/turf/open/gm/dirt,
@@ -4100,52 +3317,27 @@
"cFz" = (
/turf/open/gm/coast/beachcorner2/north_west,
/area/varadero/interior/caves/east)
-"cFK" = (
-/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{
- id = "undergroundhangarsouth";
- unacidable = 1;
- name = "Pontoon South Door";
- openspeed = 17
- },
-/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{
- id = "undergroundhangarsouth";
- unacidable = 1;
- name = "Pontoon South Door";
- openspeed = 17
- },
-/turf/open/floor/plating/icefloor{
- dir = 1;
- icon_state = "warnplate"
- },
-/area/varadero/interior/maintenance/north)
"cFZ" = (
/obj/structure/cargo_container/kelland/left,
/turf/open/gm/dirt,
/area/varadero/exterior/lz2_near)
"cGc" = (
/obj/item/book/manual/detective,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/varadero/interior/library)
"cGd" = (
/obj/structure/machinery/power/apc{
pixel_y = -24;
start_charge = 0
},
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/varadero/interior/mess)
"cGx" = (
/obj/structure/machinery/light{
dir = 8
},
/obj/structure/machinery/r_n_d/protolathe,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/west,
/area/varadero/interior/research)
"cGD" = (
/obj/effect/landmark/lv624/fog_blocker{
@@ -4165,17 +3357,11 @@
icon_state = "pottedplant_22";
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/hall_NW)
"cGT" = (
/obj/structure/machinery/r_n_d/circuit_imprinter,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/west,
/area/varadero/interior/research)
"cGV" = (
/turf/closed/wall/r_wall/elevator{
@@ -4187,10 +3373,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/west,
/area/varadero/interior/security)
"cHl" = (
/obj/structure/machinery/door/airlock/almayer/maint{
@@ -4198,9 +3381,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/technical_storage)
"cHR" = (
/obj/structure/surface/table,
@@ -4211,9 +3392,7 @@
pixel_y = 24
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/mess)
"cHS" = (
/obj/structure/closet/crate/freezer/rations,
@@ -4225,9 +3404,7 @@
/obj/item/explosive/grenade/incendiary/molotov{
pixel_x = 6
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/varadero/interior/cargo)
"cHV" = (
/obj/structure/window/phoronreinforced{
@@ -4249,17 +3426,11 @@
/area/varadero/interior_protected/vessel)
"cHY" = (
/obj/effect/landmark/hunter_primary,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"cIB" = (
/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/technical_storage)
"cIP" = (
/obj/item/clothing/shoes/snow,
@@ -4271,9 +3442,7 @@
/obj/effect/decal/strata_decals/grime/grime3{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/bunks)
"cJa" = (
/obj/structure/reagent_dispensers/water_cooler{
@@ -4282,17 +3451,11 @@
pixel_y = 19
},
/obj/effect/decal/strata_decals/grime/grime2,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"cJL" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
-/turf/open/gm/river/ocean{
- name = "deep ocean";
- default_name = "deep ocean"
- },
+/turf/open/gm/river/ocean/deep_ocean,
/area/varadero/exterior/farocean)
"cKB" = (
/obj/structure/platform/kutjevo/smooth{
@@ -4300,16 +3463,11 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/farocean)
"cKC" = (
/obj/item/explosive/grenade/incendiary,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"cKK" = (
/obj/item/paper/crumpled/bloody,
@@ -4318,10 +3476,7 @@
/area/varadero/interior/maintenance/north)
"cKZ" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/west,
/area/varadero/interior/cargo)
"cLD" = (
/obj/structure/bed/chair/office/dark{
@@ -4331,10 +3486,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull/west,
/area/varadero/interior/hall_SE)
"cLP" = (
/turf/open/space,
@@ -4346,16 +3498,11 @@
layer = 2.99
},
/obj/structure/blocker/invisible_wall/water,
-/turf/open/gm/river/ocean{
- name = "deep ocean";
- default_name = "deep ocean"
- },
+/turf/open/gm/river/ocean/deep_ocean,
/area/varadero/exterior/farocean)
"cLX" = (
/obj/effect/decal/cleanable/blood/oil,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"cLY" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -4366,39 +3513,27 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/mess)
"cMf" = (
/obj/structure/bed/chair,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/north,
/area/varadero/interior/court)
"cNb" = (
/obj/structure/surface/table,
/obj/item/device/binoculars,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"cNh" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/device/flashlight,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"cNt" = (
/turf/open/gm/coast/north,
/area/varadero/exterior/comms4)
"cNu" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/hall_SE)
"cNA" = (
/obj/structure/surface/table/reinforced/prison,
@@ -4426,32 +3561,23 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_SE)
"cNJ" = (
/obj/structure/closet,
/obj/item/device/flashlight/lantern,
/obj/item/map/current_map,
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/varadero/interior_protected/vessel)
"cNT" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/research)
"cOj" = (
/obj/item/circuitboard/apc,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"cOs" = (
/obj/structure/bed/sofa/pews/flipped{
@@ -4462,49 +3588,36 @@
/area/varadero/interior/chapel)
"cOK" = (
/obj/item/stack/cable_coil/cut,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/varadero/interior/morgue)
"cPI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/structure/largecrate/random,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/cargo)
"cPR" = (
/obj/structure/window/framed/colony/reinforced,
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/research)
"cQr" = (
/obj/item/tool/crowbar/red{
pixel_x = 9;
pixel_y = 8
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/technical_storage)
"cQu" = (
/obj/structure/prop/turbine_extras/left,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz1_near)
"cRn" = (
/obj/item/prop/alien/hugger,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"cRx" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass{
@@ -4516,9 +3629,7 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/comms2)
"cSa" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers{
@@ -4535,17 +3646,13 @@
/area/varadero/interior/chapel)
"cTb" = (
/obj/item/device/flashlight/flare,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"cTg" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/morgue)
"cTr" = (
/obj/structure/machinery/light{
@@ -4554,23 +3661,16 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/varadero/interior/medical)
"cTw" = (
/obj/structure/window/framed/colony,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/hall_SE)
"cTV" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"cUE" = (
/obj/structure/surface/table/reinforced/prison{
@@ -4580,10 +3680,7 @@
pixel_x = 16;
pixel_y = 16
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/varadero/interior_protected/vessel)
"cUF" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -4601,9 +3698,7 @@
layer = 2.99
},
/obj/structure/blocker/invisible_wall/water,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/oob)
"cUN" = (
/obj/structure/prop/rock/brown{
@@ -4612,18 +3707,13 @@
name = "sturdy rock(s)";
desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable."
},
-/turf/open/gm/river/ocean{
- name = "deep ocean";
- default_name = "deep ocean"
- },
+/turf/open/gm/river/ocean/deep_ocean,
/area/varadero/exterior/farocean)
"cUZ" = (
/obj/structure/largecrate/random/case/double{
anchored = 1
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/caves)
"cVd" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -4639,9 +3729,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_NW)
"cWs" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -4653,10 +3741,7 @@
dir = 4
},
/obj/structure/prop/invuln/pipe_water,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/west,
/area/varadero/interior/maintenance)
"cWu" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -4673,9 +3758,7 @@
layer = 2.99
},
/obj/structure/blocker/invisible_wall/water,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/oob)
"cXa" = (
/obj/structure/platform/kutjevo/smooth{
@@ -4693,9 +3776,7 @@
/obj/structure/pipes/vents/pump{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/technical_storage)
"cYa" = (
/obj/item/storage/firstaid/adv,
@@ -4706,20 +3787,14 @@
dir = 4
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull/west,
/area/varadero/interior/hall_N)
"cYr" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 4
},
/obj/item/stack/cable_coil/cut,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"cYw" = (
/obj/structure/machinery/floodlight/landing{
@@ -4727,15 +3802,11 @@
name = "Construction Light"
},
/obj/effect/decal/warning_stripes,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/monsoon)
"cYB" = (
/obj/structure/window_frame/colony/reinforced,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"cYC" = (
/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core,
@@ -4747,17 +3818,11 @@
/area/varadero/interior/caves/north_research)
"cYZ" = (
/obj/structure/machinery/landinglight/ds2,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"cZN" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/varadero/interior/technical_storage)
"cZR" = (
/obj/structure/sign/safety/medical,
@@ -4767,9 +3832,7 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"dad" = (
/obj/item/stack/tile/plasteel,
@@ -4778,22 +3841,14 @@
"daA" = (
/obj/structure/bed/chair,
/obj/effect/landmark/survivor_spawner,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/north,
/area/varadero/interior/court)
"daS" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"dbg" = (
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/varadero/interior/technical_storage)
"dbu" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -4803,9 +3858,7 @@
/area/varadero/interior/chapel)
"dbV" = (
/obj/item/trash/liquidfood,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_NW)
"dcM" = (
/obj/item/ammo_magazine/revolver/cmb,
@@ -4836,9 +3889,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_NW)
"ded" = (
/obj/structure/surface/table/reinforced/prison,
@@ -4846,9 +3897,7 @@
pixel_y = 9
},
/obj/item/tool/pen/blue,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/morgue)
"deg" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
@@ -4877,10 +3926,7 @@
/area/varadero/exterior/eastbeach)
"deX" = (
/obj/item/trash/boonie,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/varadero/interior/hall_NW)
"dfs" = (
/obj/item/storage/belt/utility,
@@ -4895,41 +3941,30 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/morgue)
"dfP" = (
/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{
pixel_y = 32
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"dgq" = (
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/varadero/interior/morgue)
"dgF" = (
/obj/structure/machinery/storm_siren{
dir = 8;
pixel_x = 3
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/electrical)
"dgP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/north,
/area/varadero/interior/disposals)
"dgY" = (
/obj/structure/prop/rock/brown,
@@ -4940,9 +3975,7 @@
dir = 4
},
/obj/structure/machinery/disposal,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/records)
"dhQ" = (
/obj/effect/decal/cleanable/blood,
@@ -4952,18 +3985,13 @@
/area/varadero/interior/chapel)
"dhV" = (
/obj/structure/platform_decoration/kutjevo,
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/comms4)
"dir" = (
/obj/effect/landmark/lv624/fog_blocker{
time_to_dispel = 25000
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/caves/east)
"diu" = (
/obj/structure/bed/chair/comfy{
@@ -4984,9 +4012,7 @@
dir = 4;
pixel_x = 7
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"diK" = (
/obj/structure/machinery/power/apc{
@@ -5022,37 +4048,26 @@
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/records)
"diW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "redcorners"
- },
+/turf/open/floor/shiva/redcorners/north,
/area/varadero/interior/security)
"djb" = (
/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/medical)
"djh" = (
/obj/item/book/manual/security_space_law,
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/varadero/interior/library)
"djC" = (
/obj/structure/closet/toolcloset,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"djH" = (
/obj/structure/pipes/vents/pump,
@@ -5067,24 +4082,17 @@
/turf/open/floor/interior/plastic,
/area/varadero/interior_protected/caves/digsite)
"dkl" = (
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/varadero/interior/maintenance)
"dkr" = (
/obj/structure/window/framed/colony/reinforced,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/research)
"dkC" = (
/obj/structure/platform_decoration/kutjevo{
dir = 8
},
-/turf/open/gm/river/ocean{
- name = "deep ocean";
- default_name = "deep ocean"
- },
+/turf/open/gm/river/ocean/deep_ocean,
/area/varadero/exterior/comms4)
"dkS" = (
/obj/effect/landmark/lv624/fog_blocker{
@@ -5096,9 +4104,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/varadero/interior/maintenance)
"dlh" = (
/obj/structure/machinery/chem_dispenser/soda{
@@ -5113,18 +4119,13 @@
dir = 4;
pixel_x = -3
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz1_near)
"dlv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple/north,
/area/varadero/interior/research)
"dlD" = (
/obj/structure/prop/rock/brown_degree,
@@ -5140,10 +4141,7 @@
dir = 4
},
/obj/effect/landmark/corpsespawner/colonist/burst,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/east,
/area/varadero/interior/medical)
"dmR" = (
/obj/structure/surface/rack,
@@ -5154,9 +4152,7 @@
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/research)
"dnh" = (
/obj/structure/machinery/shower{
@@ -5169,45 +4165,31 @@
icon_state = "road_edge_decal3";
pixel_y = 16
},
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
+/turf/open/floor/wood/wood_broken3,
/area/varadero/interior/court)
"dnU" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/varadero/interior/toilets)
"dnV" = (
/obj/structure/pipes/vents/pump{
dir = 8
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/varadero/interior/security)
"dnW" = (
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/varadero/interior/medical)
"doa" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/varadero/interior/medical)
"dob" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"dos" = (
/obj/item/clothing/head/helmet,
@@ -5223,9 +4205,7 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/records)
"doP" = (
/obj/structure/prop/rock/brown,
@@ -5246,18 +4226,13 @@
name = "\improper Underground Security Brig";
req_access_txt = "100"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"dpO" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/evidencebag,
/obj/effect/landmark/objective_landmark/medium,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/varadero/interior/security)
"dpW" = (
/turf/open/gm/coast/beachcorner/north_east,
@@ -5266,10 +4241,7 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowcorners"
- },
+/turf/open/floor/shiva/yellowcorners/west,
/area/varadero/interior/cargo)
"dqx" = (
/obj/structure/cargo_container/wy/right,
@@ -5280,18 +4252,14 @@
/obj/structure/machinery/alarm{
pixel_y = 24
},
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/varadero/interior/cargo)
"drK" = (
/obj/structure/bed/chair{
dir = 8;
icon_state = "chair_alt"
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"dsi" = (
/obj/effect/decal/cleanable/blood/oil/streak,
@@ -5299,10 +4267,7 @@
/area/varadero/interior_protected/caves/digsite)
"dss" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/varadero/interior/cargo)
"dsz" = (
/obj/structure/filingcabinet{
@@ -5318,19 +4283,14 @@
pixel_y = 11
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/comms2)
"dsC" = (
/obj/structure/platform/kutjevo/smooth{
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/comms4)
"dtj" = (
/obj/structure/sign/poster/propaganda,
@@ -5387,46 +4347,30 @@
pixel_x = -13;
pixel_y = 12
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/varadero/interior/hall_N)
"dvT" = (
-/turf/open/gm/dirt{
- icon_state = "desert0"
- },
+/turf/open/gm/dirt/desert0,
/area/varadero/exterior/eastbeach)
"dwN" = (
/obj/item/tool/wet_sign,
/obj/item/tool/mop,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/eastbeach)
"dwP" = (
/obj/structure/machinery/computer3/powermonitor,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/electrical)
"dxn" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull/west,
/area/varadero/interior/hall_N)
"dxt" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/north,
/area/varadero/interior/maintenance)
"dxK" = (
/obj/structure/prop/rock/brown,
@@ -5434,9 +4378,7 @@
/area/varadero/interior/caves/north_research)
"dyl" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz2_near)
"dyo" = (
/obj/structure/platform/kutjevo/smooth{
@@ -5465,25 +4407,17 @@
pixel_x = 3;
pixel_y = 2
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"dBA" = (
/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill{
pixel_x = 10
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/varadero/interior_protected/vessel)
"dBB" = (
/obj/structure/machinery/body_scanconsole,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/medical)
"dCz" = (
/obj/structure/surface/table/reinforced/prison,
@@ -5495,15 +4429,10 @@
dir = 8;
health = 80
},
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/varadero/interior/morgue)
"dCE" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/varadero/interior/comms3)
"dDn" = (
/obj/item/shard{
@@ -5524,9 +4453,7 @@
"dEo" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"dEJ" = (
/obj/structure/machinery/landinglight/ds2/spoke{
@@ -5539,9 +4466,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/cargo)
"dFm" = (
/obj/structure/largecrate/supply/supplies/water,
@@ -5574,9 +4499,7 @@
"dGh" = (
/obj/effect/landmark/objective_landmark/medium,
/obj/structure/closet/crate/hydroponics/prespawned,
-/turf/open/floor/shiva{
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue,
/area/varadero/interior/technical_storage)
"dGr" = (
/turf/closed/shuttle{
@@ -5594,16 +4517,11 @@
dir = 1
},
/obj/effect/decal/cleanable/blood,
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/varadero/interior/toilets)
"dHD" = (
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/varadero/interior_protected/vessel)
"dHY" = (
/obj/structure/desertdam/decals/road_edge{
@@ -5645,19 +4563,14 @@
/area/varadero/interior_protected/caves/digsite)
"dID" = (
/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/varadero/interior/electrical)
"dIK" = (
/obj/structure/largecrate/random,
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"dJI" = (
/obj/structure/surface/rack,
@@ -5665,9 +4578,7 @@
/obj/item/fuel_cell,
/obj/item/fuel_cell,
/obj/item/fuel_cell,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"dJX" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -5676,10 +4587,7 @@
/area/varadero/exterior/lz2_near)
"dKc" = (
/obj/structure/closet/secure_closet/security,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northeast,
/area/varadero/interior/hall_N)
"dKy" = (
/obj/structure/closet/crate/freezer/cooler/oj,
@@ -5690,9 +4598,7 @@
/obj/item/reagent_container/food/drinks/cans/souto/grape,
/obj/item/reagent_container/food/drinks/cans/souto/lime,
/obj/item/reagent_container/food/drinks/cans/souto/grape,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz1_near)
"dLN" = (
/obj/structure/flora/pottedplant{
@@ -5703,17 +4609,13 @@
dir = 4;
pixel_x = 24
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/medical)
"dLP" = (
/obj/item/stool{
icon_state = "stool_alt"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/medical)
"dMm" = (
/obj/structure/window/reinforced{
@@ -5722,10 +4624,7 @@
},
/obj/structure/surface/rack,
/obj/item/tool/surgery/bonegel/predatorbonegel,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"dNh" = (
/obj/structure/stairs/perspective{
@@ -5733,23 +4632,17 @@
dir = 1;
icon_state = "p_stair_full"
},
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/varadero/exterior/lz1_near)
"dNt" = (
/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/caves/north_research)
"dNU" = (
/obj/structure/bed/chair{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/electrical)
"dNW" = (
/obj/structure/machinery/light{
@@ -5770,9 +4663,7 @@
/obj/item/facepaint/lipstick/jade{
pixel_x = 5
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/medical)
"dNY" = (
/obj/structure/window/reinforced/tinted{
@@ -5782,16 +4673,11 @@
/obj/item/device/flashlight/lamp/green{
pixel_y = 6
},
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/varadero/interior/security)
"dNZ" = (
/obj/structure/prop/rock/brown,
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/interior_protected/caves/central)
"dOk" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -5801,9 +4687,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/varadero/interior/medical)
"dOl" = (
/obj/item/prop/colony/used_flare,
@@ -5814,9 +4698,7 @@
/turf/open/gm/dirt,
/area/varadero/exterior/lz2_near)
"dOS" = (
-/turf/open/gm/dirt{
- icon_state = "desert2"
- },
+/turf/open/gm/dirt/desert2,
/area/varadero/exterior/pontoon_beach)
"dPR" = (
/obj/item/reagent_container/glass/bucket,
@@ -5826,50 +4708,31 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull/west,
/area/varadero/interior/hall_N)
"dQl" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"dQr" = (
/obj/structure/noticeboard{
pixel_y = 32
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/varadero/interior/security)
"dQK" = (
/obj/effect/landmark/static_comms/net_one,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/interior/comms1)
"dQT" = (
/obj/structure/bed/chair/comfy/teal,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/medical)
"dRs" = (
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/eastocean)
"dRI" = (
/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/caves/east)
"dRX" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -5880,15 +4743,11 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_N)
"dSs" = (
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/bunks)
"dSA" = (
/obj/structure/prop/structure_lattice{
@@ -5900,22 +4759,16 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/varadero/interior/library)
"dTe" = (
/obj/item/stack/cable_coil/random,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"dTl" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/item/device/flashlight/lamp/tripod,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/research)
"dTu" = (
/obj/structure/blocker/invisible_wall/water,
@@ -5924,10 +4777,7 @@
/area/varadero/exterior/farocean)
"dTC" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/varadero/interior/medical)
"dTG" = (
/turf/open/gm/coast/beachcorner/south_west,
@@ -5937,38 +4787,26 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/interior_protected/caves)
"dUh" = (
/obj/structure/morgue,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/varadero/interior/morgue)
"dUA" = (
/obj/structure/machinery/bioprinter,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/medical)
"dUL" = (
/obj/structure/machinery/light/small{
dir = 4
},
/obj/structure/barricade/wooden,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"dUS" = (
/obj/effect/landmark/xeno_spawn,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"dVq" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -5978,24 +4816,16 @@
req_one_access = null;
req_access = null
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/varadero/interior/library)
"dWl" = (
/obj/structure/filingcabinet,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/varadero/interior/electrical)
"dWE" = (
/obj/structure/pipes/vents/pump,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/varadero/interior/administration)
"dWH" = (
/obj/structure/platform/kutjevo/smooth{
@@ -6005,10 +4835,7 @@
/obj/structure/barricade/handrail/wire{
layer = 3.1
},
-/turf/open/gm/river/ocean{
- name = "deep ocean";
- default_name = "deep ocean"
- },
+/turf/open/gm/river/ocean/deep_ocean,
/area/varadero/exterior/comms4)
"dWN" = (
/obj/structure/surface/table/woodentable/fancy,
@@ -6051,9 +4878,7 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance)
"dYp" = (
/obj/item/book/manual/hydroponics_beekeeping,
@@ -6067,27 +4892,19 @@
},
/obj/effect/spawner/random/bomb_supply,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"dYy" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull/west,
/area/varadero/interior/hall_SE)
"dYW" = (
/obj/item/reagent_container/glass/bucket/mopbucket{
pixel_x = 11
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/eastbeach)
"dYX" = (
/obj/structure/machinery/light,
@@ -6097,9 +4914,7 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow,
/area/varadero/interior/cargo)
"eat" = (
/obj/structure/platform_decoration/kutjevo{
@@ -6133,9 +4948,7 @@
/area/varadero/interior/hall_N)
"eaQ" = (
/obj/effect/spawner/random/toolbox,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"ebi" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
@@ -6158,9 +4971,7 @@
},
/obj/effect/decal/cleanable/blood/drip,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz2_near)
"ebJ" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -6177,28 +4988,20 @@
layer = 2.99
},
/obj/structure/blocker/invisible_wall/water,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/oob)
"ebN" = (
/obj/structure/platform_decoration/kutjevo{
dir = 1
},
-/turf/open/gm/river/ocean{
- name = "deep ocean";
- default_name = "deep ocean"
- },
+/turf/open/gm/river/ocean/deep_ocean,
/area/varadero/exterior/pontoon_beach)
"ecb" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/north,
/area/varadero/interior/technical_storage)
"ecX" = (
/obj/effect/landmark/corpsespawner/engineer,
@@ -6206,10 +5009,7 @@
/turf/open/gm/coast/north,
/area/varadero/exterior/pontoon_beach)
"edu" = (
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/north,
/area/varadero/interior/maintenance)
"edD" = (
/obj/structure/platform/kutjevo/smooth{
@@ -6222,31 +5022,21 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/interior/caves/north_research)
"eea" = (
/obj/vehicle/train/cargo/engine{
dir = 2
},
-/turf/open/floor/shiva{
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue,
/area/varadero/interior/hall_SE)
"eeg" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/northeast,
/area/varadero/interior/technical_storage)
"efw" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/research)
"efy" = (
/turf/closed/wall/rock/brown,
@@ -6255,10 +5045,7 @@
/obj/structure/machinery/landinglight/ds2{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"egj" = (
/obj/effect/landmark/hunter_secondary,
@@ -6269,9 +5056,7 @@
/obj/structure/noticeboard{
pixel_y = -32
},
-/turf/open/floor{
- icon_state = "dark2"
- },
+/turf/open/floor/dark2,
/area/varadero/interior/hall_N)
"egH" = (
/obj/structure/prop/structure_lattice{
@@ -6283,9 +5068,7 @@
/obj/structure/machinery/light/small{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/varadero/interior/library)
"egJ" = (
/obj/structure/surface/table,
@@ -6294,10 +5077,7 @@
pixel_y = 11
},
/obj/item/reagent_container/glass/pressurized_canister,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/varadero/interior/technical_storage)
"egV" = (
/obj/item/ammo_magazine/handful/shotgun/buckshot,
@@ -6313,19 +5093,14 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"ehD" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_NW)
"ehH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -6336,9 +5111,7 @@
pixel_x = -16;
pixel_y = -8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/cargo)
"ehM" = (
/obj/structure/stairs/perspective{
@@ -6376,9 +5149,7 @@
/area/varadero/exterior/lz2_near)
"eij" = (
/obj/structure/bed,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"eiK" = (
/obj/structure/prop/rock/brown,
@@ -6402,9 +5173,7 @@
dir = 8;
pixel_x = 24
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/varadero/interior/library)
"ejM" = (
/turf/open/gm/coast/north,
@@ -6417,17 +5186,12 @@
req_one_access = null;
req_access = null
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/medical)
"ekg" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/comms3)
"ekE" = (
/obj/structure/platform/kutjevo/smooth{
@@ -6443,10 +5207,7 @@
/area/varadero/exterior/monsoon)
"ekO" = (
/obj/structure/flora/bush/ausbushes/var3/fernybush,
-/turf/open/gm/river/ocean{
- name = "deep ocean";
- default_name = "deep ocean"
- },
+/turf/open/gm/river/ocean/deep_ocean,
/area/varadero/exterior/comms4)
"elI" = (
/turf/open/gm/coast/beachcorner/north_west,
@@ -6454,14 +5215,10 @@
"elO" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/barricade/wooden,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"elP" = (
-/turf/open/gm/dirt{
- icon_state = "desert2"
- },
+/turf/open/gm/dirt/desert2,
/area/varadero/exterior/monsoon)
"emt" = (
/obj/structure/tunnel{
@@ -6472,9 +5229,7 @@
"emC" = (
/obj/structure/surface/rack,
/obj/item/tool/surgery/scalpel/pict_system,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance)
"emP" = (
/obj/structure/machinery/camera/autoname/lz_camera,
@@ -6484,22 +5239,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/comms2)
"enH" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/varadero/interior/security)
"enU" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/west,
/area/varadero/interior/cargo)
"enZ" = (
/obj/structure/blocker/invisible_wall/water,
@@ -6517,9 +5264,7 @@
/obj/item/shard{
icon_state = "medium"
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"eov" = (
/turf/open/gm/dirt,
@@ -6530,9 +5275,7 @@
pixel_x = 16;
pixel_y = -8
},
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/varadero/exterior/eastbeach)
"eoV" = (
/obj/structure/prop/resin_prop,
@@ -6551,9 +5294,7 @@
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"epQ" = (
/turf/closed/wall,
@@ -6564,9 +5305,7 @@
name = "\improper Underground Technical Storage";
req_access_txt = "100"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/technical_storage)
"eqe" = (
/obj/structure/surface/table/reinforced/prison,
@@ -6582,10 +5321,7 @@
pixel_x = 7;
pixel_y = -7
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"eqg" = (
/obj/structure/platform/kutjevo/smooth{
@@ -6599,29 +5335,21 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/varadero/interior/toilets)
"eqB" = (
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"eqT" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor{
- icon_state = "asteroidwarning"
- },
+/turf/open/floor/asteroidwarning,
/area/varadero/exterior/lz2_near)
"erE" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_N)
"erK" = (
/obj/structure/machinery/door/airlock/almayer/maint{
@@ -6629,9 +5357,7 @@
req_access_txt = "100";
req_one_access = null
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"erQ" = (
/obj/effect/overlay/palmtree_r,
@@ -6639,18 +5365,13 @@
/area/varadero/exterior/monsoon)
"esw" = (
/obj/effect/landmark/monkey_spawn,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"esz" = (
/obj/structure/surface/rack,
/obj/item/storage/pouch/shotgun,
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/west,
/area/varadero/interior/medical)
"esA" = (
/obj/effect/landmark/lv624/fog_blocker{
@@ -6659,18 +5380,12 @@
/obj/effect/landmark/lv624/fog_blocker{
time_to_dispel = 25000
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/eastocean)
"esB" = (
/obj/structure/closet/radiation,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/varadero/interior/comms3)
"esK" = (
/obj/effect/decal/warning_stripes{
@@ -6681,33 +5396,25 @@
/area/varadero/interior_protected/caves/digsite)
"esM" = (
/obj/structure/target/syndicate,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/caves)
"esO" = (
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/varadero/interior/library)
"etf" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
name = "\improper Underground Main Hallway"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_SE)
"etv" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"etE" = (
/obj/structure/filingcabinet{
@@ -6737,17 +5444,11 @@
/obj/structure/surface/rack,
/obj/item/tool/crowbar/red,
/obj/item/tank/emergency_oxygen,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"euM" = (
/obj/structure/machinery/light,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/north,
/area/varadero/interior/hall_N)
"euS" = (
/obj/structure/platform/kutjevo/smooth{
@@ -6764,38 +5465,26 @@
/obj/structure/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_N)
"evW" = (
/obj/item/lightstick/variant/planted,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/monsoon)
"evX" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 1
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz1_near)
"ewv" = (
/obj/structure/machinery/constructable_frame,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/eastbeach)
"ewS" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/bottle/holywater,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/varadero/interior/morgue)
"exj" = (
/obj/structure/flora/bush/ausbushes/var3/fullgrass,
@@ -6811,17 +5500,11 @@
"exH" = (
/obj/item/device/defibrillator,
/obj/structure/surface/table,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/varadero/interior/medical)
"exX" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/eastocean)
"eye" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -6829,9 +5512,7 @@
},
/obj/effect/landmark/corpsespawner/security,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"eyt" = (
/turf/closed/wall/rock/brown,
@@ -6854,10 +5535,7 @@
pixel_x = -14;
pixel_y = 13
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/east,
/area/varadero/interior/maintenance)
"ezd" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -6867,14 +5545,10 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/cargo)
"ezt" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/hall_SE)
"ezx" = (
/obj/structure/prop/structure_lattice{
@@ -6894,17 +5568,13 @@
/obj/structure/sign/safety/water{
pixel_x = 15
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz1_near)
"ezI" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 10
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/research)
"ezU" = (
/obj/structure/platform/kutjevo/smooth{
@@ -6925,19 +5595,14 @@
icon_state = "pipe-c"
},
/obj/structure/pipes/standard/manifold/hidden/green,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"ezZ" = (
/obj/structure/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northwest,
/area/varadero/interior/security)
"eAG" = (
/obj/structure/disposalpipe/segment{
@@ -6947,26 +5612,20 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "wredfull"
- },
+/turf/open/floor/shiva/wredfull,
/area/varadero/interior/medical)
"eAJ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"eBf" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 6
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance)
"eBm" = (
/obj/structure/platform/kutjevo/smooth{
@@ -6983,10 +5642,7 @@
/obj/structure/machinery/storm_siren{
pixel_y = 5
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"eBs" = (
/turf/closed/wall/r_wall/elevator{
@@ -6997,33 +5653,24 @@
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/cargo)
"eBL" = (
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/varadero/interior/cargo)
"eBS" = (
/obj/item/tool/surgery/hemostat/predatorhemostat,
/obj/structure/surface/table/reinforced/prison{
color = "#6b675e"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/varadero/interior_protected/vessel)
"eBT" = (
/obj/structure/surface/table,
/obj/item/reagent_container/food/drinks/cup{
pixel_x = 3
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"eCg" = (
/obj/item/tool/warning_cone,
@@ -7031,9 +5678,7 @@
/area/varadero/exterior/pontoon_beach)
"eCj" = (
/obj/structure/prop/almayer/computers/sensor_computer3,
-/turf/open/floor/prison{
- icon_state = "darkredfull2"
- },
+/turf/open/floor/prison/darkredfull2,
/area/varadero/interior/dock_control)
"eCu" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -7052,10 +5697,7 @@
indestructible = 1;
unacidable = 1
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/farocean)
"eDF" = (
/obj/structure/bed/stool{
@@ -7077,10 +5719,7 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"eEd" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -7103,26 +5742,20 @@
/turf/open/gm/dirt,
/area/varadero/exterior/pontoon_beach)
"eFJ" = (
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/comms3)
"eFW" = (
/obj/structure/machinery/storm_siren{
pixel_y = 5
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"eGd" = (
/obj/structure/machinery/power/reactor/colony,
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/electrical)
"eGq" = (
/obj/item/reagent_container/food/snacks/eat_bar,
@@ -7130,17 +5763,13 @@
pixel_x = -4;
pixel_y = -7
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"eGL" = (
/obj/item/stack/sheet/plasteel{
amount = 24
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/electrical)
"eGP" = (
/obj/structure/closet/cabinet,
@@ -7168,10 +5797,7 @@
icon_state = "pottedplant_22";
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southwest,
/area/varadero/interior/security)
"eHZ" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
@@ -7179,10 +5805,7 @@
/area/varadero/interior_protected/caves/central)
"eIr" = (
/obj/structure/platform_decoration/kutjevo,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/varadero/interior_protected/vessel)
"eIT" = (
/obj/structure/surface/table/reinforced/prison,
@@ -7195,16 +5818,10 @@
pixel_y = 5
},
/obj/item/reagent_container/food/condiment/saltshaker,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/east,
/area/varadero/interior/hall_SE)
"eIV" = (
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/east,
/area/varadero/interior/medical)
"eJI" = (
/obj/structure/barricade/handrail/wire{
@@ -7219,9 +5836,7 @@
pixel_x = 6;
pixel_y = -2
},
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/varadero/interior/medical)
"eJN" = (
/obj/structure/prop/invuln/lattice_prop{
@@ -7232,27 +5847,20 @@
/obj/structure/barricade/handrail/wire{
dir = 4
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/eastbeach)
"eJS" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"eKw" = (
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/security)
"eKF" = (
/obj/structure/bed/chair{
@@ -7260,9 +5868,7 @@
icon_state = "chair_alt";
pixel_y = 9
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"eKL" = (
/obj/effect/overlay/palmtree_r{
@@ -7286,9 +5892,7 @@
pixel_y = 6
},
/obj/effect/landmark/objective_landmark/science,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/medical)
"eLZ" = (
/obj/structure/prop/ice_colony/dense/planter_box/hydro{
@@ -7299,10 +5903,7 @@
pixel_x = -1;
pixel_y = 12
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/interior/caves/north_research)
"eMi" = (
/obj/structure/desertdam/decals/road_edge{
@@ -7330,10 +5931,7 @@
/area/varadero/interior/court)
"eMD" = (
/obj/structure/tunnel/maint_tunnel,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southwest,
/area/varadero/interior/security)
"eNk" = (
/obj/item/toy/sword,
@@ -7356,19 +5954,14 @@
/obj/structure/machinery/optable,
/obj/effect/landmark/corpsespawner/colonist/burst,
/obj/effect/decal/cleanable/blood,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/east,
/area/varadero/interior/medical)
"eOu" = (
/obj/structure/machinery/camera/autoname{
dir = 1;
network = list("interrogation")
},
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/varadero/interior/security)
"eOv" = (
/obj/item/circuitboard/airlock,
@@ -7378,18 +5971,13 @@
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 5;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northeast,
/area/varadero/interior/security)
"ePb" = (
/obj/effect/decal/warning_stripes{
icon_state = "E"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/cargo)
"ePz" = (
/obj/item/explosive/grenade/incendiary/molotov{
@@ -7401,9 +5989,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/varadero/interior/hall_N)
"eQa" = (
/obj/structure/pipes/standard/manifold/hidden/green{
@@ -7414,9 +6000,7 @@
pixel_x = 17;
pixel_y = 16
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"eQm" = (
/obj/structure/window/framed/wood,
@@ -7428,17 +6012,12 @@
pixel_y = 5
},
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"eQz" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/item/paper/research_notes,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/west,
/area/varadero/interior/administration)
"eQC" = (
/obj/structure/largecrate/supply/supplies/water,
@@ -7452,17 +6031,13 @@
},
/obj/effect/decal/cleanable/blood/oil,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/caves/east)
"eQZ" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor{
- icon_state = "white"
- },
+/turf/open/floor/white,
/area/varadero/interior/toilets)
"eRD" = (
/obj/structure/pipes/vents/pump,
@@ -7477,25 +6052,19 @@
"eRM" = (
/obj/structure/surface/rack,
/obj/item/tool/crowbar,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz1_near)
"eRO" = (
/obj/structure/prop/souto_land/streamer{
dir = 1;
pixel_y = 24
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_NW)
"eRQ" = (
/obj/item/tool/screwdriver,
/obj/item/device/multitool,
-/turf/open/shuttle{
- icon_state = "floor6"
- },
+/turf/open/shuttle/red,
/area/varadero/interior_protected/vessel)
"eSg" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -7504,17 +6073,12 @@
/obj/structure/closet/hydrant{
pixel_y = 32
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/varadero/interior/medical)
"eSo" = (
/obj/structure/closet/crate/construction,
/obj/item/tool/extinguisher,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/eastbeach)
"eTb" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -7528,9 +6092,7 @@
"eTi" = (
/obj/effect/decal/cleanable/blood/gibs,
/obj/effect/landmark/corpsespawner/colonist/burst,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/medical)
"eTP" = (
/obj/structure/desertdam/decals/road_edge{
@@ -7544,19 +6106,13 @@
/turf/open/floor/wood,
/area/varadero/interior/court)
"eUh" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "bluefull"
- },
+/turf/open/floor/shiva/bluefull/west,
/area/varadero/interior/maintenance)
"eUv" = (
/obj/structure/pipes/vents/pump{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/southeast,
/area/varadero/interior/security)
"eUH" = (
/obj/structure/disposalpipe/segment{
@@ -7569,17 +6125,12 @@
/area/varadero/interior/hall_SE)
"eVn" = (
/obj/structure/largecrate/random,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/cargo)
"eVH" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/effect/decal/cleanable/blood/oil/streak,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/comms2)
"eVU" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -7587,9 +6138,7 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"eVW" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -7600,9 +6149,7 @@
name = "\improper materials storage bin";
pixel_y = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz1_near)
"eWp" = (
/obj/structure/platform/kutjevo/smooth{
@@ -7611,16 +6158,10 @@
layer = 2.99
},
/obj/structure/largecrate/random,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/interior/comms1)
"eWR" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplecorners"
- },
+/turf/open/floor/shiva/purplecorners/west,
/area/varadero/interior/research)
"eWZ" = (
/obj/structure/prop/invuln/minecart_tracks{
@@ -7635,9 +6176,7 @@
climb_delay = 1;
layer = 2.99
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/lz1_near)
"eXg" = (
/obj/structure/platform/kutjevo/smooth{
@@ -7656,17 +6195,12 @@
icon_state = "hr_kutjevo";
name = "support struts"
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"eXr" = (
/obj/structure/surface/rack,
/obj/item/storage/briefcase,
-/turf/open/floor/shiva{
- icon_state = "purple"
- },
+/turf/open/floor/shiva/purple,
/area/varadero/interior/research)
"eXw" = (
/obj/structure/prop/ice_colony/dense/planter_box/hydro{
@@ -7674,10 +6208,7 @@
name = "barge float";
desc = "A supportive lattice connected to two floating pontoons."
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/farocean)
"eXN" = (
/obj/effect/landmark/lv624/fog_blocker{
@@ -7699,52 +6230,35 @@
/obj/structure/bed/chair/office/light{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"eYG" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/morgue)
"eYM" = (
/obj/structure/machinery/power/monitor,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/electrical)
"eZc" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/green,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/southeast,
/area/varadero/interior/administration)
"eZk" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
pixel_y = 1
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/cargo)
"fao" = (
/obj/structure/reagent_dispensers/water_cooler{
density = 0;
pixel_y = 19
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_NW)
"faq" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "greenfull"
- },
+/turf/open/floor/shiva/greenfull/west,
/area/varadero/interior/medical)
"fay" = (
/turf/closed/wall/r_wall,
@@ -7762,17 +6276,11 @@
icon_state = "pottedplant_22";
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
+/turf/open/floor/shiva/yellowfull/west,
/area/varadero/interior/comms3)
"faX" = (
/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/electrical)
"fbr" = (
/obj/effect/landmark/corpsespawner/miner,
@@ -7793,9 +6301,7 @@
dir = 4
},
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/eastbeach)
"fbQ" = (
/obj/structure/desertdam/decals/road_edge{
@@ -7818,10 +6324,7 @@
/obj/item/tool/surgery/FixOVein/predatorFixOVein{
pixel_x = -4
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/varadero/interior_protected/vessel)
"fbZ" = (
/obj/structure/prop/server_equipment/yutani_server,
@@ -7834,9 +6337,7 @@
/area/varadero/interior_protected/caves/digsite)
"fcg" = (
/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor{
- icon_state = "freezerfloor"
- },
+/turf/open/floor/freezerfloor,
/area/varadero/interior/cargo)
"fcp" = (
/obj/structure/flora/bush/ausbushes/var3/stalkybush,
@@ -7855,18 +6356,14 @@
pixel_x = 16;
pixel_y = 24
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/cargo)
"fdn" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{
pixel_x = -28
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/research)
"fdw" = (
/obj/structure/pipes/vents/pump{
@@ -7875,9 +6372,7 @@
/obj/structure/barricade/handrail/wire{
layer = 3.1
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/court)
"fdA" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -7888,9 +6383,7 @@
req_access = null;
req_one_access = null
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/maintenance/research)
"fef" = (
/obj/structure/surface/table/reinforced/prison,
@@ -7902,10 +6395,7 @@
pixel_x = -3;
pixel_y = 3
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "purplefull"
- },
+/turf/open/floor/shiva/purplefull/west,
/area/varadero/interior/research)
"feH" = (
/obj/effect/landmark/lv624/fog_blocker{
@@ -7922,23 +6412,16 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"feV" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/attachment,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue/north,
/area/varadero/interior/administration)
"feW" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/gm/dirt{
- icon_state = "desert3"
- },
+/turf/open/gm/dirt/desert3,
/area/varadero/interior/maintenance/north)
"ffe" = (
/obj/structure/curtain/shower,
@@ -7949,9 +6432,7 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/medical)
"ffx" = (
/obj/structure/disposalpipe/segment{
@@ -7968,9 +6449,7 @@
/obj/structure/barricade/handrail/wire{
layer = 3.1
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/disposals)
"fga" = (
/obj/structure/machinery/light/small{
@@ -7978,16 +6457,12 @@
},
/obj/structure/surface/rack,
/obj/item/tool/wrench,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"fgS" = (
/obj/structure/closet/crate/secure,
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/cargo)
"fgW" = (
/obj/structure/bed/chair/wood/normal{
@@ -8004,34 +6479,21 @@
pixel_x = -10;
pixel_y = 11
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"fhu" = (
-/obj/structure/bed/chair{
- dir = 3
- },
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
- },
+/obj/structure/bed/chair,
+/turf/open/floor/asteroidwarning/west,
/area/varadero/exterior/lz1_near)
"fhA" = (
/obj/item/device/flashlight,
/obj/structure/surface/table/reinforced/prison{
color = "#6b675e"
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/varadero/interior_protected/vessel)
"fhM" = (
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/varadero/interior/disposals)
"fhV" = (
/obj/structure/surface/table,
@@ -8042,28 +6504,21 @@
/obj/item/reagent_container/food/drinks/cup{
pixel_x = 7
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"fiv" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
dir = 1;
name = "\improper Underground Staff Canteen"
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/mess)
"fiA" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/southeast,
/area/varadero/interior/hall_SE)
"fiB" = (
/obj/structure/surface/table/reinforced/prison,
@@ -8077,9 +6532,7 @@
pixel_y = 11
},
/obj/effect/landmark/objective_landmark/close,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/medical)
"fjg" = (
/turf/open/gm/grass/grass1/weedable,
@@ -8087,19 +6540,13 @@
"fjv" = (
/obj/structure/blocker/invisible_wall/water,
/obj/structure/prop/rock/brown,
-/turf/open/gm/river/ocean{
- name = "deep ocean";
- default_name = "deep ocean"
- },
+/turf/open/gm/river/ocean/deep_ocean,
/area/varadero/exterior/farocean)
"fjx" = (
/obj/structure/bed/chair{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 9;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/northwest,
/area/varadero/interior/security)
"fjC" = (
/obj/structure/disposalpipe/segment,
@@ -8121,9 +6568,7 @@
"fjK" = (
/obj/structure/closet/crate/secure,
/obj/effect/landmark/objective_landmark/far,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/cargo)
"fjM" = (
/obj/structure/machinery/conveyor,
@@ -8136,19 +6581,14 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/west,
/area/varadero/interior/hall_SE)
"fkd" = (
/obj/item/toy/beach_ball,
/turf/open/auto_turf/sand_white/layer1,
/area/varadero/exterior/pontoon_beach)
"fkj" = (
-/turf/open/floor/shiva{
- icon_state = "green"
- },
+/turf/open/floor/shiva/green,
/area/varadero/interior/hall_SE)
"fky" = (
/obj/structure/prop/ice_colony/dense/planter_box/plated{
@@ -8159,23 +6599,17 @@
icon_state = "pointybush_3";
pixel_y = 11
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"fkE" = (
/obj/structure/largecrate/random/case/double,
-/turf/open/floor/shiva{
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue,
/area/varadero/interior/hall_SE)
"fkF" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"fkR" = (
/turf/closed/wall,
@@ -8201,39 +6635,29 @@
dir = 8;
icon_state = "chair_alt"
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/comms2)
"fnj" = (
/obj/structure/pipes/standard/simple/hidden/green,
/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"fnl" = (
/obj/structure/pipes/standard/simple/hidden/green{
dir = 4
},
/obj/effect/landmark/static_comms/net_two,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/comms2)
"fnq" = (
/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"fnX" = (
/obj/structure/platform_decoration/kutjevo{
dir = 4
},
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/varadero/interior/maintenance)
"fof" = (
/obj/structure/shuttle/engine/heater{
@@ -8245,10 +6669,7 @@
icon_state = "phoronrwindow"
},
/obj/item/device/flashlight/slime,
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/varadero/interior_protected/vessel)
"foz" = (
/obj/structure/surface/table/reinforced/prison,
@@ -8256,10 +6677,7 @@
dir = 8;
pixel_x = -11
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/west,
/area/varadero/interior/mess)
"foE" = (
/obj/effect/decal/cleanable/blood/drip,
@@ -8268,17 +6686,11 @@
pixel_x = -16;
pixel_y = 24
},
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/eastbeach)
"foF" = (
/obj/structure/machinery/bot/mulebot,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/cargo)
"foQ" = (
/obj/structure/platform_decoration/kutjevo{
@@ -8303,10 +6715,7 @@
pixel_x = 6;
pixel_y = 18
},
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/varadero/interior/hall_NW)
"fpe" = (
/obj/structure/machinery/power/apc{
@@ -8314,9 +6723,7 @@
pixel_x = 24;
start_charge = 0
},
-/turf/open/floor{
- icon_state = "wood"
- },
+/turf/open/floor/wood,
/area/varadero/interior/library)
"fpf" = (
/obj/structure/pipes/standard/simple/hidden/green,
@@ -8324,9 +6731,7 @@
/obj/structure/bed/chair{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_NW)
"fpq" = (
/turf/open/gm/coast/beachcorner2/south_east,
@@ -8340,31 +6745,22 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance)
"fqu" = (
/obj/item/weapon/gun/rifle/m41a,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/varadero/interior/hall_SE)
"fqY" = (
/obj/structure/disposalpipe/segment{
dir = 8
},
/obj/structure/machinery/light,
-/turf/open/floor/shiva{
- icon_state = "red"
- },
+/turf/open/floor/shiva/red,
/area/varadero/interior/security)
"frQ" = (
/obj/item/stack/sheet/metal,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_SE)
"frR" = (
/obj/structure/prop/rock/brown,
@@ -8394,30 +6790,22 @@
/turf/closed/wall/r_wall,
/area/varadero/interior/research)
"ftF" = (
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/comms3)
"fuh" = (
/obj/structure/prop/ice_colony/soil_net,
-/turf/open/gm/dirt{
- icon_state = "desert_dug"
- },
+/turf/open/gm/dirt/desert_dug,
/area/varadero/interior/maintenance/north)
"fuj" = (
/obj/structure/barricade/wooden,
/obj/structure/safe/floor,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"fuF" = (
/obj/structure/machinery/storm_siren{
pixel_y = 5
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/cargo)
"fuS" = (
/obj/structure/window/framed/colony/reinforced,
@@ -8443,10 +6831,7 @@
/obj/structure/machinery/chem_dispenser/soda/beer{
pixel_y = 8
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles/north,
/area/varadero/interior/hall_SE)
"fvV" = (
/obj/structure/largecrate/random/barrel/green,
@@ -8464,9 +6849,7 @@
name = "Construction Light"
},
/obj/effect/decal/warning_stripes,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/pontoon_beach)
"fxR" = (
/obj/item/moneybag{
@@ -8481,10 +6864,7 @@
/obj/structure/bed/chair/hunter{
dir = 8
},
-/turf/open/floor/strata{
- color = "#5e5d5d";
- icon_state = "multi_tiles"
- },
+/turf/open/floor/strata/grey_multi_tiles,
/area/varadero/interior_protected/vessel)
"fxX" = (
/obj/structure/prop/invuln/overhead_pipe{
@@ -8499,9 +6879,7 @@
layer = 3.01
},
/obj/structure/catwalk,
-/turf/open/gm/river/desert/deep{
- base_river_slowdown = 0
- },
+/turf/open/gm/river/desert/deep/no_slowdown,
/area/varadero/interior/maintenance/north)
"fyH" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -8511,9 +6889,7 @@
/obj/item/ammo_casing/shell{
icon_state = "cartridge_1_1"
},
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/medical)
"fyP" = (
/obj/structure/surface/table/woodentable,
@@ -8530,9 +6906,7 @@
name = "Orion";
real_name = "Orion"
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/morgue)
"fzc" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -8540,28 +6914,19 @@
/area/varadero/interior/caves/north_research)
"fzx" = (
/obj/effect/spawner/random/tool,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/north)
"fzy" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_N)
"fAq" = (
/obj/structure/machinery/photocopier,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/north,
/area/varadero/interior/morgue)
"fAs" = (
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue,
/area/varadero/interior/administration)
"fAO" = (
/turf/open/floor/plating,
@@ -8570,9 +6935,7 @@
/obj/structure/pipes/standard/simple/hidden/green{
dir = 5
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance)
"fBV" = (
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -8583,19 +6946,13 @@
/obj/structure/machinery/light{
dir = 1
},
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/electrical)
"fDB" = (
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/east,
/area/varadero/interior/cargo)
"fDH" = (
/obj/structure/blocker/invisible_wall/water,
@@ -8604,10 +6961,7 @@
/area/varadero/exterior/farocean)
"fEb" = (
/obj/structure/barricade/wooden,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/west,
/area/varadero/interior/maintenance)
"fEm" = (
/obj/structure/largecrate/random,
@@ -8615,38 +6969,28 @@
pixel_x = -3;
pixel_y = 14
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_SE)
"fEu" = (
-/turf/open/floor{
- icon_state = "bcircuit"
- },
+/turf/open/floor/bcircuit,
/area/varadero/interior/electrical)
"fEz" = (
/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/records)
"fEA" = (
/obj/structure/girder/displaced,
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/security)
"fEI" = (
/obj/structure/bedsheetbin{
icon_state = "linenbin-empty"
},
/obj/item/clothing/under/CM_uniform,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/bunks)
"fER" = (
/obj/structure/disposalpipe/segment,
@@ -8654,10 +6998,7 @@
/obj/structure/machinery/light{
dir = 4
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/varadero/interior/security)
"fFm" = (
/obj/structure/surface/table/reinforced/prison,
@@ -8665,9 +7006,7 @@
pixel_x = 3
},
/obj/effect/spawner/random/attachment,
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/hall_SE)
"fFs" = (
/obj/structure/machinery/reagentgrinder{
@@ -8678,9 +7017,7 @@
/obj/item/stack/sheet/mineral/phoron,
/obj/item/stack/sheet/mineral/phoron,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/medical)
"fFw" = (
/obj/item/stack/sheet/wood,
@@ -8691,10 +7028,7 @@
pixel_y = 24
},
/obj/structure/machinery/power/port_gen/pacman,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/electrical)
"fFH" = (
/obj/structure/platform/kutjevo/smooth{
@@ -8708,9 +7042,7 @@
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/turf/open/floor/shiva{
- icon_state = "floor3"
- },
+/turf/open/floor/shiva/floor3,
/area/varadero/interior/administration)
"fFK" = (
/obj/structure/bed{
@@ -8721,16 +7053,11 @@
layer = 2.1;
name = "lattice"
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/interior_protected/vessel)
"fFO" = (
/obj/effect/landmark/corpsespawner/colonist/burst,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/caves)
"fGM" = (
/obj/structure/bed/chair/wood/normal{
@@ -8742,9 +7069,7 @@
/turf/open/floor/carpet,
/area/varadero/interior/library)
"fGN" = (
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/exterior/farocean)
"fGP" = (
/obj/effect/landmark/queen_spawn,
@@ -8754,10 +7079,7 @@
/obj/structure/platform_decoration/kutjevo{
dir = 1
},
-/turf/open/gm/river{
- name = "shallow ocean";
- default_name = "shallow ocean"
- },
+/turf/open/gm/river/shallow_ocean_shallow_ocean,
/area/varadero/exterior/pontoon_beach)
"fHg" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_door,
@@ -8775,25 +7097,18 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_NW)
"fHx" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
pixel_y = 8
},
-/turf/open/floor/shiva{
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat,
/area/varadero/interior/security)
"fIk" = (
/obj/item/prop/colony/used_flare,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/exterior/lz2_near)
"fJb" = (
/obj/structure/prop/invuln/lattice_prop{
@@ -8804,17 +7119,12 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "green"
- },
+/turf/open/floor/shiva/green/east,
/area/varadero/interior/hall_SE)
"fJw" = (
/obj/effect/decal/cleanable/blood,
/obj/item/weapon/gun/rifle/m41a,
-/turf/open/floor/shiva{
- icon_state = "redfull"
- },
+/turf/open/floor/shiva/redfull,
/area/varadero/interior/medical)
"fJI" = (
/obj/item/clothing/gloves/yautja{
@@ -8831,19 +7141,13 @@
/obj/structure/bed/chair/hunter{
dir = 1
},
-/turf/open/floor/corsat{
- dir = 1;
- icon_state = "squareswood"
- },
+/turf/open/floor/corsat/squareswood/north,
/area/varadero/interior_protected/vessel)
"fJR" = (
/obj/structure/surface/table,
/obj/item/bodybag/cryobag,
/obj/item/storage/box/syringes,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "wred"
- },
+/turf/open/floor/shiva/wred/north,
/area/varadero/interior/medical)
"fKz" = (
/obj/structure/pipes/standard/simple/hidden/green{
@@ -8854,9 +7158,7 @@
req_access = null;
req_one_access = null
},
-/turf/open/floor/shiva{
- dir = 1
- },
+/turf/open/floor/shiva/north,
/area/varadero/interior/research)
"fLn" = (
/obj/structure/machinery/door/window/brigdoor/westleft{
@@ -8865,16 +7167,11 @@
id = "brg"
},
/obj/structure/pipes/standard/simple/hidden/green,
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "snow_mat"
- },
+/turf/open/floor/shiva/snow_mat/east,
/area/varadero/interior/security)
"fLu" = (
/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node,
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior_protected/maintenance/south)
"fLY" = (
/turf/open/gm/coast/beachcorner2/north_west,
@@ -8884,10 +7181,7 @@
/obj/item/storage/toolbox/mechanical,
/obj/item/storage/toolbox/mechanical,
/obj/effect/landmark/crap_item,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/west,
/area/varadero/interior/comms3)
"fMq" = (
/obj/item/device/cassette_tape/heavymetal{
@@ -8899,10 +7193,7 @@
pixel_x = 5;
pixel_y = -3
},
-/turf/open/floor/shiva{
- dir = 4;
- icon_state = "red"
- },
+/turf/open/floor/shiva/red/east,
/area/varadero/interior/medical)
"fMI" = (
/obj/structure/flora/bush/ausbushes/var3/sparsegrass,
@@ -8911,10 +7202,7 @@
"fMP" = (
/obj/effect/landmark/objective_landmark/far,
/obj/structure/surface/table/reinforced/prison,
-/turf/open/floor/shiva{
- dir = 1;
- icon_state = "yellow"
- },
+/turf/open/floor/shiva/yellow/north,
/area/varadero/interior/hall_SE)
"fNm" = (
/obj/structure/platform/kutjevo/smooth{
@@ -8940,9 +7228,7 @@
pixel_x = 16;
pixel_y = -8
},
-/turf/open/floor/plating/icefloor{
- icon_state = "asteroidplating"
- },
+/turf/open/floor/plating/icefloor/asteroidplating,
/area/varadero/interior/maintenance/research)
"fOG" = (
/obj/structure/platform/kutjevo/smooth{
@@ -8951,10 +7237,7 @@
layer = 2.99
},
/obj/structure/machinery/constructable_frame,
-/turf/open/floor{
- dir = 1;
- icon_state = "asteroidfloor"
- },
+/turf/open/floor/asteroidfloor/north,
/area/varadero/interior/comms1)
"fOO" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited,
@@ -8967,17 +7250,13 @@
/obj/structure/pipes/standard/manifold/hidden/green{
dir = 1
},
-/turf/open/floor/shiva{
- icon_state = "multi_tiles"
- },
+/turf/open/floor/shiva/multi_tiles,
/area/varadero/interior/hall_SE)
"fPo" = (
/obj/structure/surface/table/reinforced/prison,
/obj/effect/landmark/crap_item,
/obj/item/storage/fancy/cigar,
-/turf/open/floor/shiva{
- icon_state = "blue"
- },
+/turf/open/floor/shiva/blue,
/area/varadero/interior/administration)
"fPp" = (
/obj/structure/flora/bush/ausbushes/var3/ywflowers{
@@ -8991,19 +7270,14 @@
p